From owner-cvs-all@FreeBSD.ORG Sun Aug 8 00:01:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 794D416A4CE; Sun, 8 Aug 2004 00:01:16 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A17243D1D; Sun, 8 Aug 2004 00:01:16 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.5.51] (adsl-64-171-186-94.dsl.snfc21.pacbell.net [64.171.186.94]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i7801D8U022239; Sat, 7 Aug 2004 17:01:13 -0700 Message-ID: <41156D48.8030304@root.org> Date: Sat, 07 Aug 2004 17:01:12 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7.2 (Windows/20040707) X-Accept-Language: en-us, en MIME-Version: 1.0 To: "M. Warner Losh" References: <200408060450.i764ouJu097994@repoman.freebsd.org> <200408061014.22594.jhb@FreeBSD.org> <4114681D.5020902@root.org> <20040806.233528.74404627.imp@bsdimp.com> In-Reply-To: <20040806.233528.74404627.imp@bsdimp.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: jhb@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/acpica acpi_pci_link.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 00:01:16 -0000 M. Warner Losh wrote: > In message: <4114681D.5020902@root.org> > Nate Lawson writes: > : John Baldwin wrote: > : > On Friday 06 August 2004 12:50 am, Nate Lawson wrote: > : > > : >>njl 2004-08-06 04:50:56 UTC > : >> > : >> FreeBSD src repository > : >> > : >> Modified files: > : >> sys/dev/acpica acpi_pci_link.c > : >> Log: > : >> Refine updates to PCI irq routing. Check _STA and _CRS but only print a > : >> message if they are incorrect. Also, remove the hack of allowing the > : >> initial irq setting to not be in _PRS. As before, the old behavior can > : >>be regained by defining ACPI_OLD_PCI_LINK. > : > > : > > : > Note that I had to back out this removal of the initial IRQ hack because it > : > broke things for many people. The problem is that the current link code > : > doesn't do a good job of picking virgin IRQs. > : > > : > : I plan to take this to the logical conclusion. I agree you were on the > : right track but didn't go far enough. :) I'll send patches in a few days. > > I know that Linux uses (used) a system where it would assign weights > to the interrupts. It then would route to the least weighted > interrupt possible, and then add some factor to its weight so that it > was less likely to be picked for the next interrupt. Don't know how > well that scales, esp for SMP boxes with ioapic. The initial weights, > however, heavily biased against the interrupts used by the standard > set of PC-AT devices: 3 (sio), 4 (sio), 6 (fdc), 7 (ppc), 12 (psm) and > ata (14, 15). There was also a mask of invalid IRQs. We do that too although the algorithm can use improvement (see acpi_pci_link.c). The problem I'm fixing is that we have parallel code in acpi_pcib_route and acpi_pci_link that each does half the problem well but don't work properly together. The acpi_pcib_route code does well at handling the _PRT but fails utterly at doing a good job of routing an unrouted interrupt (it just picks the first one, which is often 3). The acpi_pci_link code has lots of heuristics for balancing interrupts and programming links but fails utterly at communicating that to the acpi_pcib_route code (it depends on _CRS being correct, which is too much to ask of BIOS authors). The end result is that things really only work well when the BIOS initializes the links for us. Luckily, that is often the case. > This degrated to a round robin assignment of interrupts that weren't > heavily weighted against. This is generically fair, but might not be > optimal for a given system (since it might round robin the two biggest > interrupt sources together)... Yes, acpi_pci_link does this. My work is to join the two, allowing them to communicate properly and eliminate duplicate code (that is not quite right). The longer term work, which jhb@ started, is to make pci links proper devices, standardize APIs, clean up acpi_pci_link, etc. -- Nate From owner-cvs-all@FreeBSD.ORG Sun Aug 8 00:04:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 663FE16A4CE; Sun, 8 Aug 2004 00:04:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4303043D2D; Sun, 8 Aug 2004 00:04:57 +0000 (GMT) (envelope-from mharo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7804vPY081846; Sun, 8 Aug 2004 00:04:57 GMT (envelope-from mharo@repoman.freebsd.org) Received: (from mharo@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7804vSD081845; Sun, 8 Aug 2004 00:04:57 GMT (envelope-from mharo) Message-Id: <200408080004.i7804vSD081845@repoman.freebsd.org> From: Michael Haro Date: Sun, 8 Aug 2004 00:04:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/mimedefang Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 00:04:57 -0000 mharo 2004-08-08 00:04:57 UTC FreeBSD ports repository Modified files: mail/mimedefang Makefile Log: add RUN_DEPENDS Approved by: maintainer Revision Changes Path 1.37 +1 -0 ports/mail/mimedefang/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 00:06:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 02CC516A4CE; Sun, 8 Aug 2004 00:06:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D83C643D1D; Sun, 8 Aug 2004 00:06:27 +0000 (GMT) (envelope-from mharo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7806RLk081997; Sun, 8 Aug 2004 00:06:27 GMT (envelope-from mharo@repoman.freebsd.org) Received: (from mharo@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7806RIK081996; Sun, 8 Aug 2004 00:06:27 GMT (envelope-from mharo) Message-Id: <200408080006.i7806RIK081996@repoman.freebsd.org> From: Michael Haro Date: Sun, 8 Aug 2004 00:06:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/proftpd Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 00:06:28 -0000 mharo 2004-08-08 00:06:27 UTC FreeBSD ports repository Modified files: ftp/proftpd Makefile distinfo Log: update to 1.2.10rc3 Revision Changes Path 1.66 +8 -2 ports/ftp/proftpd/Makefile 1.31 +2 -2 ports/ftp/proftpd/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 00:28:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77C0F16A4CE; Sun, 8 Aug 2004 00:28:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EFA643D1D; Sun, 8 Aug 2004 00:28:07 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i780S70t082516; Sun, 8 Aug 2004 00:28:07 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i780S7jd082515; Sun, 8 Aug 2004 00:28:07 GMT (envelope-from marcel) Message-Id: <200408080028.i780S7jd082515@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 8 Aug 2004 00:28:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 machdep.c trap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 00:28:07 -0000 marcel 2004-08-08 00:28:07 UTC FreeBSD src repository Modified files: sys/ia64/ia64 machdep.c trap.c Log: Implement single stepping when we leave the kernel through the EPC syscall path. The basic problem is that we cannot set the single stepping flag directly, because we don't leave the kernel via an interrupt return. So, we need another way to set the single stepping flag. The way we do this is by enabling the lower-privilege transfer trap, which gets raised when we drop the privilege level. However, since we're still running in kernel space (sec), we're not yet done. We clear the lower- privilege transfer trap, enable the taken-branch trap and continue exiting the kernel until we branch into user space. Given the current code, there's a total of two traps this way before we can raise SIGTRAP. Revision Changes Path 1.182 +22 -2 src/sys/ia64/ia64/machdep.c 1.103 +41 -2 src/sys/ia64/ia64/trap.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 00:31:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0DDC116A4CE; Sun, 8 Aug 2004 00:31:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E241743D1F; Sun, 8 Aug 2004 00:31:58 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i780VwlO082699; Sun, 8 Aug 2004 00:31:58 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i780VwmV082698; Sun, 8 Aug 2004 00:31:58 GMT (envelope-from alc) Message-Id: <200408080031.i780VwmV082698@repoman.freebsd.org> From: Alan Cox Date: Sun, 8 Aug 2004 00:31:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD 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.1 Precedence: 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, 08 Aug 2004 00:31:59 -0000 alc 2004-08-08 00:31:58 UTC FreeBSD src repository Modified files: sys/amd64/amd64 pmap.c sys/i386/i386 pmap.c Log: With the advent of pmap locking it makes sense for pmap_copy() to be less forgiving about inconsistencies in the source pmap. Also, remove a new- line character terminating a nearby panic string. Revision Changes Path 1.491 +3 -3 src/sys/amd64/amd64/pmap.c 1.494 +3 -3 src/sys/i386/i386/pmap.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 00:43:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B50CC16A4CE; Sun, 8 Aug 2004 00:43:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96C0743D41; Sun, 8 Aug 2004 00:43:21 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i780hLf3083028; Sun, 8 Aug 2004 00:43:21 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i780hLDF083027; Sun, 8 Aug 2004 00:43:21 GMT (envelope-from kientzle) Message-Id: <200408080043.i780hLDF083027@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 00:43:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive archive_write.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 00:43:21 -0000 kientzle 2004-08-08 00:43:21 UTC FreeBSD src repository Modified files: lib/libarchive archive_write.c Log: If you don't need a header, don't bother including it. Revision Changes Path 1.11 +0 -1 src/lib/libarchive/archive_write.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 00:48:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5D0F16A4CE; Sun, 8 Aug 2004 00:48:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6EB943D39; Sun, 8 Aug 2004 00:48:39 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i780mddB083184; Sun, 8 Aug 2004 00:48:39 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i780md0m083183; Sun, 8 Aug 2004 00:48:39 GMT (envelope-from kientzle) Message-Id: <200408080048.i780md0m083183@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 00:48:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive Makefile.am X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 00:48:40 -0000 kientzle 2004-08-08 00:48:39 UTC FreeBSD src repository Modified files: lib/libarchive Makefile.am Log: The configure-built Makefile wasn't installing archive.h Revision Changes Path 1.2 +3 -2 src/lib/libarchive/Makefile.am From owner-cvs-all@FreeBSD.ORG Sun Aug 8 00:52:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39C8F16A4CE; Sun, 8 Aug 2004 00:52:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19B2D43D1D; Sun, 8 Aug 2004 00:52:12 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i780qC0Y083340; Sun, 8 Aug 2004 00:52:12 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i780qBRl083339; Sun, 8 Aug 2004 00:52:12 GMT (envelope-from philip) Message-Id: <200408080052.i780qBRl083339@repoman.freebsd.org> From: Philip Paeps Date: Sun, 8 Aug 2004 00:52:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 00:52:12 -0000 philip 2004-08-08 00:52:11 UTC FreeBSD src repository Modified files: sys/isa psm.c Log: Update support for Synaptics Touchpads (Volume I) o Clean up whitespace and comments in the enable_synaptics() probing function o Only use (and rely on) the extended capability bits when we are told they actually exist o Partly ignore the (possibly dated?) part of the specification about the mode byte so that we can support 'guest devices' too. Tested by: many subscribers to -current Approved by: njl Revision Changes Path 1.72 +62 -51 src/sys/isa/psm.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 00:57:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DA4516A4CE; Sun, 8 Aug 2004 00:57:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F30CD43D46; Sun, 8 Aug 2004 00:57:07 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i780v7Ef083503; Sun, 8 Aug 2004 00:57:07 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i780v7cq083502; Sun, 8 Aug 2004 00:57:07 GMT (envelope-from philip) Message-Id: <200408080057.i780v7cq083502@repoman.freebsd.org> From: Philip Paeps Date: Sun, 8 Aug 2004 00:57:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 00:57:08 -0000 philip 2004-08-08 00:57:07 UTC FreeBSD src repository Modified files: sys/isa psm.c Log: Update support for Synaptics Touchpads (Volume II) o Handle the 'up/down' buttons some touchpads have as a z-axis (scrollwheel) as recommended by the specs o Report the buttons as button4 and button5 instead of button2 and button4, button2 can be emulated by pressing button1 and button3 simultaneously. This allows one to use the two extra buttons for other purposes if one so desires. Tested by: many subscribers to -current Approved by: njl Revision Changes Path 1.73 +26 -5 src/sys/isa/psm.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 01:00:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F2B016A4CF; Sun, 8 Aug 2004 01:00:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5186443D1D; Sun, 8 Aug 2004 01:00:32 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7810WvM083569; Sun, 8 Aug 2004 01:00:32 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7810W6H083568; Sun, 8 Aug 2004 01:00:32 GMT (envelope-from philip) Message-Id: <200408080100.i7810W6H083568@repoman.freebsd.org> From: Philip Paeps Date: Sun, 8 Aug 2004 01:00:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 01:00:32 -0000 philip 2004-08-08 01:00:31 UTC FreeBSD src repository Modified files: sys/isa psm.c Log: Update support for Synaptics Touchpads (Volume III) o Catch 'taps' as button presses o One finger sends button1, two fingers send button3, three fingers send button2 (double-click) Tested by: many subscribers to -current Approved by: njl Revision Changes Path 1.74 +26 -0 src/sys/isa/psm.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 01:02:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4C7616A4CE; Sun, 8 Aug 2004 01:02:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5AA543D31; Sun, 8 Aug 2004 01:02:11 +0000 (GMT) (envelope-from archie@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7812Be3083717; Sun, 8 Aug 2004 01:02:11 GMT (envelope-from archie@repoman.freebsd.org) Received: (from archie@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7812B3j083716; Sun, 8 Aug 2004 01:02:11 GMT (envelope-from archie) Message-Id: <200408080102.i7812B3j083716@repoman.freebsd.org> From: Archie Cobbs Date: Sun, 8 Aug 2004 01:02:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/mpd Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 01:02:12 -0000 archie 2004-08-08 01:02:11 UTC FreeBSD ports repository Modified files: net/mpd Makefile Log: Revert revision 1.38; putting back USE_OPENSSL=yes solved that problem. Revision Changes Path 1.42 +2 -2 ports/net/mpd/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 01:10:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B0D0A16A4CE; Sun, 8 Aug 2004 01:10:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9121843D41; Sun, 8 Aug 2004 01:10:23 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i781ANar083923; Sun, 8 Aug 2004 01:10:23 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i781ANak083922; Sun, 8 Aug 2004 01:10:23 GMT (envelope-from philip) Message-Id: <200408080110.i781ANak083922@repoman.freebsd.org> From: Philip Paeps Date: Sun, 8 Aug 2004 01:10:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 01:10:23 -0000 philip 2004-08-08 01:10:23 UTC FreeBSD src repository Modified files: sys/isa psm.c Log: Update support for Synaptics Touchpads (Volume IV) o Change the motion calculation to result in a more reasonable speed of motion This should fix the 'aiming' problems people have reported. It also mitigates (but doesn't completely solve) the 'stalling' problems at very low speeds. Tested by: many subscribers to -current Approved by: njl Revision Changes Path 1.75 +2 -2 src/sys/isa/psm.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 01:12:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B43316A4CE; Sun, 8 Aug 2004 01:12:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E2BA43D3F; Sun, 8 Aug 2004 01:12:05 +0000 (GMT) (envelope-from metal@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i781C5R7084044; Sun, 8 Aug 2004 01:12:05 GMT (envelope-from metal@repoman.freebsd.org) Received: (from metal@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i781C5uA084043; Sun, 8 Aug 2004 01:12:05 GMT (envelope-from metal) Message-Id: <200408080112.i781C5uA084043@repoman.freebsd.org> From: SUZUKI Koichi Date: Sun, 8 Aug 2004 01:12:05 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ja_JP.eucJP/man/man6 morse.6 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 01:12:05 -0000 metal 2004-08-08 01:12:05 UTC FreeBSD doc repository Modified files: ja_JP.eucJP/man/man6 morse.6 Log: Catch up with 5.2-CURRENT-20040625-JPSNAP Reviewed by: Watanabe Kazuhiro Approved by: kuriyama (mentor/implicitly) Revision Changes Path 1.12 +26 -25 doc/ja_JP.eucJP/man/man6/morse.6 From owner-cvs-all@FreeBSD.ORG Sun Aug 8 01:13:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BD7616A4CE; Sun, 8 Aug 2004 01:13:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33A8E43D1F; Sun, 8 Aug 2004 01:13:58 +0000 (GMT) (envelope-from metal@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i781DwpG084108; Sun, 8 Aug 2004 01:13:58 GMT (envelope-from metal@repoman.freebsd.org) Received: (from metal@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i781DwMP084107; Sun, 8 Aug 2004 01:13:58 GMT (envelope-from metal) Message-Id: <200408080113.i781DwMP084107@repoman.freebsd.org> From: SUZUKI Koichi Date: Sun, 8 Aug 2004 01:13:58 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ja_JP.eucJP/man/man7 build.7 firewall.7 hier.7 ports.7 release.7 security.7 tuning.7 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 01:13:58 -0000 metal 2004-08-08 01:13:58 UTC FreeBSD doc repository Modified files: ja_JP.eucJP/man/man7 build.7 firewall.7 hier.7 ports.7 release.7 security.7 tuning.7 Log: Catch up with 5.2-CURRENT-20040625-JPSNAP Reviewed by: Watanabe Kazuhiro Approved by: kuriyama (mentor/implicitly) Revision Changes Path 1.6 +2 -2 doc/ja_JP.eucJP/man/man7/build.7 1.8 +3 -3 doc/ja_JP.eucJP/man/man7/firewall.7 1.39 +42 -21 doc/ja_JP.eucJP/man/man7/hier.7 1.28 +79 -9 doc/ja_JP.eucJP/man/man7/ports.7 1.15 +23 -1 doc/ja_JP.eucJP/man/man7/release.7 1.31 +309 -191 doc/ja_JP.eucJP/man/man7/security.7 1.21 +3 -13 doc/ja_JP.eucJP/man/man7/tuning.7 From owner-cvs-all@FreeBSD.ORG Sun Aug 8 01:21:10 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A84CB16A4CE; Sun, 8 Aug 2004 01:21:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88F4443D39; Sun, 8 Aug 2004 01:21:10 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i781LAUU084351; Sun, 8 Aug 2004 01:21:10 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i781LAUs084350; Sun, 8 Aug 2004 01:21:10 GMT (envelope-from kientzle) Message-Id: <200408080121.i781LAUs084350@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 01:21:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive archive_read_support_format_tar.c archive_write_set_format_pax.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 01:21:10 -0000 kientzle 2004-08-08 01:21:10 UTC FreeBSD src repository Modified files: lib/libarchive archive_read_support_format_tar.c archive_write_set_format_pax.c Log: Use 'int' for certain wide-character conversions instead of wchar_t. That quiets some compiler warnings on platforms with 16-bit wchar_t. With this change, libarchive now compiles cleanly on Win32/cygwin. Revision Changes Path 1.24 +7 -3 src/lib/libarchive/archive_read_support_format_tar.c 1.16 +1 -1 src/lib/libarchive/archive_write_set_format_pax.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 01:23:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3D7016A4CE; Sun, 8 Aug 2004 01:23:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D482743D53; Sun, 8 Aug 2004 01:23:39 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i781Ndm6084415; Sun, 8 Aug 2004 01:23:39 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i781Ndkf084414; Sun, 8 Aug 2004 01:23:39 GMT (envelope-from sanpei) Message-Id: <200408080123.i781Ndkf084414@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Sun, 8 Aug 2004 01:23:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/bktr bktr_card.c bktr_card.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 01:23:40 -0000 sanpei 2004-08-08 01:23:39 UTC FreeBSD src repository Modified files: sys/dev/bktr bktr_card.c bktr_card.h Log: Add support AOpen VA1000 video capture card PR: kern/62146 Submitted by: HASHI Hiroaki MFC after: 1 week Revision Changes Path 1.24 +12 -0 src/sys/dev/bktr/bktr_card.c 1.7 +3 -2 src/sys/dev/bktr/bktr_card.h From owner-cvs-all@FreeBSD.ORG Sun Aug 8 01:26:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5070C16A4CE; Sun, 8 Aug 2004 01:26:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 312E843D49; Sun, 8 Aug 2004 01:26:00 +0000 (GMT) (envelope-from philip@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i781Q0qr084546; Sun, 8 Aug 2004 01:26:00 GMT (envelope-from philip@repoman.freebsd.org) Received: (from philip@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i781Q0od084545; Sun, 8 Aug 2004 01:26:00 GMT (envelope-from philip) Message-Id: <200408080126.i781Q0od084545@repoman.freebsd.org> From: Philip Paeps Date: Sun, 8 Aug 2004 01:26:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 01:26:00 -0000 philip 2004-08-08 01:26:00 UTC FreeBSD src repository Modified files: sys/isa psm.c Log: Assume a finger of regular width when no width value is reported by the touchpad (which happens when it has no extended capabilities). Spotted by: dhw Forgotten by: philip Revision Changes Path 1.76 +10 -3 src/sys/isa/psm.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 01:30:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 38B2D16A4CE; Sun, 8 Aug 2004 01:30:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1914943D39; Sun, 8 Aug 2004 01:30:31 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i781UU4f084669; Sun, 8 Aug 2004 01:30:31 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i781UUtM084668; Sun, 8 Aug 2004 01:30:30 GMT (envelope-from kientzle) Message-Id: <200408080130.i781UUtM084668@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 01:30:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar configure.ac.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 01:30:31 -0000 kientzle 2004-08-08 01:30:30 UTC FreeBSD src repository Modified files: usr.bin/tar configure.ac.in Log: Minor portability fixes. bsdtar now compiles on Win32/cygwin, though it doesn't yet seem to work entirely correctly. Revision Changes Path 1.3 +18 -2 src/usr.bin/tar/configure.ac.in From owner-cvs-all@FreeBSD.ORG Sun Aug 8 01:34:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFC3D16A4CE; Sun, 8 Aug 2004 01:34:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9237243D39; Sun, 8 Aug 2004 01:34:36 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i781Yacs084786; Sun, 8 Aug 2004 01:34:36 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i781YaSt084785; Sun, 8 Aug 2004 01:34:36 GMT (envelope-from sanpei) Message-Id: <200408080134.i781YaSt084785@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Sun, 8 Aug 2004 01:34:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/cam/scsi scsi_da.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 01:34:36 -0000 sanpei 2004-08-08 01:34:36 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) sys/cam/scsi scsi_da.c Log: Whitespace cleanup that was missed by quirks commit 1.42.2.52 Revision Changes Path 1.42.2.53 +7 -7 src/sys/cam/scsi/scsi_da.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 01:49:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F67A16A4CE; Sun, 8 Aug 2004 01:49:11 +0000 (GMT) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 701F243D3F; Sun, 8 Aug 2004 01:49:10 +0000 (GMT) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.13.1/8.13.1) with ESMTP id i781n33h006487; Sun, 8 Aug 2004 05:49:03 +0400 (MSD) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.13.1/8.13.1/Submit) id i781n3P9006481; Sun, 8 Aug 2004 05:49:03 +0400 (MSD) (envelope-from ache) Date: Sun, 8 Aug 2004 05:49:00 +0400 From: Andrey Chernov To: Tim Kientzle Message-ID: <20040808014858.GA6397@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Tim Kientzle , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200408080121.i781LAUs084350@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408080121.i781LAUs084350@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-AntiVirus: checked by AntiVir Milter 1.1-beta; AVE 6.26.0.10; VDF 6.26.0.63 (host: pobrecita.freebsd.ru) cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/lib/libarchive archive_read_support_format_tar.c archive_write_set_format_pax.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 01:49:11 -0000 On Sun, Aug 08, 2004 at 01:21:10AM +0000, Tim Kientzle wrote: > kientzle 2004-08-08 01:21:10 UTC > > FreeBSD src repository > > Modified files: > lib/libarchive archive_read_support_format_tar.c > archive_write_set_format_pax.c > Log: > Use 'int' for certain wide-character conversions instead of wchar_t. > That quiets some compiler warnings on platforms with 16-bit wchar_t. > With this change, libarchive now compiles cleanly on Win32/cygwin. int is wrong choice. wchar_t >= size of char, =< size of long -- Andrey Chernov | http://ache.pp.ru/ From owner-cvs-all@FreeBSD.ORG Sun Aug 8 01:52:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2184F16A4CE; Sun, 8 Aug 2004 01:52:02 +0000 (GMT) Received: from nagual.pp.ru (pobrecita.freebsd.ru [194.87.13.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C4B643D3F; Sun, 8 Aug 2004 01:52:01 +0000 (GMT) (envelope-from ache@pobrecita.freebsd.ru) Received: from pobrecita.freebsd.ru (ache@localhost [127.0.0.1]) by nagual.pp.ru (8.13.1/8.13.1) with ESMTP id i781psXA006535; Sun, 8 Aug 2004 05:51:54 +0400 (MSD) (envelope-from ache@pobrecita.freebsd.ru) Received: (from ache@localhost) by pobrecita.freebsd.ru (8.13.1/8.13.1/Submit) id i781pssO006534; Sun, 8 Aug 2004 05:51:54 +0400 (MSD) (envelope-from ache) Date: Sun, 8 Aug 2004 05:51:52 +0400 From: Andrey Chernov To: Tim Kientzle , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG Message-ID: <20040808015152.GB6397@nagual.pp.ru> Mail-Followup-To: Andrey Chernov , Tim Kientzle , src-committers@FreeBSD.ORG, cvs-src@FreeBSD.ORG, cvs-all@FreeBSD.ORG References: <200408080121.i781LAUs084350@repoman.freebsd.org> <20040808014858.GA6397@nagual.pp.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040808014858.GA6397@nagual.pp.ru> User-Agent: Mutt/1.5.6i X-AntiVirus: checked by AntiVir Milter 1.1-beta; AVE 6.26.0.10; VDF 6.26.0.63 (host: pobrecita.freebsd.ru) Subject: Re: cvs commit: src/lib/libarchive archive_read_support_format_tar.c archive_write_set_format_pax.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 01:52:02 -0000 On Sun, Aug 08, 2004 at 05:49:00AM +0400, Andrey Chernov wrote: > > int is wrong choice. > wchar_t >= size of char, =< size of long To be more specific, even all bits of long can be occuped, so most safe type for conversion will be unsigned long -- Andrey Chernov | http://ache.pp.ru/ From owner-cvs-all@FreeBSD.ORG Sun Aug 8 02:22:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9249C16A4CE; Sun, 8 Aug 2004 02:22:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7450243D1F; Sun, 8 Aug 2004 02:22:48 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i782Mmhl086167; Sun, 8 Aug 2004 02:22:48 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i782MmG8086166; Sun, 8 Aug 2004 02:22:48 GMT (envelope-from kientzle) Message-Id: <200408080222.i782MmG8086166@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 02:22:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive archive_read_support_format_tar.c archive_write_set_format_pax.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 02:22:48 -0000 kientzle 2004-08-08 02:22:48 UTC FreeBSD src repository Modified files: lib/libarchive archive_read_support_format_tar.c archive_write_set_format_pax.c Log: Oops. Use "unsigned long" instead of "int" for the intermediate variables in wide-character conversions, since it's guaranteed to be large enough. Thanks to: Andrey Chernov Revision Changes Path 1.25 +1 -1 src/lib/libarchive/archive_read_support_format_tar.c 1.17 +6 -8 src/lib/libarchive/archive_write_set_format_pax.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 02:34:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98AB716A4CE; Sun, 8 Aug 2004 02:34:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B2DD43D45; Sun, 8 Aug 2004 02:34:29 +0000 (GMT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i782YTxV086437; Sun, 8 Aug 2004 02:34:29 GMT (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i782YTjj086436; Sun, 8 Aug 2004 02:34:29 GMT (envelope-from glewis) Message-Id: <200408080234.i782YTjj086436@repoman.freebsd.org> From: Greg Lewis Date: Sun, 8 Aug 2004 02:34:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/mysql-connector-java Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 02:34:29 -0000 glewis 2004-08-08 02:34:29 UTC FreeBSD ports repository Modified files: databases/mysql-connector-java Makefile Log: . Avoid having to reproduce the ant build lines with some conditional target definition. Approved by: Matthew Seaman (maintainer) Revision Changes Path 1.26 +3 -3 ports/databases/mysql-connector-java/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 02:37:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 905EE16A4CE; Sun, 8 Aug 2004 02:37:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 730DF43D46; Sun, 8 Aug 2004 02:37:22 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i782bMpP086655; Sun, 8 Aug 2004 02:37:22 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i782bMSB086654; Sun, 8 Aug 2004 02:37:22 GMT (envelope-from jmg) Message-Id: <200408080237.i782bMSB086654@repoman.freebsd.org> From: John-Mark Gurney Date: Sun, 8 Aug 2004 02:37:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_taskqueue.c src/sys/sys taskqueue.h src/share/man/man9 taskqueue.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 02:37:22 -0000 jmg 2004-08-08 02:37:22 UTC FreeBSD src repository Modified files: sys/kern subr_taskqueue.c sys/sys taskqueue.h share/man/man9 taskqueue.9 Log: rearange some code that handles the thread taskqueue so that it is more generic. Introduce a new define TASKQUEUE_DEFINE_THREAD that takes a single arg, which is the name of the queue. Document these changes. Revision Changes Path 1.12 +17 -5 src/share/man/man9/taskqueue.9 1.24 +16 -13 src/sys/kern/subr_taskqueue.c 1.11 +11 -0 src/sys/sys/taskqueue.h From owner-cvs-all@FreeBSD.ORG Sun Aug 8 03:21:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0678816A4CE; Sun, 8 Aug 2004 03:21:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE9DA43D4C; Sun, 8 Aug 2004 03:21:37 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i783Lbnu088002; Sun, 8 Aug 2004 03:21:37 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i783LbkQ088001; Sun, 8 Aug 2004 03:21:37 GMT (envelope-from alfred) Message-Id: <200408080321.i783LbkQ088001@repoman.freebsd.org> From: Alfred Perlstein Date: Sun, 8 Aug 2004 03:21:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys param.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 03:21:38 -0000 alfred 2004-08-08 03:21:37 UTC FreeBSD src repository Modified files: sys/sys param.h Log: Bump __FreeBSD_version for vfs_mount signature change. Revision Changes Path 1.209 +1 -1 src/sys/sys/param.h From owner-cvs-all@FreeBSD.ORG Sun Aug 8 03:22:10 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13A5416A4CE; Sun, 8 Aug 2004 03:22:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA25543D49; Sun, 8 Aug 2004 03:22:09 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i783M9Ug088040; Sun, 8 Aug 2004 03:22:09 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i783M9IB088039; Sun, 8 Aug 2004 03:22:09 GMT (envelope-from alfred) Message-Id: <200408080322.i783M9IB088039@repoman.freebsd.org> From: Alfred Perlstein Date: Sun, 8 Aug 2004 03:22:09 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/porters-handbook book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 03:22:10 -0000 alfred 2004-08-08 03:22:09 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: Bump __FreeBSD_version for vfs_mount signature change. Revision Changes Path 1.472 +6 -0 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 03:35:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C02216A4CE; Sun, 8 Aug 2004 03:35:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E81143D3F; Sun, 8 Aug 2004 03:35:52 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i783ZqT7088424; Sun, 8 Aug 2004 03:35:52 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i783ZqHh088423; Sun, 8 Aug 2004 03:35:52 GMT (envelope-from alfred) Message-Id: <200408080335.i783ZqHh088423@repoman.freebsd.org> From: Alfred Perlstein Date: Sun, 8 Aug 2004 03:35:52 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/porters-handbook book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 03:35:52 -0000 alfred 2004-08-08 03:35:52 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: 502127 also marks the global replacement of PRISON_ROOT with SUSER_JAILOK. Revision Changes Path 1.473 +3 -1 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 04:27:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E80016A4CF; Sun, 8 Aug 2004 04:27:06 +0000 (GMT) Received: from ylpvm15.prodigy.net (ylpvm15-ext.prodigy.net [207.115.57.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCABF43D3F; Sun, 8 Aug 2004 04:27:05 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (adsl-67-115-74-195.dsl.lsan03.pacbell.net [67.115.74.195]) i784R6jx012748; Sun, 8 Aug 2004 00:27:07 -0400 Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 0ADED513B6; Sat, 7 Aug 2004 21:27:04 -0700 (PDT) Date: Sat, 7 Aug 2004 21:27:03 -0700 From: Kris Kennaway To: John Baldwin Message-ID: <20040808042703.GA64746@xor.obsecurity.org> References: <200408042031.i74KVKUf039025@repoman.freebsd.org> <200408041634.03998.jhb@FreeBSD.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="J/dobhs11T7y2rNN" Content-Disposition: inline In-Reply-To: <200408041634.03998.jhb@FreeBSD.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c src/sys/kern subr_witness.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 04:27:06 -0000 --J/dobhs11T7y2rNN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 04, 2004 at 04:34:03PM -0400, John Baldwin wrote: > On Wednesday 04 August 2004 04:31 pm, John Baldwin wrote: > > jhb 2004-08-04 20:31:19 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/i386/i386 pmap.c > > sys/kern subr_witness.c > > Log: > > Remove a potential deadlock on i386 SMP by changing the lazypmap ipi = and > > spin-wait code to use the same spin mutex (smp_tlb_mtx) as the TLB ipi > > and spin-wait code snippets so that you can't get into the situation = of > > one CPU doing a TLB shootdown to another CPU that is doing a lazy pmap > > shootdown each of which are waiting on each other. With this change, > > only one of the CPUs would do an IPI and spin-wait at a time. >=20 > Both this patch and the previous I have tested locally and also sent out = to=20 > current@ for testing. However, I received zero feedback (not even useles= s=20 > feedback), so they may theoretically be risky. Isn't this the patch I tested for you and reported that it did not fix the problem? Kris --J/dobhs11T7y2rNN Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBFauXWry0BWjoQKURAtsSAJwLfr/lnd0zZHfqElt5mrLNikajYQCg7Al9 IKfOqloZUDxUB7G9tvBbSnw= =g0s5 -----END PGP SIGNATURE----- --J/dobhs11T7y2rNN-- From owner-cvs-all@FreeBSD.ORG Sun Aug 8 04:36:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B7F116A4CF; Sun, 8 Aug 2004 04:36:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CA5043D46; Sun, 8 Aug 2004 04:36:32 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i784aWTe089887; Sun, 8 Aug 2004 04:36:32 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i784aWQs089886; Sun, 8 Aug 2004 04:36:32 GMT (envelope-from kientzle) Message-Id: <200408080436.i784aWQs089886@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 04:36:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar bsdtar_platform.h configure.ac.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 04:36:32 -0000 kientzle 2004-08-08 04:36:32 UTC FreeBSD src repository Modified files: usr.bin/tar bsdtar_platform.h configure.ac.in Log: Another pointy-hat problem: PACKAGE_VERSION macro is set in CFLAGS, it shouldn't be in bsdtar_platform.h. Thanks to: Andrey Chernov for looking over my shoulder so much lately. Revision Changes Path 1.10 +0 -1 src/usr.bin/tar/bsdtar_platform.h 1.4 +0 -2 src/usr.bin/tar/configure.ac.in From owner-cvs-all@FreeBSD.ORG Sun Aug 8 04:40:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8137916A4CF; Sun, 8 Aug 2004 04:40:25 +0000 (GMT) Received: from randomservers.com (randomservers.com [69.55.237.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5795543D41; Sun, 8 Aug 2004 04:40:21 +0000 (GMT) (envelope-from joseph@randomnetworks.com) Received: from [192.168.1.101] (c-24-7-164-83.client.comcast.net [24.7.164.83]) (authenticated bits=0) by randomservers.com (8.12.10/8.12.6) with ESMTP id i784eJER061173 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO); Sat, 7 Aug 2004 21:40:19 -0700 (PDT) (envelope-from joseph@randomnetworks.com) X-Authentication-Warning: randomservers.com: Host c-24-7-164-83.client.comcast.net [24.7.164.83] claimed to be [192.168.1.101] In-Reply-To: <200408080006.i7806RIK081996@repoman.freebsd.org> References: <200408080006.i7806RIK081996@repoman.freebsd.org> Mime-Version: 1.0 (Apple Message framework v618) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <11CECDDA-E8F5-11D8-8A88-000A95AD0296@randomnetworks.com> Content-Transfer-Encoding: 7bit From: Joseph Scott Date: Sat, 7 Aug 2004 21:40:27 -0700 To: Michael Haro X-Mailer: Apple Mail (2.618) X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=0.0 required=7.0 tests=none autolearn=no version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on randomservers.com cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/ftp/proftpd Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 04:40:25 -0000 On Aug 7, 2004, at 5:06 PM, Michael Haro wrote: > mharo 2004-08-08 00:06:27 UTC > > FreeBSD ports repository > > Modified files: > ftp/proftpd Makefile distinfo > Log: > update to 1.2.10rc3 This looks like it was PR ports/70035. -- Joseph Scott From owner-cvs-all@FreeBSD.ORG Sun Aug 8 05:10:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9687116A4CF; Sun, 8 Aug 2004 05:10:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76C1E43D46; Sun, 8 Aug 2004 05:10:11 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i785ABEV090689; Sun, 8 Aug 2004 05:10:11 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i785ABSb090688; Sun, 8 Aug 2004 05:10:11 GMT (envelope-from kientzle) Message-Id: <200408080510.i785ABSb090688@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 05:10:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar bsdtar.c bsdtar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 05:10:11 -0000 kientzle 2004-08-08 05:10:11 UTC FreeBSD src repository Modified files: usr.bin/tar bsdtar.c bsdtar.h Log: It shouldn't be an error to specify the same mode twice: allow -cc but not -ct. Thanks to: Christoph Mallon (whose proposed patch was actually simpler than what I ended up with) Revision Changes Path 1.49 +37 -50 src/usr.bin/tar/bsdtar.c 1.19 +1 -0 src/usr.bin/tar/bsdtar.h From owner-cvs-all@FreeBSD.ORG Sun Aug 8 05:21:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25D1E16A4CE; Sun, 8 Aug 2004 05:21:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05C1243D2F; Sun, 8 Aug 2004 05:21:57 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i785LuP0091052; Sun, 8 Aug 2004 05:21:56 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i785LuJR091051; Sun, 8 Aug 2004 05:21:56 GMT (envelope-from sanpei) Message-Id: <200408080521.i785LuJR091051@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Sun, 8 Aug 2004 05:21:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 uplcom.4 src/sys/dev/usb uplcom.c usbdevs X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 05:21:57 -0000 sanpei 2004-08-08 05:21:56 UTC FreeBSD src repository Modified files: share/man/man4 uplcom.4 sys/dev/usb uplcom.c usbdevs Log: Add support to Sony Ericsson USB Cable(Susteen USB Data Cable) PR: kern/66416 Submitted by: Fredrik Lindberg MFC after: 1 week Revision Changes Path 1.7 +2 -0 src/share/man/man4/uplcom.4 1.20 +2 -0 src/sys/dev/usb/uplcom.c 1.192 +4 -0 src/sys/dev/usb/usbdevs From owner-cvs-all@FreeBSD.ORG Sun Aug 8 05:33:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F79316A4CE; Sun, 8 Aug 2004 05:33:22 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id F285643D48; Sun, 8 Aug 2004 05:33:21 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id E48D45C8D3; Sat, 7 Aug 2004 22:33:21 -0700 (PDT) Date: Sat, 7 Aug 2004 22:33:21 -0700 From: Alfred Perlstein To: Kris Kennaway Message-ID: <20040808053321.GD57908@elvis.mu.org> References: <200408042031.i74KVKUf039025@repoman.freebsd.org> <200408041634.03998.jhb@FreeBSD.org> <20040808042703.GA64746@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040808042703.GA64746@xor.obsecurity.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: John Baldwin Subject: Re: cvs commit: src/sys/i386/i386 pmap.c src/sys/kern subr_witness.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 05:33:22 -0000 * Kris Kennaway [040807 21:28] wrote: > On Wed, Aug 04, 2004 at 04:34:03PM -0400, John Baldwin wrote: > > On Wednesday 04 August 2004 04:31 pm, John Baldwin wrote: > > > jhb 2004-08-04 20:31:19 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/i386/i386 pmap.c > > > sys/kern subr_witness.c > > > Log: > > > Remove a potential deadlock on i386 SMP by changing the lazypmap ipi and > > > spin-wait code to use the same spin mutex (smp_tlb_mtx) as the TLB ipi > > > and spin-wait code snippets so that you can't get into the situation of > > > one CPU doing a TLB shootdown to another CPU that is doing a lazy pmap > > > shootdown each of which are waiting on each other. With this change, > > > only one of the CPUs would do an IPI and spin-wait at a time. > > > > Both this patch and the previous I have tested locally and also sent out to > > current@ for testing. However, I received zero feedback (not even useless > > feedback), so they may theoretically be risky. > > Isn't this the patch I tested for you and reported that it did not fix > the problem? Y'know there's some existing research on these sort of low level deadlocks, ie. how to do TLB shootdown without deadlock in: "UNIX Internals: The New Frontiers" -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-all@FreeBSD.ORG Sun Aug 8 05:41:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D1CA16A4CE; Sun, 8 Aug 2004 05:41:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DECB43D46; Sun, 8 Aug 2004 05:41:03 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i785f3Mh091615; Sun, 8 Aug 2004 05:41:03 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i785f3SZ091614; Sun, 8 Aug 2004 05:41:03 GMT (envelope-from krion) Message-Id: <200408080541.i785f3SZ091614@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 8 Aug 2004 05:41:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/treecc Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 05:41:03 -0000 krion 2004-08-08 05:41:03 UTC FreeBSD ports repository Modified files: lang/treecc Makefile distinfo Log: Update to 0.3.2 PR: ports/70150 Submitted by: maintainer Revision Changes Path 1.26 +1 -1 ports/lang/treecc/Makefile 1.13 +2 -2 ports/lang/treecc/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 05:45:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6666316A4CE; Sun, 8 Aug 2004 05:45:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46ECB43D2F; Sun, 8 Aug 2004 05:45:13 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i785jDSW091750; Sun, 8 Aug 2004 05:45:13 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i785jDB9091749; Sun, 8 Aug 2004 05:45:13 GMT (envelope-from krion) Message-Id: <200408080545.i785jDB9091749@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 8 Aug 2004 05:45:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/trafshow Makefile distinfo ports/net/trafshow/files patch-ah X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 05:45:13 -0000 krion 2004-08-08 05:45:13 UTC FreeBSD ports repository Modified files: net/trafshow Makefile distinfo Removed files: net/trafshow/files patch-ah Log: Update to 4.0 PR: ports/70152 Submitted by: maintainer Revision Changes Path 1.27 +2 -3 ports/net/trafshow/Makefile 1.4 +2 -2 ports/net/trafshow/distinfo 1.2 +0 -119 ports/net/trafshow/files/patch-ah (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 05:50:10 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3AB416A4CE; Sun, 8 Aug 2004 05:50:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94A9C43D48; Sun, 8 Aug 2004 05:50:10 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i785oAIK091901; Sun, 8 Aug 2004 05:50:10 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i785oAHK091900; Sun, 8 Aug 2004 05:50:10 GMT (envelope-from kientzle) Message-Id: <200408080550.i785oAHK091900@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 05:50:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar bsdtar.c bsdtar.h read.c util.c write.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 05:50:10 -0000 kientzle 2004-08-08 05:50:10 UTC FreeBSD src repository Modified files: usr.bin/tar bsdtar.c bsdtar.h read.c util.c write.c Log: Move the smart chdir logic into a couple of utility functions in util.c. Then use them to provide consistent -C support throughout the program. Thanks to: Christoph Mallon Revision Changes Path 1.50 +1 -2 src/usr.bin/tar/bsdtar.c 1.20 +3 -1 src/usr.bin/tar/bsdtar.h 1.19 +1 -4 src/usr.bin/tar/read.c 1.11 +58 -0 src/usr.bin/tar/util.c 1.32 +3 -78 src/usr.bin/tar/write.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 06:28:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A83616A4CE; Sun, 8 Aug 2004 06:28:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 418CA43D39; Sun, 8 Aug 2004 06:28:46 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i786Skuf092867; Sun, 8 Aug 2004 06:28:46 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i786Sk4q092866; Sun, 8 Aug 2004 06:28:46 GMT (envelope-from krion) Message-Id: <200408080628.i786Sk4q092866@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 8 Aug 2004 06:28:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/ale Makefile distinfo ports/graphics/ale/files patch-Makefile patch-channel.h patch-ppm.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 06:28:46 -0000 krion 2004-08-08 06:28:45 UTC FreeBSD ports repository Modified files: graphics/ale Makefile distinfo Added files: graphics/ale/files patch-Makefile Removed files: graphics/ale/files patch-channel.h patch-ppm.h Log: Update to 0.7.0 PR: ports/70144 Submitted by: Michael Johnson Revision Changes Path 1.5 +29 -12 ports/graphics/ale/Makefile 1.3 +2 -6 ports/graphics/ale/distinfo 1.1 +19 -0 ports/graphics/ale/files/patch-Makefile (new) 1.2 +0 -11 ports/graphics/ale/files/patch-channel.h (dead) 1.2 +0 -11 ports/graphics/ale/files/patch-ppm.h (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 06:36:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DA4E16A4CE; Sun, 8 Aug 2004 06:36:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A41C43D53; Sun, 8 Aug 2004 06:36:04 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i786a3nL093117; Sun, 8 Aug 2004 06:36:03 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i786a3sZ093116; Sun, 8 Aug 2004 06:36:03 GMT (envelope-from kientzle) Message-Id: <200408080636.i786a3sZ093116@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 06:36:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar write.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 06:36:04 -0000 kientzle 2004-08-08 06:36:03 UTC FreeBSD src repository Modified files: usr.bin/tar write.c Log: Better low-memory handling: If the link cache runs out of memory, just throw out the whole thing and stop tracking links entirely. That will break all remaining hardlinks, but should free up enough memory to let everything finish. Revision Changes Path 1.33 +36 -35 src/usr.bin/tar/write.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 06:46:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3BD1516A4CE; Sun, 8 Aug 2004 06:46:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BC3143D1F; Sun, 8 Aug 2004 06:46:28 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i786kRlE093408; Sun, 8 Aug 2004 06:46:27 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i786kRY3093407; Sun, 8 Aug 2004 06:46:27 GMT (envelope-from phk) Message-Id: <200408080646.i786kRY3093407@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 06:46:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom.h geom_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 06:46:28 -0000 phk 2004-08-08 06:46:27 UTC FreeBSD src repository Modified files: sys/geom geom.h geom_subr.c Log: Give classes a version number and refuse to touch classes which are not understood. This makes room for additional binary compatibility in the future. Put fields in the class for the geom's methods and initialize the methods of a new geom from these fields. This saves some code in all classes. Revision Changes Path 1.84 +13 -0 src/sys/geom/geom.h 1.79 +14 -0 src/sys/geom/geom_subr.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 06:47:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10CE116A4CE; Sun, 8 Aug 2004 06:47:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E40D243D2F; Sun, 8 Aug 2004 06:47:43 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i786lhi9093451; Sun, 8 Aug 2004 06:47:43 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i786lhgm093450; Sun, 8 Aug 2004 06:47:43 GMT (envelope-from phk) Message-Id: <200408080647.i786lhgm093450@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 06:47:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/md md.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 06:47:44 -0000 phk 2004-08-08 06:47:43 UTC FreeBSD src repository Modified files: sys/dev/md md.c Log: Use a ->fini() from the geom class to destroy the control device. Use default initialization of geom methods. Revision Changes Path 1.126 +19 -40 src/sys/dev/md/md.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 06:49:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0640716A4CE; Sun, 8 Aug 2004 06:49:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F034043D3F; Sun, 8 Aug 2004 06:49:07 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i786n7a0093556; Sun, 8 Aug 2004 06:49:07 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i786n7MM093555; Sun, 8 Aug 2004 06:49:07 GMT (envelope-from phk) Message-Id: <200408080649.i786n7MM093555@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 06:49:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_aes.c geom_apple.c geom_bsd.c geom_ccd.c geom_dev.c geom_disk.c geom_fox.c geom_gpt.c geom_mbr.c geom_pc98.c geom_sunlabel.c src/sys/geom/bde g_bde.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 06:49:08 -0000 phk 2004-08-08 06:49:07 UTC FreeBSD src repository Modified files: sys/geom geom_aes.c geom_apple.c geom_bsd.c geom_ccd.c geom_dev.c geom_disk.c geom_fox.c geom_gpt.c geom_mbr.c geom_pc98.c geom_sunlabel.c sys/geom/bde g_bde.c Log: Use default method initialization on geoms. Revision Changes Path 1.27 +4 -4 src/sys/geom/bde/g_bde.c 1.25 +4 -4 src/sys/geom/geom_aes.c 1.15 +1 -1 src/sys/geom/geom_apple.c 1.69 +2 -7 src/sys/geom/geom_bsd.c 1.151 +3 -3 src/sys/geom/geom_ccd.c 1.78 +1 -1 src/sys/geom/geom_dev.c 1.90 +7 -4 src/sys/geom/geom_disk.c 1.7 +4 -4 src/sys/geom/geom_fox.c 1.29 +1 -1 src/sys/geom/geom_gpt.c 1.59 +3 -3 src/sys/geom/geom_mbr.c 1.46 +2 -2 src/sys/geom/geom_pc98.c 1.42 +1 -1 src/sys/geom/geom_sunlabel.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 06:54:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D97316A4CE; Sun, 8 Aug 2004 06:54:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C4C443D53; Sun, 8 Aug 2004 06:54:58 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i786swuV093845; Sun, 8 Aug 2004 06:54:58 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i786swn3093844; Sun, 8 Aug 2004 06:54:58 GMT (envelope-from mat) Message-Id: <200408080654.i786swn3093844@repoman.freebsd.org> From: Mathieu Arnold Date: Sun, 8 Aug 2004 06:54:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel Makefile ports/devel/p5-Devel-PPPort Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 06:54:58 -0000 mat 2004-08-08 06:54:58 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Devel-PPPort Makefile distinfo pkg-descr pkg-plist Log: Add p5-Devel-PPPort 2.99.01, Perl/Pollution/Portability. Revision Changes Path 1.1667 +1 -0 ports/devel/Makefile 1.1 +23 -0 ports/devel/p5-Devel-PPPort/Makefile (new) 1.1 +2 -0 ports/devel/p5-Devel-PPPort/distinfo (new) 1.1 +19 -0 ports/devel/p5-Devel-PPPort/pkg-descr (new) 1.1 +7 -0 ports/devel/p5-Devel-PPPort/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 06:55:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0455116A4CE; Sun, 8 Aug 2004 06:55:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9E9543D3F; Sun, 8 Aug 2004 06:55:46 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i786tkRj093938; Sun, 8 Aug 2004 06:55:46 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i786tkvE093937; Sun, 8 Aug 2004 06:55:46 GMT (envelope-from mat) Message-Id: <200408080655.i786tkvE093937@repoman.freebsd.org> From: Mathieu Arnold Date: Sun, 8 Aug 2004 06:55:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 06:55:47 -0000 mat 2004-08-08 06:55:46 UTC FreeBSD ports repository Modified files: . modules Log: p5-Devel-PPPort --> ports/devel/p5-Devel-PPPort Revision Changes Path 1.10839 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Aug 8 07:07:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A63FA16A4CE; Sun, 8 Aug 2004 07:07:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86BB743D55; Sun, 8 Aug 2004 07:07:35 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7877ZUu094419; Sun, 8 Aug 2004 07:07:35 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7877ZWX094418; Sun, 8 Aug 2004 07:07:35 GMT (envelope-from marcus) Message-Id: <200408080707.i7877ZWX094418@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 8 Aug 2004 07:07:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mozilla Makefile distinfo pkg-deinstall.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 07:07:35 -0000 marcus 2004-08-08 07:07:35 UTC FreeBSD ports repository Modified files: www/mozilla Makefile distinfo Added files: www/mozilla pkg-deinstall.in Log: Update to 1.7.2 to fix a few security vulnerabilities, and add a pkg-deinstall script to clean up left over automatically-generated files. Revision Changes Path 1.168 +4 -1 ports/www/mozilla/Makefile 1.69 +2 -2 ports/www/mozilla/distinfo 1.1 +22 -0 ports/www/mozilla/pkg-deinstall.in (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 07:09:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B486516A4CE; Sun, 8 Aug 2004 07:09:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93FB343D55; Sun, 8 Aug 2004 07:09:43 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7879hJP094491; Sun, 8 Aug 2004 07:09:43 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7879hVh094490; Sun, 8 Aug 2004 07:09:43 GMT (envelope-from sanpei) Message-Id: <200408080709.i7879hVh094490@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Sun, 8 Aug 2004 07:09:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb umass.c usbdevs X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 07:09:43 -0000 sanpei 2004-08-08 07:09:43 UTC FreeBSD src repository Modified files: sys/dev/usb umass.c usbdevs Log: Add support Sony Handycam TRV-30 memory stick slot PR: kern/69915 Submitted by: Christian Gusenbauer MFC after: 1 week Revision Changes Path 1.109 +4 -0 src/sys/dev/usb/umass.c 1.193 +1 -0 src/sys/dev/usb/usbdevs From owner-cvs-all@FreeBSD.ORG Sun Aug 8 07:30:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 343F116A4CE; Sun, 8 Aug 2004 07:30:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 159AF43D62; Sun, 8 Aug 2004 07:30:48 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i787UlI8095170; Sun, 8 Aug 2004 07:30:47 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i787UlkH095169; Sun, 8 Aug 2004 07:30:47 GMT (envelope-from phk) Message-Id: <200408080730.i787UlkH095169@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 07:30:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 07:30:48 -0000 phk 2004-08-08 07:30:47 UTC FreeBSD src repository Modified files: sys/geom geom_subr.c Log: OOps, that check was a bit premature. Allow zero versions as well. Revision Changes Path 1.80 +1 -1 src/sys/geom/geom_subr.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 07:39:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97B5016A4CE; Sun, 8 Aug 2004 07:39:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6132943D45; Sun, 8 Aug 2004 07:39:20 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i787dKnr095456; Sun, 8 Aug 2004 07:39:20 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i787dKUT095455; Sun, 8 Aug 2004 07:39:20 GMT (envelope-from kientzle) Message-Id: <200408080739.i787dKUT095455@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 07:39:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive archive_entry.3 archive_entry.c archive_entry.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 07:39:20 -0000 kientzle 2004-08-08 07:39:20 UTC FreeBSD src repository Modified files: lib/libarchive archive_entry.3 archive_entry.c archive_entry.h Log: Add archive_entry_set_mtime() Revision Changes Path 1.9 +3 -0 src/lib/libarchive/archive_entry.3 1.23 +7 -0 src/lib/libarchive/archive_entry.c 1.12 +1 -0 src/lib/libarchive/archive_entry.h From owner-cvs-all@FreeBSD.ORG Sun Aug 8 07:41:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32B1316A4CE; Sun, 8 Aug 2004 07:41:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12C7743D2D; Sun, 8 Aug 2004 07:41:28 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i787fRX7095682; Sun, 8 Aug 2004 07:41:27 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i787fRqj095681; Sun, 8 Aug 2004 07:41:27 GMT (envelope-from marcus) Message-Id: <200408080741.i787fRqj095681@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 8 Aug 2004 07:41:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/galeon Makefile ports/www/galeon2 Makefile ports/www/epiphany Makefile ports/www/epiphany-extensions Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 07:41:28 -0000 marcus 2004-08-08 07:41:27 UTC FreeBSD ports repository Modified files: www/galeon Makefile www/galeon2 Makefile www/epiphany Makefile www/epiphany-extensions Makefile Log: Bump PORTREVISIONs to chase Mozilla update. Revision Changes Path 1.8 +1 -0 ports/www/epiphany-extensions/Makefile 1.56 +1 -0 ports/www/epiphany/Makefile 1.129 +1 -0 ports/www/galeon/Makefile 1.149 +1 -1 ports/www/galeon2/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 07:50:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30A4716A4CE; Sun, 8 Aug 2004 07:50:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10EE843D2F; Sun, 8 Aug 2004 07:50:31 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i787oU9J095930; Sun, 8 Aug 2004 07:50:30 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i787oUTI095929; Sun, 8 Aug 2004 07:50:30 GMT (envelope-from kuriyama) Message-Id: <200408080750.i787oUTI095929@repoman.freebsd.org> From: Jun Kuriyama Date: Sun, 8 Aug 2004 07:50:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/libpdtp Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 07:50:31 -0000 kuriyama 2004-08-08 07:50:30 UTC FreeBSD ports repository Modified files: net/libpdtp Makefile distinfo pkg-plist Log: Update to latest snapshot. Revision Changes Path 1.3 +4 -4 ports/net/libpdtp/Makefile 1.2 +2 -2 ports/net/libpdtp/distinfo 1.2 +1 -0 ports/net/libpdtp/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 8 07:57:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E75E716A4CE; Sun, 8 Aug 2004 07:57:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2BA743D45; Sun, 8 Aug 2004 07:57:53 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i787vrme096446; Sun, 8 Aug 2004 07:57:53 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i787vrUU096445; Sun, 8 Aug 2004 07:57:53 GMT (envelope-from phk) Message-Id: <200408080757.i787vrUU096445@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 07:57:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata atapi-cd.c src/sys/dev/md md.c src/sys/geom geom_aes.c geom_apple.c geom_bsd.c geom_ccd.c geom_dev.c geom_disk.c geom_fox.c geom_gpt.c geom_mbr.c geom_pc98.c geom_sunlabel.c geom_vol_ffs.c src/sys/geom/bde ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 07:57:54 -0000 phk 2004-08-08 07:57:53 UTC FreeBSD src repository Modified files: sys/dev/ata atapi-cd.c sys/dev/md md.c sys/geom geom_aes.c geom_apple.c geom_bsd.c geom_ccd.c geom_dev.c geom_disk.c geom_fox.c geom_gpt.c geom_mbr.c geom_pc98.c geom_sunlabel.c geom_vol_ffs.c sys/geom/bde g_bde.c sys/geom/concat g_concat.c sys/geom/gate g_gate.c sys/geom/label g_label.c sys/geom/mirror g_mirror.c sys/geom/nop g_nop.c sys/geom/stripe g_stripe.c sys/geom/vinum geom_vinum.c geom_vinum_drive.c geom_vinum_plex.c geom_vinum_volume.c sys/vm swap_pager.c Log: Tag all geom classes in the tree with a version number. Revision Changes Path 1.170 +4 -3 src/sys/dev/ata/atapi-cd.c 1.127 +1 -0 src/sys/dev/md/md.c 1.28 +1 -0 src/sys/geom/bde/g_bde.c 1.16 +1 -0 src/sys/geom/concat/g_concat.c 1.11 +1 -0 src/sys/geom/gate/g_gate.c 1.26 +1 -0 src/sys/geom/geom_aes.c 1.16 +1 -0 src/sys/geom/geom_apple.c 1.70 +1 -0 src/sys/geom/geom_bsd.c 1.152 +1 -0 src/sys/geom/geom_ccd.c 1.79 +1 -0 src/sys/geom/geom_dev.c 1.91 +1 -0 src/sys/geom/geom_disk.c 1.8 +1 -0 src/sys/geom/geom_fox.c 1.30 +1 -0 src/sys/geom/geom_gpt.c 1.60 +2 -0 src/sys/geom/geom_mbr.c 1.47 +1 -0 src/sys/geom/geom_pc98.c 1.43 +1 -0 src/sys/geom/geom_sunlabel.c 1.12 +2 -0 src/sys/geom/geom_vol_ffs.c 1.6 +1 -0 src/sys/geom/label/g_label.c 1.14 +1 -0 src/sys/geom/mirror/g_mirror.c 1.9 +1 -0 src/sys/geom/nop/g_nop.c 1.12 +1 -0 src/sys/geom/stripe/g_stripe.c 1.9 +1 -0 src/sys/geom/vinum/geom_vinum.c 1.8 +1 -0 src/sys/geom/vinum/geom_vinum_drive.c 1.7 +1 -0 src/sys/geom/vinum/geom_vinum_plex.c 1.4 +1 -0 src/sys/geom/vinum/geom_vinum_volume.c 1.256 +5 -3 src/sys/vm/swap_pager.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 08:07:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D067916A4CE; Sun, 8 Aug 2004 08:07:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B10FB43D2D; Sun, 8 Aug 2004 08:07:05 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78875KB096937; Sun, 8 Aug 2004 08:07:05 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78875UT096936; Sun, 8 Aug 2004 08:07:05 GMT (envelope-from kuriyama) Message-Id: <200408080807.i78875UT096936@repoman.freebsd.org> From: Jun Kuriyama Date: Sun, 8 Aug 2004 08:07:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/squall Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 08:07:06 -0000 kuriyama 2004-08-08 08:07:05 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/squall Makefile distinfo pkg-descr pkg-plist Log: Add squall (renamed from pdtpd). Revision Changes Path 1.1340 +1 -0 ports/net/Makefile 1.1 +29 -0 ports/net/squall/Makefile (new) 1.1 +2 -0 ports/net/squall/distinfo (new) 1.1 +8 -0 ports/net/squall/pkg-descr (new) 1.1 +8 -0 ports/net/squall/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 08:07:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A8BB16A4CE; Sun, 8 Aug 2004 08:07:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFDAB43D46; Sun, 8 Aug 2004 08:07:16 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7887GiG096977; Sun, 8 Aug 2004 08:07:16 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7887Gxr096976; Sun, 8 Aug 2004 08:07:16 GMT (envelope-from kuriyama) Message-Id: <200408080807.i7887Gxr096976@repoman.freebsd.org> From: Jun Kuriyama Date: Sun, 8 Aug 2004 08:07:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 08:07:17 -0000 kuriyama 2004-08-08 08:07:16 UTC FreeBSD ports repository Modified files: . modules Log: squall --> ports/net/squall Revision Changes Path 1.10840 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Aug 8 08:08:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F227816A531; Sun, 8 Aug 2004 08:08:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E92CF43D4C; Sun, 8 Aug 2004 08:08:31 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7888Vnb097070; Sun, 8 Aug 2004 08:08:31 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7888VGc097069; Sun, 8 Aug 2004 08:08:31 GMT (envelope-from mat) Message-Id: <200408080808.i7888VGc097069@repoman.freebsd.org> From: Mathieu Arnold Date: Sun, 8 Aug 2004 08:08:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail Makefile ports/mail/spamass-rules Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 08:08:32 -0000 mat 2004-08-08 08:08:31 UTC FreeBSD ports repository Modified files: mail Makefile Added files: mail/spamass-rules Makefile distinfo pkg-descr pkg-message pkg-plist Log: Add spamass-rules 20040807, custom rulesets for SpamAssassin. PR: ports/70134 Submitted by: mranner@inode.at Revision Changes Path 1.560 +1 -0 ports/mail/Makefile 1.1 +129 -0 ports/mail/spamass-rules/Makefile (new) 1.1 +2 -0 ports/mail/spamass-rules/distinfo (new) 1.1 +13 -0 ports/mail/spamass-rules/pkg-descr (new) 1.1 +15 -0 ports/mail/spamass-rules/pkg-message (new) 1.1 +2 -0 ports/mail/spamass-rules/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 08:08:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D695E16A531; Sun, 8 Aug 2004 08:08:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B858443D53; Sun, 8 Aug 2004 08:08:44 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7888i82097116; Sun, 8 Aug 2004 08:08:44 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7888i09097115; Sun, 8 Aug 2004 08:08:44 GMT (envelope-from mat) Message-Id: <200408080808.i7888i09097115@repoman.freebsd.org> From: Mathieu Arnold Date: Sun, 8 Aug 2004 08:08:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 08:08:45 -0000 mat 2004-08-08 08:08:44 UTC FreeBSD ports repository Modified files: . modules Log: spamass-rules --> ports/mail/spamass-rules Revision Changes Path 1.10841 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Aug 8 08:09:30 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0F9B16A531; Sun, 8 Aug 2004 08:09:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A27A843D2F; Sun, 8 Aug 2004 08:09:30 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7889U6x097158; Sun, 8 Aug 2004 08:09:30 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7889UAC097157; Sun, 8 Aug 2004 08:09:30 GMT (envelope-from kuriyama) Message-Id: <200408080809.i7889UAC097157@repoman.freebsd.org> From: Jun Kuriyama Date: Sun, 8 Aug 2004 08:09:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports MOVED X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 08:09:30 -0000 kuriyama 2004-08-08 08:09:30 UTC FreeBSD ports repository Modified files: . MOVED Log: pdtpd has been renamed to squall. Revision Changes Path 1.491 +2 -1 ports/MOVED From owner-cvs-all@FreeBSD.ORG Sun Aug 8 08:11:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AC0016A531; Sun, 8 Aug 2004 08:11:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51E8343D1F; Sun, 8 Aug 2004 08:11:20 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i788BKQM097606; Sun, 8 Aug 2004 08:11:20 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i788BK04097605; Sun, 8 Aug 2004 08:11:20 GMT (envelope-from krion) Message-Id: <200408080811.i788BK04097605@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 8 Aug 2004 08:11:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/aube Makefile ports/audio/sweep Makefile ports/audio/wavbreaker Makefile ports/editors/aewan Makefile ports/emulators/xbraitenberg Makefile ports/games/atr3d Makefile ports/games/barrage Makefile ports/games/briquolo Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 08:11:20 -0000 krion 2004-08-08 08:11:20 UTC FreeBSD ports repository Modified files: audio/aube Makefile audio/sweep Makefile audio/wavbreaker Makefile editors/aewan Makefile emulators/xbraitenberg Makefile games/atr3d Makefile games/barrage Makefile games/briquolo Makefile games/openglad Makefile games/openmortal Makefile mail/esmtp Makefile mail/libnewmail Makefile mail/smtpmail Makefile sysutils/chgrep Makefile sysutils/lookat Makefile Log: Drop maintainership. Revision Changes Path 1.7 +1 -1 ports/audio/aube/Makefile 1.25 +1 -1 ports/audio/sweep/Makefile 1.10 +1 -1 ports/audio/wavbreaker/Makefile 1.2 +1 -1 ports/editors/aewan/Makefile 1.2 +1 -1 ports/emulators/xbraitenberg/Makefile 1.12 +1 -1 ports/games/atr3d/Makefile 1.10 +1 -1 ports/games/barrage/Makefile 1.11 +1 -1 ports/games/briquolo/Makefile 1.10 +1 -1 ports/games/openglad/Makefile 1.3 +1 -1 ports/games/openmortal/Makefile 1.8 +1 -1 ports/mail/esmtp/Makefile 1.15 +1 -1 ports/mail/libnewmail/Makefile 1.10 +1 -1 ports/mail/smtpmail/Makefile 1.13 +1 -1 ports/sysutils/chgrep/Makefile 1.9 +1 -1 ports/sysutils/lookat/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 08:18:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 900A516A4CE; Sun, 8 Aug 2004 08:18:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FEE843D41; Sun, 8 Aug 2004 08:18:58 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i788IwnW097781; Sun, 8 Aug 2004 08:18:58 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i788IwsJ097780; Sun, 8 Aug 2004 08:18:58 GMT (envelope-from blackend) Message-Id: <200408080818.i788IwsJ097780@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 8 Aug 2004 08:18:58 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/fr_FR.ISO8859-1/books/handbook/network-servers chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 08:18:58 -0000 blackend 2004-08-08 08:18:58 UTC FreeBSD doc repository Modified files: fr_FR.ISO8859-1/books/handbook/network-servers chapter.sgml Log: MFen 1.5 --> 1.7 Revision Changes Path 1.2 +343 -7 doc/fr_FR.ISO8859-1/books/handbook/network-servers/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 08:34:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0A4D16A4CE; Sun, 8 Aug 2004 08:34:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2B8A43D2D; Sun, 8 Aug 2004 08:34:46 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i788YkKx098207; Sun, 8 Aug 2004 08:34:46 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i788YkiK098206; Sun, 8 Aug 2004 08:34:46 GMT (envelope-from phk) Message-Id: <200408080834.i788YkiK098206@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 08:34:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 08:34:47 -0000 phk 2004-08-08 08:34:46 UTC FreeBSD src repository Modified files: sys/geom geom_subr.c Log: OK, now check geom class version numbers. Revision Changes Path 1.81 +1 -1 src/sys/geom/geom_subr.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 08:46:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EE27316A4CE; Sun, 8 Aug 2004 08:46:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF83543D54; Sun, 8 Aug 2004 08:46:26 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i788kQXY098611; Sun, 8 Aug 2004 08:46:26 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i788kQFc098610; Sun, 8 Aug 2004 08:46:26 GMT (envelope-from oliver) Message-Id: <200408080846.i788kQFc098610@repoman.freebsd.org> From: Oliver Lehmann Date: Sun, 8 Aug 2004 08:46:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/courier-imap Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 08:46:27 -0000 oliver 2004-08-08 08:46:26 UTC FreeBSD ports repository Modified files: mail/courier-imap Makefile distinfo Log: update to 3.0.7 Revision Changes Path 1.84 +2 -2 ports/mail/courier-imap/Makefile 1.40 +2 -2 ports/mail/courier-imap/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 08:56:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1460616A4CE; Sun, 8 Aug 2004 08:56:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAF8843D41; Sun, 8 Aug 2004 08:56:54 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i788usTr098895; Sun, 8 Aug 2004 08:56:54 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i788usNv098894; Sun, 8 Aug 2004 08:56:54 GMT (envelope-from oliver) Message-Id: <200408080856.i788usNv098894@repoman.freebsd.org> From: Oliver Lehmann Date: Sun, 8 Aug 2004 08:56:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/sqwebmail Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 08:56:55 -0000 oliver 2004-08-08 08:56:54 UTC FreeBSD ports repository Modified files: mail/sqwebmail Makefile distinfo Log: update to 4.0.7 Revision Changes Path 1.43 +1 -1 ports/mail/sqwebmail/Makefile 1.22 +2 -2 ports/mail/sqwebmail/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 09:02:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 861C516A4CE; Sun, 8 Aug 2004 09:02:01 +0000 (GMT) Received: from cain.gsoft.com.au (cain.gsoft.com.au [203.31.81.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4002C43D41; Sun, 8 Aug 2004 09:01:56 +0000 (GMT) (envelope-from doconnor@gsoft.com.au) Received: from inchoate.gsoft.com.au (localhost [127.0.0.1]) (authenticated bits=0) by cain.gsoft.com.au (8.12.11/8.12.10) with ESMTP id i7891q8P080076; Sun, 8 Aug 2004 18:31:53 +0930 (CST) (envelope-from doconnor@gsoft.com.au) From: "Daniel O'Connor" To: cvs-all@freebsd.org Date: Sun, 8 Aug 2004 18:31:45 +0930 User-Agent: KMail/1.6.2 References: <200408080126.i781Q0od084545@repoman.freebsd.org> In-Reply-To: <200408080126.i781Q0od084545@repoman.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: Text/Plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Message-Id: <200408081831.51295.doconnor@gsoft.com.au> X-Spam-Score: -4.9 () CARRIAGE_RETURNS,IN_REP_TO,PGP_SIGNATURE,QUOTED_EMAIL_TEXT,REFERENCES,SPAM_PHRASE_00_01,USER_AGENT,USER_AGENT_KMAIL X-Scanned-By: MIMEDefang 2.16 (www . roaringpenguin . com / mimedefang) cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: Philip Paeps Subject: Re: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 09:02:01 -0000 =2D----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Sun, 8 Aug 2004 10:56, Philip Paeps wrote: > Assume a finger of regular width when no width value is reported by > the touchpad (which happens when it has no extended capabilities). Can't you tell if the touch pad has extended caps? (ie check in probe) =2D --=20 Daniel O'Connor software and network engineer for Genesis Software - http://www.gsoft.com.au "The nice thing about standards is that there are so many of them to choose from." -- Andrew Tanenbaum GPG Fingerprint - 5596 B766 97C0 0E94 4347 295E E593 DC20 7B3F CE8C =2D----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBFev/5ZPcIHs/zowRArLZAJ46pLIbDCL9I4retE9zganNfBoNIQCghAMF 0EAC06Q5Z2vZxSsjjMFBfZg=3D =3Dbnue =2D----END PGP SIGNATURE----- From owner-cvs-all@FreeBSD.ORG Sun Aug 8 09:05:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5BFE16A4CE; Sun, 8 Aug 2004 09:05:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC15143D58; Sun, 8 Aug 2004 09:05:35 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7895Zdq099347; Sun, 8 Aug 2004 09:05:35 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7895Z1k099346; Sun, 8 Aug 2004 09:05:35 GMT (envelope-from mat) Message-Id: <200408080905.i7895Z1k099346@repoman.freebsd.org> From: Mathieu Arnold Date: Sun, 8 Aug 2004 09:05:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel Makefile ports/devel/p5-Alzabo Makefile distinfo pkg-descr pkg-plist ports/devel/p5-Alzabo/files patch-Build.PL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 09:05:35 -0000 mat 2004-08-08 09:05:35 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Alzabo Makefile distinfo pkg-descr pkg-plist devel/p5-Alzabo/files patch-Build.PL Log: Add p5-Alzabo 0.83, a data modelling tool and RDBMS-OO mapper. Revision Changes Path 1.1668 +1 -0 ports/devel/Makefile 1.1 +93 -0 ports/devel/p5-Alzabo/Makefile (new) 1.1 +2 -0 ports/devel/p5-Alzabo/distinfo (new) 1.1 +21 -0 ports/devel/p5-Alzabo/files/patch-Build.PL (new) 1.1 +11 -0 ports/devel/p5-Alzabo/pkg-descr (new) 1.1 +59 -0 ports/devel/p5-Alzabo/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 09:05:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09C2516A4CF; Sun, 8 Aug 2004 09:05:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE45643D54; Sun, 8 Aug 2004 09:05:49 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7895n6e099424; Sun, 8 Aug 2004 09:05:49 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7895nKu099423; Sun, 8 Aug 2004 09:05:49 GMT (envelope-from mat) Message-Id: <200408080905.i7895nKu099423@repoman.freebsd.org> From: Mathieu Arnold Date: Sun, 8 Aug 2004 09:05:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 09:05:50 -0000 mat 2004-08-08 09:05:49 UTC FreeBSD ports repository Modified files: . modules Log: p5-Alzabo --> ports/devel/p5-Alzabo Revision Changes Path 1.10842 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Aug 8 09:07:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A09C016A4CE; Sun, 8 Aug 2004 09:07:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8107743D46; Sun, 8 Aug 2004 09:07:41 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7897fKY099497; Sun, 8 Aug 2004 09:07:41 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7897fXl099496; Sun, 8 Aug 2004 09:07:41 GMT (envelope-from kensmith) Message-Id: <200408080907.i7897fXl099496@repoman.freebsd.org> From: Ken Smith Date: Sun, 8 Aug 2004 09:07:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/scripts print-cdrom-packages.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 09:07:41 -0000 kensmith 2004-08-08 09:07:41 UTC FreeBSD src repository Modified files: release/scripts print-cdrom-packages.sh Log: The compat2x and compat3x packages are not buildable due to security issues. Revision Changes Path 1.61 +0 -4 src/release/scripts/print-cdrom-packages.sh From owner-cvs-all@FreeBSD.ORG Sun Aug 8 09:07:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A57616A4F5; Sun, 8 Aug 2004 09:07:45 +0000 (GMT) Received: from gateway.nixsys.be (gateway.nixsys.be [195.144.77.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49B6D43D48; Sun, 8 Aug 2004 09:07:45 +0000 (GMT) (envelope-from philip@paeps.cx) Received: from erda.home.paeps.cx (erda.home.paeps.cx [IPv6:2001:838:37f:10::1]) by gateway.nixsys.be (Postfix) with ESMTP id 88F5471; Sun, 8 Aug 2004 11:07:43 +0200 (CEST) Received: from fasolt.home.paeps.cx (fasolt.home.paeps.cx [10.0.0.2]) by erda.home.paeps.cx (Postfix) with ESMTP id AC7A220EE; Sun, 8 Aug 2004 11:07:35 +0200 (CEST) Received: from fasolt.home.paeps.cx (philip@localhost [127.0.0.1]) i7897gUi009720; Sun, 8 Aug 2004 11:07:42 +0200 (CEST) (envelope-from philip@fasolt.home.paeps.cx) Received: (from philip@localhost) by fasolt.home.paeps.cx (8.12.11/8.12.11/Submit) id i7897b1U009719; Sun, 8 Aug 2004 11:07:37 +0200 (CEST) (envelope-from philip) Date: Sun, 8 Aug 2004 11:07:37 +0200 From: Philip Paeps To: "Daniel O'Connor" Message-ID: <20040808090737.GR11982@fasolt.home.paeps.cx> Mail-Followup-To: Daniel O'Connor , cvs-all@freebsd.org, src-committers@freebsd.org, cvs-src@freebsd.org References: <200408080126.i781Q0od084545@repoman.freebsd.org> <200408081831.51295.doconnor@gsoft.com.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408081831.51295.doconnor@gsoft.com.au> X-Date-in-Rome: ante diem VII Idius Augustas MMDCCLVII ab Urbe Condida X-PGP-Fingerprint: FA74 3C27 91A6 79D5 F6D3 FC53 BF4B D0E6 049D B879 X-Message-Flag: Get a proper mailclient! User-Agent: Mutt/1.5.6i cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/isa psm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 09:07:48 -0000 On 2004-08-08 18:31:45 (+0930), Daniel O'Connor wrote: > On Sun, 8 Aug 2004 10:56, Philip Paeps wrote: > > Assume a finger of regular width when no width value is reported by the > > touchpad (which happens when it has no extended capabilities). > > Can't you tell if the touch pad has extended caps? (ie check in probe) Yes, I check in the probe (line 3139), but before r.1.76 I didn't check for the presence of the extended caps before using w (which only makes sense when extended caps exist) in the finger-presence check. - Philip -- Philip Paeps Please don't Cc me, I am philip@freebsd.org subscribed to the list. Don't worry over what other people are thinking about you. They're too busy worrying over what you are thinking about them. From owner-cvs-all@FreeBSD.ORG Sun Aug 8 09:08:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 982AF16A4CE; Sun, 8 Aug 2004 09:08:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79A0243D3F; Sun, 8 Aug 2004 09:08:37 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7898bgP099536; Sun, 8 Aug 2004 09:08:37 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7898bQi099535; Sun, 8 Aug 2004 09:08:37 GMT (envelope-from sanpei) Message-Id: <200408080908.i7898bQi099535@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Sun, 8 Aug 2004 09:08:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/cam/scsi scsi_da.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 09:08:37 -0000 sanpei 2004-08-08 09:08:37 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_da.c Log: Add support iRiver iFP MP3 player PR: kern/54881, i386/63941, kern/66124 Submitted by: Magnus , Dmitry Dyomin , Dmitry Sivachenko MFC after: 1 week Revision Changes Path 1.170 +8 -0 src/sys/cam/scsi/scsi_da.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 09:23:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C87216A4CE; Sun, 8 Aug 2004 09:23:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 839B843D45; Sun, 8 Aug 2004 09:23:49 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i789NnGb000122; Sun, 8 Aug 2004 09:23:49 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i789NnWF000121; Sun, 8 Aug 2004 09:23:49 GMT (envelope-from hrs) Message-Id: <200408080923.i789NnWF000121@repoman.freebsd.org> From: Hiroki Sato Date: Sun, 8 Aug 2004 09:23:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/share/misc man2hwnotes.pl src/release/doc/share/mk doc.relnotes.mk src/release/doc/share/sgml Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 09:23:49 -0000 hrs 2004-08-08 09:23:49 UTC FreeBSD src repository Modified files: release/doc/share/misc man2hwnotes.pl release/doc/share/mk doc.relnotes.mk release/doc/share/sgml Makefile Log: - Add an -o option to specify the output file. - Make "die()" more verbose. - Do not put extra blank lines into the output file. - Normalize text by using numeric entities because some characters such as "'" can break the generated SGML. Reviewed by: simon Revision Changes Path 1.2 +47 -14 src/release/doc/share/misc/man2hwnotes.pl 1.13 +3 -1 src/release/doc/share/mk/doc.relnotes.mk 1.2 +2 -3 src/release/doc/share/sgml/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 09:26:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D57816A4CE; Sun, 8 Aug 2004 09:26:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FD3343D41; Sun, 8 Aug 2004 09:26:18 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i789QIvm000248; Sun, 8 Aug 2004 09:26:18 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i789QITk000247; Sun, 8 Aug 2004 09:26:18 GMT (envelope-from clement) Message-Id: <200408080926.i789QITk000247@repoman.freebsd.org> From: Clement Laforet Date: Sun, 8 Aug 2004 09:26:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/ssmtp Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 09:26:18 -0000 clement 2004-08-08 09:26:18 UTC FreeBSD ports repository Modified files: mail/ssmtp Makefile distinfo Log: - Update to ssmtp_2.60.12. This release fixes most of auth smtp known bugs Revision Changes Path 1.20 +1 -1 ports/mail/ssmtp/Makefile 1.7 +2 -2 ports/mail/ssmtp/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 09:28:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B697416A4CE; Sun, 8 Aug 2004 09:28:52 +0000 (GMT) Received: from itchy.rabson.org (mailgate.nlsystems.com [80.177.232.242]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC23143D45; Sun, 8 Aug 2004 09:28:51 +0000 (GMT) (envelope-from dfr@nlsystems.com) Received: from ns0.nlsystems.com (ns0.nlsystems.com [80.177.232.243]) by itchy.rabson.org (8.12.11/8.12.11) with ESMTP id i789SgSS055765; Sun, 8 Aug 2004 10:28:43 +0100 (BST) (envelope-from dfr@nlsystems.com) From: Doug Rabson To: John Baldwin Date: Sun, 8 Aug 2004 10:28:44 +0100 User-Agent: KMail/1.6.2 References: <200408061549.i76Fni3I019460@repoman.freebsd.org> <4113AC45.1050003@freebsd.org> <200408061340.15480.jhb@FreeBSD.org> In-Reply-To: <200408061340.15480.jhb@FreeBSD.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408081028.44760.dfr@nlsystems.com> X-Spam-Status: No, hits=0.0 required=5.0 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on itchy.rabson.org X-Virus-Scanned: clamd / ClamAV version 0.71, clamav-milter version 0.71 X-Virus-Status: Clean cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Scott Long cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_switch.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 09:28:52 -0000 On Friday 06 August 2004 18:46, John Baldwin wrote: > On Friday 06 August 2004 12:05 pm, Scott Long wrote: > > John Baldwin wrote: > > > jhb 2004-08-06 15:49:44 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/kern kern_switch.c > > > Log: > > > Don't scare users with a warning about preemption being off > > > when it isn't yet safe to have on by default. > > > > > > Revision Changes Path > > > 1.75 +2 -0 src/sys/kern/kern_switch.c > > > > I was actually hoping to leave this on as a reminder to get us to > > fix the underlying problems, and only turning it off if absolutely > > necessary for the release. Sorry that I didn't mention this > > sooner. > > Hmm, it seems at least one person on current@ was already confused by > this and asking if he should turn on FULL_PREEMPTION instead. We > probably don't want people doing that. :-P Also, believe me that I > haven't forgotten about the preemption stability problems. I just > need to reproduce these problems on machines with a serial console. > The only machine I can reproduce hangs on so far is my laptop which > has no serial port. :( Does it have firewire? Dcons is dead easy to set up - just add dcons and dcons_crom to a kernel config and it automatically becomes the console. From owner-cvs-all@FreeBSD.ORG Sun Aug 8 09:29:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1D9A16A4CE; Sun, 8 Aug 2004 09:29:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C24B343D1D; Sun, 8 Aug 2004 09:29:31 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i789TVq6000339; Sun, 8 Aug 2004 09:29:31 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i789TV0X000335; Sun, 8 Aug 2004 09:29:31 GMT (envelope-from clement) Message-Id: <200408080929.i789TV0X000335@repoman.freebsd.org> From: Clement Laforet Date: Sun, 8 Aug 2004 09:29:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/ldap-account-manager Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 09:29:32 -0000 clement 2004-08-08 09:29:31 UTC FreeBSD ports repository Modified files: sysutils/ldap-account-manager Makefile Log: - Remove useless PHP modules dependencies. Revision Changes Path 1.14 +1 -1 ports/sysutils/ldap-account-manager/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 09:35:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4510E16A4CE; Sun, 8 Aug 2004 09:35:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26B5A43D2F; Sun, 8 Aug 2004 09:35:19 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i789ZJoX000549; Sun, 8 Aug 2004 09:35:19 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i789ZJnO000548; Sun, 8 Aug 2004 09:35:19 GMT (envelope-from clement) Message-Id: <200408080935.i789ZJnO000548@repoman.freebsd.org> From: Clement Laforet Date: Sun, 8 Aug 2004 09:35:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mod_auth_any Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 09:35:19 -0000 clement 2004-08-08 09:35:18 UTC FreeBSD ports repository Modified files: www/mod_auth_any Makefile distinfo Log: - Update to 1.4 Now mod_auth_any works with apache2! Revision Changes Path 1.11 +9 -2 ports/www/mod_auth_any/Makefile 1.4 +2 -2 ports/www/mod_auth_any/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 09:48:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5273F16A4CE; Sun, 8 Aug 2004 09:48:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32EE943D3F; Sun, 8 Aug 2004 09:48:11 +0000 (GMT) (envelope-from dfr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i789mBI4000910; Sun, 8 Aug 2004 09:48:11 GMT (envelope-from dfr@repoman.freebsd.org) Received: (from dfr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i789mBc4000909; Sun, 8 Aug 2004 09:48:11 GMT (envelope-from dfr) Message-Id: <200408080948.i789mBc4000909@repoman.freebsd.org> From: Doug Rabson Date: Sun, 8 Aug 2004 09:48:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern imgact_elf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 09:48:11 -0000 dfr 2004-08-08 09:48:11 UTC FreeBSD src repository Modified files: sys/kern imgact_elf.c Log: Make sure that AT_PHDR has a useful value even for static programs. Revision Changes Path 1.154 +11 -0 src/sys/kern/imgact_elf.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 09:53:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32DCF16A4CE; Sun, 8 Aug 2004 09:53:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A1CE43D46; Sun, 8 Aug 2004 09:53:36 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i789raLD001200; Sun, 8 Aug 2004 09:53:36 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i789raVc001199; Sun, 8 Aug 2004 09:53:36 GMT (envelope-from clement) Message-Id: <200408080953.i789raVc001199@repoman.freebsd.org> From: Clement Laforet Date: Sun, 8 Aug 2004 09:53:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules ports/www Makefile ports/www/mod_auth_cookie_mysql2 Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 09:53:36 -0000 clement 2004-08-08 09:53:36 UTC FreeBSD ports repository Modified files: . modules www Makefile Added files: www/mod_auth_cookie_mysql2 Makefile distinfo pkg-descr Log: Add mod_auth_cookie_mysql2 0.3 This modules (for apache2) allows you to auth your users with cookies stored in a MySQL database. Revision Changes Path 1.10843 +1 -0 CVSROOT/modules 1.958 +1 -0 ports/www/Makefile 1.1 +36 -0 ports/www/mod_auth_cookie_mysql2/Makefile (new) 1.1 +2 -0 ports/www/mod_auth_cookie_mysql2/distinfo (new) 1.1 +4 -0 ports/www/mod_auth_cookie_mysql2/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 09:56:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7ED8916A4CE; Sun, 8 Aug 2004 09:56:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FE3543D41; Sun, 8 Aug 2004 09:56:59 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i789uxUT001348; Sun, 8 Aug 2004 09:56:59 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i789uxWn001347; Sun, 8 Aug 2004 09:56:59 GMT (envelope-from kuriyama) Message-Id: <200408080956.i789uxWn001347@repoman.freebsd.org> From: Jun Kuriyama Date: Sun, 8 Aug 2004 09:56:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 09:56:59 -0000 kuriyama 2004-08-08 09:56:59 UTC FreeBSD ports repository Modified files: . modules Log: Remove net/pdtpd. Revision Changes Path 1.10844 +0 -1 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Aug 8 09:58:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B28BC16A4CE; Sun, 8 Aug 2004 09:58:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 931AB43D31; Sun, 8 Aug 2004 09:58:31 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i789wVwb001439; Sun, 8 Aug 2004 09:58:31 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i789wV0f001438; Sun, 8 Aug 2004 09:58:31 GMT (envelope-from kuriyama) Message-Id: <200408080958.i789wV0f001438@repoman.freebsd.org> From: Jun Kuriyama Date: Sun, 8 Aug 2004 09:58:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/pdtpd Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 09:58:31 -0000 kuriyama 2004-08-08 09:58:31 UTC FreeBSD ports repository Modified files: net Makefile Removed files: net/pdtpd Makefile distinfo pkg-descr pkg-plist Log: net/pdtpd was renamed to net/squall. Revision Changes Path 1.1341 +0 -1 ports/net/Makefile 1.2 +0 -26 ports/net/pdtpd/Makefile (dead) 1.2 +0 -2 ports/net/pdtpd/distinfo (dead) 1.2 +0 -8 ports/net/pdtpd/pkg-descr (dead) 1.2 +0 -6 ports/net/pdtpd/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 10:01:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A668116A4CE; Sun, 8 Aug 2004 10:01:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 868AF43D2D; Sun, 8 Aug 2004 10:01:19 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78A1JM9001600; Sun, 8 Aug 2004 10:01:19 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78A1Jdr001599; Sun, 8 Aug 2004 10:01:19 GMT (envelope-from blackend) Message-Id: <200408081001.i78A1Jdr001599@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 8 Aug 2004 10:01:19 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/committers-guide article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 10:01:19 -0000 blackend 2004-08-08 10:01:19 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/committers-guide article.sgml Log: Mention where can be found the FreeBSD.org users PGP keyring. Revision Changes Path 1.206 +4 -1 doc/en_US.ISO8859-1/articles/committers-guide/article.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 10:03:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14DA116A4CE; Sun, 8 Aug 2004 10:03:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8C8543D58; Sun, 8 Aug 2004 10:03:56 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78A3uvZ001700; Sun, 8 Aug 2004 10:03:56 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78A3u8K001699; Sun, 8 Aug 2004 10:03:56 GMT (envelope-from clement) Message-Id: <200408081003.i78A3u8K001699@repoman.freebsd.org> From: Clement Laforet Date: Sun, 8 Aug 2004 10:03:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mod_log_sql2 Makefileports/www/mod_log_sql2/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 10:03:57 -0000 clement 2004-08-08 10:03:56 UTC FreeBSD ports repository Modified files: www/mod_log_sql2 Makefile Added files: www/mod_log_sql2/files patch-configure Log: - We are no more forced to used libdbi Obtained from: authors Revision Changes Path 1.5 +5 -2 ports/www/mod_log_sql2/Makefile 1.1 +47 -0 ports/www/mod_log_sql2/files/patch-configure (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 10:08:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00ACB16A4CE; Sun, 8 Aug 2004 10:08:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D501543D58; Sun, 8 Aug 2004 10:08:21 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78A8LDK001907; Sun, 8 Aug 2004 10:08:21 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78A8LvC001902; Sun, 8 Aug 2004 10:08:21 GMT (envelope-from blackend) Message-Id: <200408081008.i78A8LvC001902@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 8 Aug 2004 10:08:21 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 10:08:22 -0000 blackend 2004-08-08 10:08:21 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml Log: Add missing hostid tags. Revision Changes Path 1.235 +1 -1 doc/en_US.ISO8859-1/books/handbook/pgpkeys/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 10:09:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB64816A4CE; Sun, 8 Aug 2004 10:09:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C07A43D48; Sun, 8 Aug 2004 10:09:50 +0000 (GMT) (envelope-from joe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78A9oL9001951; Sun, 8 Aug 2004 10:09:50 GMT (envelope-from joe@repoman.freebsd.org) Received: (from joe@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78A9oLh001950; Sun, 8 Aug 2004 10:09:50 GMT (envelope-from joe) Message-Id: <200408081009.i78A9oLh001950@repoman.freebsd.org> From: Josef Karthauser Date: Sun, 8 Aug 2004 10:09:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/pathchar pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 10:09:50 -0000 joe 2004-08-08 10:09:50 UTC FreeBSD ports repository Modified files: net/pathchar pkg-descr Log: Update the website URL. Revision Changes Path 1.3 +1 -1 ports/net/pathchar/pkg-descr From owner-cvs-all@FreeBSD.ORG Sun Aug 8 10:19:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EAE416A4CE; Sun, 8 Aug 2004 10:19:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F45743D54; Sun, 8 Aug 2004 10:19:06 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78AJ6vT002195; Sun, 8 Aug 2004 10:19:06 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78AJ6n8002194; Sun, 8 Aug 2004 10:19:06 GMT (envelope-from mat) Message-Id: <200408081019.i78AJ6n8002194@repoman.freebsd.org> From: Mathieu Arnold Date: Sun, 8 Aug 2004 10:19:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/spamass-rules Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 10:19:06 -0000 mat 2004-08-08 10:19:06 UTC FreeBSD ports repository Modified files: mail/spamass-rules Makefile Log: Oh, I did let that through, bad me Revision Changes Path 1.2 +0 -3 ports/mail/spamass-rules/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 10:50:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC35B16A4CE; Sun, 8 Aug 2004 10:50:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBE0143D58; Sun, 8 Aug 2004 10:50:19 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78AoJd5002908; Sun, 8 Aug 2004 10:50:19 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78AoJ7Z002907; Sun, 8 Aug 2004 10:50:19 GMT (envelope-from kensmith) Message-Id: <200408081050.i78AoJ7Z002907@repoman.freebsd.org> From: Ken Smith Date: Sun, 8 Aug 2004 10:50:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/scripts print-cdrom-packages.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 10:50:20 -0000 kensmith 2004-08-08 10:50:19 UTC FreeBSD src repository Modified files: release/scripts print-cdrom-packages.sh Log: Looks like the x.org manuals are in x11/xorg-manpages, not x11/xorg-manuals. Revision Changes Path 1.62 +1 -1 src/release/scripts/print-cdrom-packages.sh From owner-cvs-all@FreeBSD.ORG Sun Aug 8 11:38:30 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9208716A4CE; Sun, 8 Aug 2004 11:38:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7247143D2D; Sun, 8 Aug 2004 11:38:30 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78BcUJZ004343; Sun, 8 Aug 2004 11:38:30 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78BcUNm004342; Sun, 8 Aug 2004 11:38:30 GMT (envelope-from jkoshy) Message-Id: <200408081138.i78BcUNm004342@repoman.freebsd.org> From: Joseph Koshy Date: Sun, 8 Aug 2004 11:38:30 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/news/status report-may-2004-june-2004.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 11:38:30 -0000 jkoshy 2004-08-08 11:38:30 UTC FreeBSD doc repository Modified files: en/news/status report-may-2004-june-2004.xml Log: Fix typo. Revision Changes Path 1.5 +2 -2 www/en/news/status/report-may-2004-june-2004.xml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 12:21:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 448A516A4CE; Sun, 8 Aug 2004 12:21:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2533043D54; Sun, 8 Aug 2004 12:21:44 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78CLi3F005452; Sun, 8 Aug 2004 12:21:44 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78CLiHv005451; Sun, 8 Aug 2004 12:21:44 GMT (envelope-from mat) Message-Id: <200408081221.i78CLiHv005451@repoman.freebsd.org> From: Mathieu Arnold Date: Sun, 8 Aug 2004 12:21:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/spamass-rules Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 12:21:44 -0000 mat 2004-08-08 12:21:43 UTC FreeBSD ports repository Modified files: mail/spamass-rules Makefile Log: Finally, there seems to be a bug with NO_BUILD and OPTIONS Reported by: maintainer Revision Changes Path 1.3 +3 -0 ports/mail/spamass-rules/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 12:31:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C3F516A4CE; Sun, 8 Aug 2004 12:31:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C4A643D31; Sun, 8 Aug 2004 12:31:48 +0000 (GMT) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78CVlwU005739; Sun, 8 Aug 2004 12:31:47 GMT (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78CVlEG005738; Sun, 8 Aug 2004 12:31:47 GMT (envelope-from perky) Message-Id: <200408081231.i78CVlEG005738@repoman.freebsd.org> From: Hye-Shik Chang Date: Sun, 8 Aug 2004 12:31:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/py-paint Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 12:31:48 -0000 perky 2004-08-08 12:31:47 UTC FreeBSD ports repository Modified files: graphics/py-paint Makefile distinfo pkg-plist Log: Update to 0.3 PR: 70000 (!) Submitted by: ijliao Revision Changes Path 1.15 +16 -22 ports/graphics/py-paint/Makefile 1.4 +2 -2 ports/graphics/py-paint/distinfo 1.2 +4 -4 ports/graphics/py-paint/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 8 12:38:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7962E16A4CE; Sun, 8 Aug 2004 12:38:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 581C643D67; Sun, 8 Aug 2004 12:38:26 +0000 (GMT) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78CcQsv005961; Sun, 8 Aug 2004 12:38:26 GMT (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78CcQAj005960; Sun, 8 Aug 2004 12:38:26 GMT (envelope-from perky) Message-Id: <200408081238.i78CcQAj005960@repoman.freebsd.org> From: Hye-Shik Chang Date: Sun, 8 Aug 2004 12:38:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/py-wordnet Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 12:38:26 -0000 perky 2004-08-08 12:38:26 UTC FreeBSD ports repository Modified files: textproc/py-wordnet Makefile distinfo pkg-plist Log: Update to 2.0 PR: 69959 Submitted by: Cheng-Lung Sung Revision Changes Path 1.7 +3 -3 ports/textproc/py-wordnet/Makefile 1.3 +2 -2 ports/textproc/py-wordnet/distinfo 1.2 +3 -0 ports/textproc/py-wordnet/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 8 12:43:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B18A16A4CF; Sun, 8 Aug 2004 12:43:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 001DC43D5C; Sun, 8 Aug 2004 12:43:40 +0000 (GMT) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78Che1T006172; Sun, 8 Aug 2004 12:43:40 GMT (envelope-from jeh@repoman.freebsd.org) Received: (from jeh@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78Che8A006171; Sun, 8 Aug 2004 12:43:40 GMT (envelope-from jeh) Message-Id: <200408081243.i78Che8A006171@repoman.freebsd.org> From: "James E. Housley" Date: Sun, 8 Aug 2004 12:43:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/healthd Makefile distinfo ports/sysutils/healthd/files healthd.sh-500038 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 12:43:41 -0000 jeh 2004-08-08 12:43:40 UTC FreeBSD ports repository Modified files: sysutils/healthd Makefile distinfo Removed files: sysutils/healthd/files healthd.sh-500038 Log: * Fix rc.subr use so the it works properly with both 4.x and 5.x * Fix a potential buffer overflow while reading the config file. But, since the config file is owned by root this is the least of your worries. * Enlarge the size of the _warn and _fail command strings - Overflow noticed by Pete Revision Changes Path 1.50 +3 -6 ports/sysutils/healthd/Makefile 1.30 +2 -2 ports/sysutils/healthd/distinfo 1.2 +0 -11 ports/sysutils/healthd/files/healthd.sh-500038 (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 12:44:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A94D16A4CE; Sun, 8 Aug 2004 12:44:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A2CB43D46; Sun, 8 Aug 2004 12:44:25 +0000 (GMT) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78CiPeT006211; Sun, 8 Aug 2004 12:44:25 GMT (envelope-from jeh@repoman.freebsd.org) Received: (from jeh@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78CiPTv006210; Sun, 8 Aug 2004 12:44:25 GMT (envelope-from jeh) Message-Id: <200408081244.i78CiPTv006210@repoman.freebsd.org> From: "James E. Housley" Date: Sun, 8 Aug 2004 12:44:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/healthd Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 12:44:25 -0000 jeh 2004-08-08 12:44:25 UTC FreeBSD ports repository Modified files: sysutils/healthd Makefile Log: ** Update to 0.7.8 Revision Changes Path 1.51 +0 -0 ports/sysutils/healthd/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 13:01:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 680CF16A4CE; Sun, 8 Aug 2004 13:01:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4853E43D39; Sun, 8 Aug 2004 13:01:29 +0000 (GMT) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78D1TQJ006764; Sun, 8 Aug 2004 13:01:29 GMT (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78D1T9c006763; Sun, 8 Aug 2004 13:01:29 GMT (envelope-from mheinen) Message-Id: <200408081301.i78D1T9c006763@repoman.freebsd.org> From: Martin Heinen Date: Sun, 8 Aug 2004 13:01:29 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/introduction chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 13:01:29 -0000 mheinen 2004-08-08 13:01:29 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/introduction chapter.sgml Log: Add a missing semicolon. Revision Changes Path 1.102 +1 -1 doc/en_US.ISO8859-1/books/handbook/introduction/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 13:03:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01F5516A4CE; Sun, 8 Aug 2004 13:03:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAA3943D45; Sun, 8 Aug 2004 13:03:55 +0000 (GMT) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78D3tG4006876; Sun, 8 Aug 2004 13:03:55 GMT (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78D3txD006875; Sun, 8 Aug 2004 13:03:55 GMT (envelope-from mheinen) Message-Id: <200408081303.i78D3txD006875@repoman.freebsd.org> From: Martin Heinen Date: Sun, 8 Aug 2004 13:03:55 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml doc/en_US.ISO8859-1/books/handbook/network-servers chapter.sgml doc/en_US.ISO8859-1/books/handbook/vinum chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 13:03:56 -0000 mheinen 2004-08-08 13:03:55 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml en_US.ISO8859-1/books/handbook/network-servers chapter.sgml en_US.ISO8859-1/books/handbook/vinum chapter.sgml Log: Add missing userinput tags. Revision Changes Path 1.339 +16 -16 doc/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml 1.19 +2 -2 doc/en_US.ISO8859-1/books/handbook/network-servers/chapter.sgml 1.30 +1 -1 doc/en_US.ISO8859-1/books/handbook/vinum/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 13:05:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4FD5B16A4CE; Sun, 8 Aug 2004 13:05:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DDCB43D4C; Sun, 8 Aug 2004 13:05:04 +0000 (GMT) (envelope-from thomas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78D54WC006930; Sun, 8 Aug 2004 13:05:04 GMT (envelope-from thomas@repoman.freebsd.org) Received: (from thomas@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78D531g006929; Sun, 8 Aug 2004 13:05:03 GMT (envelope-from thomas) Message-Id: <200408081305.i78D531g006929@repoman.freebsd.org> From: Thomas Quinot Date: Sun, 8 Aug 2004 13:05:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/nanobsd Makefile make.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 13:05:04 -0000 thomas 2004-08-08 13:05:03 UTC FreeBSD src repository Modified files: tools/tools/nanobsd Makefile make.conf Log: Include the nanoBSD make.conf in the top-level nanoBSD Makefile, so all configuration knobs (both system settings and nanoBSD-specific ones) can be tuned by modifying a single file. Move KERNCONF default value to make.conf. Attempt to resolve CFGMASTER like CUSTOMIZE, first relative to ${.CURDIR}, then as an absolute path. Allow optional additional arguments to be passed to the CUSTOMIZE script. Revision Changes Path 1.7 +26 -17 src/tools/tools/nanobsd/Makefile 1.2 +2 -0 src/tools/tools/nanobsd/make.conf From owner-cvs-all@FreeBSD.ORG Sun Aug 8 13:10:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC59316A4CE; Sun, 8 Aug 2004 13:10:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBB2A43D1F; Sun, 8 Aug 2004 13:10:08 +0000 (GMT) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78DA8sL007158; Sun, 8 Aug 2004 13:10:08 GMT (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78DA8BL007157; Sun, 8 Aug 2004 13:10:08 GMT (envelope-from mheinen) Message-Id: <200408081310.i78DA8BL007157@repoman.freebsd.org> From: Martin Heinen Date: Sun, 8 Aug 2004 13:10:08 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/network-servers chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 13:10:09 -0000 mheinen 2004-08-08 13:10:08 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/network-servers chapter.sgml Log: ">" -> > Revision Changes Path 1.20 +1 -1 doc/en_US.ISO8859-1/books/handbook/network-servers/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 13:10:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E842D16A4D1; Sun, 8 Aug 2004 13:10:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7F7E43D1D; Sun, 8 Aug 2004 13:10:36 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78DAa8N007219; Sun, 8 Aug 2004 13:10:36 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78DAaS5007218; Sun, 8 Aug 2004 13:10:36 GMT (envelope-from mat) Message-Id: <200408081310.i78DAaS5007218@repoman.freebsd.org> From: Mathieu Arnold Date: Sun, 8 Aug 2004 13:10:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/p5-CGI-Framework Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 13:10:37 -0000 mat 2004-08-08 13:10:36 UTC FreeBSD ports repository Modified files: www/p5-CGI-Framework Makefile distinfo Log: Update to 0.15 Revision Changes Path 1.3 +1 -1 ports/www/p5-CGI-Framework/Makefile 1.3 +2 -2 ports/www/p5-CGI-Framework/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 13:20:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A38D216A4CE; Sun, 8 Aug 2004 13:20:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8077D43D5A; Sun, 8 Aug 2004 13:20:43 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78DKhOH007502; Sun, 8 Aug 2004 13:20:43 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78DKhVE007501; Sun, 8 Aug 2004 13:20:43 GMT (envelope-from phk) Message-Id: <200408081320.i78DKhVE007501@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 13:20:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/hpfs hpfs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 13:20:43 -0000 phk 2004-08-08 13:20:43 UTC FreeBSD src repository Modified files: sys/fs/hpfs hpfs_vnops.c Log: Use bufdone(), not biodone(). Revision Changes Path 1.49 +2 -2 src/sys/fs/hpfs/hpfs_vnops.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 13:21:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9EBB816A4CE; Sun, 8 Aug 2004 13:21:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9368643D3F; Sun, 8 Aug 2004 13:21:03 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78DL3Zu007615; Sun, 8 Aug 2004 13:21:03 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78DL3ba007614; Sun, 8 Aug 2004 13:21:03 GMT (envelope-from thierry) Message-Id: <200408081321.i78DL3ba007614@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 8 Aug 2004 13:21:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases Makefile ports/databases/sybase_ase Makefile distinfo pkg-descr pkg-install pkg-plist ports/databases/sybase_ase/files sybase.sh.sample X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 13:21:03 -0000 thierry 2004-08-08 13:21:03 UTC FreeBSD ports repository Modified files: databases Makefile Added files: databases/sybase_ase Makefile distinfo pkg-descr pkg-install pkg-plist databases/sybase_ase/files sybase.sh.sample Log: Add sybase_ase 11.0.3.3, Sybase ASE RDBM System 11. PR: 50068 Submitted by: Alex Kiesel Revision Changes Path 1.378 +1 -0 ports/databases/Makefile 1.1 +44 -0 ports/databases/sybase_ase/Makefile (new) 1.1 +2 -0 ports/databases/sybase_ase/distinfo (new) 1.1 +44 -0 ports/databases/sybase_ase/files/sybase.sh.sample (new) 1.1 +8 -0 ports/databases/sybase_ase/pkg-descr (new) 1.1 +121 -0 ports/databases/sybase_ase/pkg-install (new) 1.1 +1054 -0 ports/databases/sybase_ase/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 13:21:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2299316A4CE; Sun, 8 Aug 2004 13:21:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 034D343D45; Sun, 8 Aug 2004 13:21:16 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78DLF7a007661; Sun, 8 Aug 2004 13:21:15 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78DLFZj007660; Sun, 8 Aug 2004 13:21:15 GMT (envelope-from thierry) Message-Id: <200408081321.i78DLFZj007660@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 8 Aug 2004 13:21:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 13:21:16 -0000 thierry 2004-08-08 13:21:15 UTC FreeBSD ports repository Modified files: . modules Log: sybase_ase --> ports/databases/sybase_ase Revision Changes Path 1.10845 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Aug 8 13:21:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BDED16A4CE; Sun, 8 Aug 2004 13:21:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59B5943D1F; Sun, 8 Aug 2004 13:21:54 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78DLsVI007700; Sun, 8 Aug 2004 13:21:54 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78DLs5G007699; Sun, 8 Aug 2004 13:21:54 GMT (envelope-from phk) Message-Id: <200408081321.i78DLs5G007699@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 13:21:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ufs/ffs ffs_softdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 13:21:54 -0000 phk 2004-08-08 13:21:54 UTC FreeBSD src repository Modified files: sys/ufs/ffs ffs_softdep.c Log: use bufdone() not biodone(). Revision Changes Path 1.156 +3 -3 src/sys/ufs/ffs/ffs_softdep.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 13:23:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CA1016A4CE; Sun, 8 Aug 2004 13:23:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E10C243D45; Sun, 8 Aug 2004 13:23:05 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78DN5XP007746; Sun, 8 Aug 2004 13:23:05 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78DN5qE007745; Sun, 8 Aug 2004 13:23:05 GMT (envelope-from phk) Message-Id: <200408081323.i78DN5qE007745@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sun, 8 Aug 2004 13:23:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/specfs spec_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 13:23:06 -0000 phk 2004-08-08 13:23:05 UTC FreeBSD src repository Modified files: sys/fs/specfs spec_vnops.c Log: use bufdone() not biodone(). Revision Changes Path 1.226 +3 -3 src/sys/fs/specfs/spec_vnops.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 13:44:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8DF616A4CE; Sun, 8 Aug 2004 13:44:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 973A043D54; Sun, 8 Aug 2004 13:44:01 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78Di1WC009531; Sun, 8 Aug 2004 13:44:01 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78Di1vJ009530; Sun, 8 Aug 2004 13:44:01 GMT (envelope-from hrs) Message-Id: <200408081344.i78Di1vJ009530@repoman.freebsd.org> From: Hiroki Sato Date: Sun, 8 Aug 2004 13:44:01 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/5-roadmap article.sgml doc/en_US.ISO8859-1/articles/checkpointarticle.sgml doc/en_US.ISO8859-1/articles/contributingarticle.sgml ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 13:44:01 -0000 hrs 2004-08-08 13:44:01 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/5-roadmap article.sgml en_US.ISO8859-1/articles/checkpoint article.sgml en_US.ISO8859-1/articles/committers-guide article.sgml en_US.ISO8859-1/articles/console-server article.sgml en_US.ISO8859-1/articles/contributing article.sgml en_US.ISO8859-1/articles/contributors article.sgml en_US.ISO8859-1/articles/cvs-freebsd article.sgml en_US.ISO8859-1/articles/cvsup-advanced article.sgml en_US.ISO8859-1/articles/dialup-firewall article.sgml en_US.ISO8859-1/articles/diskless-x article.sgml en_US.ISO8859-1/articles/euro article.sgml en_US.ISO8859-1/articles/explaining-bsd article.sgml en_US.ISO8859-1/articles/fbsd-from-scratch article.sgml en_US.ISO8859-1/articles/filtering-bridges article.sgml en_US.ISO8859-1/articles/fonts article.sgml en_US.ISO8859-1/articles/formatting-media article.sgml en_US.ISO8859-1/articles/freebsd-questions article.sgml en_US.ISO8859-1/articles/hats article.sgml en_US.ISO8859-1/articles/hubs article.sgml en_US.ISO8859-1/articles/ipsec-must article.sgml en_US.ISO8859-1/articles/java-tomcat article.sgml en_US.ISO8859-1/articles/laptop article.sgml en_US.ISO8859-1/articles/mailing-list-faq article.sgml en_US.ISO8859-1/articles/mh article.sgml en_US.ISO8859-1/articles/multi-os article.sgml en_US.ISO8859-1/articles/new-users article.sgml en_US.ISO8859-1/articles/pam article.sgml en_US.ISO8859-1/articles/portbuild article.sgml en_US.ISO8859-1/articles/pr-guidelines article.sgml en_US.ISO8859-1/articles/problem-reports article.sgml en_US.ISO8859-1/articles/pxe article.sgml en_US.ISO8859-1/articles/relaydelay article.sgml en_US.ISO8859-1/articles/releng article.sgml en_US.ISO8859-1/articles/releng-packages article.sgml en_US.ISO8859-1/articles/serial-uart article.sgml en_US.ISO8859-1/articles/solid-state article.sgml en_US.ISO8859-1/articles/storage-devices article.sgml en_US.ISO8859-1/articles/vinum article.sgml en_US.ISO8859-1/articles/vm-design article.sgml en_US.ISO8859-1/articles/zip-drive article.sgml en_US.ISO8859-1/books/arch-handbook book.sgml en_US.ISO8859-1/books/bibliography book.sgml en_US.ISO8859-1/books/corp-net-guide book.sgml freebsd.dsl en_US.ISO8859-1/books/design-44bsd book.sgml freebsd.dsl en_US.ISO8859-1/books/dev-model book.sgml en_US.ISO8859-1/books/developers-handbook book.sgml en_US.ISO8859-1/books/faq book.sgml en_US.ISO8859-1/books/fdp-primer book.sgml en_US.ISO8859-1/books/handbook book.sgml en_US.ISO8859-1/books/porters-handbook book.sgml ja_JP.eucJP/articles/contributing article.sgml ja_JP.eucJP/articles/contributors article.sgml ja_JP.eucJP/articles/dialup-firewall article.sgml ja_JP.eucJP/articles/diskless-x article.sgml ja_JP.eucJP/articles/fbsd-from-scratch article.sgml ja_JP.eucJP/articles/fonts article.sgml ja_JP.eucJP/articles/ipsec-must article.sgml ja_JP.eucJP/articles/multi-os article.sgml ja_JP.eucJP/articles/problem-reports article.sgml ja_JP.eucJP/articles/zip-drive article.sgml ja_JP.eucJP/books/design-44bsd book.sgml ja_JP.eucJP/books/faq book.sgml ja_JP.eucJP/books/fdp-primer book.sgml ja_JP.eucJP/books/handbook book.sgml ja_JP.eucJP/books/porters-handbook book.sgml ja_JP.eucJP/books/ppp-primer book.sgml ja_JP.eucJP/share/sgml catalog share/sgml catalog Added files: ja_JP.eucJP/share/sgml articles.ent books.ent share/sgml articles.ent books.ent Log: Simplify parameter entities in doctype declaration. Currently we have articles.ent and books.ent, and for example, articles.ent can be used by putting the following lines in the doctype declaration: %articles.ent; This pulls all of the necessary entities via share/sgml/articles.ent. The translation teams can customize these entities by redefining the articles.ent file in /share/sgml. See ja_JP.eucJP/share/sgml for example. Revision Changes Path 1.23 +2 -18 doc/en_US.ISO8859-1/articles/5-roadmap/article.sgml 1.21 +2 -5 doc/en_US.ISO8859-1/articles/checkpoint/article.sgml 1.207 +2 -20 doc/en_US.ISO8859-1/articles/committers-guide/article.sgml 1.20 +2 -10 doc/en_US.ISO8859-1/articles/console-server/article.sgml 1.501 +2 -12 doc/en_US.ISO8859-1/articles/contributing/article.sgml 1.433 +2 -16 doc/en_US.ISO8859-1/articles/contributors/article.sgml 1.14 +2 -8 doc/en_US.ISO8859-1/articles/cvs-freebsd/article.sgml 1.13 +2 -5 doc/en_US.ISO8859-1/articles/cvsup-advanced/article.sgml 1.38 +2 -11 doc/en_US.ISO8859-1/articles/dialup-firewall/article.sgml 1.16 +2 -6 doc/en_US.ISO8859-1/articles/diskless-x/article.sgml 1.10 +2 -8 doc/en_US.ISO8859-1/articles/euro/article.sgml 1.12 +2 -8 doc/en_US.ISO8859-1/articles/explaining-bsd/article.sgml 1.11 +2 -6 doc/en_US.ISO8859-1/articles/fbsd-from-scratch/article.sgml 1.20 +2 -8 doc/en_US.ISO8859-1/articles/filtering-bridges/article.sgml 1.26 +2 -8 doc/en_US.ISO8859-1/articles/fonts/article.sgml 1.28 +2 -11 doc/en_US.ISO8859-1/articles/formatting-media/article.sgml 1.22 +2 -10 doc/en_US.ISO8859-1/articles/freebsd-questions/article.sgml 1.8 +2 -14 doc/en_US.ISO8859-1/articles/hats/article.sgml 1.51 +2 -12 doc/en_US.ISO8859-1/articles/hubs/article.sgml 1.15 +2 -8 doc/en_US.ISO8859-1/articles/ipsec-must/article.sgml 1.23 +2 -8 doc/en_US.ISO8859-1/articles/java-tomcat/article.sgml 1.20 +2 -14 doc/en_US.ISO8859-1/articles/laptop/article.sgml 1.4 +2 -20 doc/en_US.ISO8859-1/articles/mailing-list-faq/article.sgml 1.24 +2 -6 doc/en_US.ISO8859-1/articles/mh/article.sgml 1.38 +2 -5 doc/en_US.ISO8859-1/articles/multi-os/article.sgml 1.46 +2 -10 doc/en_US.ISO8859-1/articles/new-users/article.sgml 1.28 +2 -8 doc/en_US.ISO8859-1/articles/pam/article.sgml 1.6 +2 -12 doc/en_US.ISO8859-1/articles/portbuild/article.sgml 1.17 +2 -10 doc/en_US.ISO8859-1/articles/pr-guidelines/article.sgml 1.34 +2 -10 doc/en_US.ISO8859-1/articles/problem-reports/article.sgml 1.24 +2 -11 doc/en_US.ISO8859-1/articles/pxe/article.sgml 1.6 +2 -11 doc/en_US.ISO8859-1/articles/relaydelay/article.sgml 1.17 +2 -10 doc/en_US.ISO8859-1/articles/releng-packages/article.sgml 1.60 +2 -14 doc/en_US.ISO8859-1/articles/releng/article.sgml 1.12 +2 -8 doc/en_US.ISO8859-1/articles/serial-uart/article.sgml 1.12 +2 -5 doc/en_US.ISO8859-1/articles/solid-state/article.sgml 1.14 +2 -6 doc/en_US.ISO8859-1/articles/storage-devices/article.sgml 1.15 +2 -5 doc/en_US.ISO8859-1/articles/vinum/article.sgml 1.14 +2 -7 doc/en_US.ISO8859-1/articles/vm-design/article.sgml 1.13 +2 -7 doc/en_US.ISO8859-1/articles/zip-drive/article.sgml 1.47 +7 -12 doc/en_US.ISO8859-1/books/arch-handbook/book.sgml 1.2 +4 -1 doc/en_US.ISO8859-1/books/bibliography/book.sgml 1.10 +4 -1 doc/en_US.ISO8859-1/books/corp-net-guide/book.sgml 1.2 +2 -2 doc/en_US.ISO8859-1/books/corp-net-guide/freebsd.dsl 1.8 +2 -2 doc/en_US.ISO8859-1/books/design-44bsd/book.sgml 1.3 +2 -2 doc/en_US.ISO8859-1/books/design-44bsd/freebsd.dsl 1.5 +2 -6 doc/en_US.ISO8859-1/books/dev-model/book.sgml 1.49 +2 -12 doc/en_US.ISO8859-1/books/developers-handbook/book.sgml 1.638 +3 -23 doc/en_US.ISO8859-1/books/faq/book.sgml 1.25 +2 -16 doc/en_US.ISO8859-1/books/fdp-primer/book.sgml 1.155 +6 -21 doc/en_US.ISO8859-1/books/handbook/book.sgml 1.474 +2 -15 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml 1.77 +2 -10 doc/ja_JP.eucJP/articles/contributing/article.sgml 1.18 +2 -14 doc/ja_JP.eucJP/articles/contributors/article.sgml 1.12 +2 -6 doc/ja_JP.eucJP/articles/dialup-firewall/article.sgml 1.9 +2 -6 doc/ja_JP.eucJP/articles/diskless-x/article.sgml 1.4 +2 -8 doc/ja_JP.eucJP/articles/fbsd-from-scratch/article.sgml 1.10 +2 -8 doc/ja_JP.eucJP/articles/fonts/article.sgml 1.8 +2 -8 doc/ja_JP.eucJP/articles/ipsec-must/article.sgml 1.12 +2 -10 doc/ja_JP.eucJP/articles/multi-os/article.sgml 1.3 +2 -6 doc/ja_JP.eucJP/articles/problem-reports/article.sgml 1.8 +2 -8 doc/ja_JP.eucJP/articles/zip-drive/article.sgml 1.9 +2 -2 doc/ja_JP.eucJP/books/design-44bsd/book.sgml 1.64 +2 -18 doc/ja_JP.eucJP/books/faq/book.sgml 1.3 +5 -5 doc/ja_JP.eucJP/books/fdp-primer/book.sgml 1.78 +2 -23 doc/ja_JP.eucJP/books/handbook/book.sgml 1.27 +2 -12 doc/ja_JP.eucJP/books/porters-handbook/book.sgml 1.7 +2 -2 doc/ja_JP.eucJP/books/ppp-primer/book.sgml 1.1 +32 -0 doc/ja_JP.eucJP/share/sgml/articles.ent (new) 1.1 +34 -0 doc/ja_JP.eucJP/share/sgml/books.ent (new) 1.7 +6 -0 doc/ja_JP.eucJP/share/sgml/catalog 1.1 +22 -0 doc/share/sgml/articles.ent (new) 1.1 +24 -0 doc/share/sgml/books.ent (new) 1.31 +9 -3 doc/share/sgml/catalog From owner-cvs-all@FreeBSD.ORG Sun Aug 8 14:05:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CB7016A4CE; Sun, 8 Aug 2004 14:05:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1F6143D2F; Sun, 8 Aug 2004 14:05:38 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78E5cCo010167; Sun, 8 Aug 2004 14:05:38 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78E5cXF010166; Sun, 8 Aug 2004 14:05:38 GMT (envelope-from pav) Message-Id: <200408081405.i78E5cXF010166@repoman.freebsd.org> From: Pav Lucistnik Date: Sun, 8 Aug 2004 14:05:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/clamav Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 14:05:39 -0000 pav 2004-08-08 14:05:38 UTC FreeBSD ports repository Modified files: security/clamav Makefile distinfo Log: - Update to 0.75.1 PR: ports/69805 Submitted by: Marcus Grando Approved by: maintainer Revision Changes Path 1.39 +1 -1 ports/security/clamav/Makefile 1.13 +2 -2 ports/security/clamav/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 14:06:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E63AA16A4CE; Sun, 8 Aug 2004 14:06:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C746A43D45; Sun, 8 Aug 2004 14:06:56 +0000 (GMT) (envelope-from demon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78E6ua7010403; Sun, 8 Aug 2004 14:06:56 GMT (envelope-from demon@repoman.freebsd.org) Received: (from demon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78E6u1Z010402; Sun, 8 Aug 2004 14:06:56 GMT (envelope-from demon) Message-Id: <200408081406.i78E6u1Z010402@repoman.freebsd.org> From: Dmitry Sivachenko Date: Sun, 8 Aug 2004 14:06:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/p5-SNMP_Session Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 14:06:57 -0000 demon 2004-08-08 14:06:56 UTC FreeBSD ports repository Modified files: net-mgmt/p5-SNMP_Session Makefile distinfo Log: Update to version 1.05. Revision Changes Path 1.27 +1 -1 ports/net-mgmt/p5-SNMP_Session/Makefile 1.17 +2 -2 ports/net-mgmt/p5-SNMP_Session/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 14:07:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32AFA16A4CE; Sun, 8 Aug 2004 14:07:23 +0000 (GMT) Received: from utopia.leeym.com (utopia.leeym.com [211.21.137.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6F8943D2F; Sun, 8 Aug 2004 14:07:22 +0000 (GMT) (envelope-from leeym@utopia.leeym.com) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id AF6983EAB21; Sun, 8 Aug 2004 22:07:21 +0800 (CST) Received: from utopia.leeym.com ([127.0.0.1]) by localhost (utopia.leeym.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 60615-01; Sun, 8 Aug 2004 22:07:09 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 655BF3EAB1F; Sun, 8 Aug 2004 22:07:05 +0800 (CST) Date: Sun, 8 Aug 2004 22:07:05 +0800 From: Yen-Ming Lee To: Mathieu Arnold Message-ID: <20040808140705.GA60628@utopia.leeym.com> References: <20040805011031.54E8C16A4EC@hub.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="5mCyUwZo2JvN/JJP" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new at leeym.com cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/textproc/p5-Pod-Stripper Makefile ports/textproc/p5-PodParser Makefile ports/textproc/p5-podlators Makefile ports/textproc/p5-Pod-Constants Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 14:07:23 -0000 --5mCyUwZo2JvN/JJP Content-Type: text/plain; charset=big5 Content-Disposition: inline Content-Transfer-Encoding: 8bit On Sat, Aug 07, 2004 at 10:57:42AM +0200, Mathieu Arnold wrote: > +-le 05/08/2004 01:10 +0000, Yen-Ming Lee écrivait : > | leeym 2004-08-05 01:10:27 UTC > | > | - p5-podlators and p5-PodParser conflict with perl 5.6 or above. > | They should be conditional dependency when PERL_LEVEL < 500601. > | > | - add "CONFLICTS= perl-5.6.* perl-5.8.*" in p5-podlators and p5-PodParser > This is a very bad idea, because all ports depending on them are now broken > too. Moreover, these add more up-to-date versions of the modules and scripts, > which are needed by some ports that depend on them. And to finish, these > ports do not really CONFLICT, well the do but, because they install newer > versions of these scripts. > If you want to maintain these CONFLICT lines, at least, update the ports > depending on them so that they build now (and check that they build with the > stock versions of these modules). One way is what I mentioned that to make p5-podlators and p5-PodParser as optional dependency, and keep that CONFLICT to perl 5.6 or above. The alternative is that not to install scripts in PREFIX/bin when installing p5-podlators and p5-PodParser under perl 5.6 or above. Which way do you prefer? the second one? -- Yen-Ming Lee [utf7:+Z05fZWYO] | KeyID:0x5EB52E51 | Taipei, Taiwan --5mCyUwZo2JvN/JJP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iQCVAwUBQRYziMnMx0NetS5RAQFb6QQAgGZXpl5Njyk8x67HyqIXO6qOp5l+grKE BvEwwCIaObNgtUAZ5zdUBrfAOtUISRAvU/G5c59i6zpc7IjiFiFmqBh7Wn0ovEQM J4mQWpbI/aZaELoZdrMnzvwAu3FVrCxjZi3yXsJt8z2RQjFK4ybae2KL3OBZe554 I7IjR/q71B8= =ZEi7 -----END PGP SIGNATURE----- --5mCyUwZo2JvN/JJP-- From owner-cvs-all@FreeBSD.ORG Sun Aug 8 14:09:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1575016A4CE; Sun, 8 Aug 2004 14:09:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9F0143D46; Sun, 8 Aug 2004 14:09:44 +0000 (GMT) (envelope-from demon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78E9iII010483; Sun, 8 Aug 2004 14:09:44 GMT (envelope-from demon@repoman.freebsd.org) Received: (from demon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78E9iTV010482; Sun, 8 Aug 2004 14:09:44 GMT (envelope-from demon) Message-Id: <200408081409.i78E9iTV010482@repoman.freebsd.org> From: Dmitry Sivachenko Date: Sun, 8 Aug 2004 14:09:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/mrtg Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 14:09:45 -0000 demon 2004-08-08 14:09:44 UTC FreeBSD ports repository Modified files: net-mgmt/mrtg Makefile distinfo Log: Update to version 2.0.15. Revision Changes Path 1.78 +1 -1 ports/net-mgmt/mrtg/Makefile 1.47 +2 -2 ports/net-mgmt/mrtg/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 14:11:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF8EA16A4CE; Sun, 8 Aug 2004 14:11:20 +0000 (GMT) Received: from plouf.absolight.net (plouf.absolight.net [212.43.217.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 418F343D48; Sun, 8 Aug 2004 14:11:20 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by plouf.absolight.net (Postfix) with ESMTP id CB9D44113; Sun, 8 Aug 2004 16:11:18 +0200 (CEST) Received: from plouf.absolight.net ([127.0.0.1])port 20024) with ESMTP id 03449-04; Sun, 8 Aug 2004 16:11:11 +0200 (CEST) X-Original-To: ports-committers@FreeBSD.org X-Original-To: leeym@FreeBSD.org X-Original-To: cvs-ports@FreeBSD.org X-Original-To: cvs-all@FreeBSD.org Received: from nescarba.in.t-online.fr (nescarba.in.t-online.fr [213.44.126.9]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id D5D51416F; Sun, 8 Aug 2004 16:11:09 +0200 (CEST) Date: Sun, 08 Aug 2004 16:10:58 +0200 From: Mathieu Arnold To: Yen-Ming Lee Message-ID: <12F0216CE48BCF997F253627@nescarba.in.t-online.fr> In-Reply-To: <20040808140705.GA60628@utopia.leeym.com> References: <20040805011031.54E8C16A4EC@hub.freebsd.org> <20040808140705.GA60628@utopia.leeym.com> X-Mailer: Mulberry/3.1.5 (Win32) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========113D307152FC6D5EFC41==========" X-Spam-Checker-Version: SpamAssassin 2.64-abso_2004012301 (2004-01-11) on plouf.absolight.net by root@absolight.fr X-Virus-Scanned: by amavisd-new at plouf.absolight.net X-Spam-Status: No, hits=-2.623 tagged_above=-10 required=5 tests=AWL, BAYES_00, SUBJ_HAS_SPACES X-Spam-Level: cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/textproc/p5-Pod-Stripper Makefile ports/textproc/p5-PodParser Makefile ports/textproc/p5-podlators Makefile ports/textproc/p5-Pod-Constants Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 14:11:21 -0000 --==========113D307152FC6D5EFC41========== Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable Content-Disposition: inline +-le 08/08/2004 22:07 +0800, Yen-Ming Lee =E9crivait : | On Sat, Aug 07, 2004 at 10:57:42AM +0200, Mathieu Arnold wrote: |> +-le 05/08/2004 01:10 +0000, Yen-Ming Lee =E9crivait : |> | leeym 2004-08-05 01:10:27 UTC |> |=20 |> | - p5-podlators and p5-PodParser conflict with perl 5.6 or above. |> | They should be conditional dependency when PERL_LEVEL < 500601. |> | =20 |> | - add "CONFLICTS=3D perl-5.6.* perl-5.8.*" in p5-podlators and |> | p5-PodParser |> This is a very bad idea, because all ports depending on them are now = broken |> too. Moreover, these add more up-to-date versions of the modules and |> scripts, which are needed by some ports that depend on them. And to |> finish, these ports do not really CONFLICT, well the do but, because they |> install newer versions of these scripts. |> If you want to maintain these CONFLICT lines, at least, update the ports |> depending on them so that they build now (and check that they build with |> the stock versions of these modules). |=20 | One way is what I mentioned that to make p5-podlators and p5-PodParser as | optional dependency, and keep that CONFLICT to perl 5.6 or above. |=20 | The alternative is that not to install scripts in PREFIX/bin when = installing | p5-podlators and p5-PodParser under perl 5.6 or above. |=20 | Which way do you prefer? the second one? I think I'd rather take the second one, yes. --=20 Mathieu Arnold --==========113D307152FC6D5EFC41========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (MingW32) iQEVAwUBQRY0dlvROjYJ63c1AQL/Agf/dvWjNRpUFyQN4WL7Cvla6W2I3zETKvk6 X84hGD0lOlVAtnA87+CHUK6KeaPrQ3zOiooEqOpQMkC/+mmmsWIgxeavEGPO+2Pe CKDigX/S5qCTTYZuAgJOJl4Op71PiHDyf739Dv49s3+pazBgpyKTeP5ix8A4iBFI oChH02l9ebNC7sI6cPaV6x55UajpSz18f4rO1SO4A0sq/z2BHKUXDoqUTg3ZwwRf CagJJw3nMOsLNGXZc6th5bXZccpy8GpJfZvh1I+rqxNjxH89HdghdtKH9cdSGyac UvhzmBJQ58YimJo+8iH/95ATDIDgf9K+xJj8PyiXXQ5n8At9nGBSMw== =ry4A -----END PGP SIGNATURE----- --==========113D307152FC6D5EFC41==========-- From owner-cvs-all@FreeBSD.ORG Sun Aug 8 14:15:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52F7F16A4CE; Sun, 8 Aug 2004 14:15:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 328C543D55; Sun, 8 Aug 2004 14:15:55 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78EFtZY010724; Sun, 8 Aug 2004 14:15:55 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78EFtlu010723; Sun, 8 Aug 2004 14:15:55 GMT (envelope-from thierry) Message-Id: <200408081415.i78EFtlu010723@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 8 Aug 2004 14:15:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/portdowngrade Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 14:15:55 -0000 thierry 2004-08-08 14:15:55 UTC FreeBSD ports repository Modified files: sysutils/portdowngrade Makefile distinfo Log: Version 0.5 release. - Bugfix: sometimes the ports version was wrong; - A default cvs server can be set; - Port revision is added to port version number. PR: 70162 Submitted by: maintainer. Revision Changes Path 1.6 +15 -2 ports/sysutils/portdowngrade/Makefile 1.5 +2 -2 ports/sysutils/portdowngrade/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 14:25:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A06D516A4CE; Sun, 8 Aug 2004 14:25:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FCD643D46; Sun, 8 Aug 2004 14:25:31 +0000 (GMT) (envelope-from demon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78EPVgV010992; Sun, 8 Aug 2004 14:25:31 GMT (envelope-from demon@repoman.freebsd.org) Received: (from demon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78EPVN3010991; Sun, 8 Aug 2004 14:25:31 GMT (envelope-from demon) Message-Id: <200408081425.i78EPVN3010991@repoman.freebsd.org> From: Dmitry Sivachenko Date: Sun, 8 Aug 2004 14:25:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/rrdtool Makefile distinfo ports/net/rrdtool/files patch-aa patch-ab patch-ac patch-rrd_graph.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 14:25:31 -0000 demon 2004-08-08 14:25:31 UTC FreeBSD ports repository Modified files: net/rrdtool Makefile distinfo net/rrdtool/files patch-aa patch-ac patch-rrd_graph.c Removed files: net/rrdtool/files patch-ab Log: Update to version 1.0.49 Revision Changes Path 1.37 +1 -1 ports/net/rrdtool/Makefile 1.20 +2 -2 ports/net/rrdtool/distinfo 1.5 +3 -3 ports/net/rrdtool/files/patch-aa 1.6 +0 -18 ports/net/rrdtool/files/patch-ab (dead) 1.7 +17 -9 ports/net/rrdtool/files/patch-ac 1.2 +4 -4 ports/net/rrdtool/files/patch-rrd_graph.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 14:39:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21FA816A4CE; Sun, 8 Aug 2004 14:39:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02A5943D48; Sun, 8 Aug 2004 14:39:09 +0000 (GMT) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78Ed8WM011362; Sun, 8 Aug 2004 14:39:08 GMT (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78Ed8Cp011361; Sun, 8 Aug 2004 14:39:08 GMT (envelope-from mheinen) Message-Id: <200408081439.i78Ed8Cp011361@repoman.freebsd.org> From: Martin Heinen Date: Sun, 8 Aug 2004 14:39:08 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/ports chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 14:39:09 -0000 mheinen 2004-08-08 14:39:08 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/ports chapter.sgml Log: Fix a typo. Revision Changes Path 1.226 +1 -1 doc/en_US.ISO8859-1/books/handbook/ports/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 14:43:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D062E16A4CE; Sun, 8 Aug 2004 14:43:56 +0000 (GMT) Received: from hood.oook.cz (hood.oook.cz [212.27.205.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id E23EB43D39; Sun, 8 Aug 2004 14:43:55 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from hood.oook.cz (localhost.oook.cz [127.0.0.1]) by hood.oook.cz (8.12.11/8.12.11) with ESMTP id i78EhsdK069472 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 8 Aug 2004 16:43:54 +0200 (CEST) (envelope-from pav@FreeBSD.org) Received: (from pav@localhost) by hood.oook.cz (8.12.11/8.12.11/Submit) id i78EhsGL069458; Sun, 8 Aug 2004 16:43:54 +0200 (CEST) (envelope-from pav@FreeBSD.org) X-Authentication-Warning: hood.oook.cz: pav set sender to pav@FreeBSD.org using -f From: Pav Lucistnik To: Hye-Shik Chang In-Reply-To: <200408081231.i78CVlEG005738@repoman.freebsd.org> References: <200408081231.i78CVlEG005738@repoman.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-L1XWMXL6bsX1gKt0Rkjq" Message-Id: <1091976233.56763.17.camel@hood.oook.cz> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Sun, 08 Aug 2004 16:43:53 +0200 cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/graphics/py-paint Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 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: Sun, 08 Aug 2004 14:43:57 -0000 --=-L1XWMXL6bsX1gKt0Rkjq Content-Type: text/plain; charset=iso-8859-2 Content-Transfer-Encoding: quoted-printable V ne, 08. 08. 2004 v 14:31, Hye-Shik Chang p=ED=B9e: > perky 2004-08-08 12:31:47 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > graphics/py-paint Makefile distinfo pkg-plist=20 > Log: > Update to 0.3 > =20 > PR: 70000 (!) > Submitted by: ijliao Nice PR number. :) --=20 Pav Lucistnik Any Palm app requiring an 90+ page manual has lost its vision. -- words about DateBk4 on Action Names list --=-L1XWMXL6bsX1gKt0Rkjq Content-Type: application/pgp-signature; name=signature.asc Content-Description: Toto je =?iso-8859-2?Q?digit=E1ln=EC?= =?ISO-8859-1?Q?_podepsan=E1?= =?iso-8859-2?Q?_=E8=E1st?= =?ISO-8859-1?Q?_zpr=E1vy?= -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBFjwpntdYP8FOsoIRAoG6AJ9rbB+/y8gfhYhldinv8OylFq2ZhACcC4yz +olEZipU8P4EulPog45XDn0= =PNp2 -----END PGP SIGNATURE----- --=-L1XWMXL6bsX1gKt0Rkjq-- From owner-cvs-all@FreeBSD.ORG Sun Aug 8 14:50:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 27C0216A4CE; Sun, 8 Aug 2004 14:50:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E80543D39; Sun, 8 Aug 2004 14:50:50 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78Eoof1011779; Sun, 8 Aug 2004 14:50:50 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78Eon4D011778; Sun, 8 Aug 2004 14:50:49 GMT (envelope-from clement) Message-Id: <200408081450.i78Eon4D011778@repoman.freebsd.org> From: Clement Laforet Date: Sun, 8 Aug 2004 14:50:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules ports/www Makefile ports/www/mod_macro2 Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 14:50:50 -0000 clement 2004-08-08 14:50:49 UTC FreeBSD ports repository Modified files: . modules www Makefile Added files: www/mod_macro2 Makefile distinfo pkg-descr Log: - Add mod_macro 1.1.6 for apache2 mod_macro is a third-party module to the Apache Http Server, distributed with a BSD-style license like Apache. It allows the definition and use of macros within apache runtime configuration files. The syntax is a natural extension to apache html-like configuration style. WWW: http://www.cri.ensmp.fr/~coelho/mod_macro/ Revision Changes Path 1.10846 +1 -0 CVSROOT/modules 1.959 +1 -0 ports/www/Makefile 1.1 +28 -0 ports/www/mod_macro2/Makefile (new) 1.1 +2 -0 ports/www/mod_macro2/distinfo (new) 1.1 +6 -0 ports/www/mod_macro2/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 14:54:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5359B16A4CE; Sun, 8 Aug 2004 14:54:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35A8A43D2F; Sun, 8 Aug 2004 14:54:22 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78EsMGV011880; Sun, 8 Aug 2004 14:54:22 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78EsMKp011879; Sun, 8 Aug 2004 14:54:22 GMT (envelope-from clement) Message-Id: <200408081454.i78EsMKp011879@repoman.freebsd.org> From: Clement Laforet Date: Sun, 8 Aug 2004 14:54:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mod_macro2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 14:54:22 -0000 clement 2004-08-08 14:54:22 UTC FreeBSD ports repository Modified files: www/mod_macro2 Makefile Log: - Add missing "post-install:" Revision Changes Path 1.2 +1 -0 ports/www/mod_macro2/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 14:55:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59CEE16A4CE; Sun, 8 Aug 2004 14:55:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AC3B43D3F; Sun, 8 Aug 2004 14:55:31 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78EtV7M011990; Sun, 8 Aug 2004 14:55:31 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78EtVgb011989; Sun, 8 Aug 2004 14:55:31 GMT (envelope-from clement) Message-Id: <200408081455.i78EtVgb011989@repoman.freebsd.org> From: Clement Laforet Date: Sun, 8 Aug 2004 14:55:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mod_macro Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 14:55:31 -0000 clement 2004-08-08 14:55:31 UTC FreeBSD ports repository Modified files: www/mod_macro Makefile Removed files: www/mod_macro pkg-plist Log: - Convert to use Makefile.modules.3rd Revision Changes Path 1.2 +9 -7 ports/www/mod_macro/Makefile 1.2 +0 -5 ports/www/mod_macro/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 14:59:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CCA216A4CE; Sun, 8 Aug 2004 14:59:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C8AD43D1F; Sun, 8 Aug 2004 14:59:28 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78ExRFP012517; Sun, 8 Aug 2004 14:59:27 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78ExRUY012516; Sun, 8 Aug 2004 14:59:27 GMT (envelope-from hrs) Message-Id: <200408081459.i78ExRUY012516@repoman.freebsd.org> From: Hiroki Sato Date: Sun, 8 Aug 2004 14:59:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/early-adopter article.sgml src/release/doc/en_US.ISO8859-1/errataarticle.sgml src/release/doc/en_US.ISO8859-1/hardware/i386article.sgml ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 14:59:28 -0000 hrs 2004-08-08 14:59:27 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/early-adopter article.sgml release/doc/en_US.ISO8859-1/errata article.sgml release/doc/en_US.ISO8859-1/hardware/alpha article.sgml release/doc/en_US.ISO8859-1/hardware/amd64 article.sgml release/doc/en_US.ISO8859-1/hardware/i386 article.sgml release/doc/en_US.ISO8859-1/hardware/ia64 article.sgml release/doc/en_US.ISO8859-1/hardware/pc98 article.sgml release/doc/en_US.ISO8859-1/hardware/sparc64 article.sgml release/doc/en_US.ISO8859-1/installation/alpha article.sgml release/doc/en_US.ISO8859-1/installation/amd64 article.sgml release/doc/en_US.ISO8859-1/installation/i386 article.sgml release/doc/en_US.ISO8859-1/installation/ia64 article.sgml release/doc/en_US.ISO8859-1/installation/pc98 article.sgml release/doc/en_US.ISO8859-1/installation/sparc64 article.sgml release/doc/en_US.ISO8859-1/readme article.sgml release/doc/en_US.ISO8859-1/relnotes/alpha article.sgml release/doc/en_US.ISO8859-1/relnotes/amd64 article.sgml release/doc/en_US.ISO8859-1/relnotes/i386 Makefile article.sgml release/doc/en_US.ISO8859-1/relnotes/ia64 article.sgml release/doc/en_US.ISO8859-1/relnotes/pc98 article.sgml release/doc/en_US.ISO8859-1/relnotes/sparc64 article.sgml Log: Simplify parameter entities in doctype declaration. Revision Changes Path 1.20 +2 -18 src/release/doc/en_US.ISO8859-1/early-adopter/article.sgml 1.69 +3 -11 src/release/doc/en_US.ISO8859-1/errata/article.sgml 1.6 +2 -6 src/release/doc/en_US.ISO8859-1/hardware/alpha/article.sgml 1.3 +3 -6 src/release/doc/en_US.ISO8859-1/hardware/amd64/article.sgml 1.6 +3 -6 src/release/doc/en_US.ISO8859-1/hardware/i386/article.sgml 1.5 +3 -6 src/release/doc/en_US.ISO8859-1/hardware/ia64/article.sgml 1.3 +3 -6 src/release/doc/en_US.ISO8859-1/hardware/pc98/article.sgml 1.5 +3 -6 src/release/doc/en_US.ISO8859-1/hardware/sparc64/article.sgml 1.4 +6 -8 src/release/doc/en_US.ISO8859-1/installation/alpha/article.sgml 1.2 +5 -7 src/release/doc/en_US.ISO8859-1/installation/amd64/article.sgml 1.5 +5 -7 src/release/doc/en_US.ISO8859-1/installation/i386/article.sgml 1.2 +5 -7 src/release/doc/en_US.ISO8859-1/installation/ia64/article.sgml 1.2 +5 -7 src/release/doc/en_US.ISO8859-1/installation/pc98/article.sgml 1.5 +4 -8 src/release/doc/en_US.ISO8859-1/installation/sparc64/article.sgml 1.31 +3 -10 src/release/doc/en_US.ISO8859-1/readme/article.sgml 1.6 +5 -11 src/release/doc/en_US.ISO8859-1/relnotes/alpha/article.sgml 1.4 +5 -11 src/release/doc/en_US.ISO8859-1/relnotes/amd64/article.sgml 1.7 +3 -1 src/release/doc/en_US.ISO8859-1/relnotes/i386/Makefile 1.7 +5 -11 src/release/doc/en_US.ISO8859-1/relnotes/i386/article.sgml 1.4 +5 -11 src/release/doc/en_US.ISO8859-1/relnotes/ia64/article.sgml 1.4 +5 -11 src/release/doc/en_US.ISO8859-1/relnotes/pc98/article.sgml 1.6 +5 -13 src/release/doc/en_US.ISO8859-1/relnotes/sparc64/article.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 15:03:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D3D716A4CE; Sun, 8 Aug 2004 15:03:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F16E943D31; Sun, 8 Aug 2004 15:03:20 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78F3KlB012688; Sun, 8 Aug 2004 15:03:20 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78F3KJZ012687; Sun, 8 Aug 2004 15:03:20 GMT (envelope-from thierry) Message-Id: <200408081503.i78F3KJZ012687@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 8 Aug 2004 15:03:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/portmanager Makefile distinfo pkg-plist ports/sysutils/portmanager/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 15:03:21 -0000 thierry 2004-08-08 15:03:20 UTC FreeBSD ports repository Modified files: sysutils/portmanager Makefile distinfo pkg-plist Removed files: sysutils/portmanager/files patch-configure Log: Upgrade to 0.1.7. PR: ports/70136 Submitted by: maintainer. Revision Changes Path 1.2 +23 -2 ports/sysutils/portmanager/Makefile 1.2 +2 -2 ports/sysutils/portmanager/distinfo 1.2 +0 -30 ports/sysutils/portmanager/files/patch-configure (dead) 1.2 +7 -62 ports/sysutils/portmanager/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 8 15:08:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3BBE16A4CE; Sun, 8 Aug 2004 15:08:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5A6643D55; Sun, 8 Aug 2004 15:08:29 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78F8Tfi012886; Sun, 8 Aug 2004 15:08:29 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78F8TX3012885; Sun, 8 Aug 2004 15:08:29 GMT (envelope-from hrs) Message-Id: <200408081508.i78F8TX3012885@repoman.freebsd.org> From: Hiroki Sato Date: Sun, 8 Aug 2004 15:08:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/early-adopter article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 15:08:29 -0000 hrs 2004-08-08 15:08:29 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/early-adopter article.sgml Log: Use &url.*; for URLs in www.FreeBSD.org. Revision Changes Path 1.21 +7 -7 src/release/doc/en_US.ISO8859-1/early-adopter/article.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 15:09:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E85716A4CE; Sun, 8 Aug 2004 15:09:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3AEC43D41; Sun, 8 Aug 2004 15:09:20 +0000 (GMT) (envelope-from sf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78F9Kn8012928; Sun, 8 Aug 2004 15:09:20 GMT (envelope-from sf@repoman.freebsd.org) Received: (from sf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78F9KIC012927; Sun, 8 Aug 2004 15:09:20 GMT (envelope-from sf) Message-Id: <200408081509.i78F9KIC012927@repoman.freebsd.org> From: FUJISHIMA Satsuki Date: Sun, 8 Aug 2004 15:09:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/md5deep Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 15:09:21 -0000 sf 2004-08-08 15:09:20 UTC FreeBSD ports repository Modified files: security/md5deep Makefile Log: respect CC/CFLAGS. Revision Changes Path 1.2 +5 -1 ports/security/md5deep/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 15:46:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68A8416A4CE; Sun, 8 Aug 2004 15:46:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6032B43D2D; Sun, 8 Aug 2004 15:46:52 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78Fkq7L014080; Sun, 8 Aug 2004 15:46:52 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78FkqCq014079; Sun, 8 Aug 2004 15:46:52 GMT (envelope-from vanilla) Message-Id: <200408081546.i78FkqCq014079@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 8 Aug 2004 15:46:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel Makefile ports/devel/eet Makefile distinfo pkg-descr pkg-plist ports/devel/eet/files patch-src-lib-Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 15:46:52 -0000 vanilla 2004-08-08 15:46:52 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/eet Makefile distinfo pkg-descr pkg-plist devel/eet/files patch-src-lib-Makefile.in Log: Add eet, it's a data handling library for enlightenment. Revision Changes Path 1.1669 +1 -0 ports/devel/Makefile 1.1 +27 -0 ports/devel/eet/Makefile (new) 1.1 +2 -0 ports/devel/eet/distinfo (new) 1.1 +11 -0 ports/devel/eet/files/patch-src-lib-Makefile.in (new) 1.1 +7 -0 ports/devel/eet/pkg-descr (new) 1.1 +7 -0 ports/devel/eet/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 15:48:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB41F16A4CE; Sun, 8 Aug 2004 15:48:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE2F243D2F; Sun, 8 Aug 2004 15:48:13 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78FmD0u014168; Sun, 8 Aug 2004 15:48:13 GMT (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78FmD0D014167; Sun, 8 Aug 2004 15:48:13 GMT (envelope-from adamw) Message-Id: <200408081548.i78FmD0D014167@repoman.freebsd.org> From: Adam Weinberger Date: Sun, 8 Aug 2004 15:48:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/elmo pkg-message X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 15:48:14 -0000 adamw 2004-08-08 15:48:13 UTC FreeBSD ports repository Modified files: mail/elmo pkg-message Log: Reword to stress that each user must run the elmo configgeration program. Revision Changes Path 1.4 +2 -2 ports/mail/elmo/pkg-message From owner-cvs-all@FreeBSD.ORG Sun Aug 8 15:48:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D662616A4D0; Sun, 8 Aug 2004 15:48:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B85BB43D41; Sun, 8 Aug 2004 15:48:21 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78FmLOw014227; Sun, 8 Aug 2004 15:48:21 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78FmLTW014226; Sun, 8 Aug 2004 15:48:21 GMT (envelope-from vanilla) Message-Id: <200408081548.i78FmLTW014226@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 8 Aug 2004 15:48:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang Makefile ports/lang/embryo Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 15:48:22 -0000 vanilla 2004-08-08 15:48:21 UTC FreeBSD ports repository Modified files: lang Makefile Added files: lang/embryo Makefile distinfo pkg-descr pkg-plist Log: Add embryo, it's a C like scripting language used in parts of the Enlightenment. Revision Changes Path 1.417 +1 -0 ports/lang/Makefile 1.1 +25 -0 ports/lang/embryo/Makefile (new) 1.1 +2 -0 ports/lang/embryo/distinfo (new) 1.1 +6 -0 ports/lang/embryo/pkg-descr (new) 1.1 +18 -0 ports/lang/embryo/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 15:50:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7BAC16A4CE; Sun, 8 Aug 2004 15:50:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FB2543D45; Sun, 8 Aug 2004 15:50:44 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78FoihH014373; Sun, 8 Aug 2004 15:50:44 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78FoitX014372; Sun, 8 Aug 2004 15:50:44 GMT (envelope-from vanilla) Message-Id: <200408081550.i78FoitX014372@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 8 Aug 2004 15:50:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 15:50:44 -0000 vanilla 2004-08-08 15:50:44 UTC FreeBSD ports repository Modified files: . modules Log: Add devel/eet and graphics/embryo. Revision Changes Path 1.10847 +2 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Aug 8 15:51:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7273516A4CE; Sun, 8 Aug 2004 15:51:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69E0D43D45; Sun, 8 Aug 2004 15:51:36 +0000 (GMT) (envelope-from andreas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78FpasO014433; Sun, 8 Aug 2004 15:51:36 GMT (envelope-from andreas@repoman.freebsd.org) Received: (from andreas@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78Fpa80014432; Sun, 8 Aug 2004 15:51:36 GMT (envelope-from andreas) Message-Id: <200408081551.i78Fpa80014432@repoman.freebsd.org> From: Andreas Klemm Date: Sun, 8 Aug 2004 15:51:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/dspam-devel Makefile pkg-install X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 15:51:36 -0000 andreas 2004-08-08 15:51:36 UTC FreeBSD ports repository Modified files: mail/dspam-devel Makefile Removed files: mail/dspam-devel pkg-install Log: - Reported by many, approved by maintainer: Makefile cleanups from Palle Girgensohn (PR 70112), many thanks ! - Fix typo in CYRUS22 option. - Fix typo in CGI option and build the PLIST correctly. - Fix typo in post-install target in the POSTGRESQL{73|74} case. - Correct WITH_POSTGRESQL -> WITH_POSTGRESQL73 and WITH_POSTGRESQL74 - Ion-Mihai Tetcu (maintainer) Removed bogus pkg-install - From me (andreas): Add user and system logging, otherwise you won't get nice statistics/graphs using the CGI interface... - Bumped Port Revision because of important fixes PR: 70112 Submitted by: Palle Girgensohn Revision Changes Path 1.23 +9 -6 ports/mail/dspam-devel/Makefile 1.3 +0 -61 ports/mail/dspam-devel/pkg-install (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 15:51:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6085D16A4CE; Sun, 8 Aug 2004 15:51:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40BB743D1D; Sun, 8 Aug 2004 15:51:46 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78FpkuG014477; Sun, 8 Aug 2004 15:51:46 GMT (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78Fpkat014476; Sun, 8 Aug 2004 15:51:46 GMT (envelope-from adamw) Message-Id: <200408081551.i78Fpkat014476@repoman.freebsd.org> From: Adam Weinberger Date: Sun, 8 Aug 2004 15:51:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/elmo-devel Makefile distinfo pkg-descr pkg-message X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 15:51:46 -0000 adamw 2004-08-08 15:51:46 UTC FreeBSD ports repository Modified files: mail/elmo-devel Makefile distinfo pkg-descr pkg-message Log: Update to elmo-devel-1.3.1. Revision Changes Path 1.11 +7 -3 ports/mail/elmo-devel/Makefile 1.4 +2 -2 ports/mail/elmo-devel/distinfo 1.2 +3 -0 ports/mail/elmo-devel/pkg-descr 1.4 +2 -2 ports/mail/elmo-devel/pkg-message From owner-cvs-all@FreeBSD.ORG Sun Aug 8 15:53:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB45516A4CE; Sun, 8 Aug 2004 15:53:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CD8743D2D; Sun, 8 Aug 2004 15:53:01 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78Fr12Z014569; Sun, 8 Aug 2004 15:53:01 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78Fr10k014568; Sun, 8 Aug 2004 15:53:01 GMT (envelope-from vanilla) Message-Id: <200408081553.i78Fr10k014568@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 8 Aug 2004 15:53:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/libast Makefile ports/devel/libast/files patch-libast.m4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 15:53:01 -0000 vanilla 2004-08-08 15:53:01 UTC FreeBSD ports repository Modified files: devel/libast Makefile Added files: devel/libast/files patch-libast.m4 Log: remove USE_FREETYPE, in the fact, libast don't need freetype library. Revision Changes Path 1.12 +3 -2 ports/devel/libast/Makefile 1.1 +11 -0 ports/devel/libast/files/patch-libast.m4 (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 15:54:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B1ABB16A4CE; Sun, 8 Aug 2004 15:54:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 937FF43D39; Sun, 8 Aug 2004 15:54:43 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78Fshf5014633; Sun, 8 Aug 2004 15:54:43 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78Fshsl014632; Sun, 8 Aug 2004 15:54:43 GMT (envelope-from vanilla) Message-Id: <200408081554.i78Fshsl014632@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 8 Aug 2004 15:54:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/edb Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 15:54:43 -0000 vanilla 2004-08-08 15:54:43 UTC FreeBSD ports repository Modified files: databases/edb Makefile distinfo Added files: databases/edb pkg-plist Log: 1: Upgrade to 1.0.5 2: move MASTER_SITE back to sf.net. 3: take MAINTAINER. Revision Changes Path 1.18 +8 -16 ports/databases/edb/Makefile 1.6 +2 -2 ports/databases/edb/distinfo 1.5 +8 -0 ports/databases/edb/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 15:56:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F0EE716A4CE; Sun, 8 Aug 2004 15:56:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D280443D31; Sun, 8 Aug 2004 15:56:52 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78FuqB1014776; Sun, 8 Aug 2004 15:56:52 GMT (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78FuqNj014775; Sun, 8 Aug 2004 15:56:52 GMT (envelope-from adamw) Message-Id: <200408081556.i78FuqNj014775@repoman.freebsd.org> From: Adam Weinberger Date: Sun, 8 Aug 2004 15:56:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/elmo Makefile ports/mail/elmo-devel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 15:56:53 -0000 adamw 2004-08-08 15:56:52 UTC FreeBSD ports repository Modified files: mail/elmo Makefile mail/elmo-devel Makefile Log: Register conflicts between elmo and elmo-devel. Revision Changes Path 1.12 +2 -0 ports/mail/elmo-devel/Makefile 1.11 +2 -0 ports/mail/elmo/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 15:58:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E76216A4CE; Sun, 8 Aug 2004 15:58:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3173543D1D; Sun, 8 Aug 2004 15:58:26 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78FwQDH014858; Sun, 8 Aug 2004 15:58:26 GMT (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78FwQQK014857; Sun, 8 Aug 2004 15:58:26 GMT (envelope-from adamw) Message-Id: <200408081558.i78FwQQK014857@repoman.freebsd.org> From: Adam Weinberger Date: Sun, 8 Aug 2004 15:58:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules ports/mail Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 15:58:26 -0000 adamw 2004-08-08 15:58:26 UTC FreeBSD ports repository Modified files: . modules mail Makefile Log: Hook up elmo-devel. Revision Changes Path 1.10848 +1 -0 CVSROOT/modules 1.561 +1 -0 ports/mail/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 16:01:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B7D7E16A4CE; Sun, 8 Aug 2004 16:01:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B02B143D3F; Sun, 8 Aug 2004 16:01:38 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78G1cJE015042; Sun, 8 Aug 2004 16:01:38 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78G1cJh015041; Sun, 8 Aug 2004 16:01:38 GMT (envelope-from thierry) Message-Id: <200408081601.i78G1cJh015041@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 8 Aug 2004 16:01:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/rkhunter Makefile distinfo pkg-plist ports/security/rkhunter/files patch-installer.sh patch-os.dat X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 16:01:38 -0000 thierry 2004-08-08 16:01:38 UTC FreeBSD ports repository Modified files: security/rkhunter Makefile distinfo pkg-plist security/rkhunter/files patch-installer.sh Removed files: security/rkhunter/files patch-os.dat Log: Upgrade to 1.1.4. PR: ports/70149 Submitted by: maintainer. Revision Changes Path 1.3 +5 -5 ports/security/rkhunter/Makefile 1.3 +2 -2 ports/security/rkhunter/distinfo 1.2 +11 -25 ports/security/rkhunter/files/patch-installer.sh 1.2 +0 -12 ports/security/rkhunter/files/patch-os.dat (dead) 1.2 +3 -4 ports/security/rkhunter/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 8 16:10:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CDB216A4CE; Sun, 8 Aug 2004 16:10:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 539D643D46; Sun, 8 Aug 2004 16:10:18 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78GAIZG015302; Sun, 8 Aug 2004 16:10:18 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78GAIpN015301; Sun, 8 Aug 2004 16:10:18 GMT (envelope-from vanilla) Message-Id: <200408081610.i78GAIpN015301@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 8 Aug 2004 16:10:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/imlib2 Makefile distinfo pkg-plist ports/graphics/imlib2/files patch-Makefile.in patch-aa patch-configure patch-loaders::Makefile.in patch-ltmain.sh patch-src::Makefile.in patch-src_rgbadraw.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 16:10:18 -0000 vanilla 2004-08-08 16:10:17 UTC FreeBSD ports repository Modified files: graphics/imlib2 Makefile distinfo pkg-plist Removed files: graphics/imlib2/files patch-Makefile.in patch-aa patch-configure patch-loaders::Makefile.in patch-ltmain.sh patch-src::Makefile.in patch-src_rgbadraw.c Log: 1: Upgrade to 1.1.1. 2: take MAINTAINER. Revision Changes Path 1.92 +5 -5 ports/graphics/imlib2/Makefile 1.32 +2 -2 ports/graphics/imlib2/distinfo 1.2 +0 -11 ports/graphics/imlib2/files/patch-Makefile.in (dead) 1.33 +0 -11 ports/graphics/imlib2/files/patch-aa (dead) 1.5 +0 -95 ports/graphics/imlib2/files/patch-configure (dead) 1.3 +0 -16 ports/graphics/imlib2/files/patch-loaders::Makefile.in (dead) 1.2 +0 -33 ports/graphics/imlib2/files/patch-ltmain.sh (dead) 1.3 +0 -105 ports/graphics/imlib2/files/patch-src::Makefile.in (dead) 1.2 +0 -19 ports/graphics/imlib2/files/patch-src_rgbadraw.c (dead) 1.33 +24 -16 ports/graphics/imlib2/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 8 16:11:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89DD916A4CE; Sun, 8 Aug 2004 16:11:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81A8943D41; Sun, 8 Aug 2004 16:11:24 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78GBOi8015442; Sun, 8 Aug 2004 16:11:24 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78GBORo015441; Sun, 8 Aug 2004 16:11:24 GMT (envelope-from vanilla) Message-Id: <200408081611.i78GBORo015441@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 8 Aug 2004 16:11:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/imlib2_loaders Makefile distinfo pkg-plist ports/graphics/imlib2_loaders/files patch-Makefile.in patch-configure patch-src::Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 16:11:24 -0000 vanilla 2004-08-08 16:11:24 UTC FreeBSD ports repository Modified files: graphics/imlib2_loaders Makefile distinfo pkg-plist Removed files: graphics/imlib2_loaders/files patch-Makefile.in patch-configure patch-src::Makefile.in Log: 1: Upgrade to 1.1.1. 2: take MAINTAINER Revision Changes Path 1.10 +8 -5 ports/graphics/imlib2_loaders/Makefile 1.3 +2 -2 ports/graphics/imlib2_loaders/distinfo 1.2 +0 -11 ports/graphics/imlib2_loaders/files/patch-Makefile.in (dead) 1.2 +0 -96 ports/graphics/imlib2_loaders/files/patch-configure (dead) 1.2 +0 -19 ports/graphics/imlib2_loaders/files/patch-src::Makefile.in (dead) 1.2 +5 -2 ports/graphics/imlib2_loaders/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 8 16:15:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4F1F16A4CE; Sun, 8 Aug 2004 16:15:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A709A43D2D; Sun, 8 Aug 2004 16:15:58 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78GFwee015574; Sun, 8 Aug 2004 16:15:58 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78GFwQb015573; Sun, 8 Aug 2004 16:15:58 GMT (envelope-from rwatson) Message-Id: <200408081615.i78GFwQb015573@repoman.freebsd.org> From: Robert Watson Date: Sun, 8 Aug 2004 16:15:58 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/smp index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 16:15:58 -0000 rwatson 2004-08-08 16:15:58 UTC FreeBSD doc repository Modified files: en/smp index.sgml Log: Update SMPng status page with some more status information on netperf. Revision Changes Path 1.133 +46 -14 www/en/smp/index.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 16:19:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F28BF16A4CE; Sun, 8 Aug 2004 16:19:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D48D943D45; Sun, 8 Aug 2004 16:19:11 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78GJBHl015645; Sun, 8 Aug 2004 16:19:11 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78GJBVh015644; Sun, 8 Aug 2004 16:19:11 GMT (envelope-from rwatson) Message-Id: <200408081619.i78GJBVh015644@repoman.freebsd.org> From: Robert Watson Date: Sun, 8 Aug 2004 16:19:11 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/smp index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 16:19:12 -0000 rwatson 2004-08-08 16:19:11 UTC FreeBSD doc repository Modified files: en/smp index.sgml Log: Point at the netperf page for more information on the netperf project. Revision Changes Path 1.134 +5 -1 www/en/smp/index.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 16:43:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2873B16A4CE; Sun, 8 Aug 2004 16:43:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09E8F43D1D; Sun, 8 Aug 2004 16:43:59 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78GhwpX016266; Sun, 8 Aug 2004 16:43:58 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78Ghw23016265; Sun, 8 Aug 2004 16:43:58 GMT (envelope-from oliver) Message-Id: <200408081643.i78Ghw23016265@repoman.freebsd.org> From: Oliver Lehmann Date: Sun, 8 Aug 2004 16:43:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/xfce Makefile ports/x11-wm/xfce/files patch-xfce::taskbar.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 16:43:59 -0000 oliver 2004-08-08 16:43:58 UTC FreeBSD ports repository Modified files: x11-wm/xfce Makefile Added files: x11-wm/xfce/files patch-xfce::taskbar.c Log: fix build with gcc 3.4.2 Bump PORTREVISION PR: ports/70103 Submitted By: Andrey Slusar Revision Changes Path 1.74 +1 -1 ports/x11-wm/xfce/Makefile 1.1 +10 -0 ports/x11-wm/xfce/files/patch-xfce::taskbar.c (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 16:50:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 824CD16A4CE; Sun, 8 Aug 2004 16:50:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C5CF43D3F; Sun, 8 Aug 2004 16:50:01 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78Go1wt016519; Sun, 8 Aug 2004 16:50:01 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78Go183016518; Sun, 8 Aug 2004 16:50:01 GMT (envelope-from vanilla) Message-Id: <200408081650.i78Go183016518@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 8 Aug 2004 16:50:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics Makefile ports/graphics/epeg Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 16:50:01 -0000 vanilla 2004-08-08 16:50:01 UTC FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/epeg Makefile distinfo pkg-descr pkg-plist Log: Add epeg, it's an immensely fast jpeg thumbnailer library API for Enlightenment. Revision Changes Path 1.717 +1 -0 ports/graphics/Makefile 1.1 +27 -0 ports/graphics/epeg/Makefile (new) 1.1 +2 -0 ports/graphics/epeg/distinfo (new) 1.1 +6 -0 ports/graphics/epeg/pkg-descr (new) 1.1 +6 -0 ports/graphics/epeg/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 16:51:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78BE916A4CE; Sun, 8 Aug 2004 16:51:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59BEB43D2F; Sun, 8 Aug 2004 16:51:55 +0000 (GMT) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78Gptru016720; Sun, 8 Aug 2004 16:51:55 GMT (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78GptQt016719; Sun, 8 Aug 2004 16:51:55 GMT (envelope-from mheinen) Message-Id: <200408081651.i78GptQt016719@repoman.freebsd.org> From: Martin Heinen Date: Sun, 8 Aug 2004 16:51:55 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/advocacy index.sgml letter.sgml myths.sgml www/en/java advocacy.sgml www/en/security security.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 16:51:55 -0000 mheinen 2004-08-08 16:51:55 UTC FreeBSD doc repository Modified files: en/advocacy index.sgml letter.sgml myths.sgml en/java advocacy.sgml en/security security.sgml Log: &footer -> &footer; Revision Changes Path 1.8 +2 -2 www/en/advocacy/index.sgml 1.4 +2 -2 www/en/advocacy/letter.sgml 1.23 +2 -2 www/en/advocacy/myths.sgml 1.8 +2 -2 www/en/java/advocacy.sgml 1.163 +3 -3 www/en/security/security.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 16:54:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86A3216A4CE; Sun, 8 Aug 2004 16:54:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A39243D2D; Sun, 8 Aug 2004 16:54:18 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78GsIId016786; Sun, 8 Aug 2004 16:54:18 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78GsI2g016785; Sun, 8 Aug 2004 16:54:18 GMT (envelope-from vanilla) Message-Id: <200408081654.i78GsI2g016785@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 8 Aug 2004 16:54:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 16:54:18 -0000 vanilla 2004-08-08 16:54:18 UTC FreeBSD ports repository Modified files: . modules Log: Add graphics/epeg. Revision Changes Path 1.10849 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Aug 8 17:05:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6BE816A4CF; Sun, 8 Aug 2004 17:05:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7E9F43D62; Sun, 8 Aug 2004 17:05:46 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78H5k9L017191; Sun, 8 Aug 2004 17:05:46 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78H5k1N017190; Sun, 8 Aug 2004 17:05:46 GMT (envelope-from krion) Message-Id: <200408081705.i78H5k1N017190@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 8 Aug 2004 17:05:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/downloader Makefile distinfo pkg-plist patch-main_face_prefs.cc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 17:05:47 -0000 krion 2004-08-08 17:05:46 UTC FreeBSD ports repository Modified files: ftp/downloader Makefile distinfo pkg-plist Removed files: ftp/downloader/files patch-locstr.cc patch-main_face_prefs.cc Log: Update to version 2.5.0 PR: ports/70164 Submitted by: Ports Fury Revision Changes Path 1.52 +4 -5 ports/ftp/downloader/Makefile 1.30 +2 -2 ports/ftp/downloader/distinfo 1.2 +0 -11 ports/ftp/downloader/files/patch-locstr.cc (dead) 1.2 +0 -23 ports/ftp/downloader/files/patch-main_face_prefs.cc (dead) 1.24 +127 -77 ports/ftp/downloader/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 8 17:05:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9B9416A4EC; Sun, 8 Aug 2004 17:05:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8509543D67; Sun, 8 Aug 2004 17:05:49 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78H5npg017234; Sun, 8 Aug 2004 17:05:49 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78H5n4O017233; Sun, 8 Aug 2004 17:05:49 GMT (envelope-from thierry) Message-Id: <200408081705.i78H5n4O017233@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 8 Aug 2004 17:05:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ocaml-ulex Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 17:05:49 -0000 thierry 2004-08-08 17:05:49 UTC FreeBSD ports repository Modified files: devel/ocaml-ulex Makefile distinfo Log: - Upgrade to 0.5 and chase OCaml; - take maintainership. PR: ports/70074 Submitted by: Marwan Burelle. Revision Changes Path 1.2 +3 -2 ports/devel/ocaml-ulex/Makefile 1.2 +2 -2 ports/devel/ocaml-ulex/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 17:06:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDCC816A4CF; Sun, 8 Aug 2004 17:06:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A24F643D53; Sun, 8 Aug 2004 17:06:29 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78H6Tkw017286; Sun, 8 Aug 2004 17:06:29 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78H6TUJ017285; Sun, 8 Aug 2004 17:06:29 GMT (envelope-from krion) Message-Id: <200408081706.i78H6TUJ017285@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 8 Aug 2004 17:06:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/cvsd Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 17:06:30 -0000 krion 2004-08-08 17:06:29 UTC FreeBSD ports repository Modified files: devel/cvsd Makefile distinfo Removed files: devel/cvsd pkg-plist Log: Update to version 1.0.3 PR: ports/70165 Submitted by: Ports Fury Revision Changes Path 1.25 +8 -4 ports/devel/cvsd/Makefile 1.19 +4 -4 ports/devel/cvsd/distinfo 1.5 +0 -8 ports/devel/cvsd/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 17:07:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 974D316A4CF; Sun, 8 Aug 2004 17:07:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 78AB343D58; Sun, 8 Aug 2004 17:07:29 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78H7Tav017331; Sun, 8 Aug 2004 17:07:29 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78H7TNY017330; Sun, 8 Aug 2004 17:07:29 GMT (envelope-from krion) Message-Id: <200408081707.i78H7TNY017330@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 8 Aug 2004 17:07:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/empire Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 17:07:29 -0000 krion 2004-08-08 17:07:29 UTC FreeBSD ports repository Modified files: games/empire Makefile pkg-plist Log: Fix install PR: ports/70166 Submitted by: Ports Fury Revision Changes Path 1.19 +2 -1 ports/games/empire/Makefile 1.9 +1 -1 ports/games/empire/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 8 17:08:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEB6616A4CE; Sun, 8 Aug 2004 17:08:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0C1C43D41; Sun, 8 Aug 2004 17:08:40 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78H8eeo017410; Sun, 8 Aug 2004 17:08:40 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78H8eIC017409; Sun, 8 Aug 2004 17:08:40 GMT (envelope-from krion) Message-Id: <200408081708.i78H8eIC017409@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 8 Aug 2004 17:08:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/phalanx Makefile pkg-plist ports/games/phalanx/files patch-io.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 17:08:41 -0000 krion 2004-08-08 17:08:40 UTC FreeBSD ports repository Modified files: games/phalanx Makefile Added files: games/phalanx/files patch-io.c Removed files: games/phalanx pkg-plist Log: Fix build with gcc-3.4 PR: ports/70167 Submitted by: Ports Fury Revision Changes Path 1.12 +4 -0 ports/games/phalanx/Makefile 1.1 +11 -0 ports/games/phalanx/files/patch-io.c (new) 1.4 +0 -6 ports/games/phalanx/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 17:09:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94DDF16A4CE; Sun, 8 Aug 2004 17:09:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76A8543D54; Sun, 8 Aug 2004 17:09:43 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78H9hxx017474; Sun, 8 Aug 2004 17:09:43 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78H9hmS017473; Sun, 8 Aug 2004 17:09:43 GMT (envelope-from krion) Message-Id: <200408081709.i78H9hmS017473@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 8 Aug 2004 17:09:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/xconq/files patch-tcltk::tkmain.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 17:09:43 -0000 krion 2004-08-08 17:09:43 UTC FreeBSD ports repository Added files: games/xconq/files patch-tcltk::tkmain.c Log: Fix build with gcc-3.4 PR: ports/70168 Submitted by: Ports Fury Revision Changes Path 1.1 +12 -0 ports/games/xconq/files/patch-tcltk::tkmain.c (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 17:10:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B03C16A4CE; Sun, 8 Aug 2004 17:10:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E72B43D2F; Sun, 8 Aug 2004 17:10:38 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78HAcTU017589; Sun, 8 Aug 2004 17:10:38 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78HAcJC017588; Sun, 8 Aug 2004 17:10:38 GMT (envelope-from krion) Message-Id: <200408081710.i78HAcJC017588@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 8 Aug 2004 17:10:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/xjig/files patch-ag X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 17:10:38 -0000 krion 2004-08-08 17:10:37 UTC FreeBSD ports repository Modified files: games/xjig/files patch-ag Log: Fix build with gcc-3.4 PR: ports/70169 Submitted by: Ports Fury Revision Changes Path 1.2 +7 -6 ports/games/xjig/files/patch-ag From owner-cvs-all@FreeBSD.ORG Sun Aug 8 17:10:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58E7B16A4CE; Sun, 8 Aug 2004 17:10:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B9C343D1D; Sun, 8 Aug 2004 17:10:55 +0000 (GMT) (envelope-from sam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78HAtfV017618; Sun, 8 Aug 2004 17:10:55 GMT (envelope-from sam@repoman.freebsd.org) Received: (from sam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78HAtJ3017617; Sun, 8 Aug 2004 17:10:55 GMT (envelope-from sam) Message-Id: <200408081710.i78HAtJ3017617@repoman.freebsd.org> From: Sam Leffler Date: Sun, 8 Aug 2004 17:10:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ath if_ath.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 17:10:55 -0000 sam 2004-08-08 17:10:55 UTC FreeBSD src repository Modified files: sys/dev/ath if_ath.c Log: Add missing bit of last if_start workaround: mark scan callout MPSAFE only debug_mpsafenet is 1 so callbacks to send management frames hold Giant; this is another bandaid on the path to removing Giant. Revision Changes Path 1.57 +1 -1 src/sys/dev/ath/if_ath.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 17:11:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B63BA16A4CE; Sun, 8 Aug 2004 17:11:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9ABBC43D1F; Sun, 8 Aug 2004 17:11:31 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78HBV7K017662; Sun, 8 Aug 2004 17:11:31 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78HBVre017661; Sun, 8 Aug 2004 17:11:31 GMT (envelope-from krion) Message-Id: <200408081711.i78HBVre017661@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 8 Aug 2004 17:11:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/nail Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 17:11:31 -0000 krion 2004-08-08 17:11:31 UTC FreeBSD ports repository Modified files: mail/nail Makefile distinfo Log: Update to version 11.1 PR: ports/70170 Submitted by: Ports Fury Revision Changes Path 1.28 +1 -1 ports/mail/nail/Makefile 1.20 +2 -2 ports/mail/nail/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 17:13:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C45B16A4CE; Sun, 8 Aug 2004 17:13:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E83C43D31; Sun, 8 Aug 2004 17:13:01 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78HD1GI017729; Sun, 8 Aug 2004 17:13:01 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78HD0co017728; Sun, 8 Aug 2004 17:13:00 GMT (envelope-from thierry) Message-Id: <200408081713.i78HD0co017728@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 8 Aug 2004 17:13:00 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 17:13:01 -0000 thierry 2004-08-08 17:13:00 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Add an entry for Marwan Burelle. PR: ports/70074. Revision Changes Path 1.246 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 17:13:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BBD016A4CE; Sun, 8 Aug 2004 17:13:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D6A343D2F; Sun, 8 Aug 2004 17:13:17 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78HDH6T017785; Sun, 8 Aug 2004 17:13:17 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78HDHTU017784; Sun, 8 Aug 2004 17:13:17 GMT (envelope-from krion) Message-Id: <200408081713.i78HDHTU017784@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 8 Aug 2004 17:13:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/wmx10 Makefile ports/misc/wmx10/files patch-aa patch-wmx.10.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 17:13:17 -0000 krion 2004-08-08 17:13:17 UTC FreeBSD ports repository Modified files: misc/wmx10 Makefile misc/wmx10/files patch-aa Added files: misc/wmx10/files patch-wmx.10.c Log: Fix build with gcc-3.4 Support CC/CFLAGS properly PR: ports/70171 Submitted by: Ports Fury Revision Changes Path 1.10 +3 -2 ports/misc/wmx10/Makefile 1.2 +18 -8 ports/misc/wmx10/files/patch-aa 1.1 +10 -0 ports/misc/wmx10/files/patch-wmx.10.c (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 17:14:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5849E16A4CE; Sun, 8 Aug 2004 17:14:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B9FB43D31; Sun, 8 Aug 2004 17:14:05 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78HE5aU017827; Sun, 8 Aug 2004 17:14:05 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78HE5uG017826; Sun, 8 Aug 2004 17:14:05 GMT (envelope-from krion) Message-Id: <200408081714.i78HE5uG017826@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 8 Aug 2004 17:14:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/gss Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 17:14:05 -0000 krion 2004-08-08 17:14:05 UTC FreeBSD ports repository Modified files: security/gss Makefile distinfo pkg-plist Log: Update to version 0.0.13 PR: ports/70172 Submitted by: Ports Fury Revision Changes Path 1.8 +1 -1 ports/security/gss/Makefile 1.6 +2 -2 ports/security/gss/distinfo 1.4 +4 -0 ports/security/gss/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 8 17:14:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81EDE16A4CE; Sun, 8 Aug 2004 17:14:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64FAE43D3F; Sun, 8 Aug 2004 17:14:42 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78HEgAg017867; Sun, 8 Aug 2004 17:14:42 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78HEglA017866; Sun, 8 Aug 2004 17:14:42 GMT (envelope-from krion) Message-Id: <200408081714.i78HEglA017866@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 8 Aug 2004 17:14:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/shishi Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 17:14:42 -0000 krion 2004-08-08 17:14:42 UTC FreeBSD ports repository Modified files: security/shishi Makefile distinfo Log: Update to version 0.0.17 PR: ports/70173 Submitted by: Ports Fury Revision Changes Path 1.15 +1 -2 ports/security/shishi/Makefile 1.8 +2 -2 ports/security/shishi/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 17:16:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DD6116A4CE; Sun, 8 Aug 2004 17:16:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3673E43D2F; Sun, 8 Aug 2004 17:16:19 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78HGJd5018026; Sun, 8 Aug 2004 17:16:19 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78HGJDM018025; Sun, 8 Aug 2004 17:16:19 GMT (envelope-from sem) Message-Id: <200408081716.i78HGJDM018025@repoman.freebsd.org> From: Sergey Matveychuk Date: Sun, 8 Aug 2004 17:16:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/mailscanner Makefile distinfo ports/mail/mailscanner/files README.FreeBSD.port mta.sh patch-lib:clamav-wrapper X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 17:16:19 -0000 sem 2004-08-08 17:16:19 UTC FreeBSD ports repository Modified files: mail/mailscanner Makefile distinfo mail/mailscanner/files README.FreeBSD.port mta.sh patch-docs:man:MailScanner.8 patch-docs:man:MailScanner.conf.5 patch-lib:clamav-wrapper Log: Update to 4.32.5 PR: ports/69901 Submitted by: maintainer Revision Changes Path 1.21 +1 -1 ports/mail/mailscanner/Makefile 1.14 +2 -2 ports/mail/mailscanner/distinfo 1.3 +1 -1 ports/mail/mailscanner/files/README.FreeBSD.port 1.3 +1 -1 ports/mail/mailscanner/files/mta.sh 1.13 +4 -4 ports/mail/mailscanner/files/patch-docs:man:MailScanner.8 1.13 +4 -4 ports/mail/mailscanner/files/patch-docs:man:MailScanner.conf.5 1.4 +0 -0 ports/mail/mailscanner/files/patch-lib:clamav-wrapper From owner-cvs-all@FreeBSD.ORG Sun Aug 8 17:20:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5402516A4CE; Sun, 8 Aug 2004 17:20:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 363E243D2F; Sun, 8 Aug 2004 17:20:24 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78HKOpl018140; Sun, 8 Aug 2004 17:20:24 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78HKOvH018139; Sun, 8 Aug 2004 17:20:24 GMT (envelope-from kientzle) Message-Id: <200408081720.i78HKOvH018139@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 8 Aug 2004 17:20:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar Makefile bsdtar.1 bsdtar.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 17:20:24 -0000 kientzle 2004-08-08 17:20:24 UTC FreeBSD src repository Modified files: usr.bin/tar Makefile bsdtar.1 bsdtar.c Log: gtar uses -F for another purpose, so bsdtar no longer treats it as a synonym for --format. Update the man page to reflect this. While I'm here, change the man page to document "tar" rather than "bsdtar," update some comments about -l compatibility and fix a few grammar nits. Revision Changes Path 1.11 +1 -1 src/usr.bin/tar/Makefile 1.20 +13 -16 src/usr.bin/tar/bsdtar.1 1.51 +4 -3 src/usr.bin/tar/bsdtar.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 17:29:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA2CB16A4CE; Sun, 8 Aug 2004 17:29:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABBAD43D1F; Sun, 8 Aug 2004 17:29:25 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78HTP1b018365; Sun, 8 Aug 2004 17:29:25 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78HTPAC018364; Sun, 8 Aug 2004 17:29:25 GMT (envelope-from vanilla) Message-Id: <200408081729.i78HTPAC018364@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 8 Aug 2004 17:29:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/p5-Mail-Webmail-Gmail Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 17:29:25 -0000 vanilla 2004-08-08 17:29:25 UTC FreeBSD ports repository Modified files: mail/p5-Mail-Webmail-Gmail Makefile distinfo Log: - Update to 0.08 = From Change = - Updated the logon process after Google updated it. - some funtions didnt return undef properly in list context, fixed. PR: ports/70154 Submitted by: maintainer Revision Changes Path 1.2 +1 -1 ports/mail/p5-Mail-Webmail-Gmail/Makefile 1.2 +2 -2 ports/mail/p5-Mail-Webmail-Gmail/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 18:01:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33EBD16A4CE; Sun, 8 Aug 2004 18:01:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2749F43D45; Sun, 8 Aug 2004 18:01:17 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78I1HRR019285; Sun, 8 Aug 2004 18:01:17 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78I1H5b019284; Sun, 8 Aug 2004 18:01:17 GMT (envelope-from marcus) Message-Id: <200408081801.i78I1H5b019284@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 8 Aug 2004 18:01:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/dbus Makefile ports/devel/dbus/files ports/devel/py-dbus Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 18:01:17 -0000 marcus 2004-08-08 18:01:17 UTC FreeBSD ports repository Modified files: devel/dbus Makefile devel/dbus/files patch-python_Makefile.in patch-python_dbus_bindings.pyx.in devel/py-dbus Makefile Log: Fix the Python bindings build on -CURRENT, and make sure the Python bindings are properly linked to libdbus-1. Reported by: olgeni Revision Changes Path 1.4 +1 -1 ports/devel/dbus/Makefile 1.2 +4 -4 ports/devel/dbus/files/patch-python_Makefile.in 1.2 +4 -2 ports/devel/dbus/files/patch-python_dbus_bindings.pyx.in 1.3 +1 -0 ports/devel/py-dbus/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 18:34:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95CAC16A4CE; Sun, 8 Aug 2004 18:34:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 798F743D45; Sun, 8 Aug 2004 18:34:45 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78IYjvR020133; Sun, 8 Aug 2004 18:34:45 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78IYjec020132; Sun, 8 Aug 2004 18:34:45 GMT (envelope-from pav) Message-Id: <200408081834.i78IYjec020132@repoman.freebsd.org> From: Pav Lucistnik Date: Sun, 8 Aug 2004 18:34:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/mpeg4ip/files patch-gcc34 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 18:34:45 -0000 pav 2004-08-08 18:34:45 UTC FreeBSD ports repository Added files: multimedia/mpeg4ip/files patch-gcc34 Log: - Fix build with gcc-3.4 PR: ports/69468 Submitted by: Michael Johnson Approved by: maintainer timeout (16 days) Revision Changes Path 1.1 +11 -0 ports/multimedia/mpeg4ip/files/patch-gcc34 (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 18:41:51 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C58C216A4CE; Sun, 8 Aug 2004 18:41:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD87943D45; Sun, 8 Aug 2004 18:41:51 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78Ifp7a020448; Sun, 8 Aug 2004 18:41:51 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78Ifpb3020447; Sun, 8 Aug 2004 18:41:51 GMT (envelope-from marcus) Message-Id: <200408081841.i78Ifpb3020447@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 8 Aug 2004 18:41:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/gstreamer-ffmpeg Makefile distinfo extra-patch-gst-libs_ext_ffmpeg_libavformat_nut.c patch-gst-libs_ext_ffmpeg_libavformat_mov.c patch-ltmain.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 18:41:51 -0000 marcus 2004-08-08 18:41:51 UTC FreeBSD ports repository Modified files: multimedia/gstreamer-ffmpeg Makefile distinfo pkg-plist Added files: multimedia/gstreamer-ffmpeg/files extra-patch-gst-libs_ext_ffmpeg_libavformat_nut.c patch-gst-libs_ext_ffmpeg_libavformat_mov.c Removed files: multimedia/gstreamer-ffmpeg/files patch-ext_ffmpeg_gstffmpegcodecmap.c patch-ltmain.sh Log: Update to 0.8.1. See http://gstreamer.freedesktop.org/releases/gst-ffmpeg/0.8.1.html for a list of changes. PR: 69351 Submitted by: maintainer Revision Changes Path 1.5 +8 -5 ports/multimedia/gstreamer-ffmpeg/Makefile 1.2 +2 -2 ports/multimedia/gstreamer-ffmpeg/distinfo 1.1 +12 -0 ports/multimedia/gstreamer-ffmpeg/files/extra-patch-gst-libs_ext_ffmpeg_libavformat_nut.c (new) 1.2 +0 -31 ports/multimedia/gstreamer-ffmpeg/files/patch-ext_ffmpeg_gstffmpegcodecmap.c (dead) 1.1 +18 -0 ports/multimedia/gstreamer-ffmpeg/files/patch-gst-libs_ext_ffmpeg_libavformat_mov.c (new) 1.2 +0 -51 ports/multimedia/gstreamer-ffmpeg/files/patch-ltmain.sh (dead) 1.2 +2 -2 ports/multimedia/gstreamer-ffmpeg/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 8 18:48:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C86B616A4CE; Sun, 8 Aug 2004 18:48:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADCFF43D54; Sun, 8 Aug 2004 18:48:56 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78ImuTp020645; Sun, 8 Aug 2004 18:48:56 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78ImueP020644; Sun, 8 Aug 2004 18:48:56 GMT (envelope-from sanpei) Message-Id: <200408081848.i78ImueP020644@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Sun, 8 Aug 2004 18:48:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/ngraph Makefile ports/math/ngraph/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 18:48:56 -0000 sanpei 2004-08-08 18:48:56 UTC FreeBSD ports repository Modified files: math/ngraph Makefile math/ngraph/files patch-aa Log: Update to version 6.3.30 Revision Changes Path 1.17 +1 -1 ports/math/ngraph/Makefile 1.10 +1 -1 ports/math/ngraph/files/patch-aa From owner-cvs-all@FreeBSD.ORG Sun Aug 8 18:50:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C67B16A4CE; Sun, 8 Aug 2004 18:50:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33D9743D31; Sun, 8 Aug 2004 18:50:56 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78Ioun0020791; Sun, 8 Aug 2004 18:50:56 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78IouFm020790; Sun, 8 Aug 2004 18:50:56 GMT (envelope-from sanpei) Message-Id: <200408081850.i78IouFm020790@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Sun, 8 Aug 2004 18:50:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/ngraph distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 18:50:56 -0000 sanpei 2004-08-08 18:50:56 UTC FreeBSD ports repository Modified files: math/ngraph distinfo Log: Update to version 6.3.30 (I forgot update this file) Revision Changes Path 1.10 +2 -2 ports/math/ngraph/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 18:59:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29B9916A4CE; Sun, 8 Aug 2004 18:59:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BF7F43D45; Sun, 8 Aug 2004 18:59:20 +0000 (GMT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78IxJSn021026; Sun, 8 Aug 2004 18:59:19 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78IxJBq021025; Sun, 8 Aug 2004 18:59:19 GMT (envelope-from dwmalone) Message-Id: <200408081859.i78IxJBq021025@repoman.freebsd.org> From: David Malone Date: Sun, 8 Aug 2004 18:59:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/last last.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 18:59:20 -0000 dwmalone 2004-08-08 18:59:19 UTC FreeBSD src repository Modified files: usr.bin/last last.c Log: s/FALLTHOUGH/FALLTHROUGH/ Submitted by: Xin LI Revision Changes Path 1.34 +1 -1 src/usr.bin/last/last.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 19:20:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6958416A4CE; Sun, 8 Aug 2004 19:20:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BEC743D3F; Sun, 8 Aug 2004 19:20:32 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78JKWPA021654; Sun, 8 Aug 2004 19:20:32 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78JKWPd021653; Sun, 8 Aug 2004 19:20:32 GMT (envelope-from thierry) Message-Id: <200408081920.i78JKWPd021653@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 8 Aug 2004 19:20:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp Makefile ports/ftp/ocaml-ocurl Makefile distinfo pkg-descr pkg-install X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 19:20:32 -0000 thierry 2004-08-08 19:20:32 UTC FreeBSD ports repository Modified files: ftp Makefile Added files: ftp/ocaml-ocurl Makefile distinfo pkg-descr pkg-install Log: Add ocaml-ocurl 0.2.0, an interface for OCaml to the curl lib. PR: 70085 Submitted by: Marwan BURELLE Revision Changes Path 1.93 +1 -0 ports/ftp/Makefile 1.1 +38 -0 ports/ftp/ocaml-ocurl/Makefile (new) 1.1 +2 -0 ports/ftp/ocaml-ocurl/distinfo (new) 1.1 +9 -0 ports/ftp/ocaml-ocurl/pkg-descr (new) 1.1 +9 -0 ports/ftp/ocaml-ocurl/pkg-install (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 19:20:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B91416A4CE; Sun, 8 Aug 2004 19:20:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2D6F43D55; Sun, 8 Aug 2004 19:20:43 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78JKhcH021731; Sun, 8 Aug 2004 19:20:43 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78JKhb6021730; Sun, 8 Aug 2004 19:20:43 GMT (envelope-from thierry) Message-Id: <200408081920.i78JKhb6021730@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 8 Aug 2004 19:20:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 19:20:44 -0000 thierry 2004-08-08 19:20:43 UTC FreeBSD ports repository Modified files: . modules Log: ocaml-ocurl --> ports/ftp/ocaml-ocurl Revision Changes Path 1.10850 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Aug 8 19:23:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B899116A4CE; Sun, 8 Aug 2004 19:23:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B96E43D3F; Sun, 8 Aug 2004 19:23:33 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78JNXcA021822; Sun, 8 Aug 2004 19:23:33 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78JNXf7021821; Sun, 8 Aug 2004 19:23:33 GMT (envelope-from lth) Message-Id: <200408081923.i78JNXf7021821@repoman.freebsd.org> From: Lars Thegler Date: Sun, 8 Aug 2004 19:23:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/p5-Class-DBI-AsForm Makefile distinfo ports/databases/p5-Class-DBI-AsForm/files 500503-AsForm.pm X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 19:23:33 -0000 lth 2004-08-08 19:23:33 UTC FreeBSD ports repository Modified files: databases/p5-Class-DBI-AsForm Makefile distinfo databases/p5-Class-DBI-AsForm/files 500503-AsForm.pm Log: Update to 2.3 Revision Changes Path 1.3 +1 -4 ports/databases/p5-Class-DBI-AsForm/Makefile 1.2 +2 -2 ports/databases/p5-Class-DBI-AsForm/distinfo 1.2 +4 -4 ports/databases/p5-Class-DBI-AsForm/files/500503-AsForm.pm From owner-cvs-all@FreeBSD.ORG Sun Aug 8 19:31:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07FEA16A4CE; Sun, 8 Aug 2004 19:31:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF66A43D54; Sun, 8 Aug 2004 19:31:40 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78JVeB7022077; Sun, 8 Aug 2004 19:31:40 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78JVeY7022076; Sun, 8 Aug 2004 19:31:40 GMT (envelope-from lth) Message-Id: <200408081931.i78JVeY7022076@repoman.freebsd.org> From: Lars Thegler Date: Sun, 8 Aug 2004 19:31:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/p5-Class-DBI-Plugin-RetrieveAll Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 19:31:41 -0000 lth 2004-08-08 19:31:40 UTC FreeBSD ports repository Modified files: databases/p5-Class-DBI-Plugin-RetrieveAll Makefile distinfo Log: Update to 1.01 Revision Changes Path 1.3 +1 -4 ports/databases/p5-Class-DBI-Plugin-RetrieveAll/Makefile 1.2 +2 -2 ports/databases/p5-Class-DBI-Plugin-RetrieveAll/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 19:34:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 393EF16A4CE; Sun, 8 Aug 2004 19:34:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C42B43D1F; Sun, 8 Aug 2004 19:34:08 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78JY810022132; Sun, 8 Aug 2004 19:34:08 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78JY7Ek022131; Sun, 8 Aug 2004 19:34:07 GMT (envelope-from pav) Message-Id: <200408081934.i78JY7Ek022131@repoman.freebsd.org> From: Pav Lucistnik Date: Sun, 8 Aug 2004 19:34:07 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/porters-handbook book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 19:34:08 -0000 pav 2004-08-08 19:34:07 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: - Document gcc-3.4.2 import by adding few words to nearest bump Revision Changes Path 1.475 +1 -1 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 19:41:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A098816A4CE; Sun, 8 Aug 2004 19:41:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E07443D48; Sun, 8 Aug 2004 19:41:37 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78JfbB6022444; Sun, 8 Aug 2004 19:41:37 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78JfbWq022443; Sun, 8 Aug 2004 19:41:37 GMT (envelope-from pav) Message-Id: <200408081941.i78JfbWq022443@repoman.freebsd.org> From: Pav Lucistnik Date: Sun, 8 Aug 2004 19:41:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/avifile Makefile ports/multimedia/avifile/files extra-patch-ffmpeg::libavcodec::i386::motion_est_mmx.c extra-patch-ffmpeg::libavcodec::i386::simple_idct_mmx.c extra-patch-include::aviplay.h extra-patch-include::avm_map.h extra-patch-lib::aviread::AsfNetworkInputStream.cpp extra-patch-lib::common::image.cpp ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 19:41:37 -0000 pav 2004-08-08 19:41:37 UTC FreeBSD ports repository Modified files: multimedia/avifile Makefile Added files: multimedia/avifile/files extra-patch-ffmpeg::libavcodec::i386::dsputil_mmx.c extra-patch-ffmpeg::libavcodec::i386::motion_est_mmx.c extra-patch-ffmpeg::libavcodec::i386::simple_idct_mmx.c extra-patch-ffmpeg::libavcodec::liba52::resample_mmx.c extra-patch-include::aviplay.h extra-patch-include::avm_map.h extra-patch-include::avm_stl.h extra-patch-lib::aviread::AsfNetworkInputStream.cpp extra-patch-lib::common::image.cpp extra-patch-plugins::libmp3lame_audioenc::lame3.70::quantize-pvt.c extra-patch-plugins::libvorbis::libvorbis.cpp Log: - Fix build with gcc-3.4 Submitted by: Vyacheslav I. Ivanchenko Revision Changes Path 1.56 +15 -0 ports/multimedia/avifile/Makefile 1.1 +13 -0 ports/multimedia/avifile/files/extra-patch-ffmpeg::libavcodec::i386::dsputil_mmx.c (new) 1.1 +11 -0 ports/multimedia/avifile/files/extra-patch-ffmpeg::libavcodec::i386::motion_est_mmx.c (new) 1.1 +13 -0 ports/multimedia/avifile/files/extra-patch-ffmpeg::libavcodec::i386::simple_idct_mmx.c (new) 1.1 +17 -0 ports/multimedia/avifile/files/extra-patch-ffmpeg::libavcodec::liba52::resample_mmx.c (new) 1.1 +13 -0 ports/multimedia/avifile/files/extra-patch-include::aviplay.h (new) 1.1 +12 -0 ports/multimedia/avifile/files/extra-patch-include::avm_map.h (new) 1.1 +61 -0 ports/multimedia/avifile/files/extra-patch-include::avm_stl.h (new) 1.1 +39 -0 ports/multimedia/avifile/files/extra-patch-lib::aviread::AsfNetworkInputStream.cpp (new) 1.1 +11 -0 ports/multimedia/avifile/files/extra-patch-lib::common::image.cpp (new) 1.1 +45 -0 ports/multimedia/avifile/files/extra-patch-plugins::libmp3lame_audioenc::lame3.70::quantize-pvt.c (new) 1.1 +29 -0 ports/multimedia/avifile/files/extra-patch-plugins::libvorbis::libvorbis.cpp (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 20:05:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36C7E16A4CE; Sun, 8 Aug 2004 20:05:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19F1343D54; Sun, 8 Aug 2004 20:05:48 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78K5lUU023078; Sun, 8 Aug 2004 20:05:47 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78K5lDQ023077; Sun, 8 Aug 2004 20:05:47 GMT (envelope-from stefanf) Message-Id: <200408082005.i78K5lDQ023077@repoman.freebsd.org> From: Stefan Farfeleder Date: Sun, 8 Aug 2004 20:05:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include Makefile tgmath.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 20:05:48 -0000 stefanf 2004-08-08 20:05:47 UTC FreeBSD src repository Modified files: include Makefile Added files: include tgmath.h Log: Implement C99's standard header . It provides type-generic macros for the and functions that have float, double and long double implementations. Such type-generic macros expand to an actual function, depending on the types of the macro arguments, eg. if is included, the invocation cos(1.0f) calls the function cosf(). Revision Changes Path 1.219 +2 -1 src/include/Makefile 1.1 +166 -0 src/include/tgmath.h (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 20:10:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE53916A4CE; Sun, 8 Aug 2004 20:10:02 +0000 (GMT) Received: from bgezal.rise.tuwien.ac.at (bgezal.rise.tuwien.ac.at [128.130.59.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D5BD43D39; Sun, 8 Aug 2004 20:10:02 +0000 (GMT) (envelope-from stefan@fafoe.narf.at) Received: from fafoe.narf.at (unknown [212.186.3.235]) by bgezal.rise.tuwien.ac.at (Postfix) with ESMTP id BFECD20AC; Sun, 8 Aug 2004 22:10:00 +0200 (CEST) Received: from wombat.fafoe.narf.at (wombat.fafoe.narf.at [192.168.1.42]) by fafoe.narf.at (Postfix) with ESMTP id A58BB40B6; Sun, 8 Aug 2004 22:09:55 +0200 (CEST) Received: by wombat.fafoe.narf.at (Postfix, from userid 1001) id 4753EBC; Sun, 8 Aug 2004 22:09:53 +0200 (CEST) Date: Sun, 8 Aug 2004 22:09:52 +0200 From: Stefan Farfeleder To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040808200951.GA557@wombat.fafoe.narf.at> References: <200408082005.i78K5lDQ023077@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408082005.i78K5lDQ023077@repoman.freebsd.org> User-Agent: Mutt/1.5.6i Subject: Re: cvs commit: src/include Makefile tgmath.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 20:10:03 -0000 On Sun, Aug 08, 2004 at 08:05:47PM +0000, Stefan Farfeleder wrote: > Log: > Implement C99's standard header . It provides type-generic macros > for the and functions that have float, double and long > double implementations. Such type-generic macros expand to an actual > function, depending on the types of the macro arguments, eg. if > is included, the invocation cos(1.0f) calls the function cosf(). I'll add a man page that lists all macros ASAP. Stefan From owner-cvs-all@FreeBSD.ORG Sun Aug 8 20:37:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EECB16A4CE; Sun, 8 Aug 2004 20:37:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7211E43D3F; Sun, 8 Aug 2004 20:37:58 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78KbwWe023922; Sun, 8 Aug 2004 20:37:58 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78Kbwk6023921; Sun, 8 Aug 2004 20:37:58 GMT (envelope-from thierry) Message-Id: <200408082037.i78Kbwk6023921@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 8 Aug 2004 20:37:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics Makefile ports/graphics/jumpgis Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 20:37:58 -0000 thierry 2004-08-08 20:37:58 UTC FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/jumpgis Makefile distinfo pkg-descr pkg-plist Log: Add jumpgis 1.1.1, a GUI based application for viewing and processing spatial data. PR: 68052 Submitted by: Sam Lawrance Revision Changes Path 1.718 +1 -0 ports/graphics/Makefile 1.1 +71 -0 ports/graphics/jumpgis/Makefile (new) 1.1 +6 -0 ports/graphics/jumpgis/distinfo (new) 1.1 +8 -0 ports/graphics/jumpgis/pkg-descr (new) 1.1 +14 -0 ports/graphics/jumpgis/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 20:38:10 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EF2316A4CE; Sun, 8 Aug 2004 20:38:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32D9043D46; Sun, 8 Aug 2004 20:38:10 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78KcAHS023972; Sun, 8 Aug 2004 20:38:10 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78KcARO023971; Sun, 8 Aug 2004 20:38:10 GMT (envelope-from thierry) Message-Id: <200408082038.i78KcARO023971@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 8 Aug 2004 20:38:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 20:38:10 -0000 thierry 2004-08-08 20:38:10 UTC FreeBSD ports repository Modified files: . modules Log: jumpgis --> ports/graphics/jumpgis Revision Changes Path 1.10851 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Aug 8 21:10:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3928616A4CE; Sun, 8 Aug 2004 21:10:03 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7522E43D1D; Sun, 8 Aug 2004 21:10:00 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i78L9s89073730 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 9 Aug 2004 00:09:55 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i78L9t3l092751; Mon, 9 Aug 2004 00:09:55 +0300 (EEST) (envelope-from ru) Date: Mon, 9 Aug 2004 00:09:55 +0300 From: Ruslan Ermilov To: Marcel Moolenaar Message-ID: <20040808210955.GB92673@ip.net.ua> References: <200408061707.i76H7fms022767@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="s/l3CgOIzMHHjg/5" Content-Disposition: inline In-Reply-To: <200408061707.i76H7fms022767@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/release Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 21:10:03 -0000 --s/l3CgOIzMHHjg/5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Aug 06, 2004 at 05:07:41PM +0000, Marcel Moolenaar wrote: > marcel 2004-08-06 17:07:41 UTC >=20 > FreeBSD src repository >=20 > Modified files: > release Makefile=20 > Log: > Now that make(1) passes variables that were given on the command line > to subordinate make(1) invocations through MAKEFLAGS, we cannot add > CFLAGS onto the make(1) command line. This will conflict with the > individual makefiles wanting to append to it, which is not respected > when CFLAGS is given on the command line. Hence build breakage. > So, put CFLAGS in the environment instead. > =20 > Revision Changes Path > 1.850 +2 -2 src/release/Makefile >=20 Nice catch, thank you! Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --s/l3CgOIzMHHjg/5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBFpajqRfpzJluFF4RAjnpAJ0QbLwn9z3EY9G5/fqzWJZlADITZACeLO+l 8raLbgT5H6OQx7Di5hEQW/s= =PjkE -----END PGP SIGNATURE----- --s/l3CgOIzMHHjg/5-- From owner-cvs-all@FreeBSD.ORG Sun Aug 8 21:28:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03CA116A4CE; Sun, 8 Aug 2004 21:28:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA3A843D2F; Sun, 8 Aug 2004 21:28:00 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78LS0pw025429; Sun, 8 Aug 2004 21:28:00 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78LS0WL025428; Sun, 8 Aug 2004 21:28:00 GMT (envelope-from simon) Message-Id: <200408082128.i78LS0WL025428@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 8 Aug 2004 21:28:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/share/misc man2hwnotes.pl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 21:28:01 -0000 simon 2004-08-08 21:28:00 UTC FreeBSD src repository (doc committer) Modified files: release/doc/share/misc man2hwnotes.pl Log: - Add support for the .Dq macro. Revision Changes Path 1.3 +21 -0 src/release/doc/share/misc/man2hwnotes.pl From owner-cvs-all@FreeBSD.ORG Sun Aug 8 21:36:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E1BF16A4CE; Sun, 8 Aug 2004 21:36:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F53F43D1F; Sun, 8 Aug 2004 21:36:54 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78LarrZ025750; Sun, 8 Aug 2004 21:36:53 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78LarQd025749; Sun, 8 Aug 2004 21:36:53 GMT (envelope-from marcus) Message-Id: <200408082136.i78LarQd025749@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 8 Aug 2004 21:36:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/gaim Makefile distinfo pkg-plist ports/net/gaim/files patch-src_protocols_oscar_oscar.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 21:36:54 -0000 marcus 2004-08-08 21:36:53 UTC FreeBSD ports repository Modified files: net/gaim Makefile distinfo pkg-plist net/gaim/files patch-src_protocols_oscar_oscar.c Log: Update to 0.81. For a list of what's changed, see http://gaim.sourceforge.net/ChangeLog. Submitted by: Matthew Luckie Revision Changes Path 1.152 +1 -1 ports/net/gaim/Makefile 1.88 +2 -2 ports/net/gaim/distinfo 1.2 +29 -3 ports/net/gaim/files/patch-src_protocols_oscar_oscar.c 1.66 +5 -1 ports/net/gaim/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 8 21:37:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1352416A4CE; Sun, 8 Aug 2004 21:37:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA4D643D41; Sun, 8 Aug 2004 21:37:40 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78LbeRa025804; Sun, 8 Aug 2004 21:37:40 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78LbeKb025803; Sun, 8 Aug 2004 21:37:40 GMT (envelope-from marcus) Message-Id: <200408082137.i78LbeKb025803@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 8 Aug 2004 21:37:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/meanwhile-gaim Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 21:37:41 -0000 marcus 2004-08-08 21:37:40 UTC FreeBSD ports repository Modified files: net/meanwhile-gaim Makefile distinfo Log: Update to 0.81. Revision Changes Path 1.8 +1 -1 ports/net/meanwhile-gaim/Makefile 1.5 +2 -2 ports/net/meanwhile-gaim/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 21:38:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CA4816A4CE; Sun, 8 Aug 2004 21:38:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DEFA43D31; Sun, 8 Aug 2004 21:38:39 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78LcdL2025902; Sun, 8 Aug 2004 21:38:39 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78Lcde4025901; Sun, 8 Aug 2004 21:38:39 GMT (envelope-from marcus) Message-Id: <200408082138.i78Lcde4025901@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 8 Aug 2004 21:38:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/gaim-guifications Makefile ports/security/gaim-encryption Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 21:38:39 -0000 marcus 2004-08-08 21:38:39 UTC FreeBSD ports repository Modified files: misc/gaim-guifications Makefile security/gaim-encryption Makefile Log: Bump PORTREVISIONs to chase Gaim update. Revision Changes Path 1.7 +1 -0 ports/misc/gaim-guifications/Makefile 1.11 +1 -0 ports/security/gaim-encryption/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 21:39:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06FE016A4CE; Sun, 8 Aug 2004 21:39:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE1E843D4C; Sun, 8 Aug 2004 21:39:15 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78LdF8e025946; Sun, 8 Aug 2004 21:39:15 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78LdFGI025945; Sun, 8 Aug 2004 21:39:15 GMT (envelope-from marcus) Message-Id: <200408082139.i78LdFGI025945@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 8 Aug 2004 21:39:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/gaim Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 21:39:16 -0000 marcus 2004-08-08 21:39:15 UTC FreeBSD ports repository Modified files: japanese/gaim Makefile Log: Mark IGNORE until it is updated for Gaim 0.81. Revision Changes Path 1.14 +2 -0 ports/japanese/gaim/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 21:47:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE04016A4CE; Sun, 8 Aug 2004 21:47:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C068643D2F; Sun, 8 Aug 2004 21:47:40 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78Lle28026252; Sun, 8 Aug 2004 21:47:40 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78LleYO026251; Sun, 8 Aug 2004 21:47:40 GMT (envelope-from simon) Message-Id: <200408082147.i78LleYO026251@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 8 Aug 2004 21:47:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 adv.4 bt.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 21:47:41 -0000 simon 2004-08-08 21:47:40 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 adv.4 bt.4 Log: - Add a HARDWARE section which lists supported devices based on the manual page and the Hardware Notes. Revision Changes Path 1.19 +61 -0 src/share/man/man4/adv.4 1.22 +68 -3 src/share/man/man4/bt.4 From owner-cvs-all@FreeBSD.ORG Sun Aug 8 21:51:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61B6E16A4CE; Sun, 8 Aug 2004 21:51:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57D2A43D41; Sun, 8 Aug 2004 21:51:03 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78Lp3di026478; Sun, 8 Aug 2004 21:51:03 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78Lp3r2026477; Sun, 8 Aug 2004 21:51:03 GMT (envelope-from marcus) Message-Id: <200408082151.i78Lp3r2026477@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 8 Aug 2004 21:51:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/gaim-rss-reader Makefile distinfo pkg-descr pkg-plist ports/net/gaim-rss-reader/files patch-src_gaim-rss-reader.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 21:51:03 -0000 marcus 2004-08-08 21:51:03 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/gaim-rss-reader Makefile distinfo pkg-descr pkg-plist net/gaim-rss-reader/files patch-pixmaps_Makefile.in patch-src_channel.c patch-src_gaim-rss-reader.c Log: Add gaim-rss-reader, a plug-in fro Gaim that provides RSS news feed support. It allows users to add/remove RSS feeds, and consult and update them through a button on the conversation window. PR: 70163 Submitted by: Patrick MARIE Revision Changes Path 1.1342 +1 -0 ports/net/Makefile 1.1 +30 -0 ports/net/gaim-rss-reader/Makefile (new) 1.1 +2 -0 ports/net/gaim-rss-reader/distinfo (new) 1.1 +11 -0 ports/net/gaim-rss-reader/files/patch-pixmaps_Makefile.in (new) 1.1 +32 -0 ports/net/gaim-rss-reader/files/patch-src_channel.c (new) 1.1 +14 -0 ports/net/gaim-rss-reader/files/patch-src_gaim-rss-reader.c (new) 1.1 +6 -0 ports/net/gaim-rss-reader/pkg-descr (new) 1.1 +2 -0 ports/net/gaim-rss-reader/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 21:51:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6E8316A4CE; Sun, 8 Aug 2004 21:51:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B71BE43D31; Sun, 8 Aug 2004 21:51:14 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78LpEdD026524; Sun, 8 Aug 2004 21:51:14 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78LpEvY026523; Sun, 8 Aug 2004 21:51:14 GMT (envelope-from marcus) Message-Id: <200408082151.i78LpEvY026523@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 8 Aug 2004 21:51:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 21:51:15 -0000 marcus 2004-08-08 21:51:14 UTC FreeBSD ports repository Modified files: . modules Log: gaim-rss-reader --> ports/net/gaim-rss-reader Revision Changes Path 1.10852 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Aug 8 21:59:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6DEA16A4CE; Sun, 8 Aug 2004 21:59:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC6B743D2F; Sun, 8 Aug 2004 21:59:24 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78LxOe7026933; Sun, 8 Aug 2004 21:59:24 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78LxOla026932; Sun, 8 Aug 2004 21:59:24 GMT (envelope-from thierry) Message-Id: <200408082159.i78LxOla026932@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 8 Aug 2004 21:59:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils Makefile ports/dns Makefile CVSROOT modules ports MOVED ports/dns/fastresolve Makefile ports/sysutils/fastresolve Makefile distinfo pkg-descr pkg-plist patch-dns-terror::DatedStringDb.cc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 21:59:25 -0000 thierry 2004-08-08 21:59:24 UTC FreeBSD ports repository Modified files: sysutils Makefile dns Makefile . modules . MOVED dns/fastresolve Makefile Removed files: sysutils/fastresolve Makefile distinfo pkg-descr pkg-plist sysutils/fastresolve/files patch-configure.in patch-dns-terror::DatedStringDb.cc Log: - Update of sysutils/fastresolve to support BDB ver. 4.2; - Move to the dns category. PR: ports/70127 & ports/70179 Submitted by: Michael Edenfield & maintainer Repocopied by: marcus. Revision Changes Path 1.10853 +1 -1 CVSROOT/modules 1.492 +2 -1 ports/MOVED 1.23 +1 -0 ports/dns/Makefile 1.10 +9 -6 ports/dns/fastresolve/Makefile 1.568 +0 -1 ports/sysutils/Makefile 1.10 +0 -59 ports/sysutils/fastresolve/Makefile (dead) 1.4 +0 -2 ports/sysutils/fastresolve/distinfo (dead) 1.4 +0 -138 ports/sysutils/fastresolve/files/patch-configure.in (dead) 1.2 +0 -14 ports/sysutils/fastresolve/files/patch-dns-terror::DatedStringDb.cc (dead) 1.2 +0 -10 ports/sysutils/fastresolve/pkg-descr (dead) 1.3 +0 -22 ports/sysutils/fastresolve/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 22:04:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 079E816A4CE; Sun, 8 Aug 2004 22:04:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D885F43D49; Sun, 8 Aug 2004 22:04:19 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78M4JJg027092; Sun, 8 Aug 2004 22:04:19 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78M4JYo027091; Sun, 8 Aug 2004 22:04:19 GMT (envelope-from marcus) Message-Id: <200408082204.i78M4JYo027091@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 8 Aug 2004 22:04:19 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 22:04:20 -0000 marcus 2004-08-08 22:04:19 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Add Patrick MARIE for his contribution of net/gaim-rss-reader. Revision Changes Path 1.247 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Sun Aug 8 22:13:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFD1A16A4CE; Sun, 8 Aug 2004 22:13:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9147243D41; Sun, 8 Aug 2004 22:13:17 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MDHW5027412; Sun, 8 Aug 2004 22:13:17 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MDH3c027411; Sun, 8 Aug 2004 22:13:17 GMT (envelope-from thierry) Message-Id: <200408082213.i78MDH3c027411@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 8 Aug 2004 22:13:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/wml Makefile ports/www/wml/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 22:13:17 -0000 thierry 2004-08-08 22:13:17 UTC FreeBSD ports repository Modified files: www/wml Makefile www/wml/files patch-configure Log: Don't spawn a process to run perl, but install perl arch-dependent files in a standard directory. PR: ports/70091 Submitted by: myself Approved by: maintainer. Revision Changes Path 1.51 +4 -8 ports/www/wml/Makefile 1.2 +11 -2 ports/www/wml/files/patch-configure From owner-cvs-all@FreeBSD.ORG Sun Aug 8 22:19:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82CD016A4CE; Sun, 8 Aug 2004 22:19:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EBDA43D41; Sun, 8 Aug 2004 22:19:05 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MJ5MR027569; Sun, 8 Aug 2004 22:19:05 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MJ5RG027568; Sun, 8 Aug 2004 22:19:05 GMT (envelope-from simon) Message-Id: <200408082219.i78MJ5RG027568@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 8 Aug 2004 22:19:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 amd.4 ida.4 iir.4 ips.4 nsp.4 ohci.4 stg.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 22:19:05 -0000 simon 2004-08-08 22:19:05 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 amd.4 ida.4 iir.4 ips.4 nsp.4 ohci.4 stg.4 Log: - Add a HARDWARE section which lists supported devices. Revision Changes Path 1.7 +15 -2 src/share/man/man4/amd.4 1.4 +2 -1 src/share/man/man4/ida.4 1.7 +6 -4 src/share/man/man4/iir.4 1.4 +15 -12 src/share/man/man4/ips.4 1.4 +4 -1 src/share/man/man4/nsp.4 1.15 +22 -10 src/share/man/man4/ohci.4 1.6 +4 -1 src/share/man/man4/stg.4 From owner-cvs-all@FreeBSD.ORG Sun Aug 8 22:26:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16CBC16A4CE; Sun, 8 Aug 2004 22:26:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB76143D2D; Sun, 8 Aug 2004 22:26:11 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MQBTV027824; Sun, 8 Aug 2004 22:26:11 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MQBWJ027823; Sun, 8 Aug 2004 22:26:11 GMT (envelope-from davidxu) Message-Id: <200408082226.i78MQBWJ027823@repoman.freebsd.org> From: David Xu Date: Sun, 8 Aug 2004 22:26:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys ptrace.h src/sys/kern sys_process.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 22:26:12 -0000 davidxu 2004-08-08 22:26:11 UTC FreeBSD src repository Modified files: sys/sys ptrace.h sys/kern sys_process.c Log: Add pl_flags to ptrace_lwpinfo, two flags PL_FLAG_SA and PL_FLAG_BOUND indicate that a thread is in UTS critical region. Reviewed by: deischen Approved by: marcel Revision Changes Path 1.127 +7 -0 src/sys/kern/sys_process.c 1.25 +3 -0 src/sys/sys/ptrace.h From owner-cvs-all@FreeBSD.ORG Sun Aug 8 22:27:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4962716A4CE; Sun, 8 Aug 2004 22:27:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4085E43D1D; Sun, 8 Aug 2004 22:27:03 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MR3X5027897; Sun, 8 Aug 2004 22:27:03 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MR3Y2027896; Sun, 8 Aug 2004 22:27:03 GMT (envelope-from simon) Message-Id: <200408082227.i78MR3Y2027896@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 8 Aug 2004 22:27:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 adv.4 amd.4 bt.4 ida.4 iir.4 ips.4 nsp.4 ohci.4 stg.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 22:27:03 -0000 simon 2004-08-08 22:27:03 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 adv.4 amd.4 bt.4 ida.4 iir.4 ips.4 nsp.4 ohci.4 stg.4 Log: Bump document date for last commit. Revision Changes Path 1.20 +1 -1 src/share/man/man4/adv.4 1.8 +1 -1 src/share/man/man4/amd.4 1.23 +1 -1 src/share/man/man4/bt.4 1.5 +1 -1 src/share/man/man4/ida.4 1.8 +1 -1 src/share/man/man4/iir.4 1.5 +1 -1 src/share/man/man4/ips.4 1.5 +1 -1 src/share/man/man4/nsp.4 1.16 +1 -1 src/share/man/man4/ohci.4 1.7 +1 -1 src/share/man/man4/stg.4 From owner-cvs-all@FreeBSD.ORG Sun Aug 8 22:27:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2E3A16A4CE; Sun, 8 Aug 2004 22:27:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B329143D1F; Sun, 8 Aug 2004 22:27:46 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MRk63028002; Sun, 8 Aug 2004 22:27:46 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MRk5P028001; Sun, 8 Aug 2004 22:27:46 GMT (envelope-from lth) Message-Id: <200408082227.i78MRk5P028001@repoman.freebsd.org> From: Lars Thegler Date: Sun, 8 Aug 2004 22:27:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio Makefile ports/audio/p5-Net-DAAP-DMAP Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 22:27:47 -0000 lth 2004-08-08 22:27:46 UTC FreeBSD ports repository Modified files: audio Makefile Added files: audio/p5-Net-DAAP-DMAP Makefile distinfo pkg-descr pkg-plist Log: Add p5-Net-DAAP-DMAP 1.24, Perl module for reading and writing DAAP structures. Revision Changes Path 1.540 +1 -0 ports/audio/Makefile 1.1 +31 -0 ports/audio/p5-Net-DAAP-DMAP/Makefile (new) 1.1 +2 -0 ports/audio/p5-Net-DAAP-DMAP/distinfo (new) 1.1 +4 -0 ports/audio/p5-Net-DAAP-DMAP/pkg-descr (new) 1.1 +3 -0 ports/audio/p5-Net-DAAP-DMAP/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 22:28:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29B8316A4CE; Sun, 8 Aug 2004 22:28:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B35C43D2F; Sun, 8 Aug 2004 22:28:00 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MRxQU028048; Sun, 8 Aug 2004 22:27:59 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MRxLi028047; Sun, 8 Aug 2004 22:27:59 GMT (envelope-from lth) Message-Id: <200408082227.i78MRxLi028047@repoman.freebsd.org> From: Lars Thegler Date: Sun, 8 Aug 2004 22:27:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 22:28:00 -0000 lth 2004-08-08 22:27:59 UTC FreeBSD ports repository Modified files: . modules Log: p5-Net-DAAP-DMAP --> ports/audio/p5-Net-DAAP-DMAP Revision Changes Path 1.10854 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Aug 8 22:28:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C19F716A4CE; Sun, 8 Aug 2004 22:28:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1EE843D1D; Sun, 8 Aug 2004 22:28:33 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MSXnR028091; Sun, 8 Aug 2004 22:28:33 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MSXn3028090; Sun, 8 Aug 2004 22:28:33 GMT (envelope-from davidxu) Message-Id: <200408082228.i78MSXn3028090@repoman.freebsd.org> From: David Xu Date: Sun, 8 Aug 2004 22:28:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_trap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 22:28:33 -0000 davidxu 2004-08-08 22:28:33 UTC FreeBSD src repository Modified files: sys/kern subr_trap.c Log: Call thread_user_enter for M:N thread, ast() should be treated as another entrance of kernel. Revision Changes Path 1.270 +2 -0 src/sys/kern/subr_trap.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 22:31:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8F3016A4CE; Sun, 8 Aug 2004 22:31:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C912E43D1D; Sun, 8 Aug 2004 22:31:47 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MVlM7028285; Sun, 8 Aug 2004 22:31:47 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MVlco028284; Sun, 8 Aug 2004 22:31:47 GMT (envelope-from mezz) Message-Id: <200408082231.i78MVlco028284@repoman.freebsd.org> From: Jeremy Messenger Date: Sun, 8 Aug 2004 22:31:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/neverball Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 22:31:48 -0000 mezz 2004-08-08 22:31:47 UTC FreeBSD ports repository Modified files: games/neverball Makefile distinfo Log: Update to 1.3.7. The developer said, 'There was quite a significant bug in version 1.3.6 that corrupted the geometry of Neverputt level 16, making that game unfinishable. This was a big enough problem to warrant the release of 1.3.7 with only one fix.' Revision Changes Path 1.18 +1 -1 ports/games/neverball/Makefile 1.16 +2 -2 ports/games/neverball/distinfo From owner-cvs-all@FreeBSD.ORG Sun Aug 8 22:32:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D6B916A4CF; Sun, 8 Aug 2004 22:32:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CE8F43D1F; Sun, 8 Aug 2004 22:32:21 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MWLKM028347; Sun, 8 Aug 2004 22:32:21 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MWL1M028346; Sun, 8 Aug 2004 22:32:21 GMT (envelope-from davidxu) Message-Id: <200408082232.i78MWL1M028346@repoman.freebsd.org> From: David Xu Date: Sun, 8 Aug 2004 22:32:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys kse.h src/sys/kern kern_kse.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 22:32:21 -0000 davidxu 2004-08-08 22:32:21 UTC FreeBSD src repository Modified files: sys/sys kse.h sys/kern kern_kse.c Log: 1.Add KSE_INTR_DBSUSPEND command for kse_thr_interrupt to suspend a bound thread, after the bound thread leaves critical region, the thread should check debug flag may suspend itself by using the command. 2.Schedule upcall after thread is suspended by debugger 3.Wakeup upcall thread after process suspension. Reviewed by: deischen Revision Changes Path 1.192 +46 -29 src/sys/kern/kern_kse.c 1.26 +5 -4 src/sys/sys/kse.h From owner-cvs-all@FreeBSD.ORG Sun Aug 8 22:37:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7251216A4CE; Sun, 8 Aug 2004 22:37:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6966543D41; Sun, 8 Aug 2004 22:37:53 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MbrCK028606; Sun, 8 Aug 2004 22:37:53 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MbrDB028605; Sun, 8 Aug 2004 22:37:53 GMT (envelope-from davidxu) Message-Id: <200408082237.i78MbrDB028605@repoman.freebsd.org> From: David Xu Date: Sun, 8 Aug 2004 22:37:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthread_db Makefile libpthread_db.c thread_db.c thread_db.h thread_db_int.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 22:37:53 -0000 davidxu 2004-08-08 22:37:53 UTC FreeBSD src repository Modified files: lib/libthread_db Makefile libpthread_db.c thread_db.c thread_db.h thread_db_int.h Log: 1.Use new way to check if a thread is in critical region, defer suspending if it is true. 2.Add thread_db api td_thr_tls_get_addr to get tls address, the real code is commented out util tls patch is committed. Reviewed by: deischen Revision Changes Path 1.4 +7 -1 src/lib/libthread_db/Makefile 1.4 +108 -31 src/lib/libthread_db/libpthread_db.c 1.2 +8 -0 src/lib/libthread_db/thread_db.c 1.3 +1 -0 src/lib/libthread_db/thread_db.h 1.2 +2 -0 src/lib/libthread_db/thread_db_int.h From owner-cvs-all@FreeBSD.ORG Sun Aug 8 22:39:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 509F416A4CE; Sun, 8 Aug 2004 22:39:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3196F43D49; Sun, 8 Aug 2004 22:39:19 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MdJn8028683; Sun, 8 Aug 2004 22:39:19 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MdJq6028681; Sun, 8 Aug 2004 22:39:19 GMT (envelope-from simon) Message-Id: <200408082239.i78MdJq6028681@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Sun, 8 Aug 2004 22:39:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml src/release/doc/share/misc dev.archlist.txt X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 22:39:19 -0000 simon 2004-08-08 22:39:19 UTC FreeBSD src repository (doc committer) Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml release/doc/share/misc dev.archlist.txt Log: Auto generate device listings the following drivers: adv, amd, bt, ida, iir, ips, nsp, ohci, and stg. Revision Changes Path 1.223 +9 -41 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml 1.2 +8 -0 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-all@FreeBSD.ORG Sun Aug 8 22:42:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55E7516A4CE; Sun, 8 Aug 2004 22:42:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3629243D1F; Sun, 8 Aug 2004 22:42:12 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MgCQU028825; Sun, 8 Aug 2004 22:42:12 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MgCkQ028824; Sun, 8 Aug 2004 22:42:12 GMT (envelope-from davidxu) Message-Id: <200408082242.i78MgCkQ028824@repoman.freebsd.org> From: David Xu Date: Sun, 8 Aug 2004 22:42:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpthread/thread thr_kern.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 22:42:12 -0000 davidxu 2004-08-08 22:42:12 UTC FreeBSD src repository Modified files: lib/libpthread/thread thr_kern.c Log: Check debugger suspending flag for system scope thread. Reviewed by: deischen Revision Changes Path 1.110 +7 -3 src/lib/libpthread/thread/thr_kern.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 22:45:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2731016A4CE; Sun, 8 Aug 2004 22:45:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07F5E43D53; Sun, 8 Aug 2004 22:45:37 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78Mja5t028966; Sun, 8 Aug 2004 22:45:36 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MjaDt028965; Sun, 8 Aug 2004 22:45:36 GMT (envelope-from davidxu) Message-Id: <200408082245.i78MjaDt028965@repoman.freebsd.org> From: David Xu Date: Sun, 8 Aug 2004 22:45:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/gdb/libgdb Makefile fbsd-threads.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 22:45:37 -0000 davidxu 2004-08-08 22:45:36 UTC FreeBSD src repository Modified files: gnu/usr.bin/gdb/libgdb Makefile fbsd-threads.c Log: 1. Add some code check if thread suspending or resuming is failed. 2. Add code to retrieve thread tls address. Revision Changes Path 1.2 +1 -1 src/gnu/usr.bin/gdb/libgdb/Makefile 1.4 +79 -3 src/gnu/usr.bin/gdb/libgdb/fbsd-threads.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 22:46:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EFA7416A4CE; Sun, 8 Aug 2004 22:46:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D027E43D39; Sun, 8 Aug 2004 22:46:22 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MkMGi029021; Sun, 8 Aug 2004 22:46:22 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MkMRE029020; Sun, 8 Aug 2004 22:46:22 GMT (envelope-from davidxu) Message-Id: <200408082246.i78MkMRE029020@repoman.freebsd.org> From: David Xu Date: Sun, 8 Aug 2004 22:46:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/gdb/arch/i386 init.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 22:46:23 -0000 davidxu 2004-08-08 22:46:22 UTC FreeBSD src repository Modified files: gnu/usr.bin/gdb/arch/i386 init.c Log: Initialize thread_db module. Revision Changes Path 1.2 +2 -0 src/gnu/usr.bin/gdb/arch/i386/init.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 22:49:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAB4916A4CE; Sun, 8 Aug 2004 22:49:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96AB343D48; Sun, 8 Aug 2004 22:49:20 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78MnKCn029157; Sun, 8 Aug 2004 22:49:20 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78MnKrd029156; Sun, 8 Aug 2004 22:49:20 GMT (envelope-from mezz) Message-Id: <200408082249.i78MnKrd029156@repoman.freebsd.org> From: Jeremy Messenger Date: Sun, 8 Aug 2004 22:49:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gtk20 Makefile ports/x11-toolkits/gtk20/files patch-ltmain.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 22:49:20 -0000 mezz 2004-08-08 22:49:20 UTC FreeBSD ports repository Modified files: x11-toolkits/gtk20 Makefile Removed files: x11-toolkits/gtk20/files patch-ltmain.sh Log: Use new libtool scheme. Revision Changes Path 1.132 +1 -1 ports/x11-toolkits/gtk20/Makefile 1.8 +0 -51 ports/x11-toolkits/gtk20/files/patch-ltmain.sh (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 23:01:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F5D016A4CE; Sun, 8 Aug 2004 23:01:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F8B743D2F; Sun, 8 Aug 2004 23:01:58 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78N1wBG029593; Sun, 8 Aug 2004 23:01:58 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78N1wAJ029592; Sun, 8 Aug 2004 23:01:58 GMT (envelope-from lth) Message-Id: <200408082301.i78N1wAJ029592@repoman.freebsd.org> From: Lars Thegler Date: Sun, 8 Aug 2004 23:01:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/p5-dapple Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 23:01:58 -0000 lth 2004-08-08 23:01:58 UTC FreeBSD ports repository Modified files: audio/p5-dapple Makefile distinfo pkg-plist Log: Moved from audio/p5-dapple, and updated to 0.41 Revision Changes Path 1.2 +12 -14 ports/audio/p5-dapple/Makefile 1.2 +2 -1 ports/audio/p5-dapple/distinfo 1.2 +5 -6 ports/audio/p5-dapple/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 8 23:03:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F11216A4CE; Sun, 8 Aug 2004 23:03:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 701D543D45; Sun, 8 Aug 2004 23:03:29 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78N3TmK029642; Sun, 8 Aug 2004 23:03:29 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78N3Tj7029641; Sun, 8 Aug 2004 23:03:29 GMT (envelope-from lth) Message-Id: <200408082303.i78N3Tj7029641@repoman.freebsd.org> From: Lars Thegler Date: Sun, 8 Aug 2004 23:03:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports MOVED X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 23:03:29 -0000 lth 2004-08-08 23:03:29 UTC FreeBSD ports repository Modified files: . MOVED Log: audio/p5-dapple moved to audio/p5-Net-DAAP-Client Revision Changes Path 1.493 +2 -1 ports/MOVED From owner-cvs-all@FreeBSD.ORG Sun Aug 8 23:03:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B0E116A4CE; Sun, 8 Aug 2004 23:03:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BA6F43D31; Sun, 8 Aug 2004 23:03:52 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78N3qHA029677; Sun, 8 Aug 2004 23:03:52 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78N3qYa029676; Sun, 8 Aug 2004 23:03:52 GMT (envelope-from lth) Message-Id: <200408082303.i78N3qYa029676@repoman.freebsd.org> From: Lars Thegler Date: Sun, 8 Aug 2004 23:03:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 23:03:52 -0000 lth 2004-08-08 23:03:52 UTC FreeBSD ports repository Modified files: audio Makefile Log: audio/p5-dapple moved to audio/p5-Net-DAAP-Client Revision Changes Path 1.541 +1 -1 ports/audio/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 23:11:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAEFC16A4CE; Sun, 8 Aug 2004 23:11:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69A1943D49; Sun, 8 Aug 2004 23:11:43 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78NBhxG030011; Sun, 8 Aug 2004 23:11:43 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78NBhpw030010; Sun, 8 Aug 2004 23:11:43 GMT (envelope-from des) Message-Id: <200408082311.i78NBhpw030010@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 8 Aug 2004 23:11:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/bsdlabel bsdlabel.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 23:11:43 -0000 des 2004-08-08 23:11:43 UTC FreeBSD src repository Modified files: sbin/bsdlabel bsdlabel.c Log: Fix some whitespace issues, and move a curly brace out of an #ifdef to avoid confusing auto-indenting editors. Revision Changes Path 1.106 +14 -13 src/sbin/bsdlabel/bsdlabel.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 23:14:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9ADF716A4CE; Sun, 8 Aug 2004 23:14:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D5A343D31; Sun, 8 Aug 2004 23:14:44 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78NEiDu030098; Sun, 8 Aug 2004 23:14:44 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78NEiIk030097; Sun, 8 Aug 2004 23:14:44 GMT (envelope-from des) Message-Id: <200408082314.i78NEiIk030097@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 8 Aug 2004 23:14:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/bsdlabel bsdlabel.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 23:14:44 -0000 des 2004-08-08 23:14:44 UTC FreeBSD src repository Modified files: sbin/bsdlabel bsdlabel.c Log: Use fallthrough to simplify the multiplier logic; optimistically add support for the T multiplier; improve the error message for unrecognized multipliers. Revision Changes Path 1.107 +14 -9 src/sbin/bsdlabel/bsdlabel.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 23:16:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A36516A4CE; Sun, 8 Aug 2004 23:16:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A6AA43D31; Sun, 8 Aug 2004 23:16:02 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78NG2gG030217; Sun, 8 Aug 2004 23:16:02 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78NG2dc030216; Sun, 8 Aug 2004 23:16:02 GMT (envelope-from lth) Message-Id: <200408082316.i78NG2dc030216@repoman.freebsd.org> From: Lars Thegler Date: Sun, 8 Aug 2004 23:16:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/p5-dapple Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 23:16:02 -0000 lth 2004-08-08 23:16:02 UTC FreeBSD ports repository Removed files: audio/p5-dapple Makefile distinfo pkg-descr pkg-plist Log: Moved to audio/p5-Net-DAAP-Client Revision Changes Path 1.3 +0 -34 ports/audio/p5-dapple/Makefile (dead) 1.3 +0 -2 ports/audio/p5-dapple/distinfo (dead) 1.2 +0 -7 ports/audio/p5-dapple/pkg-descr (dead) 1.3 +0 -6 ports/audio/p5-dapple/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 23:29:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF70116A4CE; Sun, 8 Aug 2004 23:29:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF51543D1F; Sun, 8 Aug 2004 23:29:36 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78NTa7u030551; Sun, 8 Aug 2004 23:29:36 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78NTa7g030550; Sun, 8 Aug 2004 23:29:36 GMT (envelope-from alfred) Message-Id: <200408082329.i78NTa7g030550@repoman.freebsd.org> From: Alfred Perlstein Date: Sun, 8 Aug 2004 23:29:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/truss i386-fbsd.c syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 23:29:37 -0000 alfred 2004-08-08 23:29:36 UTC FreeBSD src repository Modified files: usr.bin/truss i386-fbsd.c syscalls.c Log: don't seg if the syscall is invalid for i386fbsd. Revision Changes Path 1.23 +2 -1 src/usr.bin/truss/i386-fbsd.c 1.44 +2 -0 src/usr.bin/truss/syscalls.c From owner-cvs-all@FreeBSD.ORG Sun Aug 8 23:30:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60FF216A4CE; Sun, 8 Aug 2004 23:30:59 +0000 (GMT) Received: from darkness.comp.waw.pl (darkness.comp.waw.pl [195.117.238.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5FE743D31; Sun, 8 Aug 2004 23:30:58 +0000 (GMT) (envelope-from pjd@darkness.comp.waw.pl) Received: by darkness.comp.waw.pl (Postfix, from userid 1009) id 93EC4ACAE0; Mon, 9 Aug 2004 01:30:54 +0200 (CEST) Date: Mon, 9 Aug 2004 01:30:54 +0200 From: Pawel Jakub Dawidek To: Poul-Henning Kamp Message-ID: <20040808233054.GI628@darkness.comp.waw.pl> References: <200408080757.i787vrUU096445@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="54ZiyWcDhi/7bWb8" Content-Disposition: inline In-Reply-To: <200408080757.i787vrUU096445@repoman.freebsd.org> User-Agent: Mutt/1.4.2i X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 5.2.1-RC2 i386 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ata atapi-cd.c src/sys/dev/md md.c src/sys/geom geom_aes.c geom_apple.c geom_bsd.c geom_ccd.c geom_dev.c geom_disk.c geom_fox.c geom_gpt.c geom_mbr.c geom_pc98.c geom_sunlabel.c geom_vol_ffs.c src/sys/geom/bde ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 23:30:59 -0000 --54ZiyWcDhi/7bWb8 Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Aug 08, 2004 at 07:57:53AM +0000, Poul-Henning Kamp wrote: [...] +> Log: +> Tag all geom classes in the tree with a version number. [...] +> --- src/sys/geom/geom_vol_ffs.c 2004/02/12 22:42:11 1.11 +> +++ src/sys/geom/geom_vol_ffs.c 2004/08/08 07:57:51 1.12 +> @@ -25,7 +25,7 @@ +> */ +> =20 +> #include +> -__FBSDID("$FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/geom/geom_vo= l_ffs.c,v 1.11 2004/02/12 22:42:11 phk Exp $"); +> +__FBSDID("$FreeBSD: /usr/local/www/cvsroot/FreeBSD/src/sys/geom/geom_vo= l_ffs.c,v 1.12 2004/08/08 07:57:51 phk Exp $"); +> =20 +> #include +> #include +> @@ -137,6 +137,8 @@ g_vol_ffs_taste(struct g_class *mp, stru +> =20 +> static struct g_class g_vol_ffs_class =3D { +> .name =3D VOL_FFS_CLASS_NAME, +> + .version =3D G_VERSION, +> + .version =3D G_VERSION, +> .taste =3D g_vol_ffs_taste, +> }; One too much here. --=20 Pawel Jakub Dawidek http://www.FreeBSD.org pjd@FreeBSD.org http://garage.freebsd.pl FreeBSD committer Am I Evil? Yes, I Am! --54ZiyWcDhi/7bWb8 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBFreuForvXbEpPzQRAus1AJ9L7UTl5HgCNmtjXzTP21yBitc7dACfUsP/ +IZkQT4GVI18WdwodRQA4aU= =PKEP -----END PGP SIGNATURE----- --54ZiyWcDhi/7bWb8-- From owner-cvs-all@FreeBSD.ORG Sun Aug 8 23:42:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A32416A4CE; Sun, 8 Aug 2004 23:42:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08A1343D1D; Sun, 8 Aug 2004 23:42:14 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78NgDDV030994; Sun, 8 Aug 2004 23:42:13 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78NgD9f030993; Sun, 8 Aug 2004 23:42:13 GMT (envelope-from lth) Message-Id: <200408082342.i78NgD9f030993@repoman.freebsd.org> From: Lars Thegler Date: Sun, 8 Aug 2004 23:42:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/p5-Net-DAAP-Client Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 23:42:14 -0000 lth 2004-08-08 23:42:13 UTC FreeBSD ports repository Modified files: audio/p5-Net-DAAP-Client Makefile distinfo pkg-descr pkg-plist Log: Moved from audio/p5-dapple, and updated to 0.41 Revision Changes Path 1.2 +13 -15 ports/audio/p5-Net-DAAP-Client/Makefile 1.2 +2 -1 ports/audio/p5-Net-DAAP-Client/distinfo 1.2 +1 -3 ports/audio/p5-Net-DAAP-Client/pkg-descr 1.2 +5 -6 ports/audio/p5-Net-DAAP-Client/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Aug 8 23:46:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30CB716A4CE; Sun, 8 Aug 2004 23:46:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F88B43D48; Sun, 8 Aug 2004 23:46:57 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78NkutS031190; Sun, 8 Aug 2004 23:46:56 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78NkuVB031189; Sun, 8 Aug 2004 23:46:56 GMT (envelope-from lth) Message-Id: <200408082346.i78NkuVB031189@repoman.freebsd.org> From: Lars Thegler Date: Sun, 8 Aug 2004 23:46:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/p5-Net-DAAP-Client-Auth Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 23:46:57 -0000 lth 2004-08-08 23:46:56 UTC FreeBSD ports repository Removed files: audio/p5-Net-DAAP-Client-Auth Makefile distinfo pkg-descr pkg-plist Log: Obsolete; funtionality merged into audio/p5-Net-DAAP-Client Revision Changes Path 1.2 +0 -38 ports/audio/p5-Net-DAAP-Client-Auth/Makefile (dead) 1.2 +0 -2 ports/audio/p5-Net-DAAP-Client-Auth/distinfo (dead) 1.2 +0 -7 ports/audio/p5-Net-DAAP-Client-Auth/pkg-descr (dead) 1.2 +0 -10 ports/audio/p5-Net-DAAP-Client-Auth/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 23:48:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD86416A4CE; Sun, 8 Aug 2004 23:48:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CFF943D2F; Sun, 8 Aug 2004 23:48:33 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78NmXeC031286; Sun, 8 Aug 2004 23:48:33 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78NmXQ0031285; Sun, 8 Aug 2004 23:48:33 GMT (envelope-from lth) Message-Id: <200408082348.i78NmXQ0031285@repoman.freebsd.org> From: Lars Thegler Date: Sun, 8 Aug 2004 23:48:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports MOVED X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 23:48:33 -0000 lth 2004-08-08 23:48:33 UTC FreeBSD ports repository Modified files: . MOVED Log: audio/p5-Net-DAAP-Client-Auth obsoleted Revision Changes Path 1.494 +2 -1 ports/MOVED From owner-cvs-all@FreeBSD.ORG Sun Aug 8 23:48:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D513616A4CE; Sun, 8 Aug 2004 23:48:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5E0D43D4C; Sun, 8 Aug 2004 23:48:49 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78NmnUl031321; Sun, 8 Aug 2004 23:48:49 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78Nmnlx031320; Sun, 8 Aug 2004 23:48:49 GMT (envelope-from lth) Message-Id: <200408082348.i78Nmnlx031320@repoman.freebsd.org> From: Lars Thegler Date: Sun, 8 Aug 2004 23:48:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 23:48:50 -0000 lth 2004-08-08 23:48:49 UTC FreeBSD ports repository Modified files: audio Makefile Log: audio/p5-Net-DAAP-Client-Auth obsoleted Revision Changes Path 1.542 +0 -1 ports/audio/Makefile From owner-cvs-all@FreeBSD.ORG Sun Aug 8 23:50:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B00D216A4CE; Sun, 8 Aug 2004 23:50:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A46F943D48; Sun, 8 Aug 2004 23:50:04 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78No4it031399; Sun, 8 Aug 2004 23:50:04 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78No4pi031398; Sun, 8 Aug 2004 23:50:04 GMT (envelope-from marcus) Message-Id: <200408082350.i78No4pi031398@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 8 Aug 2004 23:50:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/meanwhile Makefile distinfo ports/net/meanwhile/files patch-src_channel.c patch-src_cipher.c patch-src_cipher.h patch-src_srvc_aware.c patch-src_st_list.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 23:50:04 -0000 marcus 2004-08-08 23:50:04 UTC FreeBSD ports repository Modified files: net/meanwhile Makefile distinfo Removed files: net/meanwhile/files patch-src_channel.c patch-src_cipher.c patch-src_cipher.h patch-src_srvc_aware.c patch-src_st_list.c Log: The meanwhile distfile was rerolled to the latest snapshot from CVS HEAD. Other than incoporating all local patches, it also fixed a bug where version incompatibility errors were seen with certain SameTime servers. Revision Changes Path 1.8 +3 -3 ports/net/meanwhile/Makefile 1.5 +2 -2 ports/net/meanwhile/distinfo 1.2 +0 -11 ports/net/meanwhile/files/patch-src_channel.c (dead) 1.2 +0 -64 ports/net/meanwhile/files/patch-src_cipher.c (dead) 1.2 +0 -50 ports/net/meanwhile/files/patch-src_cipher.h (dead) 1.2 +0 -19 ports/net/meanwhile/files/patch-src_srvc_aware.c (dead) 1.2 +0 -116 ports/net/meanwhile/files/patch-src_st_list.c (dead) From owner-cvs-all@FreeBSD.ORG Sun Aug 8 23:58:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F2DF16A4CE; Sun, 8 Aug 2004 23:58:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DCA043D1D; Sun, 8 Aug 2004 23:58:18 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i78NwIgj031670; Sun, 8 Aug 2004 23:58:18 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i78NwICF031669; Sun, 8 Aug 2004 23:58:18 GMT (envelope-from lth) Message-Id: <200408082358.i78NwICF031669@repoman.freebsd.org> From: Lars Thegler Date: Sun, 8 Aug 2004 23:58:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/p5-Filesys-Virtual-DAAP Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: 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, 08 Aug 2004 23:58:18 -0000 lth 2004-08-08 23:58:18 UTC FreeBSD ports repository Modified files: audio/p5-Filesys-Virtual-DAAP Makefile distinfo Log: Update to 0.03 Revision Changes Path 1.2 +4 -9 ports/audio/p5-Filesys-Virtual-DAAP/Makefile 1.2 +2 -2 ports/audio/p5-Filesys-Virtual-DAAP/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 00:15:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E882D16A4CE; Mon, 9 Aug 2004 00:15:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5EA243D1D; Mon, 9 Aug 2004 00:15:44 +0000 (GMT) (envelope-from gshapiro@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i790Fiqs033172; Mon, 9 Aug 2004 00:15:44 GMT (envelope-from gshapiro@repoman.freebsd.org) Received: (from gshapiro@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i790FiVa033171; Mon, 9 Aug 2004 00:15:44 GMT (envelope-from gshapiro) Message-Id: <200408090015.i790FiVa033171@repoman.freebsd.org> From: Gregory Neil Shapiro Date: Mon, 9 Aug 2004 00:15:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/contrib/sendmail CACerts FREEBSD-upgrade KNOWNBUGS LICENSE PGPKEYS README RELEASE_NOTES src/contrib/sendmail/cf README sendmail.schema src/contrib/sendmail/cf/cf Makefile knecht.mc submit.cf submit.mc src/contrib/sendmail/cf/feature ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 00:15:45 -0000 gshapiro 2004-08-09 00:15:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) contrib/sendmail FREEBSD-upgrade KNOWNBUGS LICENSE PGPKEYS README RELEASE_NOTES contrib/sendmail/cf README sendmail.schema contrib/sendmail/cf/cf Makefile knecht.mc submit.cf submit.mc contrib/sendmail/cf/feature access_db.m4 authinfo.m4 bitdomain.m4 dnsbl.m4 domaintable.m4 genericstable.m4 ldap_routing.m4 local_lmtp.m4 local_procmail.m4 mailertable.m4 msp.m4 uucpdomain.m4 virtusertable.m4 contrib/sendmail/cf/m4 cfhead.m4 proto.m4 version.m4 contrib/sendmail/cf/mailer usenet.m4 contrib/sendmail/contrib buildvirtuser cidrexpand qtool.8 qtool.pl contrib/sendmail/doc/op Makefile op.me contrib/sendmail/editmap Makefile.m4 editmap.8 contrib/sendmail/include/libmilter mfapi.h mfdef.h milter.h contrib/sendmail/include/libsmdb smdb.h contrib/sendmail/include/sendmail mailstats.h sendmail.h contrib/sendmail/include/sm bdb.h cdefs.h conf.h config.h debug.h errstring.h fdset.h gen.h io.h ldap.h rpool.h shm.h string.h varargs.h contrib/sendmail/include/sm/os sm_os_aix.h sm_os_unixware.h contrib/sendmail/libmilter Makefile.m4 README comm.c engine.c handler.c libmilter.h listener.c main.c signal.c smfi.c contrib/sendmail/libmilter/docs api.html design.html index.html installation.html other.html overview.html sample.html smfi_addheader.html smfi_addrcpt.html smfi_chgheader.html smfi_delrcpt.html smfi_getpriv.html smfi_getsymval.html smfi_main.html smfi_register.html smfi_replacebody.html smfi_setbacklog.html smfi_setconn.html smfi_setpriv.html smfi_setreply.html smfi_settimeout.html xxfi_abort.html xxfi_body.html xxfi_close.html xxfi_connect.html xxfi_envfrom.html xxfi_envrcpt.html xxfi_eoh.html xxfi_eom.html xxfi_header.html xxfi_helo.html contrib/sendmail/libsm Makefile.m4 README assert.c clock.c config.c debug.c errstring.c exc.c flags.c ldap.c local.h mbdb.c refill.c rpool.c shm.c smstdio.c stdio.c strdup.c t-shm.c vasprintf.c contrib/sendmail/libsmdb Makefile.m4 smdb2.c contrib/sendmail/libsmutil Makefile.m4 cf.c lockfile.c safefile.c contrib/sendmail/mail.local Makefile.m4 README mail.local.8 mail.local.c contrib/sendmail/mailstats Makefile.m4 mailstats.8 mailstats.c contrib/sendmail/makemap Makefile.m4 makemap.8 makemap.c contrib/sendmail/praliases Makefile.m4 contrib/sendmail/rmail Makefile.m4 contrib/sendmail/smrsh Makefile.m4 README smrsh.8 smrsh.c contrib/sendmail/src Makefile.m4 README SECURITY TRACEFLAGS TUNING alias.c aliases.5 bf.c collect.c conf.c conf.h control.c daemon.c deliver.c domain.c envelope.c err.c headers.c macro.c mailq.1 main.c map.c mci.c milter.c mime.c parseaddr.c queue.c readcf.c recipient.c sasl.c savemail.c sendmail.8 sendmail.h sfsasl.c sm_resolve.c srvrsmtp.c stab.c stats.c sysexits.c tls.c trace.c udb.c usersmtp.c util.c version.c contrib/sendmail/test Makefile.m4 contrib/sendmail/vacation Makefile.m4 vacation.1 vacation.c lib/libsm Makefile release/doc/en_US.ISO8859-1/relnotes/common new.sgml usr.sbin/sendmail Makefile Added files: (Branch: RELENG_4) contrib/sendmail CACerts contrib/sendmail/cf/feature conncontrol.m4 greet_pause.m4 mtamark.m4 ratecontrol.m4 use_client_ptr.m4 contrib/sendmail/cf/ostype unicos.m4 unicosmk.m4 unicosmp.m4 contrib/sendmail/contrib socketmapClient.pl socketmapServer.pl contrib/sendmail/doc/op README contrib/sendmail/include/sm/os sm_os_unicos.h sm_os_unicosmk.h sm_os_unicosmp.h contrib/sendmail/libmilter/docs smfi_insheader.html smfi_opensocket.html smfi_progress.html smfi_quarantine.html smfi_setdbg.html smfi_setmlreply.html smfi_stop.html contrib/sendmail/src ratectrl.c Removed files: (Branch: RELENG_4) contrib/sendmail/cf/feature nodns.m4 contrib/sendmail/contrib oldbind.compat.c contrib/sendmail/libsm vsprintf.c Log: MFC: sendmail 8.13.1 import and related changes Revision Changes Path 1.1.1.1.2.1 +302 -0 src/contrib/sendmail/CACerts (new) 1.1.2.22 +5 -5 src/contrib/sendmail/FREEBSD-upgrade 1.1.1.3.2.7 +1 -1 src/contrib/sendmail/KNOWNBUGS 1.1.1.2.6.6 +2 -2 src/contrib/sendmail/LICENSE 1.1.1.1.2.7 +1 -1 src/contrib/sendmail/PGPKEYS 1.1.1.3.2.6 +1 -1 src/contrib/sendmail/README 1.1.1.3.2.18 +464 -1 src/contrib/sendmail/RELEASE_NOTES 1.1.1.3.2.18 +319 -107 src/contrib/sendmail/cf/README 1.1.1.2.6.6 +7 -2 src/contrib/sendmail/cf/cf/Makefile 1.1.1.3.2.4 +91 -3 src/contrib/sendmail/cf/cf/knecht.mc 1.1.1.1.2.11 +90 -14 src/contrib/sendmail/cf/cf/submit.cf 1.1.1.1.2.5 +1 -1 src/contrib/sendmail/cf/cf/submit.mc 1.1.1.2.6.4 +6 -3 src/contrib/sendmail/cf/feature/access_db.m4 1.1.1.1.2.2 +3 -3 src/contrib/sendmail/cf/feature/authinfo.m4 1.1.1.2.6.3 +3 -3 src/contrib/sendmail/cf/feature/bitdomain.m4 1.1.1.1.2.1 +36 -0 src/contrib/sendmail/cf/feature/conncontrol.m4 (new) 1.1.1.1.2.5 +2 -3 src/contrib/sendmail/cf/feature/dnsbl.m4 1.1.1.2.6.3 +3 -3 src/contrib/sendmail/cf/feature/domaintable.m4 1.1.1.2.6.3 +3 -3 src/contrib/sendmail/cf/feature/genericstable.m4 1.1.1.1.2.1 +44 -0 src/contrib/sendmail/cf/feature/greet_pause.m4 (new) 1.1.1.1.2.4 +10 -3 src/contrib/sendmail/cf/feature/ldap_routing.m4 1.1.1.2.6.3 +5 -4 src/contrib/sendmail/cf/feature/local_lmtp.m4 1.1.1.2.6.3 +1 -1 src/contrib/sendmail/cf/feature/local_procmail.m4 1.1.1.2.6.3 +3 -3 src/contrib/sendmail/cf/feature/mailertable.m4 1.1.1.1.2.3 +5 -3 src/contrib/sendmail/cf/feature/msp.m4 1.1.1.1.2.1 +33 -0 src/contrib/sendmail/cf/feature/mtamark.m4 (new) 1.1.1.2.6.2 +0 -22 src/contrib/sendmail/cf/feature/nodns.m4 (dead) 1.1.1.1.2.1 +36 -0 src/contrib/sendmail/cf/feature/ratecontrol.m4 (new) 1.1.1.1.2.1 +21 -0 src/contrib/sendmail/cf/feature/use_client_ptr.m4 (new) 1.1.1.2.6.3 +3 -3 src/contrib/sendmail/cf/feature/uucpdomain.m4 1.1.1.2.6.3 +3 -3 src/contrib/sendmail/cf/feature/virtusertable.m4 1.3.6.11 +4 -3 src/contrib/sendmail/cf/m4/cfhead.m4 1.1.1.4.2.16 +135 -40 src/contrib/sendmail/cf/m4/proto.m4 1.1.1.3.2.18 +2 -2 src/contrib/sendmail/cf/m4/version.m4 1.1.1.2.6.4 +1 -1 src/contrib/sendmail/cf/mailer/usenet.m4 1.1.1.1.2.1 +22 -0 src/contrib/sendmail/cf/ostype/unicos.m4 (new) 1.1.1.1.2.1 +22 -0 src/contrib/sendmail/cf/ostype/unicosmk.m4 (new) 1.1.1.1.2.1 +27 -0 src/contrib/sendmail/cf/ostype/unicosmp.m4 (new) 1.1.1.1.2.4 +61 -12 src/contrib/sendmail/cf/sendmail.schema 1.1.1.1.2.6 +1 -1 src/contrib/sendmail/contrib/buildvirtuser 1.1.1.1.2.3 +42 -107 src/contrib/sendmail/contrib/cidrexpand 1.1.1.1.6.1 +0 -79 src/contrib/sendmail/contrib/oldbind.compat.c (dead) 1.1.1.1.2.5 +4 -11 src/contrib/sendmail/contrib/qtool.8 1.1.1.1.2.6 +1 -2 src/contrib/sendmail/contrib/qtool.pl 1.1.1.1.2.1 +67 -0 src/contrib/sendmail/contrib/socketmapClient.pl (new) 1.1.1.1.2.1 +98 -0 src/contrib/sendmail/contrib/socketmapServer.pl (new) 1.1.1.2.6.5 +2 -1 src/contrib/sendmail/doc/op/Makefile 1.1.1.1.2.1 +13 -0 src/contrib/sendmail/doc/op/README (new) 1.1.1.3.2.18 +604 -62 src/contrib/sendmail/doc/op/op.me 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/editmap/Makefile.m4 1.1.1.1.2.3 +3 -3 src/contrib/sendmail/editmap/editmap.8 1.1.1.1.2.9 +69 -19 src/contrib/sendmail/include/libmilter/mfapi.h 1.1.1.1.2.3 +21 -14 src/contrib/sendmail/include/libmilter/mfdef.h 1.1.1.1.2.9 +1 -5 src/contrib/sendmail/include/libmilter/milter.h 1.1.1.1.2.7 +1 -1 src/contrib/sendmail/include/libsmdb/smdb.h 1.1.1.1.2.3 +2 -8 src/contrib/sendmail/include/sendmail/mailstats.h 1.1.1.1.2.6 +2 -1 src/contrib/sendmail/include/sendmail/sendmail.h 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/include/sm/bdb.h 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/include/sm/cdefs.h 1.1.1.1.2.10 +105 -47 src/contrib/sendmail/include/sm/conf.h 1.1.1.1.2.3 +34 -10 src/contrib/sendmail/include/sm/config.h 1.1.1.1.2.2 +11 -17 src/contrib/sendmail/include/sm/debug.h 1.1.1.1.2.3 +4 -1 src/contrib/sendmail/include/sm/errstring.h 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/include/sm/fdset.h 1.1.1.1.2.3 +4 -3 src/contrib/sendmail/include/sm/gen.h 1.1.1.1.2.4 +8 -8 src/contrib/sendmail/include/sm/io.h 1.1.1.1.2.3 +14 -26 src/contrib/sendmail/include/sm/ldap.h 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/include/sm/os/sm_os_aix.h 1.1.1.1.2.1 +19 -0 src/contrib/sendmail/include/sm/os/sm_os_unicos.h (new) 1.1.1.1.2.1 +18 -0 src/contrib/sendmail/include/sm/os/sm_os_unicosmk.h (new) 1.1.1.1.2.1 +22 -0 src/contrib/sendmail/include/sm/os/sm_os_unicosmp.h (new) 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/include/sm/os/sm_os_unixware.h 1.1.1.1.2.2 +6 -2 src/contrib/sendmail/include/sm/rpool.h 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/include/sm/shm.h 1.1.1.1.2.2 +33 -55 src/contrib/sendmail/include/sm/string.h 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/include/sm/varargs.h 1.1.1.1.2.7 +1 -1 src/contrib/sendmail/libmilter/Makefile.m4 1.1.1.1.2.10 +13 -11 src/contrib/sendmail/libmilter/README 1.1.1.1.2.9 +129 -48 src/contrib/sendmail/libmilter/comm.c 1.1.1.1.2.3 +41 -2 src/contrib/sendmail/libmilter/docs/api.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/design.html 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/libmilter/docs/index.html 1.1.1.1.2.4 +3 -0 src/contrib/sendmail/libmilter/docs/installation.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/other.html 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/libmilter/docs/overview.html 1.1.1.1.2.5 +11 -5 src/contrib/sendmail/libmilter/docs/sample.html 1.1.1.1.2.4 +4 -1 src/contrib/sendmail/libmilter/docs/smfi_addheader.html 1.1.1.1.2.4 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_addrcpt.html 1.1.1.1.2.5 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_chgheader.html 1.1.1.1.2.4 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_delrcpt.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_getpriv.html 1.1.1.1.2.4 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_getsymval.html 1.1.1.1.2.1 +123 -0 src/contrib/sendmail/libmilter/docs/smfi_insheader.html (new) 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_main.html 1.1.1.1.2.1 +78 -0 src/contrib/sendmail/libmilter/docs/smfi_opensocket.html (new) 1.1.1.1.2.1 +68 -0 src/contrib/sendmail/libmilter/docs/smfi_progress.html (new) 1.1.1.1.2.1 +73 -0 src/contrib/sendmail/libmilter/docs/smfi_quarantine.html (new) 1.1.1.1.2.4 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_register.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_replacebody.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_setbacklog.html 1.1.1.1.2.4 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_setconn.html 1.1.1.1.2.1 +67 -0 src/contrib/sendmail/libmilter/docs/smfi_setdbg.html (new) 1.1.1.1.2.1 +147 -0 src/contrib/sendmail/libmilter/docs/smfi_setmlreply.html (new) 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_setpriv.html 1.1.1.1.2.7 +11 -0 src/contrib/sendmail/libmilter/docs/smfi_setreply.html 1.1.1.1.2.4 +3 -0 src/contrib/sendmail/libmilter/docs/smfi_settimeout.html 1.1.1.1.2.1 +73 -0 src/contrib/sendmail/libmilter/docs/smfi_stop.html (new) 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/xxfi_abort.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/xxfi_body.html 1.1.1.1.2.3 +16 -1 src/contrib/sendmail/libmilter/docs/xxfi_close.html 1.1.1.1.2.4 +6 -1 src/contrib/sendmail/libmilter/docs/xxfi_connect.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/xxfi_envfrom.html 1.1.1.1.2.4 +3 -0 src/contrib/sendmail/libmilter/docs/xxfi_envrcpt.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/xxfi_eoh.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/xxfi_eom.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/xxfi_header.html 1.1.1.1.2.3 +3 -0 src/contrib/sendmail/libmilter/docs/xxfi_helo.html 1.1.1.1.2.11 +97 -31 src/contrib/sendmail/libmilter/engine.c 1.1.1.1.2.7 +1 -1 src/contrib/sendmail/libmilter/handler.c 1.1.1.1.2.12 +4 -4 src/contrib/sendmail/libmilter/libmilter.h 1.1.1.1.2.14 +48 -11 src/contrib/sendmail/libmilter/listener.c 1.1.1.1.2.11 +3 -4 src/contrib/sendmail/libmilter/main.c 1.1.1.1.2.9 +1 -1 src/contrib/sendmail/libmilter/signal.c 1.1.1.1.2.5 +82 -48 src/contrib/sendmail/libmilter/smfi.c 1.1.1.1.2.3 +2 -2 src/contrib/sendmail/libsm/Makefile.m4 1.1.1.1.2.3 +4 -1 src/contrib/sendmail/libsm/README 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/libsm/assert.c 1.1.1.1.2.7 +7 -4 src/contrib/sendmail/libsm/clock.c 1.1.1.1.2.4 +7 -1 src/contrib/sendmail/libsm/config.c 1.1.1.1.2.2 +25 -2 src/contrib/sendmail/libsm/debug.c 1.1.1.1.2.3 +73 -2 src/contrib/sendmail/libsm/errstring.c 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/libsm/exc.c 1.1.1.1.2.3 +2 -2 src/contrib/sendmail/libsm/flags.c 1.1.1.1.2.6 +152 -39 src/contrib/sendmail/libsm/ldap.c 1.1.1.1.2.5 +1 -1 src/contrib/sendmail/libsm/local.h 1.1.1.1.2.5 +4 -4 src/contrib/sendmail/libsm/mbdb.c 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/libsm/refill.c 1.1.1.1.2.2 +30 -2 src/contrib/sendmail/libsm/rpool.c 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/libsm/shm.c 1.1.1.1.2.4 +2 -2 src/contrib/sendmail/libsm/smstdio.c 1.1.1.1.2.6 +2 -2 src/contrib/sendmail/libsm/stdio.c 1.1.1.1.2.2 +96 -2 src/contrib/sendmail/libsm/strdup.c 1.1.1.1.2.3 +2 -3 src/contrib/sendmail/libsm/t-shm.c 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/libsm/vasprintf.c 1.1.1.1.2.2 +0 -66 src/contrib/sendmail/libsm/vsprintf.c (dead) 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/libsmdb/Makefile.m4 1.1.1.1.2.10 +1 -1 src/contrib/sendmail/libsmdb/smdb2.c 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/libsmutil/Makefile.m4 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/libsmutil/cf.c 1.1.1.1.2.4 +1 -2 src/contrib/sendmail/libsmutil/lockfile.c 1.1.1.1.2.6 +30 -2 src/contrib/sendmail/libsmutil/safefile.c 1.1.1.2.6.6 +1 -1 src/contrib/sendmail/mail.local/Makefile.m4 1.1.1.2.6.3 +26 -1 src/contrib/sendmail/mail.local/README 1.5.6.6 +27 -4 src/contrib/sendmail/mail.local/mail.local.8 1.6.6.16 +182 -5 src/contrib/sendmail/mail.local/mail.local.c 1.1.1.2.6.4 +1 -1 src/contrib/sendmail/mailstats/Makefile.m4 1.1.1.2.6.8 +5 -2 src/contrib/sendmail/mailstats/mailstats.8 1.5.2.8 +3 -19 src/contrib/sendmail/mailstats/mailstats.c 1.1.1.2.6.4 +1 -1 src/contrib/sendmail/makemap/Makefile.m4 1.1.1.2.6.5 +9 -3 src/contrib/sendmail/makemap/makemap.8 1.3.6.7 +10 -10 src/contrib/sendmail/makemap/makemap.c 1.1.1.2.6.4 +1 -1 src/contrib/sendmail/praliases/Makefile.m4 1.1.1.2.6.5 +1 -1 src/contrib/sendmail/rmail/Makefile.m4 1.1.1.2.6.5 +1 -1 src/contrib/sendmail/smrsh/Makefile.m4 1.1.1.2.6.5 +1 -1 src/contrib/sendmail/smrsh/README 1.3.6.8 +4 -4 src/contrib/sendmail/smrsh/smrsh.8 1.3.6.14 +1 -1 src/contrib/sendmail/smrsh/smrsh.c 1.1.1.3.2.8 +2 -2 src/contrib/sendmail/src/Makefile.m4 1.1.1.3.2.17 +32 -11 src/contrib/sendmail/src/README 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/src/SECURITY 1.1.1.2.6.8 +7 -9 src/contrib/sendmail/src/TRACEFLAGS 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/src/TUNING 1.1.1.2.6.9 +2 -2 src/contrib/sendmail/src/alias.c 1.3.6.5 +14 -3 src/contrib/sendmail/src/aliases.5 1.1.1.1.2.6 +4 -3 src/contrib/sendmail/src/bf.c 1.1.1.4.2.14 +17 -14 src/contrib/sendmail/src/collect.c 1.5.2.17 +153 -125 src/contrib/sendmail/src/conf.c 1.6.2.14 +11 -1 src/contrib/sendmail/src/conf.h 1.1.1.2.2.10 +1 -1 src/contrib/sendmail/src/control.c 1.1.1.3.2.15 +71 -49 src/contrib/sendmail/src/daemon.c 1.1.1.3.2.17 +125 -84 src/contrib/sendmail/src/deliver.c 1.1.1.3.2.10 +16 -92 src/contrib/sendmail/src/domain.c 1.1.1.3.2.9 +15 -25 src/contrib/sendmail/src/envelope.c 1.3.6.8 +3 -3 src/contrib/sendmail/src/err.c 1.4.2.14 +164 -44 src/contrib/sendmail/src/headers.c 1.1.1.2.6.6 +11 -7 src/contrib/sendmail/src/macro.c 1.3.6.10 +17 -3 src/contrib/sendmail/src/mailq.1 1.1.1.3.2.19 +90 -101 src/contrib/sendmail/src/main.c 1.1.1.3.2.16 +730 -459 src/contrib/sendmail/src/map.c 1.3.6.13 +11 -7 src/contrib/sendmail/src/mci.c 1.1.1.1.2.19 +291 -112 src/contrib/sendmail/src/milter.c 1.1.1.3.2.8 +6 -6 src/contrib/sendmail/src/mime.c 1.1.1.2.6.17 +88 -90 src/contrib/sendmail/src/parseaddr.c 1.1.1.3.2.18 +184 -191 src/contrib/sendmail/src/queue.c 1.1.1.1.2.1 +534 -0 src/contrib/sendmail/src/ratectrl.c (new) 1.1.1.4.2.18 +126 -105 src/contrib/sendmail/src/readcf.c 1.1.1.3.2.11 +28 -17 src/contrib/sendmail/src/recipient.c 1.1.1.1.2.7 +2 -2 src/contrib/sendmail/src/sasl.c 1.4.2.11 +10 -5 src/contrib/sendmail/src/savemail.c 1.3.6.9 +20 -4 src/contrib/sendmail/src/sendmail.8 1.1.1.4.2.19 +116 -116 src/contrib/sendmail/src/sendmail.h 1.1.1.1.2.14 +8 -8 src/contrib/sendmail/src/sfsasl.c 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/src/sm_resolve.c 1.1.1.2.6.17 +423 -197 src/contrib/sendmail/src/srvrsmtp.c 1.1.1.2.6.6 +7 -1 src/contrib/sendmail/src/stab.c 1.1.1.2.6.7 +1 -5 src/contrib/sendmail/src/stats.c 1.1.1.2.6.4 +1 -1 src/contrib/sendmail/src/sysexits.c 1.1.1.1.2.7 +130 -12 src/contrib/sendmail/src/tls.c 1.1.1.2.6.6 +1 -1 src/contrib/sendmail/src/trace.c 1.1.1.3.2.8 +5 -5 src/contrib/sendmail/src/udb.c 1.1.1.3.2.14 +36 -27 src/contrib/sendmail/src/usersmtp.c 1.1.1.3.2.13 +162 -59 src/contrib/sendmail/src/util.c 1.1.1.3.2.20 +2 -2 src/contrib/sendmail/src/version.c 1.1.1.1.2.3 +1 -1 src/contrib/sendmail/test/Makefile.m4 1.1.1.1.2.4 +1 -1 src/contrib/sendmail/vacation/Makefile.m4 1.1.1.1.2.9 +19 -4 src/contrib/sendmail/vacation/vacation.1 1.1.1.1.2.11 +3 -18 src/contrib/sendmail/vacation/vacation.c 1.1.2.4 +1 -1 src/lib/libsm/Makefile 1.22.2.417 +2 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml 1.15.2.15 +3 -3 src/usr.sbin/sendmail/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 00:27:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EEBB216A4CE; Mon, 9 Aug 2004 00:27:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE94943D1D; Mon, 9 Aug 2004 00:27:52 +0000 (GMT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i790Rq5I034125; Mon, 9 Aug 2004 00:27:52 GMT (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i790RqJe034124; Mon, 9 Aug 2004 00:27:52 GMT (envelope-from markus) Message-Id: <200408090027.i790RqJe034124@repoman.freebsd.org> From: Markus Brueffer Date: Mon, 9 Aug 2004 00:27:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/krename Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 00:27:53 -0000 markus 2004-08-09 00:27:52 UTC FreeBSD ports repository Modified files: sysutils/krename Makefile distinfo pkg-plist Log: Update to version 3.0.2 Revision Changes Path 1.19 +1 -1 ports/sysutils/krename/Makefile 1.10 +2 -2 ports/sysutils/krename/distinfo 1.7 +1 -0 ports/sysutils/krename/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 9 01:42:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0020816A4CE; Mon, 9 Aug 2004 01:42:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D343E43D2F; Mon, 9 Aug 2004 01:42:32 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i791gWwN036335; Mon, 9 Aug 2004 01:42:32 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i791gWXM036334; Mon, 9 Aug 2004 01:42:32 GMT (envelope-from kensmith) Message-Id: <200408090142.i791gWXM036334@repoman.freebsd.org> From: Ken Smith Date: Mon, 9 Aug 2004 01:42:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/scripts doFS.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 01:42:33 -0000 kensmith 2004-08-09 01:42:32 UTC FreeBSD src repository Modified files: release/scripts doFS.sh Log: I should have marked my previous commit with an XXX to indicate it's a workaround to a problem that shouldn't exist. Noticed by: ru Revision Changes Path 1.58 +1 -1 src/release/scripts/doFS.sh From owner-cvs-all@FreeBSD.ORG Mon Aug 9 02:34:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFF9716A4CE; Mon, 9 Aug 2004 02:34:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE34B43D5C; Mon, 9 Aug 2004 02:34:27 +0000 (GMT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i792YR3U037532; Mon, 9 Aug 2004 02:34:27 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i792YRDQ037531; Mon, 9 Aug 2004 02:34:27 GMT (envelope-from knu) Message-Id: <200408090234.i792YRDQ037531@repoman.freebsd.org> From: Akinori MUSHA Date: Mon, 9 Aug 2004 02:34:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/irc/dancer-ircd Makefileports/irc/dancer-ircd/files dancer-ircd.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 02:34:28 -0000 knu 2004-08-09 02:34:27 UTC FreeBSD ports repository Modified files: irc/dancer-ircd Makefile irc/dancer-ircd/files dancer-ircd.sh Log: Remove ipv6 from CATEGORIES since IPv6 support is currently broken. Add rcorder keywords to the startup script and bump PORTREVISION. Revision Changes Path 1.10 +3 -1 ports/irc/dancer-ircd/Makefile 1.3 +4 -2 ports/irc/dancer-ircd/files/dancer-ircd.sh From owner-cvs-all@FreeBSD.ORG Mon Aug 9 03:13:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A965A16A4CE; Mon, 9 Aug 2004 03:13:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87A3843D2D; Mon, 9 Aug 2004 03:13:57 +0000 (GMT) (envelope-from yongari@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i793DvZ4040383; Mon, 9 Aug 2004 03:13:57 GMT (envelope-from yongari@repoman.freebsd.org) Received: (from yongari@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i793DvoI040382; Mon, 9 Aug 2004 03:13:57 GMT (envelope-from yongari) Message-Id: <200408090313.i793DvoI040382@repoman.freebsd.org> From: Pyun YongHyeon Date: Mon, 9 Aug 2004 03:13:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/ifconfig ifconfig.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 03:13:57 -0000 yongari 2004-08-09 03:13:57 UTC FreeBSD src repository Modified files: sbin/ifconfig ifconfig.c Log: Fix long standing mediaopt setting bugs seen on sparc64. Though the bug exists in little-endian machine, it was not triggered due to the difference of memory ordering between little/big endian machines. Instead of relying on possibly modified value during function invokcations, use saved copy of ifr.ifr_addr.sa_family. Also add a comment at the top of ifconfig.c clarifying the issue so the bug won't re-appear. Approved by: jake Reviewed by: yar Revision Changes Path 1.106 +12 -6 src/sbin/ifconfig/ifconfig.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 03:23:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1068816A4CE; Mon, 9 Aug 2004 03:23:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E34E243D39; Mon, 9 Aug 2004 03:23:36 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i793Narx040647; Mon, 9 Aug 2004 03:23:36 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i793Na8q040646; Mon, 9 Aug 2004 03:23:36 GMT (envelope-from kris) Message-Id: <200408090323.i793Na8q040646@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 9 Aug 2004 03:23:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/irc/ezbounce Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 03:23:37 -0000 kris 2004-08-09 03:23:36 UTC FreeBSD ports repository Modified files: irc/ezbounce Makefile Log: Reset bouncing maintainer address: 550 5.1.1 ... User unknown Revision Changes Path 1.29 +1 -1 ports/irc/ezbounce/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 03:24:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CC8F16A4CE; Mon, 9 Aug 2004 03:24:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D28D43D2F; Mon, 9 Aug 2004 03:24:14 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i793OEEx040706; Mon, 9 Aug 2004 03:24:14 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i793OEeJ040705; Mon, 9 Aug 2004 03:24:14 GMT (envelope-from mezz) Message-Id: <200408090324.i793OEeJ040705@repoman.freebsd.org> From: Jeremy Messenger Date: Mon, 9 Aug 2004 03:24:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/gnomenettool Makefileports/net/gnomenettool/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 03:24:14 -0000 mezz 2004-08-09 03:24:14 UTC FreeBSD ports repository Modified files: net/gnomenettool Makefile net/gnomenettool/files patch-configure Log: Use new libtool scheme. Revision Changes Path 1.8 +2 -2 ports/net/gnomenettool/Makefile 1.3 +0 -9 ports/net/gnomenettool/files/patch-configure From owner-cvs-all@FreeBSD.ORG Mon Aug 9 03:29:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F63F16A4CE; Mon, 9 Aug 2004 03:29:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8457743D39; Mon, 9 Aug 2004 03:29:06 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i793T69G040884; Mon, 9 Aug 2004 03:29:06 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i793T6ct040883; Mon, 9 Aug 2004 03:29:06 GMT (envelope-from mezz) Message-Id: <200408090329.i793T6ct040883@repoman.freebsd.org> From: Jeremy Messenger Date: Mon, 9 Aug 2004 03:29:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gauche-gtk Makefile distinfo patch-src_gtktextview.stub X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 03:29:06 -0000 mezz 2004-08-09 03:29:06 UTC FreeBSD ports repository Modified files: x11-toolkits/gauche-gtk Makefile distinfo pkg-plist Removed files: x11-toolkits/gauche-gtk/files patch-src_gtktextview.stub Log: - Update to 0.4.1. [1] - I think, it's wrong to have the 'gtk' as PORTNAME. I have made some change from 'gtk' to 'gauche' with PKGNAMESUFFIX= -gtk. This is correct way to do. PR: ports/69483 [1] Submitted by: Erik Greenwald (maintainer) [1] Revision Changes Path 1.19 +6 -6 ports/x11-toolkits/gauche-gtk/Makefile 1.8 +2 -2 ports/x11-toolkits/gauche-gtk/distinfo 1.2 +0 -10 ports/x11-toolkits/gauche-gtk/files/patch-src_gtktextview.stub (dead) 1.4 +1 -0 ports/x11-toolkits/gauche-gtk/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 9 03:31:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E93A416A4CE; Mon, 9 Aug 2004 03:31:57 +0000 (GMT) Received: from lakermmtao10.cox.net (lakermmtao10.cox.net [68.230.240.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2877343D4C; Mon, 9 Aug 2004 03:31:57 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from mezz ([68.103.32.140]) by lakermmtao10.cox.net (InterMail vM.6.01.03.02.01 201-2131-111-104-103-20040709) with ESMTP id <20040809033155.ZFKB20148.lakermmtao10.cox.net@mezz>; Sun, 8 Aug 2004 23:31:55 -0400 To: "Jeremy Messenger" References: <200408090329.i793T6ct040883@repoman.freebsd.org> Message-ID: From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Date: Sun, 08 Aug 2004 22:31:42 -0500 In-Reply-To: <200408090329.i793T6ct040883@repoman.freebsd.org> User-Agent: Opera M2/7.54 (Linux, build 751) cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/x11-toolkits/gauche-gtk Makefile distinfo pkg-plist ports/x11-toolkits/gauche-gtk/files patch-src_gtktextview.stub X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 03:31:58 -0000 On Mon, 9 Aug 2004 03:29:06 +0000 (UTC), Jeremy Messenger wrote: > mezz 2004-08-09 03:29:06 UTC > > FreeBSD ports repository > > Modified files: > x11-toolkits/gauche-gtk Makefile distinfo pkg-plist > Removed files: > x11-toolkits/gauche-gtk/files patch-src_gtktextview.stub > Log: > - Update to 0.4.1. [1] > - I think, it's wrong to have the 'gtk' as PORTNAME. I have made some > change > from 'gtk' to 'gauche' with PKGNAMESUFFIX= -gtk. This is correct way > to do. > PR: ports/69483 [1] > Submitted by: Erik Greenwald (maintainer) [1] Discussed with: adamw Cheers, Mezz > Revision Changes Path > 1.19 +6 -6 ports/x11-toolkits/gauche-gtk/Makefile > 1.8 +2 -2 ports/x11-toolkits/gauche-gtk/distinfo > 1.2 +0 -10 > ports/x11-toolkits/gauche-gtk/files/patch-src_gtktextview.stub (dead) > 1.4 +1 -0 ports/x11-toolkits/gauche-gtk/pkg-plist -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Mon Aug 9 03:40:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16CC316A4DB; Mon, 9 Aug 2004 03:40:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A97843D48; Mon, 9 Aug 2004 03:40:06 +0000 (GMT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i793e5EG041230; Mon, 9 Aug 2004 03:40:05 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i793e5Lp041229; Mon, 9 Aug 2004 03:40:05 GMT (envelope-from fjoe) Message-Id: <200408090340.i793e5Lp041229@repoman.freebsd.org> From: Max Khon Date: Mon, 9 Aug 2004 03:40:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/catdoc Makefile distinfo pkg-descr pkg-plist ports/textproc/catdoc/files patch-configure patch-doc-catdoc.1.in patch-src-Makefile.in patch-src::Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 03:40:06 -0000 fjoe 2004-08-09 03:40:05 UTC FreeBSD ports repository Modified files: textproc/catdoc Makefile distinfo pkg-descr pkg-plist Added files: textproc/catdoc/files patch-configure patch-doc-catdoc.1.in patch-src-Makefile.in Removed files: textproc/catdoc/files patch-src::Makefile.in Log: Update to 0.93.3 (maintainer timeout). Revision Changes Path 1.18 +8 -5 ports/textproc/catdoc/Makefile 1.13 +2 -2 ports/textproc/catdoc/distinfo 1.1 +20 -0 ports/textproc/catdoc/files/patch-configure (new) 1.1 +26 -0 ports/textproc/catdoc/files/patch-doc-catdoc.1.in (new) 1.1 +11 -0 ports/textproc/catdoc/files/patch-src-Makefile.in (new) 1.2 +0 -23 ports/textproc/catdoc/files/patch-src::Makefile.in (dead) 1.7 +1 -1 ports/textproc/catdoc/pkg-descr 1.5 +46 -42 ports/textproc/catdoc/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 9 04:27:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60F2C16A4CE; Mon, 9 Aug 2004 04:27:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41A9743D2F; Mon, 9 Aug 2004 04:27:59 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i794RxNC042413; Mon, 9 Aug 2004 04:27:59 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i794Rxa9042412; Mon, 9 Aug 2004 04:27:59 GMT (envelope-from jmg) Message-Id: <200408090427.i794Rxa9042412@repoman.freebsd.org> From: John-Mark Gurney Date: Mon, 9 Aug 2004 04:27:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/kbdcontrol kbdcontrol.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 04:27:59 -0000 jmg 2004-08-09 04:27:59 UTC FreeBSD src repository Modified files: usr.sbin/kbdcontrol kbdcontrol.c Log: fix bug which prevented programming function keys that were exactly 16 characters long.. strcpy was coping over the length... PR: 52960 Submitted by: Dmitry Sivachenko MFC after: 1 week Revision Changes Path 1.48 +1 -1 src/usr.sbin/kbdcontrol/kbdcontrol.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 05:12:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC22F16A4CE; Mon, 9 Aug 2004 05:12:32 +0000 (GMT) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [210.226.20.147]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32EBE43D31; Mon, 9 Aug 2004 05:12:32 +0000 (GMT) (envelope-from kuriyama@imgsrc.co.jp) Received: from localhost (localhost [127.0.0.1]) by black.imgsrc.co.jp (Postfix) with ESMTP id 212B150B81; Mon, 9 Aug 2004 14:12:29 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [IPv6:2001:218:422:2::9999]) by black.imgsrc.co.jp (Postfix) with ESMTP id 6320450BBD; Mon, 9 Aug 2004 14:12:27 +0900 (JST) Date: Mon, 09 Aug 2004 14:12:27 +0900 Message-ID: <7mllgolwsk.wl@black.imgsrc.co.jp> From: Jun Kuriyama To: Hartmut Brandt In-Reply-To: <200408031856.i73IuV8c082723@repoman.freebsd.org> References: <200408031856.i73IuV8c082723@repoman.freebsd.org> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.6 (Maruoka) FLIM/1.14.6 (Marutamachi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by amavisd 0.1 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 05:12:33 -0000 At Tue, 3 Aug 2004 18:56:31 +0000 (UTC), Hartmut Brandt wrote: > Log: > Put variable assignments from the command line into the MAKEFLAGS > variable as required by POSIX. This causes such variables to be > pushed into all sub-makes called by the make (except when the MAKEFLAGS > variable is explicitely changed in the sub-make's environment). > This makes them also mostly un-overrideable in sub-makes except on the > sub-make's command line. Therefor specifying 'make CC=icc' will cause > icc to be used as C compiler in all sub-makes no matter what the Makefiles > itself try to do to the CC variable. > > This patch also corrects the handling of the MFLAGS variable. MFLAGS > contains all the command line flags but not the command line variable > assignments. The evaluation of the .MFLAGS or .MAKEFLAGS target now > changes both MFLAGS and MAKEFLAGS (they used to change MAKEFLAGS only). > Makefiles can use MFLAGS for their own purposes given that they do not > except MFLAGS to be undefined at the beginning and that they don't evaluate > .MFLAGS or .MAKEFLAGS. MFLAGS should be removed for POSIX compliance, > but it is unfortunately heavily used by the X makefiles. I'm using MAKEOBJDIRPREFIX as a make argument to build the world. Please help about new make. Firstly, my host environment has the latest make(1), and it is used to start buildworld as: # cd /work/HEAD/src # make MAKEOBJDIRPREFIX=/work/HEAD/obj buildworld In this situation, ${BMAKE} in src/Makefile.inc1 includes this assignment: > MAKEFLAGS="-m /work/HEAD/src/tools/build/mk -m /work/HEAD/src/share/mk MAKEOBJDIRPREFIX=/work/HEAD/obj" But before your modification, this was: > MAKEFLAGS="-m /work/HEAD/src/tools/build/mk -m /work/HEAD/src/share/mk " Then now, stage 1.1 of buildworld is failing because installation of libegacy.a was changed from: > sh /work/HEAD/src/tools/install.sh -C -o root -g wheel -m 444 libegacy.a /work/HEAD/obj/work/HEAD/src/i386/legacy/usr/lib to: > sh /work/HEAD/src/tools/install.sh -C -o root -g wheel -m 444 libegacy.a /work/HEAD/obj/legacy/usr/lib which is destination directory was changed by passing $MAKEOBJDIRPREFIX to submake. I don't know how Makefile.inc1 should be fixed, and how this affects to the upgrading path for old environment users. -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project From owner-cvs-all@FreeBSD.ORG Mon Aug 9 05:19:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 715FD16A4CF; Mon, 9 Aug 2004 05:19:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69D4A43D48; Mon, 9 Aug 2004 05:19:00 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i795J0MC043674; Mon, 9 Aug 2004 05:19:00 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i795J0LC043673; Mon, 9 Aug 2004 05:19:00 GMT (envelope-from mezz) Message-Id: <200408090519.i795J0LC043673@repoman.freebsd.org> From: Jeremy Messenger Date: Mon, 9 Aug 2004 05:19:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-themes Makefile ports/x11-themes/flux-art Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 05:19:00 -0000 mezz 2004-08-09 05:19:00 UTC FreeBSD ports repository Modified files: x11-themes Makefile Added files: x11-themes/flux-art Makefile distinfo pkg-descr pkg-plist Log: Flux-Art pixmap themes pack for the Fluxbox window manager. WWW: http://fluxbox.org/screenshots-dev.php PR: ports/70067 Submitted by: Ilya Khamushkin Revision Changes Path 1.58 +1 -0 ports/x11-themes/Makefile 1.1 +41 -0 ports/x11-themes/flux-art/Makefile (new) 1.1 +2 -0 ports/x11-themes/flux-art/distinfo (new) 1.1 +3 -0 ports/x11-themes/flux-art/pkg-descr (new) 1.1 +226 -0 ports/x11-themes/flux-art/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 05:20:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EE1C16A4CE; Mon, 9 Aug 2004 05:20:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 726CB43D31; Mon, 9 Aug 2004 05:20:07 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i795K737043740; Mon, 9 Aug 2004 05:20:07 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i795K7cN043739; Mon, 9 Aug 2004 05:20:07 GMT (envelope-from mezz) Message-Id: <200408090520.i795K7cN043739@repoman.freebsd.org> From: Jeremy Messenger Date: Mon, 9 Aug 2004 05:20:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 05:20:07 -0000 mezz 2004-08-09 05:20:07 UTC FreeBSD ports repository Modified files: . modules Log: flux-art --> ports/x11-themes/flux-art Revision Changes Path 1.10855 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Aug 9 05:46:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD4D016A4CE; Mon, 9 Aug 2004 05:46:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0E0843D2F; Mon, 9 Aug 2004 05:46:46 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i795kkZh044435; Mon, 9 Aug 2004 05:46:46 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i795kkYo044434; Mon, 9 Aug 2004 05:46:46 GMT (envelope-from jmg) Message-Id: <200408090546.i795kkYo044434@repoman.freebsd.org> From: John-Mark Gurney Date: Mon, 9 Aug 2004 05:46:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_sig.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 05:46:46 -0000 jmg 2004-08-09 05:46:46 UTC FreeBSD src repository Modified files: sys/kern kern_sig.c Log: add option to automaticly mark core dumps with the nodump flag PR: 57065 Submitted by: Walter C. Pelissero Revision Changes Path 1.288 +6 -0 src/sys/kern/kern_sig.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 06:01:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96AE716A4CE; Mon, 9 Aug 2004 06:01:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7ABBD43D41; Mon, 9 Aug 2004 06:01:46 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7961kvY044874; Mon, 9 Aug 2004 06:01:46 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7961kZq044873; Mon, 9 Aug 2004 06:01:46 GMT (envelope-from alc) Message-Id: <200408090601.i7961kZq044873@repoman.freebsd.org> From: Alan Cox Date: Mon, 9 Aug 2004 06:01:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_fault.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 06:01:46 -0000 alc 2004-08-09 06:01:46 UTC FreeBSD src repository Modified files: sys/vm vm_fault.c Log: Make two changes to vm_fault(). 1. Retain the map lock until after the calls to pmap_enter() and vm_fault_prefault(). 2. Remove a stale comment. Submitted by: tegge@ Revision Changes Path 1.189 +6 -11 src/sys/vm/vm_fault.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 06:04:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2905D16A4CE; Mon, 9 Aug 2004 06:04:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DA1343D2D; Mon, 9 Aug 2004 06:04:01 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7964011044933; Mon, 9 Aug 2004 06:04:00 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79640u3044930; Mon, 9 Aug 2004 06:04:00 GMT (envelope-from phk) Message-Id: <200408090604.i79640u3044930@repoman.freebsd.org> From: Poul-Henning Kamp Date: Mon, 9 Aug 2004 06:04:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_vol_ffs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 06:04:01 -0000 phk 2004-08-09 06:04:00 UTC FreeBSD src repository Modified files: sys/geom geom_vol_ffs.c Log: Too many versions. Spotted by: pjd Revision Changes Path 1.13 +0 -1 src/sys/geom/geom_vol_ffs.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 06:18:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7B46716A4CE; Mon, 9 Aug 2004 06:18:22 +0000 (GMT) Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCEC743D1F; Mon, 9 Aug 2004 06:18:21 +0000 (GMT) (envelope-from k@numeri.campus.luth.se) Received: from numeri.campus.luth.se (localhost [127.0.0.1]) i796IJbk053454; Mon, 9 Aug 2004 08:18:19 +0200 (CEST) (envelope-from k@numeri.campus.luth.se) Received: (from k@localhost) by numeri.campus.luth.se (8.12.11/8.12.11/Submit) id i796IIfC053453; Mon, 9 Aug 2004 08:18:18 +0200 (CEST) (envelope-from k) Date: Mon, 9 Aug 2004 08:18:17 +0200 From: Johan Karlsson To: Jun Kuriyama Message-ID: <20040809061817.GA53369@numeri.campus.luth.se> References: <200408031856.i73IuV8c082723@repoman.freebsd.org> <7mllgolwsk.wl@black.imgsrc.co.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <7mllgolwsk.wl@black.imgsrc.co.jp> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Hartmut Brandt cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 06:18:22 -0000 On Mon, Aug 09, 2004 at 14:12 (+0900), Jun Kuriyama wrote: > At Tue, 3 Aug 2004 18:56:31 +0000 (UTC), > Hartmut Brandt wrote: > > Log: > > Put variable assignments from the command line into the MAKEFLAGS > > variable as required by POSIX. This causes such variables to be > > pushed into all sub-makes called by the make (except when the MAKEFLAGS > > variable is explicitely changed in the sub-make's environment). > > This makes them also mostly un-overrideable in sub-makes except on the > > sub-make's command line. Therefor specifying 'make CC=icc' will cause > > icc to be used as C compiler in all sub-makes no matter what the Makefiles > > itself try to do to the CC variable. > > > > This patch also corrects the handling of the MFLAGS variable. MFLAGS > > contains all the command line flags but not the command line variable > > assignments. The evaluation of the .MFLAGS or .MAKEFLAGS target now > > changes both MFLAGS and MAKEFLAGS (they used to change MAKEFLAGS only). > > Makefiles can use MFLAGS for their own purposes given that they do not > > except MFLAGS to be undefined at the beginning and that they don't evaluate > > .MFLAGS or .MAKEFLAGS. MFLAGS should be removed for POSIX compliance, > > but it is unfortunately heavily used by the X makefiles. > > I'm using MAKEOBJDIRPREFIX as a make argument to build the world. Don't. According to make(1) it is an environment variable. > Please help about new make. > > Firstly, my host environment has the latest make(1), and it is used to > start buildworld as: > > # cd /work/HEAD/src > # make MAKEOBJDIRPREFIX=/work/HEAD/obj buildworld do something like # cd /work/HEAD/src # MAKEOBJDIRPREFIX=/work/HEAD/obj make buildworld or # cd /work/HEAD/src # env MAKEOBJDIRPREFIX=/work/HEAD/obj make buildworld depending on your shell. /Johan K -- Johan Karlsson mailto:johan@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Mon Aug 9 06:45:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE32816A4CE; Mon, 9 Aug 2004 06:45:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C152643D1D; Mon, 9 Aug 2004 06:45:01 +0000 (GMT) (envelope-from demon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i796j1PR045962; Mon, 9 Aug 2004 06:45:01 GMT (envelope-from demon@repoman.freebsd.org) Received: (from demon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i796j1b2045961; Mon, 9 Aug 2004 06:45:01 GMT (envelope-from demon) Message-Id: <200408090645.i796j1b2045961@repoman.freebsd.org> From: Dmitry Sivachenko Date: Mon, 9 Aug 2004 06:45:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/rrdtool Makefile ports/net/rrdtool/files extra-patch-perl-shared::RRDs.xs X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 06:45:02 -0000 demon 2004-08-09 06:45:01 UTC FreeBSD ports repository Modified files: net/rrdtool Makefile Removed files: net/rrdtool/files extra-patch-perl-shared::RRDs.xs Log: This patch was integrated into rrdtool. Nitoced by: Forrest Aldrich Revision Changes Path 1.38 +0 -4 ports/net/rrdtool/Makefile 1.2 +0 -11 ports/net/rrdtool/files/extra-patch-perl-shared::RRDs.xs (dead) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 06:45:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1268416A509; Mon, 9 Aug 2004 06:45:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5796F43D54; Mon, 9 Aug 2004 06:45:21 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i796jLR5046035; Mon, 9 Aug 2004 06:45:21 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i796jLUo046034; Mon, 9 Aug 2004 06:45:21 GMT (envelope-from jmg) Message-Id: <200408090645.i796jLUo046034@repoman.freebsd.org> From: John-Mark Gurney Date: Mon, 9 Aug 2004 06:45:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys mdioctl.h src/sys/modules/md Makefile src/sbin/mdconfig mdconfig.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 06:45:27 -0000 jmg 2004-08-09 06:45:21 UTC FreeBSD src repository Modified files: sys/sys mdioctl.h sys/modules/md Makefile sbin/mdconfig mdconfig.c Log: change the name of the md module, to g_md, introduce a define with the name MD_MODNAME, and make mdconfig use this new define... Revision Changes Path 1.33 +1 -1 src/sbin/mdconfig/mdconfig.c 1.13 +1 -1 src/sys/modules/md/Makefile 1.16 +1 -0 src/sys/sys/mdioctl.h From owner-cvs-all@FreeBSD.ORG Mon Aug 9 06:47:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07A3916A4CE; Mon, 9 Aug 2004 06:47:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E026B43D41; Mon, 9 Aug 2004 06:47:53 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i796lrAN046164; Mon, 9 Aug 2004 06:47:53 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i796lrTM046163; Mon, 9 Aug 2004 06:47:53 GMT (envelope-from jmg) Message-Id: <200408090647.i796lrTM046163@repoman.freebsd.org> From: John-Mark Gurney Date: Mon, 9 Aug 2004 06:47:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-all.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 06:47:54 -0000 jmg 2004-08-09 06:47:53 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c Log: make sure that ioctl's to ata use the proper cmd IOCATA... Reviewed by: sos Revision Changes Path 1.219 +3 -0 src/sys/dev/ata/ata-all.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 07:02:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B67816A4D0; Mon, 9 Aug 2004 07:02:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 534C243D62; Mon, 9 Aug 2004 07:02:01 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79721v2046578; Mon, 9 Aug 2004 07:02:01 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79721V5046573; Mon, 9 Aug 2004 07:02:01 GMT (envelope-from vs) Message-Id: <200408090702.i79721V5046573@repoman.freebsd.org> From: Volker Stolz Date: Mon, 9 Aug 2004 07:02:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/fortune-mod-futurama Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 07:02:01 -0000 vs 2004-08-09 07:02:00 UTC FreeBSD ports repository Modified files: misc/fortune-mod-futurama Makefile Log: Regenerate dat-file: One quote would turn up more frequently than others. Noticed by: Martin Kulas Revision Changes Path 1.6 +4 -3 ports/misc/fortune-mod-futurama/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 07:23:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EF66816A4CE; Mon, 9 Aug 2004 07:23:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3CEB43D62; Mon, 9 Aug 2004 07:23:53 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i797Nr1X047230; Mon, 9 Aug 2004 07:23:53 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i797NrFv047229; Mon, 9 Aug 2004 07:23:53 GMT (envelope-from vs) Message-Id: <200408090723.i797NrFv047229@repoman.freebsd.org> From: Volker Stolz Date: Mon, 9 Aug 2004 07:23:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/gnocatan Makefile distinfo pkg-descr ports/games/gnocatan/files patch-client_gtk_trade.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 07:23:54 -0000 vs 2004-08-09 07:23:53 UTC FreeBSD ports repository Modified files: games/gnocatan Makefile distinfo pkg-descr Added files: games/gnocatan/files patch-client_gtk_trade.c Log: Update to 0.8.1.30 PR: ports/70020 Submitted by: Stefan Walter (maintainer) Revision Changes Path 1.18 +1 -2 ports/games/gnocatan/Makefile 1.4 +2 -2 ports/games/gnocatan/distinfo 1.1 +56 -0 ports/games/gnocatan/files/patch-client_gtk_trade.c (new) 1.3 +0 -2 ports/games/gnocatan/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:01:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B1CE16A4CE; Mon, 9 Aug 2004 08:01:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 957F743D39; Mon, 9 Aug 2004 08:01:43 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7981hfI048318; Mon, 9 Aug 2004 08:01:43 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7981hFc048317; Mon, 9 Aug 2004 08:01:43 GMT (envelope-from sem) Message-Id: <200408090801.i7981hFc048317@repoman.freebsd.org> From: Sergey Matveychuk Date: Mon, 9 Aug 2004 08:01:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/postgresql-libpqxx Makefile distinfo patch-Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:01:43 -0000 sem 2004-08-09 08:01:43 UTC FreeBSD ports repository Modified files: databases/postgresql-libpqxx Makefile distinfo pkg-plist databases/postgresql-libpqxx/files patch-Makefile.in Log: update to 2.2.7 fix a wrong pkg-config specification position PR: ports/69960 Submitted by: Jie Gao Approved by: maintainer Revision Changes Path 1.10 +1 -1 ports/databases/postgresql-libpqxx/Makefile 1.6 +2 -2 ports/databases/postgresql-libpqxx/distinfo 1.2 +1 -1 ports/databases/postgresql-libpqxx/files/patch-Makefile.in 1.6 +3 -2 ports/databases/postgresql-libpqxx/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:14:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7EA116A4CE; Mon, 9 Aug 2004 08:14:34 +0000 (GMT) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [210.226.20.147]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DF5343D2F; Mon, 9 Aug 2004 08:14:33 +0000 (GMT) (envelope-from kuriyama@imgsrc.co.jp) Received: from localhost (localhost [127.0.0.1]) by black.imgsrc.co.jp (Postfix) with ESMTP id 4397950BD6; Mon, 9 Aug 2004 17:14:30 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [IPv6:2001:218:422:2::9999]) by black.imgsrc.co.jp (Postfix) with ESMTP id 1C26F50BEB; Mon, 9 Aug 2004 17:14:28 +0900 (JST) Date: Mon, 09 Aug 2004 17:14:28 +0900 Message-ID: <7mhdrclod7.wl@black.imgsrc.co.jp> From: Jun Kuriyama To: Johan Karlsson In-Reply-To: <20040809061817.GA53369@numeri.campus.luth.se> References: <200408031856.i73IuV8c082723@repoman.freebsd.org> <7mllgolwsk.wl@black.imgsrc.co.jp> <20040809061817.GA53369@numeri.campus.luth.se> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.6 (Maruoka) FLIM/1.14.6 (Marutamachi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by amavisd 0.1 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Hartmut Brandt cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:14:35 -0000 At Mon, 9 Aug 2004 08:18:17 +0200, Johan Karlsson wrote: > > I'm using MAKEOBJDIRPREFIX as a make argument to build the world. > > Don't. > According to make(1) it is an environment variable. Thanks, it works. Sorry for my misusing of variable... -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:17:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8927E16A4CE; Mon, 9 Aug 2004 08:17:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CEAC43D31; Mon, 9 Aug 2004 08:17:50 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798Ho53048757; Mon, 9 Aug 2004 08:17:50 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798Hori048756; Mon, 9 Aug 2004 08:17:50 GMT (envelope-from vs) Message-Id: <200408090817.i798Hori048756@repoman.freebsd.org> From: Volker Stolz Date: Mon, 9 Aug 2004 08:17:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/aqsis Makefileports/graphics/aqsis/files patch-ltmain.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:17:50 -0000 vs 2004-08-09 08:17:50 UTC FreeBSD ports repository Modified files: graphics/aqsis Makefile Removed files: graphics/aqsis/files patch-ltmain.sh Log: Unbreak: - LIBTOOLize - USE_GCC=3.3 on 4.X - pet portlint Closes PR: ports/70099 Submitted by: "Daniela" Revision Changes Path 1.12 +8 -7 ports/graphics/aqsis/Makefile 1.3 +0 -15 ports/graphics/aqsis/files/patch-ltmain.sh (dead) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:18:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E3B316A4CE; Mon, 9 Aug 2004 08:18:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D6CB43D2D; Mon, 9 Aug 2004 08:18:49 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798InpE048911; Mon, 9 Aug 2004 08:18:49 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798Inc4048910; Mon, 9 Aug 2004 08:18:49 GMT (envelope-from krion) Message-Id: <200408090818.i798Inc4048910@repoman.freebsd.org> From: Kirill Ponomarew Date: Mon, 9 Aug 2004 08:18:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security Makefile ports/security/pft Makefile distinfo pkg-descr pkg-plist ports/security/pft/files patch-Makefile patch-commands.h patch-exceptions.h patch-fxstrings.cpp patch-fxstrings.h patch-llist.cpp ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:18:49 -0000 krion 2004-08-09 08:18:49 UTC FreeBSD ports repository Modified files: security Makefile Added files: security/pft Makefile distinfo pkg-descr pkg-plist security/pft/files patch-Makefile patch-commands.h patch-exceptions.h patch-fxstrings.cpp patch-fxstrings.h patch-llist.cpp patch-llist.h patch-pft:Makefile patch-pft:main.cpp patch-pjllists.cpp patch-pjllists.h patch-pjlsession.cpp patch-pjlsession.h patch-rawmem.cpp patch-rawmem.h patch-tcpcon.cpp patch-tcpcon.h Log: Add pft 1.2, libPJL- Printer Job Language library A library and a command-line tool to use PJL- HP Printer Job Language PR: ports/69382 Submitted by: Yonatan Revision Changes Path 1.537 +1 -0 ports/security/Makefile 1.1 +29 -0 ports/security/pft/Makefile (new) 1.1 +2 -0 ports/security/pft/distinfo (new) 1.1 +11 -0 ports/security/pft/files/patch-Makefile (new) 1.1 +8 -0 ports/security/pft/files/patch-commands.h (new) 1.1 +8 -0 ports/security/pft/files/patch-exceptions.h (new) 1.1 +45 -0 ports/security/pft/files/patch-fxstrings.cpp (new) 1.1 +8 -0 ports/security/pft/files/patch-fxstrings.h (new) 1.1 +17 -0 ports/security/pft/files/patch-llist.cpp (new) 1.1 +8 -0 ports/security/pft/files/patch-llist.h (new) 1.1 +9 -0 ports/security/pft/files/patch-pft:Makefile (new) 1.1 +127 -0 ports/security/pft/files/patch-pft:main.cpp (new) 1.1 +15 -0 ports/security/pft/files/patch-pjllists.cpp (new) 1.1 +8 -0 ports/security/pft/files/patch-pjllists.h (new) 1.1 +412 -0 ports/security/pft/files/patch-pjlsession.cpp (new) 1.1 +21 -0 ports/security/pft/files/patch-pjlsession.h (new) 1.1 +27 -0 ports/security/pft/files/patch-rawmem.cpp (new) 1.1 +8 -0 ports/security/pft/files/patch-rawmem.h (new) 1.1 +158 -0 ports/security/pft/files/patch-tcpcon.cpp (new) 1.1 +17 -0 ports/security/pft/files/patch-tcpcon.h (new) 1.1 +6 -0 ports/security/pft/pkg-descr (new) 1.1 +2 -0 ports/security/pft/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:19:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F33A816A4D0; Mon, 9 Aug 2004 08:19:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7F4943D4C; Mon, 9 Aug 2004 08:19:03 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798J3q3048961; Mon, 9 Aug 2004 08:19:03 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798J3DM048960; Mon, 9 Aug 2004 08:19:03 GMT (envelope-from krion) Message-Id: <200408090819.i798J3DM048960@repoman.freebsd.org> From: Kirill Ponomarew Date: Mon, 9 Aug 2004 08:19:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:19:04 -0000 krion 2004-08-09 08:19:03 UTC FreeBSD ports repository Modified files: . modules Log: pft --> ports/security/pft Revision Changes Path 1.10856 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:23:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91BB316A4CE; Mon, 9 Aug 2004 08:23:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7643E43D3F; Mon, 9 Aug 2004 08:23:07 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798N795049110; Mon, 9 Aug 2004 08:23:07 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798N7B9049109; Mon, 9 Aug 2004 08:23:07 GMT (envelope-from sem) Message-Id: <200408090823.i798N7B9049109@repoman.freebsd.org> From: Sergey Matveychuk Date: Mon, 9 Aug 2004 08:23:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/portmanager Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:23:07 -0000 sem 2004-08-09 08:23:07 UTC FreeBSD ports repository Modified files: sysutils/portmanager Makefile distinfo pkg-plist Log: Update to 0.1.8. Fully PREFIX compliant now. Complete run on CURRENT. PR: ports/70190 Submitted by: maintainer Revision Changes Path 1.3 +27 -15 ports/sysutils/portmanager/Makefile 1.3 +2 -2 ports/sysutils/portmanager/distinfo 1.3 +8 -1 ports/sysutils/portmanager/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:27:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BA9A16A4CE; Mon, 9 Aug 2004 08:27:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F52943D1D; Mon, 9 Aug 2004 08:27:31 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798RVD0049283; Mon, 9 Aug 2004 08:27:31 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798RVRS049282; Mon, 9 Aug 2004 08:27:31 GMT (envelope-from krion) Message-Id: <200408090827.i798RVRS049282@repoman.freebsd.org> From: Kirill Ponomarew Date: Mon, 9 Aug 2004 08:27:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/libjit Makefile distinfo pkg-plist ports/lang/libjit/files patch-ac X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:27:31 -0000 krion 2004-08-09 08:27:31 UTC FreeBSD ports repository Modified files: lang/libjit Makefile distinfo pkg-plist lang/libjit/files patch-ac Log: Update to 0.0.4 PR: ports/70183 Submitted by: maintainer Revision Changes Path 1.4 +12 -3 ports/lang/libjit/Makefile 1.3 +2 -2 ports/lang/libjit/distinfo 1.2 +9 -9 ports/lang/libjit/files/patch-ac 1.3 +2 -0 ports/lang/libjit/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:31:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 230C816A4CE; Mon, 9 Aug 2004 08:31:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07B8943D41; Mon, 9 Aug 2004 08:31:03 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798V2eD049432; Mon, 9 Aug 2004 08:31:02 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798V2XW049431; Mon, 9 Aug 2004 08:31:02 GMT (envelope-from krion) Message-Id: <200408090831.i798V2XW049431@repoman.freebsd.org> From: Kirill Ponomarew Date: Mon, 9 Aug 2004 08:31:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/thefish Makefile distinfo pkg-message X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:31:03 -0000 krion 2004-08-09 08:31:02 UTC FreeBSD ports repository Modified files: sysutils/thefish Makefile distinfo pkg-message Log: Update to 0.6 PR: ports/70177 Submitted by: maintainer Revision Changes Path 1.44 +13 -3 ports/sysutils/thefish/Makefile 1.28 +2 -2 ports/sysutils/thefish/distinfo 1.6 +1 -2 ports/sysutils/thefish/pkg-message From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:38:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6144716A4CE; Mon, 9 Aug 2004 08:38:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46CAD43D49; Mon, 9 Aug 2004 08:38:33 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798cXO5049639; Mon, 9 Aug 2004 08:38:33 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798cXR5049638; Mon, 9 Aug 2004 08:38:33 GMT (envelope-from den) Message-Id: <200408090838.i798cXR5049638@repoman.freebsd.org> From: Denis Peplin Date: Mon, 9 Aug 2004 08:38:33 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:38:33 -0000 den 2004-08-09 08:38:33 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook book.sgml Log: Typo. Revision Changes Path 1.156 +1 -1 doc/en_US.ISO8859-1/books/handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:40:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E0BB16A4CF; Mon, 9 Aug 2004 08:40:25 +0000 (GMT) Received: from abigail.blackend.org (blackend.org [212.11.35.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17C4643D2D; Mon, 9 Aug 2004 08:40:24 +0000 (GMT) (envelope-from marc@blackend.org) Received: from abigail.blackend.org (localhost [127.0.0.1]) i798eJX5078137; Mon, 9 Aug 2004 10:40:20 +0200 (CEST) (envelope-from marc@abigail.blackend.org) Received: (from marc@localhost) by abigail.blackend.org (8.12.11/8.12.11/Submit) id i798eJnA078136; Mon, 9 Aug 2004 10:40:19 +0200 (CEST) (envelope-from marc) Date: Mon, 9 Aug 2004 10:40:19 +0200 From: Marc Fonvieille To: Denis Peplin Message-ID: <20040809084019.GE76972@abigail.blackend.org> References: <200408090838.i798cXR5049638@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408090838.i798cXR5049638@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i X-Useless-Header: blackend.org X-Operating-System: FreeBSD 4.10-PRERELEASE cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/handbook book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:40:25 -0000 On Mon, Aug 09, 2004 at 08:38:33AM +0000, Denis Peplin wrote: > den 2004-08-09 08:38:33 UTC > > FreeBSD doc repository > > Modified files: > en_US.ISO8859-1/books/handbook book.sgml > Log: > Typo. > Pointy Hat: blackend From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:45:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36E9A16A4CE; Mon, 9 Aug 2004 08:45:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FA0043D49; Mon, 9 Aug 2004 08:45:43 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798jh88049867; Mon, 9 Aug 2004 08:45:43 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798jhgY049866; Mon, 9 Aug 2004 08:45:43 GMT (envelope-from obrien) Message-Id: <200408090845.i798jhgY049866@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 08:45:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: ZOULAS Subject: cvs commit: src/contrib/file - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:45:43 -0000 obrien 2004-08-09 08:45:42 UTC FreeBSD src repository src/contrib/file - Imported sources Update of /home/ncvs/src/contrib/file In directory repoman.freebsd.org:/tmp/cvs-serv49789 Log Message: Virgin import of Christos Zoulas's FILE 4.10. *- file is now broken into a library containing and processing the magic and a consumer binary. Status: Vendor Tag: ZOULAS Release Tags: file_4_10 U src/contrib/file/.cvsignore N src/contrib/file/ChangeLog U src/contrib/file/LEGAL.NOTICE U src/contrib/file/MAINT U src/contrib/file/Makefile.am U src/contrib/file/Makefile.in U src/contrib/file/README U src/contrib/file/acconfig.h U src/contrib/file/acinclude.m4 U src/contrib/file/aclocal.m4 U src/contrib/file/config.h.in U src/contrib/file/configure U src/contrib/file/configure.in U src/contrib/file/install-sh U src/contrib/file/missing U src/contrib/file/mkinstalldirs U src/contrib/file/stamp-h.in U src/contrib/file/apprentice.c N src/contrib/file/apptype.c U src/contrib/file/ascmagic.c U src/contrib/file/compress.c U src/contrib/file/file.c U src/contrib/file/file.h N src/contrib/file/funcs.c U src/contrib/file/fsmagic.c U src/contrib/file/is_tar.c N src/contrib/file/magic.c N src/contrib/file/magic.h U src/contrib/file/names.h U src/contrib/file/patchlevel.h U src/contrib/file/print.c U src/contrib/file/readelf.c U src/contrib/file/readelf.h U src/contrib/file/softmagic.c U src/contrib/file/tar.h N src/contrib/file/test.c U src/contrib/file/Header U src/contrib/file/Localstuff U src/contrib/file/magic.mime U src/contrib/file/magic2mime U src/contrib/file/file.man N src/contrib/file/libmagic.man U src/contrib/file/magic.man U src/contrib/file/Magdir/adventure U src/contrib/file/Magdir/acorn U src/contrib/file/Magdir/adi U src/contrib/file/Magdir/clipper U src/contrib/file/Magdir/allegro U src/contrib/file/Magdir/alliant U src/contrib/file/Magdir/alpha U src/contrib/file/Magdir/amanda U src/contrib/file/Magdir/amigaos U src/contrib/file/Magdir/animation U src/contrib/file/Magdir/apl U src/contrib/file/Magdir/apple U src/contrib/file/Magdir/applix U src/contrib/file/Magdir/archive U src/contrib/file/Magdir/asterix U src/contrib/file/Magdir/att3b U src/contrib/file/Magdir/audio N src/contrib/file/Magdir/bFLT U src/contrib/file/Magdir/blender U src/contrib/file/Magdir/blit N src/contrib/file/Magdir/bout U src/contrib/file/Magdir/bsdi U src/contrib/file/Magdir/c-lang N src/contrib/file/Magdir/c64 N src/contrib/file/Magdir/cad U src/contrib/file/Magdir/cddb U src/contrib/file/Magdir/chi N src/contrib/file/Magdir/chord U src/contrib/file/Magdir/cisco U src/contrib/file/Magdir/citrus U src/contrib/file/Magdir/claris U src/contrib/file/Magdir/commands N src/contrib/file/Magdir/communications U src/contrib/file/Magdir/compress U src/contrib/file/Magdir/console U src/contrib/file/Magdir/convex U src/contrib/file/Magdir/ctags N src/contrib/file/Magdir/dact U src/contrib/file/Magdir/database U src/contrib/file/Magdir/diamond U src/contrib/file/Magdir/diff U src/contrib/file/Magdir/digital U src/contrib/file/Magdir/dolby U src/contrib/file/Magdir/dump U src/contrib/file/Magdir/dyadic U src/contrib/file/Magdir/editors U src/contrib/file/Magdir/elf U src/contrib/file/Magdir/encore U src/contrib/file/Magdir/epoc N src/contrib/file/Magdir/fcs U src/contrib/file/Magdir/filesystems U src/contrib/file/Magdir/flash U src/contrib/file/Magdir/fonts U src/contrib/file/Magdir/frame U src/contrib/file/Magdir/freebsd U src/contrib/file/Magdir/fsav N src/contrib/file/Magdir/games N src/contrib/file/Magdir/gcc N src/contrib/file/Magdir/geos U src/contrib/file/Magdir/gimp U src/contrib/file/Magdir/gnu U src/contrib/file/Magdir/grace U src/contrib/file/Magdir/gringotts U src/contrib/file/Magdir/hdf U src/contrib/file/Magdir/hitachi-sh U src/contrib/file/Magdir/hp U src/contrib/file/Magdir/human68k U src/contrib/file/Magdir/ibm370 U src/contrib/file/Magdir/ibm6000 U src/contrib/file/Magdir/iff U src/contrib/file/Magdir/images U src/contrib/file/Magdir/intel U src/contrib/file/Magdir/interleaf U src/contrib/file/Magdir/island U src/contrib/file/Magdir/ispell U src/contrib/file/Magdir/java U src/contrib/file/Magdir/jpeg U src/contrib/file/Magdir/karma U src/contrib/file/Magdir/lecter U src/contrib/file/Magdir/lex U src/contrib/file/Magdir/lif U src/contrib/file/Magdir/linux U src/contrib/file/Magdir/lisp U src/contrib/file/Magdir/mach U src/contrib/file/Magdir/macintosh U src/contrib/file/Magdir/magic U src/contrib/file/Magdir/mail.news U src/contrib/file/Magdir/maple U src/contrib/file/Magdir/mathematica N src/contrib/file/Magdir/matroska U src/contrib/file/Magdir/mcrypt U src/contrib/file/Magdir/mime U src/contrib/file/Magdir/mips U src/contrib/file/Magdir/mirage N src/contrib/file/Magdir/misctools U src/contrib/file/Magdir/mkid U src/contrib/file/Magdir/mlssa U src/contrib/file/Magdir/mmdf U src/contrib/file/Magdir/modem U src/contrib/file/Magdir/motorola U src/contrib/file/Magdir/msdos U src/contrib/file/Magdir/msvc U src/contrib/file/Magdir/natinst U src/contrib/file/Magdir/ncr U src/contrib/file/Magdir/netbsd U src/contrib/file/Magdir/netscape U src/contrib/file/Magdir/news U src/contrib/file/Magdir/nitpicker N src/contrib/file/Magdir/ocaml U src/contrib/file/Magdir/octave U src/contrib/file/Magdir/olf U src/contrib/file/Magdir/os2 U src/contrib/file/Magdir/os9 U src/contrib/file/Magdir/osf1 U src/contrib/file/Magdir/palm U src/contrib/file/Magdir/parix U src/contrib/file/Magdir/pbm U src/contrib/file/Magdir/pdf U src/contrib/file/Magdir/pdp U src/contrib/file/Magdir/perl U src/contrib/file/Magdir/pgp U src/contrib/file/Magdir/pkgadd N src/contrib/file/Magdir/plan9 U src/contrib/file/Magdir/plus5 U src/contrib/file/Magdir/printer U src/contrib/file/Magdir/project U src/contrib/file/Magdir/psdbms N src/contrib/file/Magdir/psion U src/contrib/file/Magdir/pulsar U src/contrib/file/Magdir/pyramid U src/contrib/file/Magdir/python N src/contrib/file/Magdir/revision U src/contrib/file/Magdir/riff U src/contrib/file/Magdir/rpm U src/contrib/file/Magdir/rtf U src/contrib/file/Magdir/sc U src/contrib/file/Magdir/sccs U src/contrib/file/Magdir/sendmail U src/contrib/file/Magdir/sequent U src/contrib/file/Magdir/sgi U src/contrib/file/Magdir/sgml U src/contrib/file/Magdir/sharc N src/contrib/file/Magdir/sinclair U src/contrib/file/Magdir/sketch U src/contrib/file/Magdir/smalltalk U src/contrib/file/Magdir/sniffer U src/contrib/file/Magdir/softquad N src/contrib/file/Magdir/spec U src/contrib/file/Magdir/spectrum U src/contrib/file/Magdir/sql U src/contrib/file/Magdir/sun U src/contrib/file/Magdir/sysex U src/contrib/file/Magdir/teapot U src/contrib/file/Magdir/terminfo U src/contrib/file/Magdir/tex U src/contrib/file/Magdir/tgif U src/contrib/file/Magdir/ti-8x U src/contrib/file/Magdir/troff U src/contrib/file/Magdir/timezone U src/contrib/file/Magdir/tuxedo U src/contrib/file/Magdir/typeset U src/contrib/file/Magdir/unknown U src/contrib/file/Magdir/uuencode U src/contrib/file/Magdir/varied.out N src/contrib/file/Magdir/varied.script U src/contrib/file/Magdir/vax U src/contrib/file/Magdir/vicar U src/contrib/file/Magdir/visx U src/contrib/file/Magdir/vms U src/contrib/file/Magdir/vmware U src/contrib/file/Magdir/vorbis U src/contrib/file/Magdir/vxl N src/contrib/file/Magdir/wordprocessors U src/contrib/file/Magdir/xdelta U src/contrib/file/Magdir/xenix N src/contrib/file/Magdir/xwindows U src/contrib/file/Magdir/zilog U src/contrib/file/Magdir/zyxel No conflicts created by this import From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:48:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4FB216A4CF; Mon, 9 Aug 2004 08:48:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A80F343D48; Mon, 9 Aug 2004 08:48:28 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798mSbF049968; Mon, 9 Aug 2004 08:48:28 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798mSZ0049967; Mon, 9 Aug 2004 08:48:28 GMT (envelope-from obrien) Message-Id: <200408090848.i798mSZ0049967@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 08:48:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/mk bsd.libnames.mk src/lib/libmagic Makefile config.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:48:29 -0000 obrien 2004-08-09 08:48:28 UTC FreeBSD src repository Modified files: share/mk bsd.libnames.mk Added files: lib/libmagic Makefile config.h Log: Bmake the library containing and processing the magic. Revision Changes Path 1.1 +59 -0 src/lib/libmagic/Makefile (new) 1.1 +215 -0 src/lib/libmagic/config.h (new) 1.84 +2 -0 src/share/mk/bsd.libnames.mk From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:49:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47D0616A4CE; Mon, 9 Aug 2004 08:49:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BD2743D2F; Mon, 9 Aug 2004 08:49:50 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798nocL050038; Mon, 9 Aug 2004 08:49:50 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798noIm050037; Mon, 9 Aug 2004 08:49:50 GMT (envelope-from obrien) Message-Id: <200408090849.i798noIm050037@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 08:49:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/file Makefile config.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:49:50 -0000 obrien 2004-08-09 08:49:50 UTC FreeBSD src repository Modified files: usr.bin/file Makefile config.h Log: The file consumer binary, which depends on the libmagic. Revision Changes Path 1.27 +7 -37 src/usr.bin/file/Makefile 1.8 +132 -59 src/usr.bin/file/config.h From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:51:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF09416A4CE; Mon, 9 Aug 2004 08:51:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A359E43D31; Mon, 9 Aug 2004 08:51:26 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798pQHD050172; Mon, 9 Aug 2004 08:51:26 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798pQQ8050171; Mon, 9 Aug 2004 08:51:26 GMT (envelope-from dougb) Message-Id: <200408090851.i798pQQ8050171@repoman.freebsd.org> From: Doug Barton Date: Mon, 9 Aug 2004 08:51:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/pine4/files patch-pine_strings.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:51:26 -0000 dougb 2004-08-09 08:51:26 UTC FreeBSD ports repository Removed files: mail/pine4/files patch-pine_strings.c Log: This patch is no longer necessary for Pine 4.61 Revision Changes Path 1.4 +0 -29 ports/mail/pine4/files/patch-pine_strings.c (dead) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:51:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C20116A4CE; Mon, 9 Aug 2004 08:51:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 721C743D1D; Mon, 9 Aug 2004 08:51:46 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798pkGX050216; Mon, 9 Aug 2004 08:51:46 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798pk1p050215; Mon, 9 Aug 2004 08:51:46 GMT (envelope-from dougb) Message-Id: <200408090851.i798pk1p050215@repoman.freebsd.org> From: Doug Barton Date: Mon, 9 Aug 2004 08:51:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/pine4/files patch-bb X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:51:46 -0000 dougb 2004-08-09 08:51:46 UTC FreeBSD ports repository Modified files: mail/pine4/files patch-bb Log: Regenerate for Pine 4.61 Revision Changes Path 1.5 +9 -8 ports/mail/pine4/files/patch-bb From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:52:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7415216A4CE; Mon, 9 Aug 2004 08:52:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A00543D39; Mon, 9 Aug 2004 08:52:13 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798qDkP050279; Mon, 9 Aug 2004 08:52:13 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798qDAm050278; Mon, 9 Aug 2004 08:52:13 GMT (envelope-from dougb) Message-Id: <200408090852.i798qDAm050278@repoman.freebsd.org> From: Doug Barton Date: Mon, 9 Aug 2004 08:52:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/pine4 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:52:13 -0000 dougb 2004-08-09 08:52:13 UTC FreeBSD ports repository Modified files: mail/pine4 Makefile distinfo Log: Update for version 4.61, a bugfix release. Revision Changes Path 1.77 +1 -1 ports/mail/pine4/Makefile 1.29 +2 -2 ports/mail/pine4/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 08:58:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6E3616A4CE; Mon, 9 Aug 2004 08:58:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A69943D3F; Mon, 9 Aug 2004 08:58:56 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i798wuKK050430; Mon, 9 Aug 2004 08:58:56 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i798wuir050429; Mon, 9 Aug 2004 08:58:56 GMT (envelope-from vs) Message-Id: <200408090858.i798wuir050429@repoman.freebsd.org> From: Volker Stolz Date: Mon, 9 Aug 2004 08:58:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/fluxconf Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 08:58:56 -0000 vs 2004-08-09 08:58:56 UTC FreeBSD ports repository Modified files: x11-wm/fluxconf Makefile distinfo Log: - Update to 0.9.7 - Reset maintainer: Hendrik no longer has time to look after his ports. Thanks for maintaining your ports so far and hopefully you'll find time to return to developing FreeBSD! PR: ports/69439 Submitted by: Roman Bogorodskiy Approved by: maintainer Revision Changes Path 1.11 +2 -3 ports/x11-wm/fluxconf/Makefile 1.5 +2 -2 ports/x11-wm/fluxconf/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 09:02:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EB4116A4CE; Mon, 9 Aug 2004 09:02:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1204B43D4C; Mon, 9 Aug 2004 09:02:09 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79928k9050563; Mon, 9 Aug 2004 09:02:08 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79928HZ050562; Mon, 9 Aug 2004 09:02:08 GMT (envelope-from vs) Message-Id: <200408090902.i79928HZ050562@repoman.freebsd.org> From: Volker Stolz Date: Mon, 9 Aug 2004 09:02:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/fluxbox Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 09:02:09 -0000 vs 2004-08-09 09:02:08 UTC FreeBSD ports repository Modified files: x11-wm/fluxbox Makefile Log: Reset maintainer. PR: ports/69439 Request by: maintainer Revision Changes Path 1.32 +1 -1 ports/x11-wm/fluxbox/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 09:59:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4440816A4CE; Mon, 9 Aug 2004 09:59:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2938A43D39; Mon, 9 Aug 2004 09:59:35 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i799xZpR052265; Mon, 9 Aug 2004 09:59:35 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i799xZTW052264; Mon, 9 Aug 2004 09:59:35 GMT (envelope-from dinoex) Message-Id: <200408090959.i799xZTW052264@repoman.freebsd.org> From: Dirk Meyer Date: Mon, 9 Aug 2004 09:59:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/phpwiki Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 09:59:35 -0000 dinoex 2004-08-09 09:59:35 UTC FreeBSD ports repository Modified files: www/phpwiki Makefile distinfo Log: - update to 1.2.4 Revision Changes Path 1.5 +1 -1 ports/www/phpwiki/Makefile 1.3 +2 -2 ports/www/phpwiki/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 10:09:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10A4716A4CE; Mon, 9 Aug 2004 10:09:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7B2543D41; Mon, 9 Aug 2004 10:09:11 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79A9B8e052558; Mon, 9 Aug 2004 10:09:11 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79A9B4p052557; Mon, 9 Aug 2004 10:09:11 GMT (envelope-from mat) Message-Id: <200408091009.i79A9B4p052557@repoman.freebsd.org> From: Mathieu Arnold Date: Mon, 9 Aug 2004 10:09:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-DateTime-Format-Pg Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:09:12 -0000 mat 2004-08-09 10:09:11 UTC FreeBSD ports repository Modified files: devel/p5-DateTime-Format-Pg Makefile distinfo Log: Update to 0.07 Revision Changes Path 1.5 +1 -2 ports/devel/p5-DateTime-Format-Pg/Makefile 1.5 +2 -2 ports/devel/p5-DateTime-Format-Pg/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 10:22:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CEE816A4CE; Mon, 9 Aug 2004 10:22:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F4B743D45; Mon, 9 Aug 2004 10:22:53 +0000 (GMT) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79AMrvM053000; Mon, 9 Aug 2004 10:22:53 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79AMrlG052999; Mon, 9 Aug 2004 10:22:53 GMT (envelope-from leeym) Message-Id: <200408091022.i79AMrlG052999@repoman.freebsd.org> From: Yen-Ming Lee Date: Mon, 9 Aug 2004 10:22:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:22:53 -0000 leeym 2004-08-09 10:22:52 UTC FreeBSD src repository (ports committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: add myself. :) Revision Changes Path 1.126 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Mon Aug 9 10:28:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE12316A4D0 for ; Mon, 9 Aug 2004 10:28:31 +0000 (GMT) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1055B43D31 for ; Mon, 9 Aug 2004 10:28:31 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru id i79ANlop068970 for cvs-all@FreeBSD.org.checked; (8.12.8/vak/2.1) Mon, 9 Aug 2004 14:23:47 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (hi.cronyx.ru [144.206.181.94]) by hanoi.cronyx.ru with ESMTP id i79AEcrI061475; (8.12.8/vak/2.1) Mon, 9 Aug 2004 14:14:38 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <41174EC2.10007@cronyx.ru> Date: Mon, 09 Aug 2004 14:15:30 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6b) Gecko/20031208 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Nicolas Souchu References: <200408072114.i77LEorM076643@repoman.freebsd.org> In-Reply-To: <200408072114.i77LEorM076643@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:28:32 -0000 What is correct order in this file, by first name or by last name? rik Nicolas Souchu wrote: >nsouch 2004-08-07 21:14:50 UTC > > FreeBSD src repository > > Modified files: > usr.bin/calendar/calendars calendar.freebsd > Log: > 10 born in France now! > > Revision Changes Path > 1.124 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd > > > > From owner-cvs-all@FreeBSD.ORG Mon Aug 9 10:32:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D04DF16A4CE; Mon, 9 Aug 2004 10:32:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B36A343D41; Mon, 9 Aug 2004 10:32:16 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79AWGGs053256; Mon, 9 Aug 2004 10:32:16 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79AWGPk053255; Mon, 9 Aug 2004 10:32:16 GMT (envelope-from obrien) Message-Id: <200408091032.i79AWGPk053255@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 10:32:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libmagic Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:32:17 -0000 obrien 2004-08-09 10:32:16 UTC FreeBSD src repository Modified files: lib/libmagic Makefile Log: Uncomment the real paths and remove the local debugging paths. Noticed by: ru (who's faster than 'make world' on my stock src test machine) Revision Changes Path 1.2 +1 -2 src/lib/libmagic/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 10:36:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2783916A4CE; Mon, 9 Aug 2004 10:36:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0ABDA43D3F; Mon, 9 Aug 2004 10:36:07 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Aa6lM053394; Mon, 9 Aug 2004 10:36:06 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Aa6fi053393; Mon, 9 Aug 2004 10:36:06 GMT (envelope-from ru) Message-Id: <200408091036.i79Aa6fi053393@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 9 Aug 2004 10:36:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:36:07 -0000 ru 2004-08-09 10:36:06 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) . Makefile.inc1 Log: Do not run "make hierarchy" when installing kernel but *not* installing modules, allowing in particular /usr to be mounted read-only. This change won't be MFS'ed, because semantics of installing modules in 5.x is slightly different from 4.x. PR: 68150 Revision Changes Path 1.141.2.68 +3 -0 src/Makefile.inc1 From owner-cvs-all@FreeBSD.ORG Mon Aug 9 10:42:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 829D116A4CE; Mon, 9 Aug 2004 10:42:15 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB03843D45; Mon, 9 Aug 2004 10:42:14 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i79Ag5to034901 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 9 Aug 2004 13:42:06 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i79Ag6D2051991; Mon, 9 Aug 2004 13:42:06 +0300 (EEST) (envelope-from ru) Date: Mon, 9 Aug 2004 13:42:06 +0300 From: Ruslan Ermilov To: Roman Kurakin Message-ID: <20040809104206.GD51676@ip.net.ua> References: <200408072114.i77LEorM076643@repoman.freebsd.org> <41174EC2.10007@cronyx.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="DrWhICOqskFTAXiy" Content-Disposition: inline In-Reply-To: <41174EC2.10007@cronyx.ru> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.ORG cc: Nicolas Souchu cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:42:15 -0000 --DrWhICOqskFTAXiy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 02:15:30PM +0400, Roman Kurakin wrote: > What is correct order in this file, by first name or by last name? >=20 The correct order here is: - by month, - by day, - by year - in case there's still a full match, by freefall login name. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --DrWhICOqskFTAXiy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBF1T+qRfpzJluFF4RAhZJAJ0WUnlS8rhilfDyx4H/Aw7Z+yd2VACgkQML fc7Lb60Y/Mng2oSSBYlGa2w= =OvsZ -----END PGP SIGNATURE----- --DrWhICOqskFTAXiy-- From owner-cvs-all@FreeBSD.ORG Mon Aug 9 10:44:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB79616A4CE; Mon, 9 Aug 2004 10:44:22 +0000 (GMT) Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D89943D54; Mon, 9 Aug 2004 10:44:22 +0000 (GMT) (envelope-from k@numeri.campus.luth.se) Received: from numeri.campus.luth.se (localhost [127.0.0.1]) i79AiKTA003528; Mon, 9 Aug 2004 12:44:20 +0200 (CEST) (envelope-from k@numeri.campus.luth.se) Received: (from k@localhost) by numeri.campus.luth.se (8.12.11/8.12.11/Submit) id i79AiKDb003527; Mon, 9 Aug 2004 12:44:20 +0200 (CEST) (envelope-from k) Date: Mon, 9 Aug 2004 12:44:19 +0200 From: Johan Karlsson To: "David E. O'Brien" Message-ID: <20040809104419.GA55299@numeri.campus.luth.se> References: <200408091032.i79AWGPk053255@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408091032.i79AWGPk053255@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libmagic Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:44:22 -0000 Hi I belive the same thing is needed for usr.bin/file. /Johan K On Mon, Aug 09, 2004 at 10:32 (+0000), David E. O'Brien wrote: > obrien 2004-08-09 10:32:16 UTC > > FreeBSD src repository > > Modified files: > lib/libmagic Makefile > Log: > Uncomment the real paths and remove the local debugging paths. > > Noticed by: ru (who's faster than 'make world' on my stock src test machine) > > Revision Changes Path > 1.2 +1 -2 src/lib/libmagic/Makefile -- Johan Karlsson mailto:johan@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Mon Aug 9 10:47:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 85FE716A4CE; Mon, 9 Aug 2004 10:47:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 689CE43D41; Mon, 9 Aug 2004 10:47:50 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79AloD9053661; Mon, 9 Aug 2004 10:47:50 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Alosa053660; Mon, 9 Aug 2004 10:47:50 GMT (envelope-from obrien) Message-Id: <200408091047.i79Alosa053660@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 10:47:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/file Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:47:50 -0000 obrien 2004-08-09 10:47:50 UTC FreeBSD src repository Modified files: usr.bin/file Makefile Log: Uncomment the real paths and remove the local debugging paths. Noticed by: ru (who's faster than 'make world' on my stock src test machine) Revision Changes Path 1.28 +1 -2 src/usr.bin/file/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 10:51:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B039B16A4D0; Mon, 9 Aug 2004 10:51:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81F9343D39; Mon, 9 Aug 2004 10:51:01 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Ap1ja053825; Mon, 9 Aug 2004 10:51:01 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Ap1k8053824; Mon, 9 Aug 2004 10:51:01 GMT (envelope-from obrien) Message-Id: <200408091051.i79Ap1k8053824@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 10:51:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:51:01 -0000 obrien 2004-08-09 10:51:01 UTC FreeBSD src repository Modified files: . Makefile.inc1 Log: The file(1) related build-tool moved to libmagic. Revision Changes Path 1.433 +1 -1 src/Makefile.inc1 From owner-cvs-all@FreeBSD.ORG Mon Aug 9 10:54:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E8DB16A4CE; Mon, 9 Aug 2004 10:54:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 311E443D1D; Mon, 9 Aug 2004 10:54:06 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79As6Eg053926; Mon, 9 Aug 2004 10:54:06 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79As63F053925; Mon, 9 Aug 2004 10:54:06 GMT (envelope-from harti) Message-Id: <200408091054.i79As63F053925@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 9 Aug 2004 10:54:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/mk bsd.subdir.mk sys.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 10:54:06 -0000 harti 2004-08-09 10:54:06 UTC FreeBSD src repository Modified files: share/mk bsd.subdir.mk sys.mk Log: Use the '+' flag to make make recurse into sub-directories even when given -n. For POLA reasons this behaviour is switched on only when at least two -n flags are given to make. One -n flag keeps the old behaviour of showing the shell command that would recurse into the sub-directories. Discussed with: ru Revision Changes Path 1.45 +5 -5 src/share/mk/bsd.subdir.mk 1.80 +6 -0 src/share/mk/sys.mk From owner-cvs-all@FreeBSD.ORG Mon Aug 9 11:02:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8E0716A4CE; Mon, 9 Aug 2004 11:02:46 +0000 (GMT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB3B043D45; Mon, 9 Aug 2004 11:02:46 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.13.1/8.12.11) with ESMTP id i79B2k0C088264; Mon, 9 Aug 2004 04:02:46 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.13.1/8.13.1/Submit) id i79B2kM3088263; Mon, 9 Aug 2004 04:02:46 -0700 (PDT) (envelope-from obrien) Date: Mon, 9 Aug 2004 04:02:46 -0700 From: "David O'Brien" To: Johan Karlsson Message-ID: <20040809110246.GB70420@dragon.nuxi.com> References: <200408091032.i79AWGPk053255@repoman.freebsd.org> <20040809104419.GA55299@numeri.campus.luth.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809104419.GA55299@numeri.campus.luth.se> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.2-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 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/lib/libmagic Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:02:47 -0000 On Mon, Aug 09, 2004 at 12:44:19PM +0200, Johan Karlsson wrote: > Hi > I belive the same thing is needed for usr.bin/file. > /Johan K > > On Mon, Aug 09, 2004 at 10:32 (+0000), David E. O'Brien wrote: > > obrien 2004-08-09 10:32:16 UTC > > > > FreeBSD src repository > > > > Modified files: > > lib/libmagic Makefile > > Log: > > Uncomment the real paths and remove the local debugging paths. > > > > Noticed by: ru (who's faster than 'make world' on my stock src test machine) > > > > Revision Changes Path > > 1.2 +1 -2 src/lib/libmagic/Makefile bash_completion decided to "correct" my spelling of the path to the usr.bin/file Makefile so it didn't get committed at the same time. :-( -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 11:05:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F03116A4CE; Mon, 9 Aug 2004 11:05:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 729CA43D5E; Mon, 9 Aug 2004 11:05:09 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79B59wf054312; Mon, 9 Aug 2004 11:05:09 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79B5936054311; Mon, 9 Aug 2004 11:05:09 GMT (envelope-from obrien) Message-Id: <200408091105.i79B5936054311@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 11:05:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/file Makefile src/lib/libmagic Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:05:09 -0000 obrien 2004-08-09 11:05:09 UTC FreeBSD src repository Modified files: usr.bin/file Makefile lib/libmagic Makefile Log: Don't try to programatically support running file(1) w/in /usr/obj or other non-standard install path. Agreed with: ru Revision Changes Path 1.3 +1 -1 src/lib/libmagic/Makefile 1.29 +1 -1 src/usr.bin/file/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 11:14:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7665A16A4CE; Mon, 9 Aug 2004 11:14:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57BD843D45; Mon, 9 Aug 2004 11:14:25 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79BEPpp054672; Mon, 9 Aug 2004 11:14:25 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79BEPhN054671; Mon, 9 Aug 2004 11:14:25 GMT (envelope-from pjd) Message-Id: <200408091114.i79BEPhN054671@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Aug 2004 11:14:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/label g_label.c src/sys/geom/concat g_concat.c src/sys/geom/stripe g_stripe.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:14:25 -0000 pjd 2004-08-09 11:14:25 UTC FreeBSD src repository Modified files: sys/geom/label g_label.c sys/geom/concat g_concat.c sys/geom/stripe g_stripe.c Log: Do not use g_wither_geom(9). I doesn't work in the way which is expected here anymore (after g_wither_washer() was introduced), i.e. geom and consumer will not be immediately destroyed if possible. Revision Changes Path 1.17 +3 -2 src/sys/geom/concat/g_concat.c 1.7 +8 -12 src/sys/geom/label/g_label.c 1.13 +3 -2 src/sys/geom/stripe/g_stripe.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 11:14:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5440416A4CE; Mon, 9 Aug 2004 11:14:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3572143D41; Mon, 9 Aug 2004 11:14:55 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79BEtrc054710; Mon, 9 Aug 2004 11:14:55 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79BEtFs054709; Mon, 9 Aug 2004 11:14:55 GMT (envelope-from vanilla) Message-Id: <200408091114.i79BEtFs054709@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Mon, 9 Aug 2004 11:14:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-File-Temp Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:14:55 -0000 vanilla 2004-08-09 11:14:55 UTC FreeBSD ports repository Modified files: devel/p5-File-Temp Makefile distinfo Log: - Update to 0.14 - Add new BUILD_DEPENDS - 0.14 is included in perl5.8 - required by svk - reset MAINTAINER to submitter PR: ports/69306 Submitted by: Cheng-Lung Sung Timeout by: wjv@ (2 weeks) Revision Changes Path 1.9 +7 -3 ports/devel/p5-File-Temp/Makefile 1.3 +2 -2 ports/devel/p5-File-Temp/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 11:18:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 28E1616A4CF; Mon, 9 Aug 2004 11:18:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BCF643D1F; Mon, 9 Aug 2004 11:18:00 +0000 (GMT) (envelope-from rik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79BHxW4054862; Mon, 9 Aug 2004 11:17:59 GMT (envelope-from rik@repoman.freebsd.org) Received: (from rik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79BHxvF054861; Mon, 9 Aug 2004 11:17:59 GMT (envelope-from rik) Message-Id: <200408091117.i79BHxvF054861@repoman.freebsd.org> From: Roman Kurakin Date: Mon, 9 Aug 2004 11:17:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:18:00 -0000 rik 2004-08-09 11:17:59 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add myself here. Increase USSR count ;-) Revision Changes Path 1.127 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Mon Aug 9 11:22:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A27616A4CE; Mon, 9 Aug 2004 11:22:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C19343D1D; Mon, 9 Aug 2004 11:22:04 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79BM49J055030; Mon, 9 Aug 2004 11:22:04 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79BM4xV055029; Mon, 9 Aug 2004 11:22:04 GMT (envelope-from vanilla) Message-Id: <200408091122.i79BM4xV055029@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Mon, 9 Aug 2004 11:22:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/p5-HTML-TableTiler Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:22:04 -0000 vanilla 2004-08-09 11:22:04 UTC FreeBSD ports repository Modified files: www/p5-HTML-TableTiler Makefile distinfo Log: - Update to 1.19 = from Changes = - Added a note in the Makefile.PL PR: ports/70157 Submitted by: maintainer Revision Changes Path 1.8 +1 -1 ports/www/p5-HTML-TableTiler/Makefile 1.9 +2 -2 ports/www/p5-HTML-TableTiler/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 11:23:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55E7D16A4D6; Mon, 9 Aug 2004 11:23:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37B2743D3F; Mon, 9 Aug 2004 11:23:40 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79BNeRm055085; Mon, 9 Aug 2004 11:23:40 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79BNeWP055084; Mon, 9 Aug 2004 11:23:40 GMT (envelope-from vanilla) Message-Id: <200408091123.i79BNeWP055084@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Mon, 9 Aug 2004 11:23:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/p5-PGP-Sign Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:23:40 -0000 vanilla 2004-08-09 11:23:40 UTC FreeBSD ports repository Modified files: security/p5-PGP-Sign Makefile distinfo Log: - Update to 0.18 - remove data/trustdb.gpg (GnuPG generates it automatically) PR: ports/70159 Submitted by: Cheng-Lung Sung Revision Changes Path 1.24 +1 -1 ports/security/p5-PGP-Sign/Makefile 1.9 +2 -2 ports/security/p5-PGP-Sign/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 11:29:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAF7416A4CE; Mon, 9 Aug 2004 11:29:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B150F43D46; Mon, 9 Aug 2004 11:29:42 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79BTgDh055336; Mon, 9 Aug 2004 11:29:42 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79BTg2C055335; Mon, 9 Aug 2004 11:29:42 GMT (envelope-from pjd) Message-Id: <200408091129.i79BTg2C055335@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Aug 2004 11:29:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/geom/class/concat gconcat.8 geom_concat.c src/sbin/geom/class/stripe geom_stripe.c gstripe.8 src/sys/geom/concat g_concat.c g_concat.h src/sys/geom/mirror g_mirror.c g_mirror.h src/sys/geom/stripe g_stripe.c g_stripe.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:29:42 -0000 pjd 2004-08-09 11:29:42 UTC FreeBSD src repository Modified files: sbin/geom/class/concat gconcat.8 geom_concat.c sbin/geom/class/stripe geom_stripe.c gstripe.8 sys/geom/concat g_concat.c g_concat.h sys/geom/mirror g_mirror.c g_mirror.h sys/geom/stripe g_stripe.c g_stripe.h Log: - Introduce option for hardcoding providers' names into metadata. It allows to fix problems when last provider's sector is shared between few providers. - Bump version number for CONCAT and STRIPE and add code for backward compatibility. - Do not bump version number of MIRROR, as it wasn't officially introduced yet. Even if someone started to play with it, there is no big deal, because wrong MD5 sum of metadata will deny those providers. - Update manual pages. - Add version history to g_(stripe|concat).h files. Revision Changes Path 1.11 +15 -13 src/sbin/geom/class/concat/gconcat.8 1.5 +27 -8 src/sbin/geom/class/concat/geom_concat.c 1.6 +22 -7 src/sbin/geom/class/stripe/geom_stripe.c 1.15 +15 -13 src/sbin/geom/class/stripe/gstripe.8 1.18 +10 -0 src/sys/geom/concat/g_concat.c 1.10 +10 -1 src/sys/geom/concat/g_concat.h 1.15 +10 -0 src/sys/geom/mirror/g_mirror.c 1.5 +10 -5 src/sys/geom/mirror/g_mirror.h 1.14 +10 -0 src/sys/geom/stripe/g_stripe.c 1.5 +10 -1 src/sys/geom/stripe/g_stripe.h From owner-cvs-all@FreeBSD.ORG Mon Aug 9 11:30:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0C9016A4CE; Mon, 9 Aug 2004 11:30:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A288B43D39; Mon, 9 Aug 2004 11:30:36 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79BUaPq055428; Mon, 9 Aug 2004 11:30:36 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79BUawa055427; Mon, 9 Aug 2004 11:30:36 GMT (envelope-from obrien) Message-Id: <200408091130.i79BUawa055427@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 11:30:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:30:36 -0000 obrien 2004-08-09 11:30:36 UTC FreeBSD src repository Modified files: lib Makefile Log: Turn on the magic. Revision Changes Path 1.189 +2 -2 src/lib/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 11:31:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B27E616A4CE; Mon, 9 Aug 2004 11:31:39 +0000 (GMT) Received: from darkness.comp.waw.pl (darkness.comp.waw.pl [195.117.238.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57D0243D31; Mon, 9 Aug 2004 11:31:39 +0000 (GMT) (envelope-from pjd@darkness.comp.waw.pl) Received: by darkness.comp.waw.pl (Postfix, from userid 1009) id A705AACAFB; Mon, 9 Aug 2004 13:31:37 +0200 (CEST) Date: Mon, 9 Aug 2004 13:31:37 +0200 From: Pawel Jakub Dawidek To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040809113137.GK628@darkness.comp.waw.pl> References: <200408091129.i79BTg2C055335@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="DozTQjXnjm3C9Xhk" Content-Disposition: inline In-Reply-To: <200408091129.i79BTg2C055335@repoman.freebsd.org> User-Agent: Mutt/1.4.2i X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 5.2.1-RC2 i386 Subject: Re: cvs commit: src/sbin/geom/class/concat gconcat.8 geom_concat.c src/sbin/geom/class/stripe geom_stripe.c gstripe.8 src/sys/geom/concat g_concat.c g_concat.h src/sys/geom/mirror g_mirror.c g_mirror.h src/sys/geom/stripe g_stripe.c g_stripe.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:31:39 -0000 --DozTQjXnjm3C9Xhk Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 11:29:42AM +0000, Pawel Jakub Dawidek wrote: +> pjd 2004-08-09 11:29:42 UTC +>=20 +> FreeBSD src repository +>=20 +> Modified files: +> sbin/geom/class/concat gconcat.8 geom_concat.c=20 +> sbin/geom/class/stripe geom_stripe.c gstripe.8=20 +> sys/geom/concat g_concat.c g_concat.h=20 +> sys/geom/mirror g_mirror.c g_mirror.h=20 +> sys/geom/stripe g_stripe.c g_stripe.h=20 +> Log: +> - Introduce option for hardcoding providers' names into metadata. +> It allows to fix problems when last provider's sector is shared betw= een few +> providers. +> - Bump version number for CONCAT and STRIPE and add code for backward +> compatibility. +> - Do not bump version number of MIRROR, as it wasn't officially introd= uced yet. +> Even if someone started to play with it, there is no big deal, becau= se +> wrong MD5 sum of metadata will deny those providers. +> - Update manual pages. +> - Add version history to g_(stripe|concat).h files. Forgot to note, that this commit was: Inspired by: Sam Lawrance --=20 Pawel Jakub Dawidek http://www.FreeBSD.org pjd@FreeBSD.org http://garage.freebsd.pl FreeBSD committer Am I Evil? Yes, I Am! --DozTQjXnjm3C9Xhk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBF2CZForvXbEpPzQRArrnAJ4pBJ+DsfRblBD4WQv3UFqCTe0iFACg9buf YVCUI/E4phSR0oNEofaect0= =5XF0 -----END PGP SIGNATURE----- --DozTQjXnjm3C9Xhk-- From owner-cvs-all@FreeBSD.ORG Mon Aug 9 11:37:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E615216A4CE; Mon, 9 Aug 2004 11:37:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7C8143D3F; Mon, 9 Aug 2004 11:37:14 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79BbEJu055714; Mon, 9 Aug 2004 11:37:14 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79BbEGm055713; Mon, 9 Aug 2004 11:37:14 GMT (envelope-from pjd) Message-Id: <200408091137.i79BbEGm055713@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Mon, 9 Aug 2004 11:37:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:37:15 -0000 pjd 2004-08-09 11:37:14 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: And here I am. The first person from Poland in here. Revision Changes Path 1.128 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Mon Aug 9 11:38:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCC6D16A4CF; Mon, 9 Aug 2004 11:38:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C5E243D31; Mon, 9 Aug 2004 11:38:41 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Bcf87055767; Mon, 9 Aug 2004 11:38:41 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79BcfPU055766; Mon, 9 Aug 2004 11:38:41 GMT (envelope-from harti) Message-Id: <200408091138.i79BcfPU055766@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 9 Aug 2004 11:38:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile Makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:38:42 -0000 harti 2004-08-09 11:38:41 UTC FreeBSD src repository Modified files: . Makefile Makefile.inc1 Log: Make make recurse into sub-directories and sub-makes when given two -n flags. If only one -n flag is given the old behaviour is retained (POLA). In order to make this working for installworld change the IMAKEENV in this case so that the tools are found (we have no temporary installation environment in this case). Submitted by: ru (IMAKEENV part) Revision Changes Path 1.306 +7 -7 src/Makefile 1.434 +27 -22 src/Makefile.inc1 From owner-cvs-all@FreeBSD.ORG Mon Aug 9 11:48:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A9A116A4CE; Mon, 9 Aug 2004 11:48:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CBF943D2D; Mon, 9 Aug 2004 11:48:17 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79BmHDR056072; Mon, 9 Aug 2004 11:48:17 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79BmHFi056071; Mon, 9 Aug 2004 11:48:17 GMT (envelope-from blackend) Message-Id: <200408091148.i79BmHFi056071@repoman.freebsd.org> From: Marc Fonvieille Date: Mon, 9 Aug 2004 11:48:17 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/network-servers chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:48:17 -0000 blackend 2004-08-09 11:48:17 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/network-servers chapter.sgml Log: - s/Windows/&windows; - add a missing Revision Changes Path 1.21 +2 -2 doc/en_US.ISO8859-1/books/handbook/network-servers/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 11:51:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AC3916A4CE; Mon, 9 Aug 2004 11:51:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BC6643D1F; Mon, 9 Aug 2004 11:51:38 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Bpba3056207; Mon, 9 Aug 2004 11:51:37 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Bpbae056206; Mon, 9 Aug 2004 11:51:37 GMT (envelope-from roam) Message-Id: <200408091151.i79Bpbae056206@repoman.freebsd.org> From: Peter Pentchev Date: Mon, 9 Aug 2004 11:51:37 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/porters-handbook book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 11:51:38 -0000 roam 2004-08-09 11:51:37 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: Add a blurb about changing CR/LF to LF to the patching section. PR: 69086 Submitted by: Alexey Dokuchaev (mostly) Reviewed by: keramida Revision Changes Path 1.476 +19 -0 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 12:00:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C6AD16A4DC; Mon, 9 Aug 2004 12:00:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1745B43D60; Mon, 9 Aug 2004 12:00:48 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79C0lxY056462; Mon, 9 Aug 2004 12:00:47 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79C0liw056461; Mon, 9 Aug 2004 12:00:47 GMT (envelope-from roam) Message-Id: <200408091200.i79C0liw056461@repoman.freebsd.org> From: Peter Pentchev Date: Mon, 9 Aug 2004 12:00:47 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 12:00:58 -0000 roam 2004-08-09 12:00:47 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml Log: Emphasize a bit the need for an all-ones netmask on "secondary" interface addresses. PR: 68746 Reported by: Dave Duchscher Reviewed by: keramida Revision Changes Path 1.164 +12 -2 doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 12:01:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C19C416A4FE; Mon, 9 Aug 2004 12:01:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A443643D2F; Mon, 9 Aug 2004 12:01:24 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79C1O7x056566; Mon, 9 Aug 2004 12:01:24 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79C1Onj056565; Mon, 9 Aug 2004 12:01:24 GMT (envelope-from obrien) Message-Id: <200408091201.i79C1Onj056565@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 12:01:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/vim Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 12:01:24 -0000 obrien 2004-08-09 12:01:24 UTC FreeBSD ports repository Modified files: editors/vim Makefile Log: Add more MLINKS. Reviewed by: vs Revision Changes Path 1.259 +3 -3 ports/editors/vim/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 12:01:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 945CC16A592; Mon, 9 Aug 2004 12:01:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75EA043D2D; Mon, 9 Aug 2004 12:01:33 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79C1XJH056606; Mon, 9 Aug 2004 12:01:33 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79C1X4r056605; Mon, 9 Aug 2004 12:01:33 GMT (envelope-from sem) Message-Id: <200408091201.i79C1X4r056605@repoman.freebsd.org> From: Sergey Matveychuk Date: Mon, 9 Aug 2004 12:01:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/dbconnect/files patch-src::dbconnect::dbconnect.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 12:01:33 -0000 sem 2004-08-09 12:01:33 UTC FreeBSD ports repository Added files: databases/dbconnect/files patch-src::dbconnect::dbconnect.cpp Log: fix build with gcc 3.4 Revision Changes Path 1.1 +24 -0 ports/databases/dbconnect/files/patch-src::dbconnect::dbconnect.cpp (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 12:01:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD39916A4D1; Mon, 9 Aug 2004 12:01:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CE5243D2D; Mon, 9 Aug 2004 12:01:52 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79C1q2K056631; Mon, 9 Aug 2004 12:01:52 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79C1qfE056630; Mon, 9 Aug 2004 12:01:52 GMT (envelope-from blackend) Message-Id: <200408091201.i79C1qfE056630@repoman.freebsd.org> From: Marc Fonvieille Date: Mon, 9 Aug 2004 12:01:52 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/multimedia chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 12:01:52 -0000 blackend 2004-08-09 12:01:52 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/multimedia chapter.sgml Log: s||| where needed. Revision Changes Path 1.88 +1 -1 doc/en_US.ISO8859-1/books/handbook/multimedia/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 12:02:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C08AF16A4CE; Mon, 9 Aug 2004 12:02:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1BA543D31; Mon, 9 Aug 2004 12:02:32 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79C2Whi056677; Mon, 9 Aug 2004 12:02:32 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79C2WAl056676; Mon, 9 Aug 2004 12:02:32 GMT (envelope-from sos) Message-Id: <200408091202.i79C2WAl056676@repoman.freebsd.org> From: Søren Schmidt Date: Mon, 9 Aug 2004 12:02:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-all.c ata-queue.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 12:02:32 -0000 sos 2004-08-09 12:02:32 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-queue.c Log: Close a race in ata_reinit(). Revision Changes Path 1.220 +7 -0 src/sys/dev/ata/ata-all.c 1.31 +0 -3 src/sys/dev/ata/ata-queue.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 12:17:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E03116A4CE; Mon, 9 Aug 2004 12:17:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E51043D54; Mon, 9 Aug 2004 12:17:16 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79CHGFD057109; Mon, 9 Aug 2004 12:17:16 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79CHGPO057108; Mon, 9 Aug 2004 12:17:16 GMT (envelope-from vs) Message-Id: <200408091217.i79CHGPO057108@repoman.freebsd.org> From: Volker Stolz Date: Mon, 9 Aug 2004 12:17:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/transcode/files patch-import:decode_dv.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 12:17:16 -0000 vs 2004-08-09 12:17:15 UTC FreeBSD ports repository Added files: multimedia/transcode/files patch-import:decode_dv.c Log: Fix build problems using WITH_LIBDV since the libdv upgrade. PR: ports/70187 Submitted by: Hendrik Scholz (maintainer) Revision Changes Path 1.1 +13 -0 ports/multimedia/transcode/files/patch-import:decode_dv.c (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 12:41:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B97F16A4CE; Mon, 9 Aug 2004 12:41:55 +0000 (GMT) Received: from darkness.comp.waw.pl (darkness.comp.waw.pl [195.117.238.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id E644343D3F; Mon, 9 Aug 2004 12:41:54 +0000 (GMT) (envelope-from pjd@darkness.comp.waw.pl) Received: by darkness.comp.waw.pl (Postfix, from userid 1009) id 55CF5ACAE3; Mon, 9 Aug 2004 14:41:53 +0200 (CEST) Date: Mon, 9 Aug 2004 14:41:53 +0200 From: Pawel Jakub Dawidek To: John-Mark Gurney Message-ID: <20040809124153.GN628@darkness.comp.waw.pl> References: <200408061506.i76F66sl018247@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="20XocjIeMTCm4X0r" Content-Disposition: inline In-Reply-To: <200408061506.i76F66sl018247@repoman.freebsd.org> User-Agent: Mutt/1.4.2i X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 5.2.1-RC2 i386 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/common help.common src/sys/boot/forth loader.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 12:41:55 -0000 --20XocjIeMTCm4X0r Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Aug 06, 2004 at 03:06:06PM +0000, John-Mark Gurney wrote: +> jmg 2004-08-06 15:06:06 UTC +>=20 +> FreeBSD src repository +>=20 +> Modified files: +> sys/boot/common help.common=20 +> sys/boot/forth loader.conf=20 +> Log: +> remove /boot/kernel from the default path.. There is already code that +> will prepend the current kernel booting... This prevents a problem of +> loading /boot/kernel's modules when a different kernel has no modules, +> but you left your module_load=3D"YES" in loader.conf... +> =20 +> Reviewed by: dcs (minus the help part) If kernel name is given for the 'boot' command, '/boot/' path is probably added to kern.module_path, but for normal boot process it is not, so kern.module_path is set only to "/boot/modules". Some applications depend on this sysctl and they don't work properly now. Please fix. --=20 Pawel Jakub Dawidek http://www.FreeBSD.org pjd@FreeBSD.org http://garage.freebsd.pl FreeBSD committer Am I Evil? Yes, I Am! --20XocjIeMTCm4X0r Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBF3ERForvXbEpPzQRAk2yAJ4uZY/ZUiErB/igchYwlwJJz9YMmgCg0bYG rxamJZ46fXAt25sW07TABmc= =gpvO -----END PGP SIGNATURE----- --20XocjIeMTCm4X0r-- From owner-cvs-all@FreeBSD.ORG Mon Aug 9 12:53:30 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BFFE16A4CE; Mon, 9 Aug 2004 12:53:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CA5B43D45; Mon, 9 Aug 2004 12:53:30 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79CrTUC058077; Mon, 9 Aug 2004 12:53:29 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79CrT8k058076; Mon, 9 Aug 2004 12:53:29 GMT (envelope-from mezz) Message-Id: <200408091253.i79CrT8k058076@repoman.freebsd.org> From: Jeremy Messenger Date: Mon, 9 Aug 2004 12:53:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/fluxbox Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 12:53:30 -0000 mezz 2004-08-09 12:53:29 UTC FreeBSD ports repository Modified files: x11-wm/fluxbox Makefile Log: fluxbox-devel will merging into fluxbox sometime later when 1.0 is released, so I shall take the maintainership. Revision Changes Path 1.33 +1 -1 ports/x11-wm/fluxbox/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 12:58:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39DB116A4CE; Mon, 9 Aug 2004 12:58:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A54C43D2F; Mon, 9 Aug 2004 12:58:06 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Cw58W058222; Mon, 9 Aug 2004 12:58:06 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Cw5pw058221; Mon, 9 Aug 2004 12:58:05 GMT (envelope-from roam) Message-Id: <200408091258.i79Cw5pw058221@repoman.freebsd.org> From: Peter Pentchev Date: Mon, 9 Aug 2004 12:58:05 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 12:58:06 -0000 roam 2004-08-09 12:58:05 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml Log: Chase the change of the default value of vfs.vmiodirenable to 1: there were parts of the text that still spoke of 'turning it on' or 'keeping it off'. PR: 70005 Submitted by: Marju Ignatjeva Revision Changes Path 1.165 +4 -4 doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 12:58:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2710A16A517; Mon, 9 Aug 2004 12:58:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E888A43D2F; Mon, 9 Aug 2004 12:58:07 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Cw7mU058253; Mon, 9 Aug 2004 12:58:07 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Cw7ug058252; Mon, 9 Aug 2004 12:58:07 GMT (envelope-from vs) Message-Id: <200408091258.i79Cw7ug058252@repoman.freebsd.org> From: Volker Stolz Date: Mon, 9 Aug 2004 12:58:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/gaim Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 12:58:08 -0000 vs 2004-08-09 12:58:07 UTC FreeBSD ports repository Modified files: japanese/gaim Makefile distinfo Log: Update to 0.81 PR: ports/70191 Submitted by: Takahiro MORISHITA (maintainer) Revision Changes Path 1.15 +1 -3 ports/japanese/gaim/Makefile 1.12 +4 -4 ports/japanese/gaim/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 12:59:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAA7616A4CE; Mon, 9 Aug 2004 12:59:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC50A43D53; Mon, 9 Aug 2004 12:59:43 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79CxhZo058315; Mon, 9 Aug 2004 12:59:43 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79CxhYE058314; Mon, 9 Aug 2004 12:59:43 GMT (envelope-from den) Message-Id: <200408091259.i79CxhYE058314@repoman.freebsd.org> From: Denis Peplin Date: Mon, 9 Aug 2004 12:59:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 12:59:43 -0000 den 2004-08-09 12:59:43 UTC FreeBSD src repository (doc committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add myself to USSR count :) Revision Changes Path 1.129 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Mon Aug 9 13:03:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1F9CD16A4CE; Mon, 9 Aug 2004 13:03:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01AD143D31; Mon, 9 Aug 2004 13:03:11 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79D3A7D058444; Mon, 9 Aug 2004 13:03:10 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79D3AN8058443; Mon, 9 Aug 2004 13:03:10 GMT (envelope-from blackend) Message-Id: <200408091303.i79D3AN8058443@repoman.freebsd.org> From: Marc Fonvieille Date: Mon, 9 Aug 2004 13:03:10 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/network-servers chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 13:03:11 -0000 blackend 2004-08-09 13:03:10 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/network-servers chapter.sgml Log: In Samba section: - Add missing username and application tags - Try to be consistent on application tags use: deamons should be tagged with these tags when possible - Add missing entities (&unix; and &windows;) More fixes are needed, I'll do it later. Revision Changes Path 1.22 +7 -7 doc/en_US.ISO8859-1/books/handbook/network-servers/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 13:11:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E215516A4CE; Mon, 9 Aug 2004 13:11:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C451843D54; Mon, 9 Aug 2004 13:11:05 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79DB5DY058732; Mon, 9 Aug 2004 13:11:05 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79DB5DZ058731; Mon, 9 Aug 2004 13:11:05 GMT (envelope-from sem) Message-Id: <200408091311.i79DB5DZ058731@repoman.freebsd.org> From: Sergey Matveychuk Date: Mon, 9 Aug 2004 13:11:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/savelogs Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 13:11:06 -0000 sem 2004-08-09 13:11:05 UTC FreeBSD ports repository Modified files: sysutils/savelogs Makefile distinfo Log: update to 1.70 PR: ports/70209 Submitted by: maintainer Revision Changes Path 1.2 +1 -1 ports/sysutils/savelogs/Makefile 1.2 +2 -2 ports/sysutils/savelogs/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 13:22:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0CE916A4CE; Mon, 9 Aug 2004 13:22:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0CAF43D5E; Mon, 9 Aug 2004 13:22:44 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79DMi0p058992; Mon, 9 Aug 2004 13:22:44 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79DMi20058991; Mon, 9 Aug 2004 13:22:44 GMT (envelope-from ru) Message-Id: <200408091322.i79DMi20058991@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 9 Aug 2004 13:22:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man7 release.7 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 13:22:45 -0000 ru 2004-08-09 13:22:44 UTC FreeBSD src repository Modified files: share/man/man7 release.7 Log: Fix a documentation bug: "make release" uses "make buildworld" not "make world", as the first step of building the release. While here, remove another mention of "make world", as the latter is no longer supported by src/Makefile. Revision Changes Path 1.44 +3 -4 src/share/man/man7/release.7 From owner-cvs-all@FreeBSD.ORG Mon Aug 9 13:25:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83BF116A4CE; Mon, 9 Aug 2004 13:25:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18EC943D49; Mon, 9 Aug 2004 13:25:07 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79DP6QM059066; Mon, 9 Aug 2004 13:25:06 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79DP6rV059065; Mon, 9 Aug 2004 13:25:06 GMT (envelope-from ru) Message-Id: <200408091325.i79DP6rV059065@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 9 Aug 2004 13:25:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man7 build.7 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 13:25:13 -0000 ru 2004-08-09 13:25:06 UTC FreeBSD src repository Modified files: share/man/man7 build.7 Log: Remove another mention of "make world". Revision Changes Path 1.26 +1 -5 src/share/man/man7/build.7 From owner-cvs-all@FreeBSD.ORG Mon Aug 9 13:30:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44FED16A4CE; Mon, 9 Aug 2004 13:30:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2539B43D45; Mon, 9 Aug 2004 13:30:29 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79DUTjc059236; Mon, 9 Aug 2004 13:30:29 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79DUTH1059234; Mon, 9 Aug 2004 13:30:29 GMT (envelope-from mat) Message-Id: <200408091330.i79DUTH1059234@repoman.freebsd.org> From: Mathieu Arnold Date: Mon, 9 Aug 2004 13:30:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Devel-PPPort Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 13:30:29 -0000 mat 2004-08-09 13:30:28 UTC FreeBSD ports repository Modified files: devel/p5-Devel-PPPort Makefile distinfo Log: Update to 2.99.02 Revision Changes Path 1.2 +1 -1 ports/devel/p5-Devel-PPPort/Makefile 1.2 +2 -2 ports/devel/p5-Devel-PPPort/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 13:43:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 780D216A4CE; Mon, 9 Aug 2004 13:43:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E57143D48; Mon, 9 Aug 2004 13:43:39 +0000 (GMT) (envelope-from yar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79DhdMr059618; Mon, 9 Aug 2004 13:43:39 GMT (envelope-from yar@repoman.freebsd.org) Received: (from yar@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79DhdP8059617; Mon, 9 Aug 2004 13:43:39 GMT (envelope-from yar) Message-Id: <200408091343.i79DhdP8059617@repoman.freebsd.org> From: Yar Tikhiy Date: Mon, 9 Aug 2004 13:43:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/date date.1 vary.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 13:43:39 -0000 yar 2004-08-09 13:43:39 UTC FreeBSD src repository Modified files: bin/date date.1 vary.c Log: Change the behaviour of `-v' so that, e.g., stepping a month back on March 31 won't take you to March 2 or 3 (now the result will be the last day of February.) In general, now stepping by months from the last days of the current month A will take you to the very last day of the target month B if B is shorter than A. The previous version would just step to March 31 and rely on mktime(3) to correct the date. Despite its simplicity, such way was counter-intuitive to users and caused pain to shell script writers. Noticed by: Igor Timkin Approved by: brian MFC after: 2 weeks Revision Changes Path 1.68 +23 -1 src/bin/date/date.1 1.16 +7 -0 src/bin/date/vary.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 13:45:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4417616A4CE; Mon, 9 Aug 2004 13:45:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24DF943D31; Mon, 9 Aug 2004 13:45:44 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Djisw059721; Mon, 9 Aug 2004 13:45:44 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Djino059720; Mon, 9 Aug 2004 13:45:44 GMT (envelope-from den) Message-Id: <200408091345.i79Djino059720@repoman.freebsd.org> From: Denis Peplin Date: Mon, 9 Aug 2004 13:45:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 13:45:44 -0000 den 2004-08-09 13:45:44 UTC FreeBSD src repository (doc committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Write my country name in standard form Requested by: ru Revision Changes Path 1.130 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Mon Aug 9 13:49:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 859A016A4CE; Mon, 9 Aug 2004 13:49:41 +0000 (GMT) Received: from plouf.absolight.net (plouf.absolight.net [212.43.217.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49FC043D5A; Mon, 9 Aug 2004 13:49:41 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by plouf.absolight.net (Postfix) with ESMTP id E746C4180; Mon, 9 Aug 2004 15:49:39 +0200 (CEST) Received: from plouf.absolight.net ([127.0.0.1])port 20024) with ESMTP id 76368-05; Mon, 9 Aug 2004 15:49:33 +0200 (CEST) X-Original-To: src-committers@FreeBSD.org X-Original-To: den@FreeBSD.org X-Original-To: cvs-src@FreeBSD.org X-Original-To: cvs-all@FreeBSD.org Received: from [192.168.8.51] (abeillemusiq.net4.nerim.net [62.212.120.194]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id 5DB174146; Mon, 9 Aug 2004 15:49:33 +0200 (CEST) Date: Mon, 09 Aug 2004 15:49:31 +0200 From: Mathieu Arnold To: Denis Peplin Message-ID: <78D10FAD8082250CB06BFA7F@[192.168.8.51]> In-Reply-To: <20040809134550.2AA4916A4D3@hub.freebsd.org> References: <20040809134550.2AA4916A4D3@hub.freebsd.org> X-Mailer: Mulberry/3.1.6 (Win32) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========175B48910924DB875779==========" X-Spam-Checker-Version: SpamAssassin 2.64-abso_2004012301 (2004-01-11) on plouf.absolight.net by root@absolight.fr X-Virus-Scanned: by amavisd-new at plouf.absolight.net X-Spam-Status: No, hits=-4.9 tagged_above=-10 required=5 tests=BAYES_00 X-Spam-Level: cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 13:49:41 -0000 --==========175B48910924DB875779========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +-le 09/08/2004 13:45 +0000, Denis Peplin a dit : | den 2004-08-09 13:45:44 UTC | | FreeBSD src repository (doc committer) | | Modified files: | usr.bin/calendar/calendars calendar.freebsd | Log: | Write my country name in standard form Maybe you who were born in the ex-USSR should choose between naming it USSR and Russian federation :-) -- Mathieu Arnold --==========175B48910924DB875779========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (MingW32) iQEVAwUBQReA71vROjYJ63c1AQLN1Qf+OHVIfQBYP8gZbk8X9m28Oyfsu0E2HD3R w+ftIAs54wEBJAgIeMx9lWvgD/GKkHschcTMBtAfvJynHLKnobj8DWckhbFx1TWZ +jSwKvvPUMYCGDKRtxAx36fhHUeHVl+QwRen3/YrtJyZhuPFx2NxsoQ938Xzz7a0 8OPNhbzmeozuKQlRGD0QCOVOjKLkHRf6mA8BaYppB7ImYGo6bed7iLvswb4IE0uF nVIQfaXPHY5Bp/22u2SFprID0NcsblKMqchTUFVUuNNkeZUU9R9MLDaS2z5Q8zRl SWqWx/QEbaYflONoHrCB2nkOzTs5vqALMmm7D77UYVw9VCBHTY55/A== =QgCe -----END PGP SIGNATURE----- --==========175B48910924DB875779==========-- From owner-cvs-all@FreeBSD.ORG Mon Aug 9 13:53:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D96316A4CE; Mon, 9 Aug 2004 13:53:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E42943D2D; Mon, 9 Aug 2004 13:53:11 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79DrAI7059974; Mon, 9 Aug 2004 13:53:10 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79DrAsW059973; Mon, 9 Aug 2004 13:53:10 GMT (envelope-from vs) Message-Id: <200408091353.i79DrAsW059973@repoman.freebsd.org> From: Volker Stolz Date: Mon, 9 Aug 2004 13:53:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/libtomcrypt Makefile distinfo pkg-plist ports/security/libtomcrypt/files patch-makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 13:53:11 -0000 vs 2004-08-09 13:53:10 UTC FreeBSD ports repository Modified files: security/libtomcrypt Makefile distinfo pkg-plist security/libtomcrypt/files patch-makefile Log: Update to 0.98 Closes PR: ports/68496 Submitted by: Wesley Shields, Yonatan Bokovza (maintainer) Revision Changes Path 1.3 +1 -1 ports/security/libtomcrypt/Makefile 1.3 +2 -2 ports/security/libtomcrypt/distinfo 1.2 +11 -21 ports/security/libtomcrypt/files/patch-makefile 1.3 +2 -21 ports/security/libtomcrypt/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 9 13:54:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33A4B16A4CE; Mon, 9 Aug 2004 13:54:05 +0000 (GMT) Received: from volginfo.ru (ns.volginfo.ru [217.23.84.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF18343D45; Mon, 9 Aug 2004 13:54:04 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from FreeBSD.org (llp-13.vistcom.ru [217.23.84.68]) by volginfo.ru (Postfix) with ESMTP id 08E6D2012; Mon, 9 Aug 2004 17:54:09 +0400 (MSD) Message-ID: <411781FA.8040309@FreeBSD.org> Date: Mon, 09 Aug 2004 17:54:02 +0400 From: Denis Peplin User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040205 X-Accept-Language: ru, en-us, en MIME-Version: 1.0 To: Mathieu Arnold References: <20040809134550.2AA4916A4D3@hub.freebsd.org> <78D10FAD8082250CB06BFA7F@[192.168.8.51]> In-Reply-To: <78D10FAD8082250CB06BFA7F@[192.168.8.51]> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 13:54:05 -0000 Hello! Mathieu Arnold wrote: > +-le 09/08/2004 13:45 +0000, Denis Peplin a dit : > | den 2004-08-09 13:45:44 UTC > | > | FreeBSD src repository (doc committer) > | > | Modified files: > | usr.bin/calendar/calendars calendar.freebsd > | Log: > | Write my country name in standard form > > Maybe you who were born in the ex-USSR should choose between naming it USSR > and Russian federation :-) > Done :) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 14:02:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E858716A4CE; Mon, 9 Aug 2004 14:02:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C82DA43D41; Mon, 9 Aug 2004 14:02:33 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79E2XMS060245; Mon, 9 Aug 2004 14:02:33 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79E2Xw1060244; Mon, 9 Aug 2004 14:02:33 GMT (envelope-from sem) Message-Id: <200408091402.i79E2Xw1060244@repoman.freebsd.org> From: Sergey Matveychuk Date: Mon, 9 Aug 2004 14:02:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/tcpwatch Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 14:02:34 -0000 sem 2004-08-09 14:02:33 UTC FreeBSD ports repository Modified files: net/tcpwatch Makefile distinfo pkg-descr Log: * Update to 1.3 * Update master site PR: ports/70208 Submitted by: maintainer Revision Changes Path 1.2 +2 -2 ports/net/tcpwatch/Makefile 1.2 +2 -2 ports/net/tcpwatch/distinfo 1.2 +1 -1 ports/net/tcpwatch/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Aug 9 14:02:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 58ECB16A4CE; Mon, 9 Aug 2004 14:02:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A68843D58; Mon, 9 Aug 2004 14:02:45 +0000 (GMT) (envelope-from mich@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79E2jKo060279; Mon, 9 Aug 2004 14:02:45 GMT (envelope-from mich@repoman.freebsd.org) Received: (from mich@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79E2j36060278; Mon, 9 Aug 2004 14:02:45 GMT (envelope-from mich) Message-Id: <200408091402.i79E2j36060278@repoman.freebsd.org> From: "Michael L. Hostbaek" Date: Mon, 9 Aug 2004 14:02:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/ah-tty/files patch-dillib_vty_vtansi.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 14:02:45 -0000 mich 2004-08-09 14:02:45 UTC FreeBSD ports repository Added files: sysutils/ah-tty/files patch-dillib_vty_vtansi.c Log: o add patch to fix build on amd64 and sparc64 Revision Changes Path 1.1 +21 -0 ports/sysutils/ah-tty/files/patch-dillib_vty_vtansi.c (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 14:03:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EB3716A4CE; Mon, 9 Aug 2004 14:03:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F41E143D58; Mon, 9 Aug 2004 14:03:12 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79E3CID060338; Mon, 9 Aug 2004 14:03:12 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79E3C8H060337; Mon, 9 Aug 2004 14:03:12 GMT (envelope-from oliver) Message-Id: <200408091403.i79E3C8H060337@repoman.freebsd.org> From: Oliver Lehmann Date: Mon, 9 Aug 2004 14:03:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/xawtv Makefile distinfo ports/multimedia/xawtv/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 14:03:13 -0000 oliver 2004-08-09 14:03:12 UTC FreeBSD ports repository Modified files: multimedia/xawtv Makefile distinfo multimedia/xawtv/files patch-configure Log: update to 3.93 Revision Changes Path 1.42 +4 -6 ports/multimedia/xawtv/Makefile 1.22 +2 -2 ports/multimedia/xawtv/distinfo 1.10 +4 -4 ports/multimedia/xawtv/files/patch-configure From owner-cvs-all@FreeBSD.ORG Mon Aug 9 14:12:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04A9F16A4CE; Mon, 9 Aug 2004 14:12:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB21843D4C; Mon, 9 Aug 2004 14:12:25 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79ECPSG060657; Mon, 9 Aug 2004 14:12:25 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79ECPCq060656; Mon, 9 Aug 2004 14:12:25 GMT (envelope-from arved) Message-Id: <200408091412.i79ECPCq060656@repoman.freebsd.org> From: Tilman Linneweh Date: Mon, 9 Aug 2004 14:12:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/annoyance-filter Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 14:12:26 -0000 arved 2004-08-09 14:12:25 UTC FreeBSD ports repository Modified files: mail/annoyance-filter Makefile distinfo Log: Update to 1.0d PR: 70070 Submitted by: Simon Barner (new maintainer) Revision Changes Path 1.2 +2 -2 ports/mail/annoyance-filter/Makefile 1.3 +2 -3 ports/mail/annoyance-filter/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 14:19:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FA8F16A4CE; Mon, 9 Aug 2004 14:19:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EC5043D2D; Mon, 9 Aug 2004 14:19:39 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79EJdIi060835; Mon, 9 Aug 2004 14:19:39 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79EJd6U060834; Mon, 9 Aug 2004 14:19:39 GMT (envelope-from vs) Message-Id: <200408091419.i79EJd6U060834@repoman.freebsd.org> From: Volker Stolz Date: Mon, 9 Aug 2004 14:19:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/cocoon Makefile Makefile.options Makefile.test-options X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 14:19:39 -0000 vs 2004-08-09 14:19:38 UTC FreeBSD ports repository Modified files: www/cocoon Makefile Makefile.options Makefile.test-options Log: * Handle recursive dependencies when dealing with blocks selected by the user. * Handle deprecated blocks. * Select all non-deprecated blocks by default. PR: ports/69944 Submitted by: Jean-Baptiste Quenot (maintainer) Revision Changes Path 1.28 +3 -2 ports/www/cocoon/Makefile 1.2 +54 -53 ports/www/cocoon/Makefile.options 1.2 +48 -0 ports/www/cocoon/Makefile.test-options From owner-cvs-all@FreeBSD.ORG Mon Aug 9 14:22:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C70316A4D0; Mon, 9 Aug 2004 14:22:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DD1943D31; Mon, 9 Aug 2004 14:22:58 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79EMwCC060966; Mon, 9 Aug 2004 14:22:58 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79EMwF4060965; Mon, 9 Aug 2004 14:22:58 GMT (envelope-from sos) Message-Id: <200408091422.i79EMwF4060965@repoman.freebsd.org> From: Søren Schmidt Date: Mon, 9 Aug 2004 14:22:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-raid.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 14:22:58 -0000 sos 2004-08-09 14:22:58 UTC FreeBSD src repository Modified files: sys/dev/ata ata-raid.c Log: Fix bad free() usage. Submitted by: Pawel Jakub Dawidek Revision Changes Path 1.81 +8 -2 src/sys/dev/ata/ata-raid.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 14:26:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94EB816A4D0; Mon, 9 Aug 2004 14:26:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7412F43D54; Mon, 9 Aug 2004 14:26:01 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79EQ1fh061122; Mon, 9 Aug 2004 14:26:01 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79EQ14G061121; Mon, 9 Aug 2004 14:26:01 GMT (envelope-from maho) Message-Id: <200408091426.i79EQ14G061121@repoman.freebsd.org> From: Maho Nakata Date: Mon, 9 Aug 2004 14:26:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-1.1 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 14:26:01 -0000 maho 2004-08-09 14:26:01 UTC FreeBSD ports repository Modified files: editors/openoffice-1.1 Makefile Log: Cosmetic change o move MAINTAINER appropreate position Revision Changes Path 1.154 +3 -2 ports/editors/openoffice-1.1/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 14:31:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3655D16A4CE; Mon, 9 Aug 2004 14:31:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16F2E43D1F; Mon, 9 Aug 2004 14:31:21 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79EVKBk061316; Mon, 9 Aug 2004 14:31:20 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79EVKZU061315; Mon, 9 Aug 2004 14:31:20 GMT (envelope-from arved) Message-Id: <200408091431.i79EVKZU061315@repoman.freebsd.org> From: Tilman Linneweh Date: Mon, 9 Aug 2004 14:31:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/p5-Lingua-Stem Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 14:31:21 -0000 arved 2004-08-09 14:31:20 UTC FreeBSD ports repository Modified files: textproc/p5-Lingua-Stem Makefile distinfo Log: Update to 0.70 Add dependency on p5-Lingua-Stem-Fr PR: 67269 Submitted by: Thorsten Greiner Revision Changes Path 1.3 +2 -2 ports/textproc/p5-Lingua-Stem/Makefile 1.3 +2 -2 ports/textproc/p5-Lingua-Stem/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 14:43:51 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E47116A4CE; Mon, 9 Aug 2004 14:43:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0098F43D1F; Mon, 9 Aug 2004 14:43:51 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Ehoxv061633; Mon, 9 Aug 2004 14:43:50 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Ehor1061632; Mon, 9 Aug 2004 14:43:50 GMT (envelope-from des) Message-Id: <200408091443.i79Ehor1061632@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 9 Aug 2004 14:43:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/bsdlabel bsdlabel.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 14:43:51 -0000 des 2004-08-09 14:43:50 UTC FreeBSD src repository Modified files: sbin/bsdlabel bsdlabel.c Log: The multiplier prefix is actually a multiplier suffix. Revision Changes Path 1.108 +1 -1 src/sbin/bsdlabel/bsdlabel.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 15:10:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CA3916A4CE; Mon, 9 Aug 2004 15:10:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D25443D46; Mon, 9 Aug 2004 15:10:04 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79FA3E7062309; Mon, 9 Aug 2004 15:10:03 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79FA3FB062308; Mon, 9 Aug 2004 15:10:03 GMT (envelope-from eik) Message-Id: <200408091510.i79FA3FB062308@repoman.freebsd.org> From: Oliver Eikemeier Date: Mon, 9 Aug 2004 15:10:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 15:10:04 -0000 eik 2004-08-09 15:10:03 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: add ImageMagick to the list of png-vulnerable ports Revision Changes Path 1.162 +7 -2 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 15:29:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E1E416A4CE; Mon, 9 Aug 2004 15:29:14 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9613C43D55; Mon, 9 Aug 2004 15:29:13 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i79FSPss059717; Mon, 9 Aug 2004 09:28:25 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 09 Aug 2004 09:28:24 -0600 (MDT) Message-Id: <20040809.092824.11587387.imp@bsdimp.com> To: johan@FreeBSD.ORG From: "M. Warner Losh" In-Reply-To: <20040809061817.GA53369@numeri.campus.luth.se> References: <200408031856.i73IuV8c082723@repoman.freebsd.org> <7mllgolwsk.wl@black.imgsrc.co.jp> <20040809061817.GA53369@numeri.campus.luth.se> 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 cc: kuriyama@imgsrc.co.jp cc: src-committers@FreeBSD.ORG cc: harti@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: cvs-src@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 15:29:14 -0000 In message: <20040809061817.GA53369@numeri.campus.luth.se> Johan Karlsson writes: : On Mon, Aug 09, 2004 at 14:12 (+0900), Jun Kuriyama wrote: : > At Tue, 3 Aug 2004 18:56:31 +0000 (UTC), : > Hartmut Brandt wrote: : > > Log: : > > Put variable assignments from the command line into the MAKEFLAGS : > > variable as required by POSIX. This causes such variables to be : > > pushed into all sub-makes called by the make (except when the MAKEFLAGS : > > variable is explicitely changed in the sub-make's environment). : > > This makes them also mostly un-overrideable in sub-makes except on the : > > sub-make's command line. Therefor specifying 'make CC=icc' will cause : > > icc to be used as C compiler in all sub-makes no matter what the Makefiles : > > itself try to do to the CC variable. : > > : > > This patch also corrects the handling of the MFLAGS variable. MFLAGS : > > contains all the command line flags but not the command line variable : > > assignments. The evaluation of the .MFLAGS or .MAKEFLAGS target now : > > changes both MFLAGS and MAKEFLAGS (they used to change MAKEFLAGS only). : > > Makefiles can use MFLAGS for their own purposes given that they do not : > > except MFLAGS to be undefined at the beginning and that they don't evaluate : > > .MFLAGS or .MAKEFLAGS. MFLAGS should be removed for POSIX compliance, : > > but it is unfortunately heavily used by the X makefiles. : > : > I'm using MAKEOBJDIRPREFIX as a make argument to build the world. : : Don't. : According to make(1) it is an environment variable. The current man page is stunningly vague about this. It says that it respects these environment variables, but it doesn't say they have to be set in the enviornment to the exclusion of setting them on the command line. Warner From owner-cvs-all@FreeBSD.ORG Mon Aug 9 15:29:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C916616A4CE; Mon, 9 Aug 2004 15:29:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C01D243D4C; Mon, 9 Aug 2004 15:29:41 +0000 (GMT) (envelope-from dds@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79FTfJJ063393; Mon, 9 Aug 2004 15:29:41 GMT (envelope-from dds@repoman.freebsd.org) Received: (from dds@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79FTftx063392; Mon, 9 Aug 2004 15:29:41 GMT (envelope-from dds) Message-Id: <200408091529.i79FTftx063392@repoman.freebsd.org> From: Diomidis Spinellis Date: Mon, 9 Aug 2004 15:29:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/sed compile.c defs.h extern.h main.c misc.c process.c sed.1 src/usr.bin/sed/TEST sed.test X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 15:29:42 -0000 dds 2004-08-09 15:29:41 UTC FreeBSD src repository Modified files: usr.bin/sed compile.c defs.h extern.h main.c misc.c process.c sed.1 usr.bin/sed/TEST sed.test Log: Per letter dated July 22, 1999 remove 3rd clause of Berkeley derived software (original contributor). Reviewed by: imp Revision Changes Path 1.4 +0 -4 src/usr.bin/sed/TEST/sed.test 1.26 +0 -4 src/usr.bin/sed/compile.c 1.5 +0 -4 src/usr.bin/sed/defs.h 1.13 +0 -4 src/usr.bin/sed/extern.h 1.34 +0 -4 src/usr.bin/sed/main.c 1.10 +0 -4 src/usr.bin/sed/misc.c 1.38 +0 -4 src/usr.bin/sed/process.c 1.38 +0 -4 src/usr.bin/sed/sed.1 From owner-cvs-all@FreeBSD.ORG Mon Aug 9 15:31:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D20D816A4CF; Mon, 9 Aug 2004 15:31:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA61B43D66; Mon, 9 Aug 2004 15:31:17 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79FVHqT063519; Mon, 9 Aug 2004 15:31:17 GMT (envelope-from hq@repoman.freebsd.org) Received: (from hq@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79FVHLL063518; Mon, 9 Aug 2004 15:31:17 GMT (envelope-from hq) Message-Id: <200408091531.i79FVHLL063518@repoman.freebsd.org> From: Herve Quiroz Date: Mon, 9 Aug 2004 15:31:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/wmi Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 15:31:18 -0000 hq 2004-08-09 15:31:17 UTC FreeBSD ports repository Modified files: x11-wm/wmi Makefile distinfo Log: - Update to version 9 PR: ports/70192 Submitted by: Wesley Shields (maintainer) Approved by: glewis (mentor) Revision Changes Path 1.3 +1 -1 ports/x11-wm/wmi/Makefile 1.3 +2 -2 ports/x11-wm/wmi/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 15:43:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B80A16A4CE; Mon, 9 Aug 2004 15:43:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B8DB43D4C; Mon, 9 Aug 2004 15:43:15 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79FhFKO063880; Mon, 9 Aug 2004 15:43:15 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79FhFth063879; Mon, 9 Aug 2004 15:43:15 GMT (envelope-from hrs) Message-Id: <200408091543.i79FhFth063879@repoman.freebsd.org> From: Hiroki Sato Date: Mon, 9 Aug 2004 15:43:15 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/ja includes.xsl index.xsl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 15:43:15 -0000 hrs 2004-08-09 15:43:15 UTC FreeBSD doc repository Modified files: ja includes.xsl index.xsl Log: Fix a broken link. Pointed out by: roybryant at seventwentyfour dot com Revision Changes Path 1.21 +2 -3 www/ja/includes.xsl 1.37 +3 -3 www/ja/index.xsl From owner-cvs-all@FreeBSD.ORG Mon Aug 9 15:44:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B1E3416A4CE; Mon, 9 Aug 2004 15:44:19 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35EFA43D31; Mon, 9 Aug 2004 15:44:19 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i79FfBxc059893; Mon, 9 Aug 2004 09:41:11 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 09 Aug 2004 09:41:10 -0600 (MDT) Message-Id: <20040809.094110.04712576.imp@bsdimp.com> To: johan@FreeBSD.ORG From: "M. Warner Losh" In-Reply-To: <20040809.092824.11587387.imp@bsdimp.com> References: <7mllgolwsk.wl@black.imgsrc.co.jp> <20040809061817.GA53369@numeri.campus.luth.se> <20040809.092824.11587387.imp@bsdimp.com> 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 cc: kuriyama@imgsrc.co.jp cc: src-committers@FreeBSD.ORG cc: harti@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: cvs-src@FreeBSD.ORG Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 15:44:20 -0000 In message: <20040809.092824.11587387.imp@bsdimp.com> "M. Warner Losh" writes: : In message: <20040809061817.GA53369@numeri.campus.luth.se> : Johan Karlsson writes: : : On Mon, Aug 09, 2004 at 14:12 (+0900), Jun Kuriyama wrote: : : > At Tue, 3 Aug 2004 18:56:31 +0000 (UTC), : : > Hartmut Brandt wrote: : : > > Log: : : > > Put variable assignments from the command line into the MAKEFLAGS : : > > variable as required by POSIX. This causes such variables to be : : > > pushed into all sub-makes called by the make (except when the MAKEFLAGS : : > > variable is explicitely changed in the sub-make's environment). : : > > This makes them also mostly un-overrideable in sub-makes except on the : : > > sub-make's command line. Therefor specifying 'make CC=icc' will cause : : > > icc to be used as C compiler in all sub-makes no matter what the Makefiles : : > > itself try to do to the CC variable. : : > > : : > > This patch also corrects the handling of the MFLAGS variable. MFLAGS : : > > contains all the command line flags but not the command line variable : : > > assignments. The evaluation of the .MFLAGS or .MAKEFLAGS target now : : > > changes both MFLAGS and MAKEFLAGS (they used to change MAKEFLAGS only). : : > > Makefiles can use MFLAGS for their own purposes given that they do not : : > > except MFLAGS to be undefined at the beginning and that they don't evaluate : : > > .MFLAGS or .MAKEFLAGS. MFLAGS should be removed for POSIX compliance, : : > > but it is unfortunately heavily used by the X makefiles. : : > : : > I'm using MAKEOBJDIRPREFIX as a make argument to build the world. : : : : Don't. : : According to make(1) it is an environment variable. : : The current man page is stunningly vague about this. It says that it : respects these environment variables, but it doesn't say they have to : be set in the enviornment to the exclusion of setting them on the : command line. So either we can make it work, or document that the variables listed in the environment section must be set as environment variables only. Warner From owner-cvs-all@FreeBSD.ORG Mon Aug 9 15:48:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 199B416A4CE; Mon, 9 Aug 2004 15:48:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE2A443D53; Mon, 9 Aug 2004 15:48:55 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79FmtTP064039; Mon, 9 Aug 2004 15:48:55 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Fmt35064038; Mon, 9 Aug 2004 15:48:55 GMT (envelope-from vs) Message-Id: <200408091548.i79Fmt35064038@repoman.freebsd.org> From: Volker Stolz Date: Mon, 9 Aug 2004 15:48:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators/fmsx Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 15:48:56 -0000 vs 2004-08-09 15:48:55 UTC FreeBSD ports repository Modified files: emulators/fmsx Makefile pkg-plist Log: Add BPP8-option PR: ports/68925 Submitted by: Eugene Grosbein Approved by: maintainer timeout Revision Changes Path 1.18 +8 -4 ports/emulators/fmsx/Makefile 1.4 +15 -15 ports/emulators/fmsx/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 9 15:55:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1808A16A4CE; Mon, 9 Aug 2004 15:55:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBD2A43D31; Mon, 9 Aug 2004 15:55:07 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Ft7jf064244; Mon, 9 Aug 2004 15:55:07 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Ft7wG064243; Mon, 9 Aug 2004 15:55:07 GMT (envelope-from vanilla) Message-Id: <200408091555.i79Ft7wG064243@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Mon, 9 Aug 2004 15:55:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/p5-Net-Amazon Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 15:55:08 -0000 vanilla 2004-08-09 15:55:07 UTC FreeBSD ports repository Modified files: net/p5-Net-Amazon Makefile distinfo Log: Update to 0.28. PR: ports/70155 Submitted by: maintainer Revision Changes Path 1.7 +4 -1 ports/net/p5-Net-Amazon/Makefile 1.7 +2 -2 ports/net/p5-Net-Amazon/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 15:55:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBA2316A4F5; Mon, 9 Aug 2004 15:55:15 +0000 (GMT) Received: from n33.kp.t-systems-sfr.com (n33.kp.t-systems-sfr.com [129.247.16.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60D3F43D31; Mon, 9 Aug 2004 15:55:14 +0000 (GMT) (envelope-from harti@freebsd.org) Received: from n81.sp.op.dlr.de (n81g.sp.op.dlr.de [129.247.163.1]) i79FsqX324526; Mon, 9 Aug 2004 17:54:53 +0200 Received: from zeus.nt.op.dlr.de (zeus.nt.op.dlr.de [129.247.173.3]) i79Fsqf185600; Mon, 9 Aug 2004 17:54:52 +0200 Received: from beagle.kn.op.dlr.de (opkndnwsbsd178 [129.247.173.178]) by zeus.nt.op.dlr.de (8.11.7+Sun/8.9.1) with ESMTP id i79Fsoe00704; Mon, 9 Aug 2004 17:54:50 +0200 (MET DST) Date: Mon, 9 Aug 2004 17:54:51 +0200 (CEST) From: Harti Brandt X-X-Sender: brandt@beagle.kn.op.dlr.de To: "M. Warner Losh" In-Reply-To: <20040809.094110.04712576.imp@bsdimp.com> Message-ID: <20040809174540.U32590@beagle.kn.op.dlr.de> References: <7mllgolwsk.wl@black.imgsrc.co.jp> <20040809061817.GA53369@numeri.campus.luth.se> <20040809.094110.04712576.imp@bsdimp.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: kuriyama@imgsrc.co.jp cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: johan@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Harti Brandt List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 15:55:16 -0000 On Mon, 9 Aug 2004, M. Warner Losh wrote: MWL>In message: <20040809.092824.11587387.imp@bsdimp.com> MWL> "M. Warner Losh" writes: MWL>: In message: <20040809061817.GA53369@numeri.campus.luth.se> MWL>: Johan Karlsson writes: MWL>: : On Mon, Aug 09, 2004 at 14:12 (+0900), Jun Kuriyama wrote: MWL>: : > At Tue, 3 Aug 2004 18:56:31 +0000 (UTC), MWL>: : > Hartmut Brandt wrote: MWL>: : > > Log: MWL>: : > > Put variable assignments from the command line into the MAKEFLAGS MWL>: : > > variable as required by POSIX. This causes such variables to be MWL>: : > > pushed into all sub-makes called by the make (except when the MAKEFLAGS MWL>: : > > variable is explicitely changed in the sub-make's environment). MWL>: : > > This makes them also mostly un-overrideable in sub-makes except on the MWL>: : > > sub-make's command line. Therefor specifying 'make CC=icc' will cause MWL>: : > > icc to be used as C compiler in all sub-makes no matter what the Makefiles MWL>: : > > itself try to do to the CC variable. MWL>: : > > MWL>: : > > This patch also corrects the handling of the MFLAGS variable. MFLAGS MWL>: : > > contains all the command line flags but not the command line variable MWL>: : > > assignments. The evaluation of the .MFLAGS or .MAKEFLAGS target now MWL>: : > > changes both MFLAGS and MAKEFLAGS (they used to change MAKEFLAGS only). MWL>: : > > Makefiles can use MFLAGS for their own purposes given that they do not MWL>: : > > except MFLAGS to be undefined at the beginning and that they don't evaluate MWL>: : > > .MFLAGS or .MAKEFLAGS. MFLAGS should be removed for POSIX compliance, MWL>: : > > but it is unfortunately heavily used by the X makefiles. MWL>: : > MWL>: : > I'm using MAKEOBJDIRPREFIX as a make argument to build the world. MWL>: : MWL>: : Don't. MWL>: : According to make(1) it is an environment variable. MWL>: MWL>: The current man page is stunningly vague about this. It says that it MWL>: respects these environment variables, but it doesn't say they have to MWL>: be set in the enviornment to the exclusion of setting them on the MWL>: command line. MWL> MWL>So either we can make it work, or document that the variables listed MWL>in the environment section must be set as environment variables only. There is nothing to be made work. Both variables are intended to be used as environment variables. That they happend to work from the command line was a side effect of make putting its variables into the environment. Does the following clarify things enough? harti Index: make.1 =================================================================== RCS file: /local/cvs/freebsd/src/usr.bin/make/make.1,v retrieving revision 1.77 diff -u -r1.77 make.1 --- make.1 4 Aug 2004 15:10:35 -0000 1.77 +++ make.1 9 Aug 2004 15:51:47 -0000 @@ -533,6 +533,13 @@ .Nm is unable to change into any of the remaining three directories, then the current directory is used. +Note, that +.Ev MAKEOBJDIRPREFIX +and +.Ev MAKEOBJDIR +must be environment variables and should not be set on +.Nm Ns 's +command line. .Pp The .Nm harti From owner-cvs-all@FreeBSD.ORG Mon Aug 9 15:58:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 116DD16A4CE; Mon, 9 Aug 2004 15:58:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6B5243D5E; Mon, 9 Aug 2004 15:58:39 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79FwdSu064357; Mon, 9 Aug 2004 15:58:39 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79FwdjT064356; Mon, 9 Aug 2004 15:58:39 GMT (envelope-from mlaier) Message-Id: <200408091558.i79FwdjT064356@repoman.freebsd.org> From: Max Laier Date: Mon, 9 Aug 2004 15:58:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 altq.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 15:58:40 -0000 mlaier 2004-08-09 15:58:39 UTC FreeBSD src repository Modified files: share/man/man9 altq.9 Log: mdoc(7) and english grammar makeover. Submitted by: ru Revision Changes Path 1.2 +105 -98 src/share/man/man9/altq.9 From owner-cvs-all@FreeBSD.ORG Mon Aug 9 16:06:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52D2C16A4CE; Mon, 9 Aug 2004 16:06:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3460143D31; Mon, 9 Aug 2004 16:06:03 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79G633l064625; Mon, 9 Aug 2004 16:06:03 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79G63ow064624; Mon, 9 Aug 2004 16:06:03 GMT (envelope-from pav) Message-Id: <200408091606.i79G63ow064624@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 9 Aug 2004 16:06:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/gthumb2 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:06:03 -0000 pav 2004-08-09 16:06:03 UTC FreeBSD ports repository Modified files: graphics/gthumb2 Makefile distinfo pkg-plist Log: - Update to 2.5.0 Submitted by: Koop Mast Revision Changes Path 1.42 +1 -2 ports/graphics/gthumb2/Makefile 1.23 +2 -2 ports/graphics/gthumb2/distinfo 1.27 +1 -1 ports/graphics/gthumb2/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 9 16:08:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBD8B16A4CE; Mon, 9 Aug 2004 16:08:25 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE04243D49; Mon, 9 Aug 2004 16:08:24 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i79G5A7p060181; Mon, 9 Aug 2004 10:05:10 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 09 Aug 2004 10:05:09 -0600 (MDT) Message-Id: <20040809.100509.63410124.imp@bsdimp.com> To: harti@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <20040809174540.U32590@beagle.kn.op.dlr.de> References: <20040809.092824.11587387.imp@bsdimp.com> <20040809.094110.04712576.imp@bsdimp.com> <20040809174540.U32590@beagle.kn.op.dlr.de> 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 cc: kuriyama@imgsrc.co.jp cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: johan@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:08:26 -0000 In message: <20040809174540.U32590@beagle.kn.op.dlr.de> Harti Brandt writes: : On Mon, 9 Aug 2004, M. Warner Losh wrote: : : MWL>In message: <20040809.092824.11587387.imp@bsdimp.com> : MWL> "M. Warner Losh" writes: : MWL>: In message: <20040809061817.GA53369@numeri.campus.luth.se> : MWL>: Johan Karlsson writes: : MWL>: : On Mon, Aug 09, 2004 at 14:12 (+0900), Jun Kuriyama wrote: : MWL>: : > At Tue, 3 Aug 2004 18:56:31 +0000 (UTC), : MWL>: : > Hartmut Brandt wrote: : MWL>: : > > Log: : MWL>: : > > Put variable assignments from the command line into the MAKEFLAGS : MWL>: : > > variable as required by POSIX. This causes such variables to be : MWL>: : > > pushed into all sub-makes called by the make (except when the MAKEFLAGS : MWL>: : > > variable is explicitely changed in the sub-make's environment). : MWL>: : > > This makes them also mostly un-overrideable in sub-makes except on the : MWL>: : > > sub-make's command line. Therefor specifying 'make CC=icc' will cause : MWL>: : > > icc to be used as C compiler in all sub-makes no matter what the Makefiles : MWL>: : > > itself try to do to the CC variable. : MWL>: : > > : MWL>: : > > This patch also corrects the handling of the MFLAGS variable. MFLAGS : MWL>: : > > contains all the command line flags but not the command line variable : MWL>: : > > assignments. The evaluation of the .MFLAGS or .MAKEFLAGS target now : MWL>: : > > changes both MFLAGS and MAKEFLAGS (they used to change MAKEFLAGS only). : MWL>: : > > Makefiles can use MFLAGS for their own purposes given that they do not : MWL>: : > > except MFLAGS to be undefined at the beginning and that they don't evaluate : MWL>: : > > .MFLAGS or .MAKEFLAGS. MFLAGS should be removed for POSIX compliance, : MWL>: : > > but it is unfortunately heavily used by the X makefiles. : MWL>: : > : MWL>: : > I'm using MAKEOBJDIRPREFIX as a make argument to build the world. : MWL>: : : MWL>: : Don't. : MWL>: : According to make(1) it is an environment variable. : MWL>: : MWL>: The current man page is stunningly vague about this. It says that it : MWL>: respects these environment variables, but it doesn't say they have to : MWL>: be set in the enviornment to the exclusion of setting them on the : MWL>: command line. : MWL> : MWL>So either we can make it work, or document that the variables listed : MWL>in the environment section must be set as environment variables only. : : There is nothing to be made work. Both variables are intended to be used : as environment variables. That they happend to work from the command line : was a side effect of make putting its variables into the environment. : Does the following clarify things enough? Yes. That's great! Warner From owner-cvs-all@FreeBSD.ORG Mon Aug 9 16:12:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12D4516A4CE; Mon, 9 Aug 2004 16:12:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C8E7843D58; Mon, 9 Aug 2004 16:12:10 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79GCA7O064831; Mon, 9 Aug 2004 16:12:10 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79GCAOB064830; Mon, 9 Aug 2004 16:12:10 GMT (envelope-from andre) Message-Id: <200408091612.i79GCAOB064830@repoman.freebsd.org> From: Andre Oppermann Date: Mon, 9 Aug 2004 16:12:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_fw.h ip_fw2.c src/sbin/ipfw ipfw.8 ipfw2.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:12:11 -0000 andre 2004-08-09 16:12:10 UTC FreeBSD src repository Modified files: sys/netinet ip_fw.h ip_fw2.c sbin/ipfw ipfw.8 ipfw2.c Log: New ipfw option "antispoof": For incoming packets, the packet's source address is checked if it belongs to a directly connected network. If the network is directly connected, then the interface the packet came on in is compared to the interface the network is connected to. When incoming interface and directly connected interface are not the same, the packet does not match. Usage example: ipfw add deny ip from any to any not antispoof in Manpage education by: ru Revision Changes Path 1.148 +38 -2 src/sbin/ipfw/ipfw.8 1.53 +11 -1 src/sbin/ipfw/ipfw2.c 1.86 +1 -0 src/sys/netinet/ip_fw.h 1.67 +11 -0 src/sys/netinet/ip_fw2.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 16:13:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A7BD16A4F2; Mon, 9 Aug 2004 16:13:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B0F343D1D; Mon, 9 Aug 2004 16:13:54 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79GDsM1064884; Mon, 9 Aug 2004 16:13:54 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79GDs9N064883; Mon, 9 Aug 2004 16:13:54 GMT (envelope-from harti) Message-Id: <200408091613.i79GDs9N064883@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 9 Aug 2004 16:13:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/make make.1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:13:54 -0000 harti 2004-08-09 16:13:54 UTC FreeBSD src repository Modified files: usr.bin/make make.1 Log: Make explicit that MAKEOBJDIRPREFIX and MAKOBJDIR must be set as environment variables and should not be set on make's command line. They happen to work accidentially as command line variables too when none of the sub-makes wants to play games with them (because make is putting command line variables into the environment and will find them there later on). Makefile.inc1 wants to change MAKEOBJDIRPREFIX. In this case one cannot set it on the command line. Revision Changes Path 1.78 +7 -0 src/usr.bin/make/make.1 From owner-cvs-all@FreeBSD.ORG Mon Aug 9 16:16:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DB3C16A4CE; Mon, 9 Aug 2004 16:16:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F38343D41; Mon, 9 Aug 2004 16:16:11 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79GGBRe065009; Mon, 9 Aug 2004 16:16:11 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79GGBYF065008; Mon, 9 Aug 2004 16:16:11 GMT (envelope-from andre) Message-Id: <200408091616.i79GGBYF065008@repoman.freebsd.org> From: Andre Oppermann Date: Mon, 9 Aug 2004 16:16:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:16:11 -0000 andre 2004-08-09 16:16:11 UTC FreeBSD src repository Modified files: sys/netinet ip_output.c Log: Make a comment that "ipfw forward" is not SMP and PREEMPTION safe. Revision Changes Path 1.222 +1 -0 src/sys/netinet/ip_output.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 16:17:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F95B16A4CE; Mon, 9 Aug 2004 16:17:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11ABA43D54; Mon, 9 Aug 2004 16:17:38 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79GHbMq065070; Mon, 9 Aug 2004 16:17:37 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79GHbdN065069; Mon, 9 Aug 2004 16:17:37 GMT (envelope-from andre) Message-Id: <200408091617.i79GHbdN065069@repoman.freebsd.org> From: Andre Oppermann Date: Mon, 9 Aug 2004 16:17:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_input.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:17:38 -0000 andre 2004-08-09 16:17:37 UTC FreeBSD src repository Modified files: sys/netinet ip_input.c Log: Make a comment that IP source routing is not SMP and PREEMPTION safe. Revision Changes Path 1.279 +1 -0 src/sys/netinet/ip_input.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 16:21:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E101116A4CF for ; Mon, 9 Aug 2004 16:21:50 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5002C43D5D for ; Mon, 9 Aug 2004 16:21:50 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 73600 invoked from network); 9 Aug 2004 16:16:08 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 9 Aug 2004 16:16:08 -0000 Message-ID: <4117A4A0.F45CB8D@freebsd.org> Date: Mon, 09 Aug 2004 18:21:52 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200408091616.i79GGBYF065008@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/netinet ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:21:51 -0000 Andre Oppermann wrote: > > andre 2004-08-09 16:16:11 UTC > > FreeBSD src repository > > Modified files: > sys/netinet ip_output.c > Log: > Make a comment that "ipfw forward" is not SMP and PREEMPTION safe. > > Revision Changes Path > 1.222 +1 -0 src/sys/netinet/ip_output.c Please note that the conversion of ipfw to PFIL_HOOKS fixes this and I am working on getting it in before the code freeze. Switching ipfw over to PFIL_HOOKS is fairly low risk (it only changes how ipfw is invoked per packet and in no way how ipfw itself works). -- Andre From owner-cvs-all@FreeBSD.ORG Mon Aug 9 16:22:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FB2716A4CE; Mon, 9 Aug 2004 16:22:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F15343D55; Mon, 9 Aug 2004 16:22:56 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79GMtqS065236; Mon, 9 Aug 2004 16:22:55 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79GMtG7065235; Mon, 9 Aug 2004 16:22:55 GMT (envelope-from hrs) Message-Id: <200408091622.i79GMtG7065235@repoman.freebsd.org> From: Hiroki Sato Date: Mon, 9 Aug 2004 16:22:55 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/share/mk doc.docbook.mk doc.project.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:22:56 -0000 hrs 2004-08-09 16:22:55 UTC FreeBSD doc repository Modified files: share/mk doc.docbook.mk doc.project.mk Log: - When /share/mk/doc.local.mk exists, it will be included just after doc.common.mk included. This can be used for various language specific customizations. - Remove SP_ENCODING_LIST. Translators should define the SP_ENCODING variable directly in their doc.local.mk when it is needed. Discussed with: den Revision Changes Path 1.111 +4 -12 doc/share/mk/doc.docbook.mk 1.19 +6 -0 doc/share/mk/doc.project.mk From owner-cvs-all@FreeBSD.ORG Mon Aug 9 16:23:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6147016A4CE for ; Mon, 9 Aug 2004 16:23:09 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1D7743D49 for ; Mon, 9 Aug 2004 16:23:08 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 73616 invoked from network); 9 Aug 2004 16:17:26 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 9 Aug 2004 16:17:26 -0000 Message-ID: <4117A4EE.B568A9B4@freebsd.org> Date: Mon, 09 Aug 2004 18:23:10 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200408091617.i79GHbdN065069@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/netinet ip_input.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:23:09 -0000 Andre Oppermann wrote: > > andre 2004-08-09 16:17:37 UTC > > FreeBSD src repository > > Modified files: > sys/netinet ip_input.c > Log: > Make a comment that IP source routing is not SMP and PREEMPTION safe. > > Revision Changes Path > 1.279 +1 -0 src/sys/netinet/ip_input.c Please note that I am working on converting those static variables to mtags and want to get that into the tree before the code freeze. -- Andre From owner-cvs-all@FreeBSD.ORG Mon Aug 9 16:35:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 060B016A4CE; Mon, 9 Aug 2004 16:35:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA4A043D4C; Mon, 9 Aug 2004 16:35:23 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79GZNx3065664; Mon, 9 Aug 2004 16:35:23 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79GZNKa065663; Mon, 9 Aug 2004 16:35:23 GMT (envelope-from hrs) Message-Id: <200408091635.i79GZNKa065663@repoman.freebsd.org> From: Hiroki Sato Date: Mon, 9 Aug 2004 16:35:23 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/share/mk doc.local.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:35:24 -0000 hrs 2004-08-09 16:35:23 UTC FreeBSD doc repository Added files: en_US.ISO8859-1/share/mk doc.local.mk Log: Add doc.local.mk for en_US.ISO8859-1. Probably the SP_ENCODING definition in this file can also be used in languages which use ISO8859-* encodings without modification. Revision Changes Path 1.1 +3 -0 doc/en_US.ISO8859-1/share/mk/doc.local.mk (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 16:36:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BA6516A4CE; Mon, 9 Aug 2004 16:36:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6242043D58; Mon, 9 Aug 2004 16:36:04 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Ga4md065711; Mon, 9 Aug 2004 16:36:04 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Ga4n9065710; Mon, 9 Aug 2004 16:36:04 GMT (envelope-from harti) Message-Id: <200408091636.i79Ga4n9065710@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 9 Aug 2004 16:36:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules/snmp_atm BEGEMOT-ATM-FREEBSD-MIB.txt Makefile atm_freebsd.def atm_sys.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:36:04 -0000 harti 2004-08-09 16:36:04 UTC FreeBSD src repository Added files: lib/libbsnmp/modules/snmp_atm BEGEMOT-ATM-FREEBSD-MIB.txt Makefile atm_freebsd.def atm_sys.c Log: A module for bsnmpd(1) that exports a MIB that contains information about the local ATM interfaces and allows to change some parameters via SNMP. Revision Changes Path 1.1 +99 -0 src/lib/libbsnmp/modules/snmp_atm/BEGEMOT-ATM-FREEBSD-MIB.txt (new) 1.1 +22 -0 src/lib/libbsnmp/modules/snmp_atm/Makefile (new) 1.1 +56 -0 src/lib/libbsnmp/modules/snmp_atm/atm_freebsd.def (new) 1.1 +301 -0 src/lib/libbsnmp/modules/snmp_atm/atm_sys.c (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 16:36:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 983D816A4CE; Mon, 9 Aug 2004 16:36:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 766E143D5E; Mon, 9 Aug 2004 16:36:16 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79GaGlQ065752; Mon, 9 Aug 2004 16:36:16 GMT (envelope-from hq@repoman.freebsd.org) Received: (from hq@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79GaGU8065751; Mon, 9 Aug 2004 16:36:16 GMT (envelope-from hq) Message-Id: <200408091636.i79GaGU8065751@repoman.freebsd.org> From: Herve Quiroz Date: Mon, 9 Aug 2004 16:36:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/pcgen Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:36:16 -0000 hq 2004-08-09 16:36:16 UTC FreeBSD ports repository Modified files: games/pcgen Makefile distinfo pkg-descr Removed files: games/pcgen pkg-plist Log: - Update to 5.7.3 - Dynamic plist - Various cosmetic and performance changes PR: ports/68944 Submitted by: me Approved by: glewis (mentor) Revision Changes Path 1.9 +27 -34 ports/games/pcgen/Makefile 1.8 +2 -2 ports/games/pcgen/distinfo 1.2 +0 -3 ports/games/pcgen/pkg-descr 1.9 +0 -1233 ports/games/pcgen/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 16:37:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F32616A4CF; Mon, 9 Aug 2004 16:37:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DCEB43D58; Mon, 9 Aug 2004 16:37:26 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79GbQB8065845; Mon, 9 Aug 2004 16:37:26 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79GbPuY065844; Mon, 9 Aug 2004 16:37:25 GMT (envelope-from harti) Message-Id: <200408091637.i79GbPuY065844@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 9 Aug 2004 16:37:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules Makefile.inc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:37:26 -0000 harti 2004-08-09 16:37:25 UTC FreeBSD src repository Modified files: lib/libbsnmp/modules Makefile.inc Log: Now that gensnmptree can read and merge more than one tree make the rule so that the tree .c and .h files can be produced from several trees. Revision Changes Path 1.7 +4 -4 src/lib/libbsnmp/modules/Makefile.inc From owner-cvs-all@FreeBSD.ORG Mon Aug 9 16:40:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A191216A4CE; Mon, 9 Aug 2004 16:40:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81CB543D54; Mon, 9 Aug 2004 16:40:39 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Geds9065991; Mon, 9 Aug 2004 16:40:39 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Gedo3065990; Mon, 9 Aug 2004 16:40:39 GMT (envelope-from harti) Message-Id: <200408091640.i79Gedo3065990@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 9 Aug 2004 16:40:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:40:39 -0000 harti 2004-08-09 16:40:39 UTC FreeBSD src repository Modified files: lib/libbsnmp/modules Makefile Log: Link the snmp_atm module to the build unless NOATM is defined. Revision Changes Path 1.2 +6 -1 src/lib/libbsnmp/modules/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 16:42:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A884D16A4CE; Mon, 9 Aug 2004 16:42:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 896E243D39; Mon, 9 Aug 2004 16:42:41 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79GgfZO066039; Mon, 9 Aug 2004 16:42:41 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Ggf7I066038; Mon, 9 Aug 2004 16:42:41 GMT (envelope-from hrs) Message-Id: <200408091642.i79Ggf7I066038@repoman.freebsd.org> From: Hiroki Sato Date: Mon, 9 Aug 2004 16:42:41 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ru_RU.KOI8-R/share/mk doc.local.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:42:41 -0000 hrs 2004-08-09 16:42:41 UTC FreeBSD doc repository Added files: ru_RU.KOI8-R/share/mk doc.local.mk Log: Add doc.local.mk for ru_RU.KOI8-R. Revision Changes Path 1.1 +3 -0 doc/ru_RU.KOI8-R/share/mk/doc.local.mk (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 16:48:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A01616A4CE; Mon, 9 Aug 2004 16:48:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B26043D3F; Mon, 9 Aug 2004 16:48:37 +0000 (GMT) (envelope-from jesusr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79GmadO066188; Mon, 9 Aug 2004 16:48:36 GMT (envelope-from jesusr@repoman.freebsd.org) Received: (from jesusr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79GmadD066187; Mon, 9 Aug 2004 16:48:36 GMT (envelope-from jesusr) Message-Id: <200408091648.i79GmadD066187@repoman.freebsd.org> From: Jesus Rodriguez Cuesta Date: Mon, 9 Aug 2004 16:48:36 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/es/docproj sgml.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 16:48:37 -0000 jesusr 2004-08-09 16:48:36 UTC FreeBSD doc repository Modified files: es/docproj sgml.sgml Log: Fix links with fdp-primer. Revision Changes Path 1.9 +8 -8 www/es/docproj/sgml.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 17:16:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E3A116A4D0; Mon, 9 Aug 2004 17:16:17 +0000 (GMT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id E971443D60; Mon, 9 Aug 2004 17:16:16 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.13.1/8.12.11) with ESMTP id i79HGFk4048933; Mon, 9 Aug 2004 10:16:15 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.13.1/8.13.1/Submit) id i79HGACF048925; Mon, 9 Aug 2004 10:16:10 -0700 (PDT) (envelope-from obrien) Date: Mon, 9 Aug 2004 10:16:10 -0700 From: "David O'Brien" To: Mark Murray Message-ID: <20040809171610.GA48612@dragon.nuxi.com> References: <20040804201627.GA991@funkthat.com> <200408050725.i757Pl7a052956@grimreaper.grondar.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408050725.i757Pl7a052956@grimreaper.grondar.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.2-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 cc: cvs-src@FreeBSD.ORG cc: John-Mark Gurney cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: Marcel Moolenaar Subject: Re: cvs commit: src/tools/debugscripts README kgdb kld_deb.py X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.ORG List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:16:17 -0000 On Thu, Aug 05, 2004 at 08:25:47AM +0100, Mark Murray wrote: > John-Mark Gurney writes: > > It was requested of me to commit these the other day when I mentioned > > them to another committer (who I don't remeber right now). > > That would be me. > > > > If you want to help out, make sure you help doing things that need to > > > be done. > > > > Make sure you don't discourage people from working to improve FreeBSD. > > Right. These are useful "tool" scripts, and now they won't get lost if > J-M gets flattened by a bus. No harm done. They were posted to -current last year, they won't be lost if J-M gets flattened by a bus. If they don't work with at least the gdb6 port, then I agree with Marcel that there was little use committing them. > Back to work folks, nothing to see here. Thank you for implying our views don't matter. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 17:18:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B94E16A4CE; Mon, 9 Aug 2004 17:18:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6836A43D66; Mon, 9 Aug 2004 17:18:17 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79HIHlb066951; Mon, 9 Aug 2004 17:18:17 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79HIHIC066950; Mon, 9 Aug 2004 17:18:17 GMT (envelope-from hrs) Message-Id: <200408091718.i79HIHIC066950@repoman.freebsd.org> From: Hiroki Sato Date: Mon, 9 Aug 2004 17:18:17 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/checkpoint Makefile article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:18:17 -0000 hrs 2004-08-09 17:18:17 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/checkpoint Makefile article.sgml Log: - Add missing URL_RELPREFIX. - Use &url.*; instead of http://www.FreeBSD.org/*. - Some markup fixes. Revision Changes Path 1.7 +1 -0 doc/en_US.ISO8859-1/articles/checkpoint/Makefile 1.22 +5 -3 doc/en_US.ISO8859-1/articles/checkpoint/article.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 17:19:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAAA116A4CE; Mon, 9 Aug 2004 17:19:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99D4343D1F; Mon, 9 Aug 2004 17:19:18 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79HJI70067026; Mon, 9 Aug 2004 17:19:18 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79HJIHV067025; Mon, 9 Aug 2004 17:19:18 GMT (envelope-from hrs) Message-Id: <200408091719.i79HJIHV067025@repoman.freebsd.org> From: Hiroki Sato Date: Mon, 9 Aug 2004 17:19:18 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/5-roadmap article.sgml doc/en_US.ISO8859-1/articles/console-serverarticle.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:19:18 -0000 hrs 2004-08-09 17:19:18 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/5-roadmap article.sgml en_US.ISO8859-1/articles/console-server article.sgml en_US.ISO8859-1/articles/contributing article.sgml Log: Use &url.*; instead of http://www.FreeBSD.org/*. Revision Changes Path 1.24 +5 -4 doc/en_US.ISO8859-1/articles/5-roadmap/article.sgml 1.21 +7 -7 doc/en_US.ISO8859-1/articles/console-server/article.sgml 1.502 +3 -3 doc/en_US.ISO8859-1/articles/contributing/article.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 17:25:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7569516A4CE; Mon, 9 Aug 2004 17:25:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56DB643D39; Mon, 9 Aug 2004 17:25:35 +0000 (GMT) (envelope-from jesusr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79HPZdP067234; Mon, 9 Aug 2004 17:25:35 GMT (envelope-from jesusr@repoman.freebsd.org) Received: (from jesusr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79HPZlX067233; Mon, 9 Aug 2004 17:25:35 GMT (envelope-from jesusr) Message-Id: <200408091725.i79HPZlX067233@repoman.freebsd.org> From: Jesus Rodriguez Cuesta Date: Mon, 9 Aug 2004 17:25:35 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/docproj translations.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:25:35 -0000 jesusr 2004-08-09 17:25:35 UTC FreeBSD doc repository Modified files: en/docproj translations.sgml Log: Fix doc-es links. Revision Changes Path 1.73 +7 -5 www/en/docproj/translations.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 17:30:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAFA516A4CE; Mon, 9 Aug 2004 17:30:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB47843D53; Mon, 9 Aug 2004 17:30:58 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79HUwjF067404; Mon, 9 Aug 2004 17:30:58 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79HUwkx067403; Mon, 9 Aug 2004 17:30:58 GMT (envelope-from marcus) Message-Id: <200408091730.i79HUwkx067403@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 9 Aug 2004 17:30:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/gaim-guifications/files patch-src-guifications.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:30:59 -0000 marcus 2004-08-09 17:30:58 UTC FreeBSD ports repository Added files: misc/gaim-guifications/files patch-src-guifications.c Log: Fix build with Gaim 0.81. Submitted by: maintainer Revision Changes Path 1.1 +11 -0 ports/misc/gaim-guifications/files/patch-src-guifications.c (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 17:36:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4DF416A4CE; Mon, 9 Aug 2004 17:36:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5E3E43D1D; Mon, 9 Aug 2004 17:36:16 +0000 (GMT) (envelope-from jesusr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79HaGug067552; Mon, 9 Aug 2004 17:36:16 GMT (envelope-from jesusr@repoman.freebsd.org) Received: (from jesusr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79HaGRC067551; Mon, 9 Aug 2004 17:36:16 GMT (envelope-from jesusr) Message-Id: <200408091736.i79HaGRC067551@repoman.freebsd.org> From: Jesus Rodriguez Cuesta Date: Mon, 9 Aug 2004 17:36:16 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/docproj translations.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:36:17 -0000 jesusr 2004-08-09 17:36:16 UTC FreeBSD doc repository Modified files: en/docproj translations.sgml Log: Add Spanish documentation mailing list. Revision Changes Path 1.74 +7 -1 www/en/docproj/translations.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 17:36:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3929716A4E1; Mon, 9 Aug 2004 17:36:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17ADF43D31; Mon, 9 Aug 2004 17:36:20 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79HaJPF067581; Mon, 9 Aug 2004 17:36:19 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79HaJL1067580; Mon, 9 Aug 2004 17:36:19 GMT (envelope-from imp) Message-Id: <200408091736.i79HaJL1067580@repoman.freebsd.org> From: Warner Losh Date: Mon, 9 Aug 2004 17:36:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/conf GENERIC X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:36:20 -0000 imp 2004-08-09 17:36:19 UTC FreeBSD src repository Modified files: sys/i386/conf GENERIC Log: Remove commented out pcic driver. It is too broken to work (even if you fix the obvious bugs, nastier ones reside below the surfac), and having it commented out here just encourages people to try it. # I'm not removing it from the base system, yet. Revision Changes Path 1.412 +0 -1 src/sys/i386/conf/GENERIC From owner-cvs-all@FreeBSD.ORG Mon Aug 9 17:38:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63B3416A4D0 for ; Mon, 9 Aug 2004 17:38:17 +0000 (GMT) Received: from mail1.speakeasy.net (mail1.speakeasy.net [216.254.0.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A5B543D55 for ; Mon, 9 Aug 2004 17:38:17 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 11354 invoked from network); 9 Aug 2004 17:38:16 -0000 Received: from gate.funkthat.com (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail1.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 9 Aug 2004 17:38:16 -0000 Received: from hydrogen.funkthat.com (jylqnu@localhost.funkthat.com [127.0.0.1])i79HcFuU057616; Mon, 9 Aug 2004 10:38:16 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id i79HcEnv057615; Mon, 9 Aug 2004 10:38:14 -0700 (PDT) Date: Mon, 9 Aug 2004 10:38:14 -0700 From: John-Mark Gurney To: Pawel Jakub Dawidek Message-ID: <20040809173814.GG991@funkthat.com> References: <200408061506.i76F66sl018247@repoman.freebsd.org> <20040809124153.GN628@darkness.comp.waw.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809124153.GN628@darkness.comp.waw.pl> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/common help.common src/sys/boot/forth loader.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:38:17 -0000 Pawel Jakub Dawidek wrote this message on Mon, Aug 09, 2004 at 14:41 +0200: > If kernel name is given for the 'boot' command, '/boot/' path is > probably added to kern.module_path, but for normal boot process it is not, > so kern.module_path is set only to "/boot/modules". > Some applications depend on this sysctl and they don't work properly now. > Please fix. Have you verified this is a problem? On my test box that has: defaults/loader.conf:module_path="/boot/modules" # Set the module search path and was booted: [...] /boot/kernel/accf_http.ko text=0xb84 data=0x150+0x4 syms=[0x4+0x310+0x4+0x334] Hit [Enter] to boot immediately, or any other key for command prompt. Booting [/boot/kernel/kernel]... (i.e. normal boot process w/ no interaction) My sysctl returns: -bash-2.05b$ sysctl kern.module_path kern.module_path: /boot/kernel;/boot/modules Please include complete information of the breakage that this change is suppose to cause. -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-all@FreeBSD.ORG Mon Aug 9 17:42:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2ADAC16A4CE; Mon, 9 Aug 2004 17:42:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 095D243D55; Mon, 9 Aug 2004 17:42:36 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79HgZ1r067802; Mon, 9 Aug 2004 17:42:35 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79HgZJp067801; Mon, 9 Aug 2004 17:42:35 GMT (envelope-from pav) Message-Id: <200408091742.i79HgZJp067801@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 9 Aug 2004 17:42:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/pfflowd/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:42:36 -0000 pav 2004-08-09 17:42:35 UTC FreeBSD ports repository Modified files: net/pfflowd/files patch-Makefile Log: - Fix build with gcc-3.4 by removing warnflags PR: ports/70197 Submitted by: Andrew Thompson (maintainer) Revision Changes Path 1.2 +1 -1 ports/net/pfflowd/files/patch-Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 17:43:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA36F16A4CE; Mon, 9 Aug 2004 17:43:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89B4E43D5E; Mon, 9 Aug 2004 17:43:53 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79HhrHi067866; Mon, 9 Aug 2004 17:43:53 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Hhrc1067865; Mon, 9 Aug 2004 17:43:53 GMT (envelope-from obrien) Message-Id: <200408091743.i79Hhrc1067865@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 17:43:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/shells/bash2 Makefile ports/shells/bash2/files patch-ac X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:43:53 -0000 obrien 2004-08-09 17:43:53 UTC FreeBSD ports repository Modified files: shells/bash2 Makefile shells/bash2/files patch-ac Log: Ignore /dev/fd/ on FreeBSD 5.x -- devfs doesn't provide a full /dev/fd/ and so Bash's process substitution feature doesn't work when 'configure' finds we do have /dev/fd/ and tries to use it vs. named pipes. PR: 48434 Submitted by: naddy Revision Changes Path 1.70 +1 -1 ports/shells/bash2/Makefile 1.6 +17 -1 ports/shells/bash2/files/patch-ac From owner-cvs-all@FreeBSD.ORG Mon Aug 9 17:51:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C38416A4CE; Mon, 9 Aug 2004 17:51:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E026C43D55; Mon, 9 Aug 2004 17:51:39 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Hpd0h068120; Mon, 9 Aug 2004 17:51:39 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Hpdnh068119; Mon, 9 Aug 2004 17:51:39 GMT (envelope-from pav) Message-Id: <200408091751.i79Hpdnh068119@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 9 Aug 2004 17:51:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/wmconfig Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:51:40 -0000 pav 2004-08-09 17:51:39 UTC FreeBSD ports repository Modified files: x11-wm/wmconfig Makefile distinfo pkg-plist Log: - Update to 1.2.1 PR: ports/70198 Submitted by: Tommy Scheunemann Revision Changes Path 1.10 +2 -2 ports/x11-wm/wmconfig/Makefile 1.7 +2 -2 ports/x11-wm/wmconfig/distinfo 1.4 +16 -316 ports/x11-wm/wmconfig/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 9 17:51:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76DB216A4D1; Mon, 9 Aug 2004 17:51:41 +0000 (GMT) Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93DF043D55; Mon, 9 Aug 2004 17:51:40 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from orion.daedalusnetworks.priv (aris.bedc.ondsl.gr [62.103.39.226])i79Hpbip011545; Mon, 9 Aug 2004 20:51:37 +0300 Received: from orion.daedalusnetworks.priv (orion [127.0.0.1]) i79HoTmp020967; Mon, 9 Aug 2004 20:51:35 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from keramida@localhost)i79HnRfN020935; Mon, 9 Aug 2004 20:49:27 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Mon, 9 Aug 2004 20:49:27 +0300 From: Giorgos Keramidas To: John-Mark Gurney Message-ID: <20040809174927.GA20807@orion.daedalusnetworks.priv> References: <200408061506.i76F66sl018247@repoman.freebsd.org> <20040809124153.GN628@darkness.comp.waw.pl> <20040809173814.GG991@funkthat.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809173814.GG991@funkthat.com> cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/boot/common help.common src/sys/boot/forth loader.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:51:43 -0000 On 2004-08-09 10:38, John-Mark Gurney wrote: > Pawel Jakub Dawidek wrote this message on Mon, Aug 09, 2004 at 14:41 +0200: > > If kernel name is given for the 'boot' command, '/boot/' path is > > probably added to kern.module_path, but for normal boot process it is not, > > so kern.module_path is set only to "/boot/modules". > > Some applications depend on this sysctl and they don't work properly now. > > Please fix. > > Have you verified this is a problem? On my test box that has: > defaults/loader.conf:module_path="/boot/modules" # Set the module search path > > and was booted: > [...] > /boot/kernel/accf_http.ko text=0xb84 data=0x150+0x4 syms=[0x4+0x310+0x4+0x334] > > Hit [Enter] to boot immediately, or any other key for command prompt. > Booting [/boot/kernel/kernel]... I don't know if this is related, but... I've also noticed that /boot/kernel is added twice at module_path. My boot loader-foo is non-existent but it always seemed sufficient to just use: set module_path=/boot/kernel.old set bootfile=/boot/kernel.old/kernel to recover from broken/buggy kernel builds, so I never asked. Does this mean that now module_path will include the current kernel path only once? - Giorgos From owner-cvs-all@FreeBSD.ORG Mon Aug 9 17:56:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2ECD816A4D0; Mon, 9 Aug 2004 17:56:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F77643D2D; Mon, 9 Aug 2004 17:56:32 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79HuVMH068297; Mon, 9 Aug 2004 17:56:31 GMT (envelope-from hq@repoman.freebsd.org) Received: (from hq@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79HuVhl068296; Mon, 9 Aug 2004 17:56:31 GMT (envelope-from hq) Message-Id: <200408091756.i79HuVhl068296@repoman.freebsd.org> From: Herve Quiroz Date: Mon, 9 Aug 2004 17:56:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/xerces-j Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:56:32 -0000 hq 2004-08-09 17:56:31 UTC FreeBSD ports repository Modified files: textproc/xerces-j Makefile Log: - Use USE_ANT - Use %%JAVAJARDIR%% - Use my FreeBSD email address in MAINTAINER field Approved by: glewis (mentor) Revision Changes Path 1.16 +8 -13 ports/textproc/xerces-j/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 17:56:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D49A616A4CE; Mon, 9 Aug 2004 17:56:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B359043D58; Mon, 9 Aug 2004 17:56:59 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79HuxX1068355; Mon, 9 Aug 2004 17:56:59 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79HuxJR068354; Mon, 9 Aug 2004 17:56:59 GMT (envelope-from arved) Message-Id: <200408091756.i79HuxJR068354@repoman.freebsd.org> From: Tilman Linneweh Date: Mon, 9 Aug 2004 17:56:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/skim Makefile distinfo patch-plugins-scimlauncher-scimlauncher.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 17:57:00 -0000 arved 2004-08-09 17:56:59 UTC FreeBSD ports repository Modified files: textproc/skim Makefile distinfo Removed files: textproc/skim/files patch-plugins-scimlauncher-scimlauncher.cpp Log: Update to 0.9.4 PR: 69966 Submitted by: Jie Gao Revision Changes Path 1.4 +4 -3 ports/textproc/skim/Makefile 1.2 +2 -2 ports/textproc/skim/distinfo 1.2 +0 -23 ports/textproc/skim/files/patch-plugins-scimlauncher-scimlauncher.cpp (dead) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:01:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F21316A4CE; Mon, 9 Aug 2004 18:01:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 710BE43D3F; Mon, 9 Aug 2004 18:01:28 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79I1SWH068528; Mon, 9 Aug 2004 18:01:28 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79I1Ssh068527; Mon, 9 Aug 2004 18:01:28 GMT (envelope-from pav) Message-Id: <200408091801.i79I1Ssh068527@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 9 Aug 2004 18:01:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/ataidle Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:01:28 -0000 pav 2004-08-09 18:01:28 UTC FreeBSD ports repository Modified files: sysutils/ataidle Makefile distinfo Log: - Update to 0.7 PR: ports/70204 Submitted by: Bruce Cran (maintainer) Revision Changes Path 1.5 +1 -1 ports/sysutils/ataidle/Makefile 1.4 +2 -2 ports/sysutils/ataidle/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:04:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8683916A4CE; Mon, 9 Aug 2004 18:04:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6792B43D2D; Mon, 9 Aug 2004 18:04:25 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79I4PpD069039; Mon, 9 Aug 2004 18:04:25 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79I4PHQ069035; Mon, 9 Aug 2004 18:04:25 GMT (envelope-from arved) Message-Id: <200408091804.i79I4PHQ069035@repoman.freebsd.org> From: Tilman Linneweh Date: Mon, 9 Aug 2004 18:04:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/zope-cmf Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:04:25 -0000 arved 2004-08-09 18:04:24 UTC FreeBSD ports repository Modified files: www/zope-cmf Makefile distinfo Log: Update to 1.4.6 PR: 69987 Submitted by: Filippo Natali Revision Changes Path 1.12 +1 -1 ports/www/zope-cmf/Makefile 1.8 +2 -2 ports/www/zope-cmf/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:13:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E0EE16A4CF for ; Mon, 9 Aug 2004 18:13:52 +0000 (GMT) Received: from mail5.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCB6B43D31 for ; Mon, 9 Aug 2004 18:13:51 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 22594 invoked from network); 9 Aug 2004 17:59:42 -0000 Received: from gate.funkthat.com (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail5.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 9 Aug 2004 17:58:21 -0000 Received: from hydrogen.funkthat.com (ahevuh@localhost.funkthat.com [127.0.0.1])i79HwKuU058036; Mon, 9 Aug 2004 10:58:20 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id i79HuxuY058004; Mon, 9 Aug 2004 10:56:59 -0700 (PDT) Date: Mon, 9 Aug 2004 10:56:59 -0700 From: John-Mark Gurney To: Giorgos Keramidas Message-ID: <20040809175658.GH991@funkthat.com> References: <200408061506.i76F66sl018247@repoman.freebsd.org> <20040809124153.GN628@darkness.comp.waw.pl> <20040809173814.GG991@funkthat.com> <20040809174927.GA20807@orion.daedalusnetworks.priv> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809174927.GA20807@orion.daedalusnetworks.priv> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/boot/common help.common src/sys/boot/forth loader.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:13:52 -0000 Giorgos Keramidas wrote this message on Mon, Aug 09, 2004 at 20:49 +0300: > > Hit [Enter] to boot immediately, or any other key for command prompt. > > Booting [/boot/kernel/kernel]... > > I don't know if this is related, but... > > I've also noticed that /boot/kernel is added twice at module_path. > My boot loader-foo is non-existent but it always seemed sufficient > to just use: > > set module_path=/boot/kernel.old > set bootfile=/boot/kernel.old/kernel > > to recover from broken/buggy kernel builds, so I never asked. > > Does this mean that now module_path will include the current kernel path > only once? Yes, my commit fixes the problem of /boot/kernel being added twice (or /boot/kernel being added even though you didn't load that kernel). Just update your /boot/defaults/loader.conf, and you should then be able to remove your hacked module_path line. -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:15:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CBF916A4CE; Mon, 9 Aug 2004 18:15:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CF5D43D45; Mon, 9 Aug 2004 18:15:46 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79IFkPX072685; Mon, 9 Aug 2004 18:15:46 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79IFkWK072684; Mon, 9 Aug 2004 18:15:46 GMT (envelope-from alc) Message-Id: <200408091815.i79IFkWK072684@repoman.freebsd.org> From: Alan Cox Date: Mon, 9 Aug 2004 18:15:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_map.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:15:46 -0000 alc 2004-08-09 18:15:46 UTC FreeBSD src repository Modified files: sys/vm vm_map.c Log: Remove a stale comment from vm_map_lookup() that pertains to share maps. (The last vestiges of the share map code were removed in revisions 1.153 and 1.159.) Revision Changes Path 1.352 +0 -3 src/sys/vm/vm_map.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:21:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAD3416A4CE; Mon, 9 Aug 2004 18:21:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC02143D1D; Mon, 9 Aug 2004 18:21:12 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79ILCaC072902; Mon, 9 Aug 2004 18:21:12 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79ILCsh072901; Mon, 9 Aug 2004 18:21:12 GMT (envelope-from julian) Message-Id: <200408091821.i79ILCsh072901@repoman.freebsd.org> From: Julian Elischer Date: Mon, 9 Aug 2004 18:21:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_fork.c kern_switch.c kern_synch.c kern_thread.c sched_4bsd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:21:13 -0000 julian 2004-08-09 18:21:12 UTC FreeBSD src repository Modified files: sys/kern kern_fork.c kern_switch.c kern_synch.c kern_thread.c sched_4bsd.c Log: Increase the amount of data exported by KTR in the KTR_RUNQ setting. This extra data is needed to really follow what is going on in the threaded case. Revision Changes Path 1.233 +2 -2 src/sys/kern/kern_fork.c 1.76 +15 -6 src/sys/kern/kern_switch.c 1.257 +4 -4 src/sys/kern/kern_synch.c 1.192 +2 -3 src/sys/kern/kern_thread.c 1.48 +5 -6 src/sys/kern/sched_4bsd.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:22:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F9C916A4CE; Mon, 9 Aug 2004 18:22:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 509AF43D49; Mon, 9 Aug 2004 18:22:04 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79IM4WN072940; Mon, 9 Aug 2004 18:22:04 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79IM4rf072939; Mon, 9 Aug 2004 18:22:04 GMT (envelope-from obrien) Message-Id: <200408091822.i79IM4rf072939@repoman.freebsd.org> From: "David E. O'Brien" Date: Mon, 9 Aug 2004 18:22:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/mp-letter Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:22:04 -0000 obrien 2004-08-09 18:22:04 UTC FreeBSD ports repository Modified files: print/mp-letter Makefile Log: Build with GCC 3.3 on 5.x. Revision Changes Path 1.19 +5 -1 ports/print/mp-letter/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:29:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6D70916A4CE; Mon, 9 Aug 2004 18:29:19 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C5AA43D49; Mon, 9 Aug 2004 18:29:19 +0000 (GMT) (envelope-from bmilekic@FreeBSD.org) Received: from freefall.freebsd.org (bmilekic@localhost [127.0.0.1]) i79ITJ2L039189; Mon, 9 Aug 2004 18:29:19 GMT (envelope-from bmilekic@freefall.freebsd.org) Received: (from bmilekic@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i79ITJh6039188; Mon, 9 Aug 2004 18:29:19 GMT (envelope-from bmilekic) Date: Mon, 9 Aug 2004 18:29:19 +0000 From: Bosko Milekic To: Julian Elischer , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040809182919.GA39162@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: Re: cvs commit: src/sys/kern kern_fork.c kern_switch.c kern_synch.c kern_thread.c sched_4bsd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:29:19 -0000 >julian 2004-08-09 18:21:12 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_fork.c kern_switch.c kern_synch.c > kern_thread.c sched_4bsd.c > Log: > Increase the amount of data exported by KTR in the KTR_RUNQ setting. > This extra data is needed to really follow what is going on in the > threaded case. Thanks guy. G'd up from the feet up, B. From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:29:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FDE216A4CE; Mon, 9 Aug 2004 18:29:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 100D243D1D; Mon, 9 Aug 2004 18:29:38 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79ITbG7073149; Mon, 9 Aug 2004 18:29:37 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79ITb13073148; Mon, 9 Aug 2004 18:29:37 GMT (envelope-from kris) Message-Id: <200408091829.i79ITb13073148@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 9 Aug 2004 18:29:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/highlight Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:29:38 -0000 kris 2004-08-09 18:29:37 UTC FreeBSD ports repository Modified files: textproc/highlight Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.25 +2 -0 ports/textproc/highlight/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:30:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CC5616A4CE; Mon, 9 Aug 2004 18:30:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F200843D2F; Mon, 9 Aug 2004 18:30:35 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79IUZOp073229; Mon, 9 Aug 2004 18:30:35 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79IUZ2K073228; Mon, 9 Aug 2004 18:30:35 GMT (envelope-from kris) Message-Id: <200408091830.i79IUZ2K073228@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 9 Aug 2004 18:30:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/comms/predict Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:30:36 -0000 kris 2004-08-09 18:30:35 UTC FreeBSD ports repository Modified files: comms/predict Makefile Log: BROKEN: Size mismatch Revision Changes Path 1.3 +2 -0 ports/comms/predict/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:31:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F46016A4CE; Mon, 9 Aug 2004 18:31:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7006543D4C; Mon, 9 Aug 2004 18:31:56 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79IVu6s073302; Mon, 9 Aug 2004 18:31:56 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79IVuMd073301; Mon, 9 Aug 2004 18:31:56 GMT (envelope-from kris) Message-Id: <200408091831.i79IVuMd073301@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 9 Aug 2004 18:31:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/cal.rb Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:31:56 -0000 kris 2004-08-09 18:31:56 UTC FreeBSD ports repository Modified files: japanese/cal.rb Makefile Log: BROKEN: Size mismatch Revision Changes Path 1.12 +2 -0 ports/japanese/cal.rb/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:34:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A01616A4CE; Mon, 9 Aug 2004 18:34:38 +0000 (GMT) Received: from plouf.absolight.net (plouf.absolight.net [212.43.217.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id E593A43D46; Mon, 9 Aug 2004 18:34:37 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by plouf.absolight.net (Postfix) with ESMTP id 1787E3FF1; Mon, 9 Aug 2004 20:34:37 +0200 (CEST) Received: from plouf.absolight.net ([127.0.0.1])port 20024) with ESMTP id 43505-12; Mon, 9 Aug 2004 20:34:32 +0200 (CEST) X-Original-To: ports-committers@FreeBSD.org X-Original-To: kris@FreeBSD.org X-Original-To: cvs-ports@FreeBSD.org X-Original-To: cvs-all@FreeBSD.org Received: from [192.168.1.51] (l15v-8-120.d2.club-internet.fr [62.34.135.120]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id 0B5653FCB; Mon, 9 Aug 2004 20:34:32 +0200 (CEST) Date: Mon, 09 Aug 2004 20:34:31 +0200 From: Mathieu Arnold To: Kris Kennaway Message-ID: <4A286D3C6C76A7889B8BD824@[192.168.1.51]> In-Reply-To: <20040809182940.B1D7B16A4D4@hub.freebsd.org> References: <20040809182940.B1D7B16A4D4@hub.freebsd.org> X-Mailer: Mulberry/3.1.6 (Win32) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline X-Spam-Checker-Version: SpamAssassin 2.64-abso_2004012301 (2004-01-11) on plouf.absolight.net by root@absolight.fr X-Virus-Scanned: by amavisd-new at plouf.absolight.net X-Spam-Status: No, hits=-3.405 tagged_above=-10 required=5 tests=AWL, BAYES_00, RCVD_IN_NJABL_DUL X-Spam-Level: cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/textproc/highlight Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:34:38 -0000 +-Le 09/08/2004 18:29 +0000, Kris Kennaway a dit : | kris 2004-08-09 18:29:37 UTC | BROKEN: Unfetchable fear, the grim reaper has come back ;-)) -- Mathieu Arnold From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:37:30 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11B5916A4CF; Mon, 9 Aug 2004 18:37:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E774943D41; Mon, 9 Aug 2004 18:37:29 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79IbTCI073539; Mon, 9 Aug 2004 18:37:29 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79IbTGn073538; Mon, 9 Aug 2004 18:37:29 GMT (envelope-from krion) Message-Id: <200408091837.i79IbTGn073538@repoman.freebsd.org> From: Kirill Ponomarew Date: Mon, 9 Aug 2004 18:37:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/highlight Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:37:30 -0000 krion 2004-08-09 18:37:29 UTC FreeBSD ports repository Modified files: textproc/highlight Makefile distinfo Log: Update to 2.2-2 Revision Changes Path 1.26 +1 -3 ports/textproc/highlight/Makefile 1.20 +2 -2 ports/textproc/highlight/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:44:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5697D16A4D0 for ; Mon, 9 Aug 2004 18:44:34 +0000 (GMT) Received: from mail1.speakeasy.net (mail1.speakeasy.net [216.254.0.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AD1843D54 for ; Mon, 9 Aug 2004 18:44:34 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 2066 invoked from network); 9 Aug 2004 18:44:33 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 9 Aug 2004 18:44:33 -0000 Received: from 10.50.40.208 (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i79IiDtJ076097; Mon, 9 Aug 2004 14:44:30 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Kris Kennaway Date: Mon, 9 Aug 2004 11:12:29 -0400 User-Agent: KMail/1.6 References: <200408042031.i74KVKUf039025@repoman.freebsd.org> <200408041634.03998.jhb@FreeBSD.org> <20040808042703.GA64746@xor.obsecurity.org> In-Reply-To: <20040808042703.GA64746@xor.obsecurity.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408091112.29286.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/i386/i386 pmap.c src/sys/kern subr_witness.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:44:34 -0000 On Sunday 08 August 2004 12:27 am, Kris Kennaway wrote: > On Wed, Aug 04, 2004 at 04:34:03PM -0400, John Baldwin wrote: > > On Wednesday 04 August 2004 04:31 pm, John Baldwin wrote: > > > jhb 2004-08-04 20:31:19 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/i386/i386 pmap.c > > > sys/kern subr_witness.c > > > Log: > > > Remove a potential deadlock on i386 SMP by changing the lazypmap ipi > > > and spin-wait code to use the same spin mutex (smp_tlb_mtx) as the TLB > > > ipi and spin-wait code snippets so that you can't get into the > > > situation of one CPU doing a TLB shootdown to another CPU that is doing > > > a lazy pmap shootdown each of which are waiting on each other. With > > > this change, only one of the CPUs would do an IPI and spin-wait at a > > > time. > > > > Both this patch and the previous I have tested locally and also sent out > > to current@ for testing. However, I received zero feedback (not even > > useless feedback), so they may theoretically be risky. > > Isn't this the patch I tested for you and reported that it did not fix > the problem? Yes, but I sent out _two_ patches to current@ and you didn't test the second one I guess. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:44:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EBF216A596 for ; Mon, 9 Aug 2004 18:44:37 +0000 (GMT) Received: from mail2.speakeasy.net (mail2.speakeasy.net [216.254.0.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE6AF43D5D for ; Mon, 9 Aug 2004 18:44:36 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 487 invoked from network); 9 Aug 2004 18:44:36 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 9 Aug 2004 18:44:36 -0000 Received: from 10.50.40.208 (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i79IiDtK076097; Mon, 9 Aug 2004 14:44:32 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Mark Murray Date: Mon, 9 Aug 2004 11:14:58 -0400 User-Agent: KMail/1.6 References: <200408062200.i76M0tvk068161@grimreaper.grondar.org> In-Reply-To: <200408062200.i76M0tvk068161@grimreaper.grondar.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408091114.58674.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Colin Percival cc: Colin Percival cc: Paul Richards Subject: Re: cvs commit: src/bin/ed Makefile src/gnu/usr.bin/cvs/cvs Makefile src/kerberos5 Makefile.inc src/lib/libfetch Makefile src/lib/libpam/libpam Makefile src/lib/libpam/modules/pam_krb5 Makefile src/lib/libpam/modules/pam_ksu Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:44:38 -0000 On Friday 06 August 2004 06:00 pm, Mark Murray wrote: > Paul Richards writes: > > It doesn't however follow that FreeBSD is always exempt from export > > controls because it might not be if your exporting it as a product, even > > if that product is just FreeBSD on a CD. > > This is just plain incorrect. If it is Open Source, it is exportable. > > > We'll always need to support > > the ability to build non-crypto releases so that it can be safely > > embedded in products that don't need crypto without encumbering the end > > product with a requirement for an export license. > > We have the ability to build a NOCRYPT _world_. For people building > appliances, that is sufficient. But people building appliances have > control over the whole manufacturing process, and the crypto-nature > of the product is therefore up to them. Open-source the OS on their > product; no problem. Make it closed source and deal with export > conditions. > > The ability to build NOCRYPT _releases_ is irrelevant. Hmm, we build the release for our "embedded" device using the FreeBSD release scripts and install using sysinstall config scripts. I don't think it is too much of a stretch to imagine that other people making appliances might do the same. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:44:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D189916A4D0 for ; Mon, 9 Aug 2004 18:44:58 +0000 (GMT) Received: from mail4.speakeasy.net (mail4.speakeasy.net [216.254.0.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D3F343D5A for ; Mon, 9 Aug 2004 18:44:58 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 22972 invoked from network); 9 Aug 2004 18:44:58 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 9 Aug 2004 18:44:57 -0000 Received: from 10.50.40.208 (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i79IiDtO076097; Mon, 9 Aug 2004 14:44:53 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Harti Brandt Date: Mon, 9 Aug 2004 13:45:48 -0400 User-Agent: KMail/1.6 References: <7mllgolwsk.wl@black.imgsrc.co.jp> <20040809.094110.04712576.imp@bsdimp.com> <20040809174540.U32590@beagle.kn.op.dlr.de> In-Reply-To: <20040809174540.U32590@beagle.kn.op.dlr.de> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408091345.48263.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: src-committers@FreeBSD.org cc: johan@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: kuriyama@imgsrc.co.jp cc: "M. Warner Losh" Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:44:59 -0000 On Monday 09 August 2004 11:54 am, Harti Brandt wrote: > On Mon, 9 Aug 2004, M. Warner Losh wrote: > > MWL>In message: <20040809.092824.11587387.imp@bsdimp.com> > MWL>: The current man page is stunningly vague about this. It says that it > MWL>: respects these environment variables, but it doesn't say they have to > MWL>: be set in the enviornment to the exclusion of setting them on the > MWL>: command line. > MWL> > MWL>So either we can make it work, or document that the variables listed > MWL>in the environment section must be set as environment variables only. > > There is nothing to be made work. Both variables are intended to be used > as environment variables. That they happend to work from the command line > was a side effect of make putting its variables into the environment. > Does the following clarify things enough? Doesn't change the fact that it can break existing scripts. I typically do % worldloop -j 64 MAKEOBJDIRPREFIX=/usr/obj.test on my test boxes (worldloop is a script that does a 'make buildworld "$@"' in a loop). Can't be fixed I guess. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:45:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3330016A67D; Mon, 9 Aug 2004 18:45:19 +0000 (GMT) Received: from smtp-vbr9.xs4all.nl (smtp-vbr9.xs4all.nl [194.109.24.29]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96A4643D60; Mon, 9 Aug 2004 18:45:18 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-vbr9.xs4all.nl (8.12.11/8.12.11) with ESMTP id i79Ij8OI007465; Mon, 9 Aug 2004 20:45:08 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i79Ij8dJ060175; Mon, 9 Aug 2004 20:45:08 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i79Ij8RC060174; Mon, 9 Aug 2004 20:45:08 +0200 (CEST) (envelope-from wb) Date: Mon, 9 Aug 2004 20:45:08 +0200 From: Wilko Bulte To: Ruslan Ermilov Message-ID: <20040809184508.GB60120@freebie.xs4all.nl> References: <200408072114.i77LEorM076643@repoman.freebsd.org> <41174EC2.10007@cronyx.ru> <20040809104206.GD51676@ip.net.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809104206.GD51676@ip.net.ua> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner cc: cvs-src@FreeBSD.ORG cc: Nicolas Souchu cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: Roman Kurakin Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:45:19 -0000 On Mon, Aug 09, 2004 at 01:42:06PM +0300, Ruslan Ermilov wrote.. > On Mon, Aug 09, 2004 at 02:15:30PM +0400, Roman Kurakin wrote: > > What is correct order in this file, by first name or by last name? > > > The correct order here is: > > - by month, > - by day, > - by year > - in case there's still a full match, by freefall login name. Yuck. /me loves YYYYMMDD. This American(?) MMDDYYYY is the worst date format yet invented :-P -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:46:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8521A16A4CE; Mon, 9 Aug 2004 18:46:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6603243D1F; Mon, 9 Aug 2004 18:46:13 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79IkDO5073801; Mon, 9 Aug 2004 18:46:13 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79IkD8x073800; Mon, 9 Aug 2004 18:46:13 GMT (envelope-from green) Message-Id: <200408091846.i79IkD8x073800@repoman.freebsd.org> From: Brian Feldman Date: Mon, 9 Aug 2004 18:46:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern link_elf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:46:13 -0000 green 2004-08-09 18:46:13 UTC FreeBSD src repository Modified files: sys/kern link_elf.c Log: Normalize the VM wiring done with SPARSE_MAPPING: check for errors, and unmap when done. For whatever reason, SPARSE_MAPPING is not even a config option, so this is dead code. Revision Changes Path 1.81 +17 -10 src/sys/kern/link_elf.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:46:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2224B16A559; Mon, 9 Aug 2004 18:46:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01F5043D41; Mon, 9 Aug 2004 18:46:40 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Ikd1k073834; Mon, 9 Aug 2004 18:46:39 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79IkdmV073833; Mon, 9 Aug 2004 18:46:39 GMT (envelope-from alc) Message-Id: <200408091846.i79IkdmV073833@repoman.freebsd.org> From: Alan Cox Date: Mon, 9 Aug 2004 18:46:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_fault.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:46:40 -0000 alc 2004-08-09 18:46:39 UTC FreeBSD src repository Modified files: sys/vm vm_fault.c Log: Make two changes to vm_fault(). 1. Move a comment to its proper place, updating it. (Except for white- space, this comment had been unchanged since revision 1.1!) 2. Remove spl calls. Revision Changes Path 1.190 +7 -16 src/sys/vm/vm_fault.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:50:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC34916A4D9; Mon, 9 Aug 2004 18:50:32 +0000 (GMT) Received: from sirius.firepipe.net (sirius.firepipe.net [69.13.116.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E74F43D31; Mon, 9 Aug 2004 18:50:32 +0000 (GMT) (envelope-from will@csociety.org) Received: by sirius.firepipe.net (Postfix, from userid 1000) id F3B4F180E8; Mon, 9 Aug 2004 13:50:31 -0500 (EST) Date: Mon, 9 Aug 2004 13:50:31 -0500 From: Will Andrews To: Wilko Bulte Message-ID: <20040809185031.GX26004@sirius.firepipe.net> References: <200408072114.i77LEorM076643@repoman.freebsd.org> <41174EC2.10007@cronyx.ru> <20040809104206.GD51676@ip.net.ua> <20040809184508.GB60120@freebie.xs4all.nl> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ItroYk2LVxvwOvi/" Content-Disposition: inline In-Reply-To: <20040809184508.GB60120@freebie.xs4all.nl> User-Agent: Mutt/1.5.6i cc: src-committers@FreeBSD.ORG cc: cvs-src@FreeBSD.ORG cc: Nicolas Souchu cc: cvs-all@FreeBSD.ORG cc: Roman Kurakin cc: Ruslan Ermilov Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:50:33 -0000 --ItroYk2LVxvwOvi/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 08:45:08PM +0200, Wilko Bulte wrote: > Yuck. /me loves YYYYMMDD. This American(?) MMDDYYYY is the worst > date format yet invented :-P It's not as bad as the European DDMMYYYY. :P --=20 wca --ItroYk2LVxvwOvi/ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBF8d3F47idPgWcsURAkXTAKCC3tbhVjlS1NXmewpGpX2iJJrmywCdGmFI e1+HjmeP28cobUJ+9YYmJIA= =MqnS -----END PGP SIGNATURE----- --ItroYk2LVxvwOvi/-- From owner-cvs-all@FreeBSD.ORG Mon Aug 9 18:51:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF6EE16A4CE; Mon, 9 Aug 2004 18:51:35 +0000 (GMT) Received: from n33.kp.t-systems-sfr.com (n33.kp.t-systems-sfr.com [129.247.16.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4014F43D49; Mon, 9 Aug 2004 18:51:34 +0000 (GMT) (envelope-from harti@freebsd.org) Received: from n81.sp.op.dlr.de (n81g.sp.op.dlr.de [129.247.163.1]) i79IpVX215394; Mon, 9 Aug 2004 20:51:31 +0200 Received: from zeus.nt.op.dlr.de (zeus.nt.op.dlr.de [129.247.173.3]) i79IpVf390426; Mon, 9 Aug 2004 20:51:31 +0200 Received: from beagle.kn.op.dlr.de (opkndnwsbsd178 [129.247.173.178]) by zeus.nt.op.dlr.de (8.11.7+Sun/8.9.1) with ESMTP id i79IpTe02178; Mon, 9 Aug 2004 20:51:29 +0200 (MET DST) Date: Mon, 9 Aug 2004 20:51:29 +0200 (CEST) From: Harti Brandt X-X-Sender: brandt@beagle.kn.op.dlr.de To: John Baldwin In-Reply-To: <200408091345.48263.jhb@FreeBSD.org> Message-ID: <20040809205012.K32590@beagle.kn.op.dlr.de> References: <7mllgolwsk.wl@black.imgsrc.co.jp> <20040809.094110.04712576.imp@bsdimp.com> <200408091345.48263.jhb@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: src-committers@freebsd.org cc: johan@freebsd.org cc: cvs-src@freebsd.org cc: cvs-all@freebsd.org cc: kuriyama@imgsrc.co.jp cc: "M. Warner Losh" Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Harti Brandt List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 18:51:35 -0000 On Mon, 9 Aug 2004, John Baldwin wrote: JB>On Monday 09 August 2004 11:54 am, Harti Brandt wrote: JB>> On Mon, 9 Aug 2004, M. Warner Losh wrote: JB>> JB>> MWL>In message: <20040809.092824.11587387.imp@bsdimp.com> JB>> MWL>: The current man page is stunningly vague about this. It says that it JB>> MWL>: respects these environment variables, but it doesn't say they have to JB>> MWL>: be set in the enviornment to the exclusion of setting them on the JB>> MWL>: command line. JB>> MWL> JB>> MWL>So either we can make it work, or document that the variables listed JB>> MWL>in the environment section must be set as environment variables only. JB>> JB>> There is nothing to be made work. Both variables are intended to be used JB>> as environment variables. That they happend to work from the command line JB>> was a side effect of make putting its variables into the environment. JB>> Does the following clarify things enough? JB> JB>Doesn't change the fact that it can break existing scripts. I typically do JB> JB>% worldloop -j 64 MAKEOBJDIRPREFIX=/usr/obj.test JB> JB>on my test boxes (worldloop is a script that does a 'make buildworld "$@"' in JB>a loop). Can't be fixed I guess. Wouldn't MAKEOBJDIRPREFIX=/usr/obj.test worldloop -j 64 do the trick? harti From owner-cvs-all@FreeBSD.ORG Mon Aug 9 19:09:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 68AC816A4CE; Mon, 9 Aug 2004 19:09:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48B5143D54; Mon, 9 Aug 2004 19:09:06 +0000 (GMT) (envelope-from mezz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79J96jM074681; Mon, 9 Aug 2004 19:09:06 GMT (envelope-from mezz@repoman.freebsd.org) Received: (from mezz@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79J961H074680; Mon, 9 Aug 2004 19:09:06 GMT (envelope-from mezz) Message-Id: <200408091909.i79J961H074680@repoman.freebsd.org> From: Jeremy Messenger Date: Mon, 9 Aug 2004 19:09:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/fluxbox Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:09:06 -0000 mezz 2004-08-09 19:09:06 UTC FreeBSD ports repository Modified files: x11-wm/fluxbox Makefile pkg-plist Log: Clean up this port: - Move MAN1 outside the bsd.port.pre.mk. - Turn the knobs order into ABCs order. - Few other clean up to make the portlint a bit happy man. - No function change and now is easier to read. Revision Changes Path 1.34 +18 -17 ports/x11-wm/fluxbox/Makefile 1.10 +7 -7 ports/x11-wm/fluxbox/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Aug 9 19:14:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C00A16A4CE for ; Mon, 9 Aug 2004 19:14:50 +0000 (GMT) Received: from mail1.speakeasy.net (mail1.speakeasy.net [216.254.0.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00BE343D45 for ; Mon, 9 Aug 2004 19:14:50 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 27046 invoked from network); 9 Aug 2004 19:14:49 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 9 Aug 2004 19:14:49 -0000 Received: from 10.50.40.208 (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i79JEjHo076363; Mon, 9 Aug 2004 15:14:46 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Harti Brandt Date: Mon, 9 Aug 2004 15:00:28 -0400 User-Agent: KMail/1.6 References: <7mllgolwsk.wl@black.imgsrc.co.jp> <200408091345.48263.jhb@FreeBSD.org> <20040809205012.K32590@beagle.kn.op.dlr.de> In-Reply-To: <20040809205012.K32590@beagle.kn.op.dlr.de> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408091500.28587.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: src-committers@FreeBSD.org cc: johan@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: kuriyama@imgsrc.co.jp cc: "M. Warner Losh" Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:14:50 -0000 On Monday 09 August 2004 02:51 pm, Harti Brandt wrote: > On Mon, 9 Aug 2004, John Baldwin wrote: > > JB>On Monday 09 August 2004 11:54 am, Harti Brandt wrote: > JB>> On Mon, 9 Aug 2004, M. Warner Losh wrote: > JB>> > JB>> MWL>In message: <20040809.092824.11587387.imp@bsdimp.com> > JB>> MWL>: The current man page is stunningly vague about this. It says > that it JB>> MWL>: respects these environment variables, but it doesn't say > they have to JB>> MWL>: be set in the enviornment to the exclusion of > setting them on the JB>> MWL>: command line. > JB>> MWL> > JB>> MWL>So either we can make it work, or document that the variables > listed JB>> MWL>in the environment section must be set as environment > variables only. JB>> > JB>> There is nothing to be made work. Both variables are intended to be > used JB>> as environment variables. That they happend to work from the > command line JB>> was a side effect of make putting its variables into the > environment. JB>> Does the following clarify things enough? > JB> > JB>Doesn't change the fact that it can break existing scripts. I typically > do JB> > JB>% worldloop -j 64 MAKEOBJDIRPREFIX=/usr/obj.test > JB> > JB>on my test boxes (worldloop is a script that does a 'make buildworld > "$@"' in JB>a loop). Can't be fixed I guess. > > Wouldn't > > MAKEOBJDIRPREFIX=/usr/obj.test worldloop -j 64 ^^ env (I'm a tcsh user). It will work, but the other one is already programmed into my brain. :-/ -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Mon Aug 9 19:15:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A1C316A4D2 for ; Mon, 9 Aug 2004 19:15:02 +0000 (GMT) Received: from mail2.speakeasy.net (mail2.speakeasy.net [216.254.0.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFDC743D5E for ; Mon, 9 Aug 2004 19:15:01 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 18712 invoked from network); 9 Aug 2004 19:15:01 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 9 Aug 2004 19:15:01 -0000 Received: from 10.50.40.208 (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i79JEjHq076363; Mon, 9 Aug 2004 15:14:57 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Alfred Perlstein Date: Mon, 9 Aug 2004 15:08:22 -0400 User-Agent: KMail/1.6 References: <200408042031.i74KVKUf039025@repoman.freebsd.org> <20040808042703.GA64746@xor.obsecurity.org> <20040808053321.GD57908@elvis.mu.org> In-Reply-To: <20040808053321.GD57908@elvis.mu.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408091508.22530.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: src/sys/i386/i386 pmap.c src/sys/kern subr_witness.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:15:02 -0000 On Sunday 08 August 2004 01:33 am, Alfred Perlstein wrote: > * Kris Kennaway [040807 21:28] wrote: > > On Wed, Aug 04, 2004 at 04:34:03PM -0400, John Baldwin wrote: > > > On Wednesday 04 August 2004 04:31 pm, John Baldwin wrote: > > > > jhb 2004-08-04 20:31:19 UTC > > > > > > > > FreeBSD src repository > > > > > > > > Modified files: > > > > sys/i386/i386 pmap.c > > > > sys/kern subr_witness.c > > > > Log: > > > > Remove a potential deadlock on i386 SMP by changing the lazypmap > > > > ipi and spin-wait code to use the same spin mutex (smp_tlb_mtx) as > > > > the TLB ipi and spin-wait code snippets so that you can't get into > > > > the situation of one CPU doing a TLB shootdown to another CPU that is > > > > doing a lazy pmap shootdown each of which are waiting on each other. > > > > With this change, only one of the CPUs would do an IPI and spin-wait > > > > at a time. > > > > > > Both this patch and the previous I have tested locally and also sent > > > out to current@ for testing. However, I received zero feedback (not > > > even useless feedback), so they may theoretically be risky. > > > > Isn't this the patch I tested for you and reported that it did not fix > > the problem? > > Y'know there's some existing research on these sort of low level > deadlocks, ie. how to do TLB shootdown without deadlock in: > > "UNIX Internals: The New Frontiers" Yes, and the failsafe algorithm is to halt all CPUs, do the change, then unhalt the CPUs forcing each one to do a TLB shootdown when it unfreezes. Unfortuantely, this has a very negative performance impact as the book also details. The current code was written by Peter who is not all that dumb, Alfred. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Mon Aug 9 19:18:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6E2616A4CE; Mon, 9 Aug 2004 19:18:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADDCA43D49; Mon, 9 Aug 2004 19:18:19 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79JIJfB074994; Mon, 9 Aug 2004 19:18:19 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79JIJ4h074993; Mon, 9 Aug 2004 19:18:19 GMT (envelope-from harti) Message-Id: <200408091918.i79JIJ4h074993@repoman.freebsd.org> From: Hartmut Brandt Date: Mon, 9 Aug 2004 19:18:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/crunch/crunchgen crunchgen.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:18:19 -0000 harti 2004-08-09 19:18:19 UTC FreeBSD src repository Modified files: usr.sbin/crunch/crunchgen crunchgen.c Log: Fix a 4.X -> 5.X upgrade problem: crunchgen used to emit a line 'MAKE=make' or 'env MAKEOBJDIRPREFIX=... make' depending on the setting of MAKEOBJDIRPREFIX in the environment. In any case this line kills the original value of ${MAKE}. When during buildworld a new make is built (as is the case during the upgrade) this causes a wrong make to be picked up (the first one in the path). Use the same technique as Makefile.inc1: create a MAKEENV variable and a CRUNCHMAKE that calls ${MAKE} with that MAKEENV prefixed. Use CRUNCHMAKE instead of MAKE throughout the generated makefile. This leaves the original ${MAKE} undisturbed. Revision Changes Path 1.34 +7 -7 src/usr.sbin/crunch/crunchgen/crunchgen.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 19:20:10 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AFFB16A4CE; Mon, 9 Aug 2004 19:20:10 +0000 (GMT) Received: from n33.kp.t-systems-sfr.com (n33.kp.t-systems-sfr.com [129.247.16.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 518D343D48; Mon, 9 Aug 2004 19:20:05 +0000 (GMT) (envelope-from harti@freebsd.org) Received: from n81.sp.op.dlr.de (n81g.sp.op.dlr.de [129.247.163.1]) i79JK4X421814; Mon, 9 Aug 2004 21:20:04 +0200 Received: from zeus.nt.op.dlr.de (zeus.nt.op.dlr.de [129.247.173.3]) i79JK3f802854; Mon, 9 Aug 2004 21:20:03 +0200 Received: from beagle.kn.op.dlr.de (opkndnwsbsd178 [129.247.173.178]) by zeus.nt.op.dlr.de (8.11.7+Sun/8.9.1) with ESMTP id i79JK3e02375; Mon, 9 Aug 2004 21:20:03 +0200 (MET DST) Date: Mon, 9 Aug 2004 21:20:03 +0200 (CEST) From: Harti Brandt X-X-Sender: brandt@beagle.kn.op.dlr.de To: John Baldwin In-Reply-To: <200408091500.28587.jhb@FreeBSD.org> Message-ID: <20040809211848.L32590@beagle.kn.op.dlr.de> References: <7mllgolwsk.wl@black.imgsrc.co.jp> <200408091345.48263.jhb@FreeBSD.org> <200408091500.28587.jhb@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: src-committers@freebsd.org cc: johan@freebsd.org cc: cvs-src@freebsd.org cc: cvs-all@freebsd.org cc: kuriyama@imgsrc.co.jp cc: "M. Warner Losh" Subject: Re: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Harti Brandt List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:20:10 -0000 On Mon, 9 Aug 2004, John Baldwin wrote: JB>On Monday 09 August 2004 02:51 pm, Harti Brandt wrote: JB>> On Mon, 9 Aug 2004, John Baldwin wrote: JB>> JB>> JB>On Monday 09 August 2004 11:54 am, Harti Brandt wrote: JB>> JB>> On Mon, 9 Aug 2004, M. Warner Losh wrote: JB>> JB>> JB>> JB>> MWL>In message: <20040809.092824.11587387.imp@bsdimp.com> JB>> JB>> MWL>: The current man page is stunningly vague about this. It says JB>> that it JB>> MWL>: respects these environment variables, but it doesn't say JB>> they have to JB>> MWL>: be set in the enviornment to the exclusion of JB>> setting them on the JB>> MWL>: command line. JB>> JB>> MWL> JB>> JB>> MWL>So either we can make it work, or document that the variables JB>> listed JB>> MWL>in the environment section must be set as environment JB>> variables only. JB>> JB>> JB>> There is nothing to be made work. Both variables are intended to be JB>> used JB>> as environment variables. That they happend to work from the JB>> command line JB>> was a side effect of make putting its variables into the JB>> environment. JB>> Does the following clarify things enough? JB>> JB> JB>> JB>Doesn't change the fact that it can break existing scripts. I typically JB>> do JB> JB>> JB>% worldloop -j 64 MAKEOBJDIRPREFIX=/usr/obj.test JB>> JB> JB>> JB>on my test boxes (worldloop is a script that does a 'make buildworld JB>> "$@"' in JB>a loop). Can't be fixed I guess. JB>> JB>> Wouldn't JB>> JB>> MAKEOBJDIRPREFIX=/usr/obj.test worldloop -j 64 JB> JB>^^ env JB> JB>(I'm a tcsh user). It will work, but the other one is already programmed into JB>my brain. :-/ Is that a flash or a ROM? In the first case there is some hope :-) harti From owner-cvs-all@FreeBSD.ORG Mon Aug 9 19:34:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 842A416A4CF; Mon, 9 Aug 2004 19:34:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 661D543D45; Mon, 9 Aug 2004 19:34:34 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79JYYp4075365; Mon, 9 Aug 2004 19:34:34 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79JYYdi075364; Mon, 9 Aug 2004 19:34:34 GMT (envelope-from thierry) Message-Id: <200408091934.i79JYYdi075364@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 9 Aug 2004 19:34:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/french/mozilla-flp Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:34:34 -0000 thierry 2004-08-09 19:34:34 UTC FreeBSD ports repository Modified files: french/mozilla-flp Makefile distinfo Log: Upgrade to 1.7.1. Revision Changes Path 1.4 +1 -2 ports/french/mozilla-flp/Makefile 1.3 +2 -2 ports/french/mozilla-flp/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 19:36:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7100C16A4CE; Mon, 9 Aug 2004 19:36:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52D1943D2F; Mon, 9 Aug 2004 19:36:53 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79JarIp075524; Mon, 9 Aug 2004 19:36:53 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Jar0T075523; Mon, 9 Aug 2004 19:36:53 GMT (envelope-from kensmith) Message-Id: <200408091936.i79Jar0T075523@repoman.freebsd.org> From: Ken Smith Date: Mon, 9 Aug 2004 19:36:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/scripts print-cdrom-packages.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:36:53 -0000 kensmith 2004-08-09 19:36:53 UTC FreeBSD src repository Modified files: release/scripts print-cdrom-packages.sh Log: Shift to the same version of perl that portmgr@ has as their default. Pointed out by: jhb Revision Changes Path 1.63 +1 -1 src/release/scripts/print-cdrom-packages.sh From owner-cvs-all@FreeBSD.ORG Mon Aug 9 19:49:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96DB916A4CE; Mon, 9 Aug 2004 19:49:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7302E43D5F; Mon, 9 Aug 2004 19:49:18 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79JnIGM076071; Mon, 9 Aug 2004 19:49:18 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79JnIDb076070; Mon, 9 Aug 2004 19:49:18 GMT (envelope-from hrs) Message-Id: <200408091949.i79JnIDb076070@repoman.freebsd.org> From: Hiroki Sato Date: Mon, 9 Aug 2004 19:49:18 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/console-server article.sgml doc/en_US.ISO8859-1/articles/contributingarticle.sgml doc/en_US.ISO8859-1/articles/formatting-mediaarticle.sgml ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:49:18 -0000 hrs 2004-08-09 19:49:18 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/console-server article.sgml en_US.ISO8859-1/articles/contributing article.sgml en_US.ISO8859-1/articles/dialup-firewall article.sgml en_US.ISO8859-1/articles/fonts article.sgml en_US.ISO8859-1/articles/formatting-media article.sgml en_US.ISO8859-1/articles/freebsd-questions article.sgml en_US.ISO8859-1/articles/mh article.sgml en_US.ISO8859-1/articles/multi-os article.sgml en_US.ISO8859-1/articles/new-users article.sgml en_US.ISO8859-1/articles/problem-reports article.sgml en_US.ISO8859-1/books/arch-handbook book.sgml en_US.ISO8859-1/books/developers-handbook/secure chapter.sgml en_US.ISO8859-1/books/developers-handbook/tools chapter.sgml en_US.ISO8859-1/books/faq book.sgml en_US.ISO8859-1/books/porters-handbook book.sgml Log: Use lower-case characters for attribute name (s/URL=/url=/). No content change. Revision Changes Path 1.22 +24 -24 doc/en_US.ISO8859-1/articles/console-server/article.sgml 1.503 +1 -1 doc/en_US.ISO8859-1/articles/contributing/article.sgml 1.39 +1 -1 doc/en_US.ISO8859-1/articles/dialup-firewall/article.sgml 1.27 +1 -1 doc/en_US.ISO8859-1/articles/fonts/article.sgml 1.29 +2 -2 doc/en_US.ISO8859-1/articles/formatting-media/article.sgml 1.23 +9 -9 doc/en_US.ISO8859-1/articles/freebsd-questions/article.sgml 1.25 +5 -5 doc/en_US.ISO8859-1/articles/mh/article.sgml 1.39 +11 -11 doc/en_US.ISO8859-1/articles/multi-os/article.sgml 1.47 +3 -3 doc/en_US.ISO8859-1/articles/new-users/article.sgml 1.35 +14 -14 doc/en_US.ISO8859-1/articles/problem-reports/article.sgml 1.48 +1 -1 doc/en_US.ISO8859-1/books/arch-handbook/book.sgml 1.23 +1 -1 doc/en_US.ISO8859-1/books/developers-handbook/secure/chapter.sgml 1.41 +19 -19 doc/en_US.ISO8859-1/books/developers-handbook/tools/chapter.sgml 1.639 +116 -116 doc/en_US.ISO8859-1/books/faq/book.sgml 1.477 +5 -5 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 19:49:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B4BD16A4DE for ; Mon, 9 Aug 2004 19:49:22 +0000 (GMT) Received: from numeri.campus.luth.se (numeri.campus.luth.se [130.240.197.103]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FB3243D64 for ; Mon, 9 Aug 2004 19:49:21 +0000 (GMT) (envelope-from k@numeri.campus.luth.se) Received: from numeri.campus.luth.se (localhost [127.0.0.1]) i79JnJpU016819; Mon, 9 Aug 2004 21:49:19 +0200 (CEST) (envelope-from k@numeri.campus.luth.se) Received: (from k@localhost) by numeri.campus.luth.se (8.12.11/8.12.11/Submit) id i79JnIpW016818; Mon, 9 Aug 2004 21:49:18 +0200 (CEST) (envelope-from k) Date: Mon, 9 Aug 2004 21:49:18 +0200 From: Johan Karlsson To: Will Andrews Message-ID: <20040809194918.GA7261@numeri.campus.luth.se> References: <200408072114.i77LEorM076643@repoman.freebsd.org> <41174EC2.10007@cronyx.ru> <20040809104206.GD51676@ip.net.ua> <20040809184508.GB60120@freebie.xs4all.nl> <20040809185031.GX26004@sirius.firepipe.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809185031.GX26004@sirius.firepipe.net> User-Agent: Mutt/1.4.2.1i cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: Nicolas Souchu cc: cvs-all@FreeBSD.org cc: Roman Kurakin cc: Ruslan Ermilov cc: Wilko Bulte Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:49:22 -0000 On Mon, Aug 09, 2004 at 13:50 (-0500), Will Andrews wrote: > On Mon, Aug 09, 2004 at 08:45:08PM +0200, Wilko Bulte wrote: > > Yuck. /me loves YYYYMMDD. This American(?) MMDDYYYY is the worst > > date format yet invented :-P > > It's not as bad as the European DDMMYYYY. :P At least DDMMYYYY is in increasing order of magnitude :-) MMDDYYYY is in no order at all. /Johan K -- Johan Karlsson mailto:johan@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Mon Aug 9 19:52:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF6A816A4CE; Mon, 9 Aug 2004 19:52:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5CB343D2D; Mon, 9 Aug 2004 19:52:29 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79JqTUj076246; Mon, 9 Aug 2004 19:52:29 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79JqT4B076245; Mon, 9 Aug 2004 19:52:29 GMT (envelope-from green) Message-Id: <200408091952.i79JqT4B076245@repoman.freebsd.org> From: Brian Feldman Date: Mon, 9 Aug 2004 19:52:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_kern.c vm_map.c vm_map.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 19:52:30 -0000 green 2004-08-09 19:52:29 UTC FreeBSD src repository Modified files: sys/vm vm_kern.c vm_map.c vm_map.h Log: Revamp VM map wiring. * Allow no-fault wiring/unwiring to succeed for consistency; however, the wired count remains at zero, so it's a special case. * Fix issues inside vm_map_wire() and vm_map_unwire() where the exact state of user wiring (one or zero) and system wiring (zero or more) could be confused; for example, system unwiring could succeed in removing a user wire, instead of being an error. * Require all mappings to be unwired before they are deleted. When VM space is still wired upon deletion, it will be waited upon for the following unwire. This makes vslock(9) work rather than allowing kernel-locked memory to be deleted out from underneath of its consumer as it would before. Revision Changes Path 1.119 +4 -0 src/sys/vm/vm_kern.c 1.353 +32 -14 src/sys/vm/vm_map.c 1.114 +14 -0 src/sys/vm/vm_map.h From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:03:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2CAC16A4CE; Mon, 9 Aug 2004 20:03:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9371943D4C; Mon, 9 Aug 2004 20:03:23 +0000 (GMT) (envelope-from stephane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79K3NWd076561; Mon, 9 Aug 2004 20:03:23 GMT (envelope-from stephane@repoman.freebsd.org) Received: (from stephane@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79K3Nog076560; Mon, 9 Aug 2004 20:03:23 GMT (envelope-from stephane) Message-Id: <200408092003.i79K3Nog076560@repoman.freebsd.org> From: Stephane Legrand Date: Mon, 9 Aug 2004 20:03:23 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/fr/copyright copyright.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:03:23 -0000 stephane 2004-08-09 20:03:23 UTC FreeBSD doc repository Modified files: fr/copyright copyright.sgml Log: freebsd-doc-license is not translated, fix the URL to point to the english version. Submitted by: Antoine Brodin Revision Changes Path 1.5 +3 -2 www/fr/copyright/copyright.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:03:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from green.homeunix.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 40ADC16A4CE; Mon, 9 Aug 2004 20:03:35 +0000 (GMT) Received: from green.homeunix.org (green@localhost [127.0.0.1]) by green.homeunix.org (8.12.11/8.12.11) with ESMTP id i79K3Y1v078074; Mon, 9 Aug 2004 16:03:34 -0400 (EDT) (envelope-from green@green.homeunix.org) Received: (from green@localhost) by green.homeunix.org (8.13.1/8.13.1/Submit) id i79K3Yrb078073; Mon, 9 Aug 2004 16:03:34 -0400 (EDT) (envelope-from green) Date: Mon, 9 Aug 2004 16:03:33 -0400 From: Brian Fundakowski Feldman To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040809200333.GD14657@green.homeunix.org> References: <200408091952.i79JqT4B076245@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408091952.i79JqT4B076245@repoman.freebsd.org> User-Agent: Mutt/1.5.6i Subject: Re: cvs commit: src/sys/vm vm_kern.c vm_map.c vm_map.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:03:35 -0000 On Mon, Aug 09, 2004 at 07:52:29PM +0000, Brian Feldman wrote: > green 2004-08-09 19:52:29 UTC > > FreeBSD src repository > > Modified files: > sys/vm vm_kern.c vm_map.c vm_map.h > Log: > Revamp VM map wiring. > > * Allow no-fault wiring/unwiring to succeed for consistency; > however, the wired count remains at zero, so it's a special case. > > * Fix issues inside vm_map_wire() and vm_map_unwire() where the > exact state of user wiring (one or zero) and system wiring > (zero or more) could be confused; for example, system unwiring > could succeed in removing a user wire, instead of being an > error. > > * Require all mappings to be unwired before they are deleted. > When VM space is still wired upon deletion, it will be waited > upon for the following unwire. This makes vslock(9) work > rather than allowing kernel-locked memory to be deleted > out from underneath of its consumer as it would before. Tor Egge and Alan Cox have each fundamentally agreed to different parts of these changes, but I never got a concensus in review. Alan pointed out that it's somewhat bogus to make all no-fault system mappings transparently succeed for wiring and unwiring, but I erred on the side of consistency, that if memory was freed using kmem_free(), it was assumed to be either wired or no-fault. That assumption can be pushed back upward into kmem_free() or the callers without making things too messy. There are additional changes I have locally in the VM area that I think are important or useful. VM wiring can create a whole- system deadlock that unlike other low-memory deadlocks, cannot be broken out of because of vm_waitpfault(). Also, as it is demonstrated by the new version of ntpd, VM wiring cannot cope with VM area which has PROT_NONE protection; it is not hard to modify, as Alan suggests, pmap to support the idea of wired but inaccessible pages, but I have only done this for i386. One would wonder why ntpd wants to have any PROT_NONE mappings, but those mappings should not necessarily preclude mlockall(2). -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:04:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EABE716A4CE; Mon, 9 Aug 2004 20:04:58 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC27843D5E; Mon, 9 Aug 2004 20:04:58 +0000 (GMT) (envelope-from billf@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1098) id D03B35C917; Mon, 9 Aug 2004 13:04:58 -0700 (PDT) Date: Mon, 9 Aug 2004 13:04:58 -0700 From: Bill Fumerola To: Johan Karlsson Message-ID: <20040809200458.GO92696@elvis.mu.org> References: <200408072114.i77LEorM076643@repoman.freebsd.org> <41174EC2.10007@cronyx.ru> <20040809104206.GD51676@ip.net.ua> <20040809184508.GB60120@freebie.xs4all.nl> <20040809185031.GX26004@sirius.firepipe.net> <20040809194918.GA7261@numeri.campus.luth.se> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809194918.GA7261@numeri.campus.luth.se> User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD 4.10-MUORG-20040525 i386 X-PGP-Key: 1024D/7F868268 X-PGP-Fingerprint: 5B2D 908E 4C2B F253 DAEB FC01 8436 B70B 7F86 8268 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:04:59 -0000 On Mon, Aug 09, 2004 at 09:49:18PM +0200, Johan Karlsson wrote: > MMDDYYYY is in no order at all. european calendars with 31 pages and up to 12 squares on each page must sure look funny. -- - bill fumerola / fumerola@yahoo-inc.com / billf@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:13:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6D5016A4CE; Mon, 9 Aug 2004 20:13:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7B7A43D2F; Mon, 9 Aug 2004 20:13:07 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79KD7Lm076911; Mon, 9 Aug 2004 20:13:07 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79KD7TR076910; Mon, 9 Aug 2004 20:13:07 GMT (envelope-from julian) Message-Id: <200408092013.i79KD7TR076910@repoman.freebsd.org> From: Julian Elischer Date: Mon, 9 Aug 2004 20:13:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_proc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:13:08 -0000 julian 2004-08-09 20:13:07 UTC FreeBSD src repository Modified files: sys/kern kern_proc.c Log: Remove typos on KASSERT messages. Revision Changes Path 1.214 +3 -3 src/sys/kern/kern_proc.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:16:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4C0A16A4CE; Mon, 9 Aug 2004 20:16:41 +0000 (GMT) Received: from electra.cse.Buffalo.EDU (electra.cse.Buffalo.EDU [128.205.32.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F3AE43D1F; Mon, 9 Aug 2004 20:16:41 +0000 (GMT) (envelope-from kensmith@cse.Buffalo.EDU) Received: from electra.cse.Buffalo.EDU (kensmith@localhost [127.0.0.1]) i79KGeTH007589; Mon, 9 Aug 2004 16:16:40 -0400 (EDT) Received: (from kensmith@localhost) by electra.cse.Buffalo.EDU (8.12.10/8.12.9/Submit) id i79KGevi007587; Mon, 9 Aug 2004 16:16:40 -0400 (EDT) Date: Mon, 9 Aug 2004 16:16:40 -0400 From: Ken Smith To: Bill Fumerola Message-ID: <20040809201640.GA7436@electra.cse.Buffalo.EDU> References: <200408072114.i77LEorM076643@repoman.freebsd.org> <41174EC2.10007@cronyx.ru> <20040809104206.GD51676@ip.net.ua> <20040809184508.GB60120@freebie.xs4all.nl> <20040809185031.GX26004@sirius.firepipe.net> <20040809194918.GA7261@numeri.campus.luth.se> <20040809200458.GO92696@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809200458.GO92696@elvis.mu.org> User-Agent: Mutt/1.4.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Johan Karlsson Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:16:42 -0000 On Mon, Aug 09, 2004 at 01:04:58PM -0700, Bill Fumerola wrote: > On Mon, Aug 09, 2004 at 09:49:18PM +0200, Johan Karlsson wrote: > > MMDDYYYY is in no order at all. > > european calendars with 31 pages and up to 12 squares on each page must > sure look funny. Just think of all the extra pictures of {swimsuit-clad-models | playmates | cars | whatever-your-pleasure}!!! :-) -- Ken Smith - From there to here, from here to | kensmith@cse.buffalo.edu there, funny things are everywhere. | - Theodore Geisel | From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:19:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5601116A4CE; Mon, 9 Aug 2004 20:19:33 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E2B543D55; Mon, 9 Aug 2004 20:19:32 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.13.1/8.13.1) with ESMTP id i79KJVBQ030887; Mon, 9 Aug 2004 22:19:31 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Bill Fumerola From: "Poul-Henning Kamp" In-Reply-To: Your message of "Mon, 09 Aug 2004 13:04:58 PDT." <20040809200458.GO92696@elvis.mu.org> Date: Mon, 09 Aug 2004 22:19:31 +0200 Message-ID: <30886.1092082771@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Johan Karlsson Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:19:33 -0000 In message <20040809200458.GO92696@elvis.mu.org>, Bill Fumerola writes: >On Mon, Aug 09, 2004 at 09:49:18PM +0200, Johan Karlsson wrote: >> MMDDYYYY is in no order at all. > >european calendars with 31 pages and up to 12 squares on each page must >sure look funny. Actually, it's perfectly natural when done with metric units :-) -- 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 Mon Aug 9 20:22:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6CBB916A4CE; Mon, 9 Aug 2004 20:22:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E33643D45; Mon, 9 Aug 2004 20:22:17 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79KMH46077184; Mon, 9 Aug 2004 20:22:17 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79KMH1x077183; Mon, 9 Aug 2004 20:22:17 GMT (envelope-from green) Message-Id: <200408092022.i79KMH1x077183@repoman.freebsd.org> From: Brian Feldman Date: Mon, 9 Aug 2004 20:22:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_rl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:22:17 -0000 green 2004-08-09 20:22:17 UTC FreeBSD src repository Modified files: sys/pci if_rl.c Log: Fix rl(4)'s lock behavior upon deinitialization. I would get a panic when kldunloading due to its private locking being acquired recursively. Revision Changes Path 1.145 +6 -5 src/sys/pci/if_rl.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:34:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8E8D16A4D1; Mon, 9 Aug 2004 20:34:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA50A43D54; Mon, 9 Aug 2004 20:34:09 +0000 (GMT) (envelope-from stephane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79KY9Hs077501; Mon, 9 Aug 2004 20:34:09 GMT (envelope-from stephane@repoman.freebsd.org) Received: (from stephane@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79KY9hM077500; Mon, 9 Aug 2004 20:34:09 GMT (envelope-from stephane) Message-Id: <200408092034.i79KY9hM077500@repoman.freebsd.org> From: Stephane Legrand Date: Mon, 9 Aug 2004 20:34:09 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/fr/projects/acpi index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:34:10 -0000 stephane 2004-08-09 20:34:09 UTC FreeBSD doc repository Added files: fr/projects/acpi index.sgml Log: New translation. fr/projects/acpi/index.sgml: MFen 1.1 Submitted by: Antoine Brodin Revision Changes Path 1.1 +135 -0 www/fr/projects/acpi/index.sgml (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:35:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 743E116A4CE; Mon, 9 Aug 2004 20:35:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5544143D41; Mon, 9 Aug 2004 20:35:00 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79KZ0Qk077574; Mon, 9 Aug 2004 20:35:00 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79KZ0w1077573; Mon, 9 Aug 2004 20:35:00 GMT (envelope-from krion) Message-Id: <200408092035.i79KZ0w1077573@repoman.freebsd.org> From: Kirill Ponomarew Date: Mon, 9 Aug 2004 20:35:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/ap-utils/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:35:00 -0000 krion 2004-08-09 20:35:00 UTC FreeBSD ports repository Added files: net-mgmt/ap-utils/files patch-aa Log: Fix build on 4.x Submitted by: maintainer Revision Changes Path 1.5 +10 -0 ports/net-mgmt/ap-utils/files/patch-aa (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:35:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5566716A4CE; Mon, 9 Aug 2004 20:35:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37E9A43D1F; Mon, 9 Aug 2004 20:35:42 +0000 (GMT) (envelope-from stephane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79KZg5U077668; Mon, 9 Aug 2004 20:35:42 GMT (envelope-from stephane@repoman.freebsd.org) Received: (from stephane@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79KZgK7077667; Mon, 9 Aug 2004 20:35:42 GMT (envelope-from stephane) Message-Id: <200408092035.i79KZgK7077667@repoman.freebsd.org> From: Stephane Legrand Date: Mon, 9 Aug 2004 20:35:42 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/fr/projects/acpi Makefile style.css X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:35:42 -0000 stephane 2004-08-09 20:35:42 UTC FreeBSD doc repository Added files: fr/projects/acpi Makefile style.css Log: Makefile and CSS for ACPI page. Revision Changes Path 1.1 +20 -0 www/fr/projects/acpi/Makefile (new) 1.1 +38 -0 www/fr/projects/acpi/style.css (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:36:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E84A16A4CE; Mon, 9 Aug 2004 20:36:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3035543D48; Mon, 9 Aug 2004 20:36:04 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Ka4H0077701; Mon, 9 Aug 2004 20:36:04 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Ka45X077700; Mon, 9 Aug 2004 20:36:04 GMT (envelope-from julian) Message-Id: <200408092036.i79Ka45X077700@repoman.freebsd.org> From: Julian Elischer Date: Mon, 9 Aug 2004 20:36:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_switch.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:36:04 -0000 julian 2004-08-09 20:36:04 UTC FreeBSD src repository Modified files: sys/kern kern_switch.c Log: Make kg->kg_runnable actually count runnable threads in the ksegrp run queue instead of only doing it sometimes.. This is not used outdide of debugging code in the current code, but that will probably change. Revision Changes Path 1.77 +5 -4 src/sys/kern/kern_switch.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:39:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 093EC16A4CE; Mon, 9 Aug 2004 20:39:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E019143D2F; Mon, 9 Aug 2004 20:39:31 +0000 (GMT) (envelope-from stephane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79KdVbr077812; Mon, 9 Aug 2004 20:39:31 GMT (envelope-from stephane@repoman.freebsd.org) Received: (from stephane@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79KdVRZ077811; Mon, 9 Aug 2004 20:39:31 GMT (envelope-from stephane) Message-Id: <200408092039.i79KdVRZ077811@repoman.freebsd.org> From: Stephane Legrand Date: Mon, 9 Aug 2004 20:39:31 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/fr/projects Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:39:32 -0000 stephane 2004-08-09 20:39:31 UTC FreeBSD doc repository Modified files: fr/projects Makefile Log: Merge from the English version: 1.14 -> 1.16 fr/projects/Makefile Note that the acpi directory is not in the SUBDIR list (?). Revision Changes Path 1.2 +2 -3 www/fr/projects/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:44:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEE7316A4D3; Mon, 9 Aug 2004 20:44:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D103743D49; Mon, 9 Aug 2004 20:44:41 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79KifOp077985; Mon, 9 Aug 2004 20:44:41 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79KifUN077984; Mon, 9 Aug 2004 20:44:41 GMT (envelope-from marcel) Message-Id: <200408092044.i79KifUN077984@repoman.freebsd.org> From: Marcel Moolenaar Date: Mon, 9 Aug 2004 20:44:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 pmap.c src/sys/ia64/include pte.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:44:42 -0000 marcel 2004-08-09 20:44:41 UTC FreeBSD src repository Modified files: sys/ia64/ia64 pmap.c sys/ia64/include pte.h Log: Better preserve the original protection for the mappings we maintain. The hardware always gives read access for privilege level 0, which means that we cannot use the hardware access rights and privilege level in the PTE to test whether there's a change in protection. So, we save the original vm_prot_t in the PTE as well. Add pmap_pte_prot() to set the proper access rights and privilege level on the PTE given a pmap and the requested protection. The above allows us to compare the protection in pmap_extract_and_hold() which was missing. While in pmap_extract_and_hold(), add pmap locking. While here, clean up most (i.e. all but one) PTE macros we inherited from alpha. They were either unused, used inconsistently, badly named or simply weren't beneficial. We save the wired and managed state of the PTE in distinct (bit) fields. While in pte.h, s/u_int64_t/uint64_t/g pmap locking obtained from: alc@ feedback & review by: alc@ Revision Changes Path 1.146 +92 -171 src/sys/ia64/ia64/pmap.c 1.3 +46 -49 src/sys/ia64/include/pte.h From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:46:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E085316A4CE; Mon, 9 Aug 2004 20:46:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC0C443D45; Mon, 9 Aug 2004 20:46:17 +0000 (GMT) (envelope-from stephane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79KkH2j078159; Mon, 9 Aug 2004 20:46:17 GMT (envelope-from stephane@repoman.freebsd.org) Received: (from stephane@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79KkHtS078158; Mon, 9 Aug 2004 20:46:17 GMT (envelope-from stephane) Message-Id: <200408092046.i79KkHtS078158@repoman.freebsd.org> From: Stephane Legrand Date: Mon, 9 Aug 2004 20:46:17 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/fr/docproj who.sgml www/fr/java advocacy.sgml www/fr/java/dists 11.sgml 13.sgml 14.sgml www/fr/java/docs faq.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:46:18 -0000 stephane 2004-08-09 20:46:17 UTC FreeBSD doc repository Modified files: fr/docproj who.sgml fr/java advocacy.sgml fr/java/dists 11.sgml 13.sgml 14.sgml fr/java/docs faq.sgml Log: Merge from the English version: 1.11 -> 1.12 fr/docproj/who.sgml 1.6 -> 1.7 fr/java/advocacy.sgml 1.8 -> 1.9 fr/java/dists/11.sgml 1.13 -> 1.15 fr/java/dists/13.sgml 1.6 -> 1.9 fr/java/dists/14.sgml 1.5 -> 1.7 fr/java/docs/faq.sgml Submitted by: Antoine Brodin Revision Changes Path 1.5 +9 -8 www/fr/docproj/who.sgml 1.4 +4 -3 www/fr/java/advocacy.sgml 1.4 +10 -9 www/fr/java/dists/11.sgml 1.4 +15 -4 www/fr/java/dists/13.sgml 1.4 +29 -7 www/fr/java/dists/14.sgml 1.4 +8 -5 www/fr/java/docs/faq.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:52:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B95916A4CE; Mon, 9 Aug 2004 20:52:11 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BC8243D4C; Mon, 9 Aug 2004 20:52:10 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i79Kq34b095812 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 9 Aug 2004 23:52:04 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i79Kq4l6057125; Mon, 9 Aug 2004 23:52:04 +0300 (EEST) (envelope-from ru) Date: Mon, 9 Aug 2004 23:52:04 +0300 From: Ruslan Ermilov To: Wilko Bulte Message-ID: <20040809205204.GD56431@ip.net.ua> References: <200408072114.i77LEorM076643@repoman.freebsd.org> <41174EC2.10007@cronyx.ru> <20040809104206.GD51676@ip.net.ua> <20040809184508.GB60120@freebie.xs4all.nl> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="/unnNtmY43mpUSKx" Content-Disposition: inline In-Reply-To: <20040809184508.GB60120@freebie.xs4all.nl> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:52:11 -0000 --/unnNtmY43mpUSKx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 08:45:08PM +0200, Wilko Bulte wrote: > On Mon, Aug 09, 2004 at 01:42:06PM +0300, Ruslan Ermilov wrote.. > > On Mon, Aug 09, 2004 at 02:15:30PM +0400, Roman Kurakin wrote: > > > What is correct order in this file, by first name or by last name? > > >=20 > > The correct order here is: > >=20 > > - by month, > > - by day, > > - by year > > - in case there's still a full match, by freefall login name. >=20 > Yuck. /me loves YYYYMMDD. This American(?) MMDDYYYY is the worst > date format yet invented :-P >=20 > >=20 ``man calendar'': "Other lines should begin with a month and day." The year is at the end of the line, so sorting by YYYYMMDD would be a nightmare to maintain. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --/unnNtmY43mpUSKx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBF+P0qRfpzJluFF4RAhZLAJ0aW2VRW5mmEJ+VJBSgWeUSqgwlAACeIyAl 7Giqu/O2ftOCax2WZN/OLdI= =cZKt -----END PGP SIGNATURE----- --/unnNtmY43mpUSKx-- From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:52:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C57EA16A4CF; Mon, 9 Aug 2004 20:52:21 +0000 (GMT) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75A7043D45; Mon, 9 Aug 2004 20:52:21 +0000 (GMT) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.10/8.12.10) with ESMTP id i79KqKJt015670 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 9 Aug 2004 16:52:20 -0400 (EDT) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.12.9p2/8.12.9/Submit) id i79KqF1x084518; Mon, 9 Aug 2004 16:52:15 -0400 (EDT) (envelope-from gallatin) Date: Mon, 9 Aug 2004 16:52:15 -0400 From: Andrew Gallatin To: Brian Feldman Message-ID: <20040809165215.A84463@grasshopper.cs.duke.edu> References: <200408091952.i79JqT4B076245@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <200408091952.i79JqT4B076245@repoman.freebsd.org>; from green@FreeBSD.org on Mon, Aug 09, 2004 at 07:52:29PM +0000 X-Operating-System: FreeBSD 4.9-RELEASE-p1 on an i386 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/vm vm_kern.c vm_map.c vm_map.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:52:21 -0000 Brian Feldman [green@FreeBSD.org] wrote: > * Require all mappings to be unwired before they are deleted. > When VM space is still wired upon deletion, it will be waited > upon for the following unwire. This makes vslock(9) work > rather than allowing kernel-locked memory to be deleted > out from underneath of its consumer as it would before. Can you explain in a little more detail what would happen now in the following scenario: An application running in userspace allocates SIZE bytes at "addr", either with an mmap or via sbrk. Then something in the kernel calls: vm_map_wire(map, addr, addr + SIZE, TRUE) on its behalf. Then the application frees (or munmaps) "addr". Does the application sleep waiting for something to unwire addr+SIZE? Thanks, Drew From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:56:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D141516A4CE; Mon, 9 Aug 2004 20:56:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA15443D58; Mon, 9 Aug 2004 20:56:33 +0000 (GMT) (envelope-from stephane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79KuXVk078433; Mon, 9 Aug 2004 20:56:33 GMT (envelope-from stephane@repoman.freebsd.org) Received: (from stephane@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79KuXRf078432; Mon, 9 Aug 2004 20:56:33 GMT (envelope-from stephane) Message-Id: <200408092056.i79KuXRf078432@repoman.freebsd.org> From: Stephane Legrand Date: Mon, 9 Aug 2004 20:56:33 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/fr/copyright copyright.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:56:34 -0000 stephane 2004-08-09 20:56:33 UTC FreeBSD doc repository Modified files: fr/copyright copyright.sgml Log: trademarks is not translated, fix the URL to point to the english version. Submitted by: Antoine Brodin Revision Changes Path 1.6 +3 -2 www/fr/copyright/copyright.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 20:59:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7958416A4CE; Mon, 9 Aug 2004 20:59:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B5D743D49; Mon, 9 Aug 2004 20:59:17 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79KxH9i078502; Mon, 9 Aug 2004 20:59:17 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79KxH9t078501; Mon, 9 Aug 2004 20:59:17 GMT (envelope-from krion) Message-Id: <200408092059.i79KxH9t078501@repoman.freebsd.org> From: Kirill Ponomarew Date: Mon, 9 Aug 2004 20:59:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/xterm Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 20:59:17 -0000 krion 2004-08-09 20:59:17 UTC FreeBSD ports repository Modified files: x11/xterm Makefile distinfo Log: Update to version 195 o Correct length used for blinking text, make the last column blink. o Start changes to make doublesize characters work with TrueType fonts. o Trim leading/trailing blanks from color resources. o Fixes for showBlinkAsBold resource. Revision Changes Path 1.6 +1 -1 ports/x11/xterm/Makefile 1.3 +2 -2 ports/x11/xterm/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 21:01:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49B0B16A4CF; Mon, 9 Aug 2004 21:01:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DCD143D41; Mon, 9 Aug 2004 21:01:49 +0000 (GMT) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79L1n0t078621; Mon, 9 Aug 2004 21:01:49 GMT (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79L1nD8078620; Mon, 9 Aug 2004 21:01:49 GMT (envelope-from anholt) Message-Id: <200408092101.i79L1nD8078620@repoman.freebsd.org> From: Eric Anholt Date: Mon, 9 Aug 2004 21:01:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci agp_via.c agpreg.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:01:49 -0000 anholt 2004-08-09 21:01:49 UTC FreeBSD src repository Modified files: sys/pci agp_via.c agpreg.h Log: Minimal fix to prevent crashes when an AGP v2 card is used with the new v3 VIA chipsets, based on Linux's via-agp.c. On boot, the system selects which AGP version to use based on the inserted card. If v2 was chosen, the chipset needs to be programmed with the v2 registers still. Also included in kern/69953 are changes to make the programming of the v3 registers match linux, but that will be left out until the need to do so is confirmed (want specs or a tester). PR: kern/69953 Submitted by: Oleg Sharoiko Tested by: Oleg Sharoiko , Geoff Speicher (full version from PR) Revision Changes Path 1.17 +11 -1 src/sys/pci/agp_via.c 1.12 +1 -0 src/sys/pci/agpreg.h From owner-cvs-all@FreeBSD.ORG Mon Aug 9 21:05:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6509016A4CE for ; Mon, 9 Aug 2004 21:05:00 +0000 (GMT) Received: from avocado.salatschuessel.net (avocado.salatschuessel.net [80.86.187.41]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97F9643D2F for ; Mon, 9 Aug 2004 21:04:59 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: (qmail 21180 invoked from network); 9 Aug 2004 21:04:45 -0000 Received: from unknown (HELO kartoffel.salatschuessel.net) (80.86.187.43) by avocado.salatschuessel.net with SMTP; 9 Aug 2004 21:04:45 -0000 Date: Mon, 9 Aug 2004 23:04:55 +0200 From: Oliver Lehmann To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-Id: <20040809230455.48e93144.oliver@FreeBSD.org> In-Reply-To: <200408072114.i77LEorM076643@repoman.freebsd.org> References: <200408072114.i77LEorM076643@repoman.freebsd.org> X-Mailer: Sylpheed version 0.9.12 (GTK+ 1.2.10; i386-portbld-freebsd4.10) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:05:00 -0000 Nicolas Souchu wrote: > nsouch 2004-08-07 21:14:50 UTC > > FreeBSD src repository > > Modified files: > usr.bin/calendar/calendars calendar.freebsd > Log: > 10 born in France now! Hm.,. btw: As an ports committer, do I need an "Approved By" to commit to that file? :) -- Oliver Lehmann http://www.pofo.de/ http://wishlist.ans-netz.de/ From owner-cvs-all@FreeBSD.ORG Mon Aug 9 21:08:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08DFA16A4CE; Mon, 9 Aug 2004 21:08:12 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B0B143D1F; Mon, 9 Aug 2004 21:08:11 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i79L7de1064287; Mon, 9 Aug 2004 15:07:45 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 09 Aug 2004 15:07:41 -0600 (MDT) Message-Id: <20040809.150741.46316056.imp@bsdimp.com> To: phk@phk.freebsd.dk From: "M. Warner Losh" In-Reply-To: <30886.1092082771@critter.freebsd.dk> References: <20040809200458.GO92696@elvis.mu.org> <30886.1092082771@critter.freebsd.dk> 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 cc: cvs-src@FreeBSD.org cc: billf@FreeBSD.org cc: cvs-all@FreeBSD.org cc: johan@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:08:12 -0000 In message: <30886.1092082771@critter.freebsd.dk> "Poul-Henning Kamp" writes: : In message <20040809200458.GO92696@elvis.mu.org>, Bill Fumerola writes: : >On Mon, Aug 09, 2004 at 09:49:18PM +0200, Johan Karlsson wrote: : >> MMDDYYYY is in no order at all. : > : >european calendars with 31 pages and up to 12 squares on each page must : >sure look funny. : : Actually, it's perfectly natural when done with metric units :-) I long for the time when there will be 100 days per year. Of course, staying up for 58 hours and sleeping 29 hours and that pesky light/dark cycles would be hard to get around... Warner From owner-cvs-all@FreeBSD.ORG Mon Aug 9 21:08:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE35016A4CF; Mon, 9 Aug 2004 21:08:34 +0000 (GMT) Received: from harmony.village.org (rover.village.org [168.103.84.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44D9B43D3F; Mon, 9 Aug 2004 21:08:34 +0000 (GMT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.11/8.12.11) with ESMTP id i79L5Zqm064285; Mon, 9 Aug 2004 15:05:35 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 09 Aug 2004 15:05:37 -0600 (MDT) Message-Id: <20040809.150537.96131820.imp@bsdimp.com> To: johan@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <20040809194918.GA7261@numeri.campus.luth.se> References: <20040809184508.GB60120@freebie.xs4all.nl> <20040809185031.GX26004@sirius.firepipe.net> <20040809194918.GA7261@numeri.campus.luth.se> 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 cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: nsouch@FreeBSD.org cc: will@csociety.org cc: rik@cronyx.ru cc: ru@FreeBSD.org cc: cvs-all@FreeBSD.org cc: wb@freebie.xs4all.nl Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:08:35 -0000 In message: <20040809194918.GA7261@numeri.campus.luth.se> Johan Karlsson writes: : On Mon, Aug 09, 2004 at 13:50 (-0500), Will Andrews wrote: : > On Mon, Aug 09, 2004 at 08:45:08PM +0200, Wilko Bulte wrote: : > > Yuck. /me loves YYYYMMDD. This American(?) MMDDYYYY is the worst : > > date format yet invented :-P : > : > It's not as bad as the European DDMMYYYY. :P : : At least DDMMYYYY is in increasing order of magnitude :-) : : MMDDYYYY is in no order at all. But YYYYMMDD is sortable w/o a special date type! Warner From owner-cvs-all@FreeBSD.ORG Mon Aug 9 21:09:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6FA316A4CE; Mon, 9 Aug 2004 21:09:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E9F143D31; Mon, 9 Aug 2004 21:09:53 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79L9rBV078919; Mon, 9 Aug 2004 21:09:53 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79L9rcf078918; Mon, 9 Aug 2004 21:09:53 GMT (envelope-from thierry) Message-Id: <200408092109.i79L9rcf078918@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 9 Aug 2004 21:09:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math Makefile ports/math/orpie Makefile distinfo pkg-descr ports/math/orpie/files patch-Makefile patch-gsl::wrappers.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:09:53 -0000 thierry 2004-08-09 21:09:53 UTC FreeBSD ports repository Modified files: math Makefile Added files: math/orpie Makefile distinfo pkg-descr math/orpie/files patch-Makefile patch-gsl::wrappers.h Log: Add orpie 1.3.1, a fullscreen RPN calculator for the console. PR: 70054 Submitted by: Dylan Simon Revision Changes Path 1.281 +1 -0 ports/math/Makefile 1.1 +30 -0 ports/math/orpie/Makefile (new) 1.1 +2 -0 ports/math/orpie/distinfo (new) 1.1 +53 -0 ports/math/orpie/files/patch-Makefile (new) 1.1 +11 -0 ports/math/orpie/files/patch-gsl::wrappers.h (new) 1.1 +10 -0 ports/math/orpie/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 21:10:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 15A7716A4CE; Mon, 9 Aug 2004 21:10:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED0B343D1F; Mon, 9 Aug 2004 21:10:28 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79LASd6079007; Mon, 9 Aug 2004 21:10:28 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79LAST1079006; Mon, 9 Aug 2004 21:10:28 GMT (envelope-from thierry) Message-Id: <200408092110.i79LAST1079006@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 9 Aug 2004 21:10:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:10:29 -0000 thierry 2004-08-09 21:10:28 UTC FreeBSD ports repository Modified files: . modules Log: orpie --> ports/math/orpie Revision Changes Path 1.10857 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Aug 9 21:11:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EA5216A4CE for ; Mon, 9 Aug 2004 21:11:16 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9558F43D31 for ; Mon, 9 Aug 2004 21:11:15 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i79LB7mE097020 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 10 Aug 2004 00:11:08 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i79LB92R057320; Tue, 10 Aug 2004 00:11:09 +0300 (EEST) (envelope-from ru) Date: Tue, 10 Aug 2004 00:11:09 +0300 From: Ruslan Ermilov To: "M. Warner Losh" Message-ID: <20040809211109.GG56431@ip.net.ua> References: <20040809184508.GB60120@freebie.xs4all.nl> <20040809185031.GX26004@sirius.firepipe.net> <20040809194918.GA7261@numeri.campus.luth.se> <20040809.150537.96131820.imp@bsdimp.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0XhtP95kHFp3KGBe" Content-Disposition: inline In-Reply-To: <20040809.150537.96131820.imp@bsdimp.com> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: src-committers@FreeBSD.org cc: johan@FreeBSD.org cc: cvs-src@FreeBSD.org cc: nsouch@FreeBSD.org cc: will@csociety.org cc: rik@cronyx.ru cc: cvs-all@FreeBSD.org cc: wb@freebie.xs4all.nl Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:11:16 -0000 --0XhtP95kHFp3KGBe Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 03:05:37PM -0600, M. Warner Losh wrote: > In message: <20040809194918.GA7261@numeri.campus.luth.se> > Johan Karlsson writes: > : On Mon, Aug 09, 2004 at 13:50 (-0500), Will Andrews wrote: > : > On Mon, Aug 09, 2004 at 08:45:08PM +0200, Wilko Bulte wrote: > : > > Yuck. /me loves YYYYMMDD. This American(?) MMDDYYYY is the worst > : > > date format yet invented :-P > : >=20 > : > It's not as bad as the European DDMMYYYY. :P > :=20 > : At least DDMMYYYY is in increasing order of magnitude :-) > :=20 > : MMDDYYYY is in no order at all. >=20 > But YYYYMMDD is sortable w/o a special date type! >=20 calendar(1) doesn't support years, full stop. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --0XhtP95kHFp3KGBe Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBF+htqRfpzJluFF4RAst3AJ9Kl6cyn1kGn6lRygilGccAND+fVgCfRarJ MDwiX3cgdCY0YXe3TriO4GY= =1ak7 -----END PGP SIGNATURE----- --0XhtP95kHFp3KGBe-- From owner-cvs-all@FreeBSD.ORG Mon Aug 9 21:14:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 047E616A4CE; Mon, 9 Aug 2004 21:14:29 +0000 (GMT) Received: from plouf.absolight.net (plouf.absolight.net [212.43.217.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF24943D2F; Mon, 9 Aug 2004 21:14:28 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by plouf.absolight.net (Postfix) with ESMTP id 9E3D1407A; Mon, 9 Aug 2004 23:14:27 +0200 (CEST) Received: from plouf.absolight.net ([127.0.0.1])port 20024) with ESMTP id 85461-16; Mon, 9 Aug 2004 23:14:21 +0200 (CEST) X-Original-To: src-committers@FreeBSD.org X-Original-To: oliver@FreeBSD.org X-Original-To: cvs-src@FreeBSD.org X-Original-To: cvs-all@FreeBSD.org Received: from [192.168.1.51] (l15v-8-120.d2.club-internet.fr [62.34.135.120]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id CDBA1402B; Mon, 9 Aug 2004 23:14:20 +0200 (CEST) Date: Mon, 09 Aug 2004 23:14:15 +0200 From: Mathieu Arnold To: Oliver Lehmann , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: In-Reply-To: <20040809230455.48e93144.oliver@FreeBSD.org> References: <200408072114.i77LEorM076643@repoman.freebsd.org> <20040809230455.48e93144.oliver@FreeBSD.org> X-Mailer: Mulberry/3.1.6 (Win32) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========208D6819A1B9DCC1A750==========" X-Spam-Checker-Version: SpamAssassin 2.64-abso_2004012301 (2004-01-11) on plouf.absolight.net by root@absolight.fr X-Virus-Scanned: by amavisd-new at plouf.absolight.net X-Spam-Status: No, hits=-3.477 tagged_above=-10 required=5 tests=AWL, BAYES_00, RCVD_IN_NJABL_DUL X-Spam-Level: Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:14:29 -0000 --==========208D6819A1B9DCC1A750========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +-Le 09/08/2004 23:04 +0200, Oliver Lehmann a dit : | Nicolas Souchu wrote: | |> nsouch 2004-08-07 21:14:50 UTC |> |> FreeBSD src repository |> |> Modified files: |> usr.bin/calendar/calendars calendar.freebsd |> Log: |> 10 born in France now! | | Hm.,. btw: As an ports committer, do I need an "Approved By" to commit to | that file? :) Only if you feel you can make a mistake :-) -- Mathieu Arnold --==========208D6819A1B9DCC1A750========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (MingW32) iQEVAwUBQRfpK1vROjYJ63c1AQIMNAf/U9Sn0wXYCbo7Xiv6w4z2eOaJj//fr8SH 24Z6xK5zT8IRlWl0AMCfItY9u7tvjm22c0XYEc9MffYcmzKjNResdL3WhyZ/SlZb BzMMzbnzz3YWry0b9XZSprdcmZxPIO1umtUvLq77CA/SO7T2HmQC0spkhineYp/4 WJ53VRBniiUQW/S+Ca/NkxfdnuvWqpr9TO1QKXdnsbeX29XdxzriurqsiC51vexe EiWMGz2SoIlkhqZHMle23PL5ObVn5KQxxyDdLWwZxqmg4J9VGg9JEYMEtaaGvmWj kEOcnXjIz/th0/ZWSMz0pbp+c5gn/TdB5iuFRBN7BbVXs2UVmgfLqw== =xXdH -----END PGP SIGNATURE----- --==========208D6819A1B9DCC1A750==========-- From owner-cvs-all@FreeBSD.ORG Mon Aug 9 21:15:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DBFDC16A4CE; Mon, 9 Aug 2004 21:15:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE25443D2F; Mon, 9 Aug 2004 21:15:02 +0000 (GMT) (envelope-from stephane@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79LF2R5079117; Mon, 9 Aug 2004 21:15:02 GMT (envelope-from stephane@repoman.freebsd.org) Received: (from stephane@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79LF2Qp079116; Mon, 9 Aug 2004 21:15:02 GMT (envelope-from stephane) Message-Id: <200408092115.i79LF2Qp079116@repoman.freebsd.org> From: Stephane Legrand Date: Mon, 9 Aug 2004 21:15:02 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/fr/docproj docproj.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:15:03 -0000 stephane 2004-08-09 21:15:02 UTC FreeBSD doc repository Modified files: fr/docproj docproj.sgml Log: Typos. Submitted by: Thomas van Oudenhove Revision Changes Path 1.5 +3 -2 www/fr/docproj/docproj.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 21:21:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1CE416A4CE; Mon, 9 Aug 2004 21:21:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A35A143D4C; Mon, 9 Aug 2004 21:21:18 +0000 (GMT) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79LLIUA079353; Mon, 9 Aug 2004 21:21:18 GMT (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79LLIbh079352; Mon, 9 Aug 2004 21:21:18 GMT (envelope-from anholt) Message-Id: <200408092121.i79LLIbh079352@repoman.freebsd.org> From: Eric Anholt Date: Mon, 9 Aug 2004 21:21:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/xorg-clients Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:21:18 -0000 anholt 2004-08-09 21:21:18 UTC FreeBSD ports repository Modified files: x11/xorg-clients Makefile Log: s/BUILD_DEPENDS/RUN_DEPENDS/ for the xterm-static dependency to make sure that xterm gets installed in the package case. Reported by: kensmith Revision Changes Path 1.10 +1 -1 ports/x11/xorg-clients/Makefile From owner-cvs-all@FreeBSD.ORG Mon Aug 9 21:23:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E418716A4CE; Mon, 9 Aug 2004 21:23:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C758C43D2D; Mon, 9 Aug 2004 21:23:33 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79LNXVm079415; Mon, 9 Aug 2004 21:23:33 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79LNXK7079414; Mon, 9 Aug 2004 21:23:33 GMT (envelope-from thierry) Message-Id: <200408092123.i79LNXK7079414@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 9 Aug 2004 21:23:33 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:23:34 -0000 thierry 2004-08-09 21:23:33 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Add an entry for Dylan Simon. PR: ports/70054. Revision Changes Path 1.248 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Mon Aug 9 21:32:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 705B016A4CE; Mon, 9 Aug 2004 21:32:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51F1743D6A; Mon, 9 Aug 2004 21:32:25 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79LWPwT079660; Mon, 9 Aug 2004 21:32:25 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79LWPaC079659; Mon, 9 Aug 2004 21:32:25 GMT (envelope-from oliver) Message-Id: <200408092132.i79LWPaC079659@repoman.freebsd.org> From: Oliver Lehmann Date: Mon, 9 Aug 2004 21:32:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:32:25 -0000 oliver 2004-08-09 21:32:25 UTC FreeBSD src repository (ports committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: There was a star danced, and under that was I born. -- Shakespeare in "Much Ado About Nothing" Add my birthday in case someone cares someday... Revision Changes Path 1.131 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Mon Aug 9 21:47:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from green.homeunix.org (freefall.freebsd.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 34C1216A4CE; Mon, 9 Aug 2004 21:47:03 +0000 (GMT) Received: from green.homeunix.org (green@localhost [127.0.0.1]) by green.homeunix.org (8.12.11/8.12.11) with ESMTP id i79Ll2D3078740; Mon, 9 Aug 2004 17:47:02 -0400 (EDT) (envelope-from green@green.homeunix.org) Received: (from green@localhost) by green.homeunix.org (8.13.1/8.13.1/Submit) id i79Ll2er078734; Mon, 9 Aug 2004 17:47:02 -0400 (EDT) (envelope-from green) Date: Mon, 9 Aug 2004 17:47:01 -0400 From: Brian Fundakowski Feldman To: Andrew Gallatin Message-ID: <20040809214701.GE14657@green.homeunix.org> References: <200408091952.i79JqT4B076245@repoman.freebsd.org> <20040809165215.A84463@grasshopper.cs.duke.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040809165215.A84463@grasshopper.cs.duke.edu> User-Agent: Mutt/1.5.6i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/vm vm_kern.c vm_map.c vm_map.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:47:03 -0000 On Mon, Aug 09, 2004 at 04:52:15PM -0400, Andrew Gallatin wrote: > Brian Feldman [green@FreeBSD.org] wrote: > > > * Require all mappings to be unwired before they are deleted. > > When VM space is still wired upon deletion, it will be waited > > upon for the following unwire. This makes vslock(9) work > > rather than allowing kernel-locked memory to be deleted > > out from underneath of its consumer as it would before. > > Can you explain in a little more detail what would happen now in the > following scenario: > > An application running in userspace allocates SIZE bytes at "addr", > either with an mmap or via sbrk. Then something in the kernel calls: > vm_map_wire(map, addr, addr + SIZE, TRUE) on its behalf. > Then the application frees (or munmaps) "addr". > > Does the application sleep waiting for something to unwire addr+SIZE? Yes, that is exactly what happens (replace TRUE with appropriate current flags); is there some other behavior you would expect to see? -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-all@FreeBSD.ORG Mon Aug 9 21:50:10 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9257C16A4CE; Mon, 9 Aug 2004 21:50:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89FD643D48; Mon, 9 Aug 2004 21:50:10 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79LoALl080108; Mon, 9 Aug 2004 21:50:10 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79LoA81080107; Mon, 9 Aug 2004 21:50:10 GMT (envelope-from simon) Message-Id: <200408092150.i79LoA81080107@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Mon, 9 Aug 2004 21:50:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/sysinstall config.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:50:10 -0000 simon 2004-08-09 21:50:10 UTC FreeBSD src repository (doc committer) Modified files: usr.sbin/sysinstall config.c Log: During FTP installs, when installing Postfix as an alternate MTA, the install of Postfix fails since Postfix 1 is picked from INDEX instead of Postfix 2. The problem is that the package_add function matches multiple Postfix packages and then installs a "random" version (the last one found in INDEX). This does not occur with a CD-ROM install since there is only one Postfix package on the CD-ROM. The correct solution to this would be to check the origin field from INDEX instead of the package name, but due to the way sysinstall is made that is not trivial, so instead work around the problem by hard-coding the Postfix major and minor revision (for the current stable version) to install directly into the package_add call. PR: misc/65426 Reported by: Harold Kachelmyer Approved by: trhodes Revision Changes Path 1.224 +1 -1 src/usr.sbin/sysinstall/config.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 21:57:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BCF816A4CE; Mon, 9 Aug 2004 21:57:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2ED543D41; Mon, 9 Aug 2004 21:57:30 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79LvUTE080386; Mon, 9 Aug 2004 21:57:30 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79LvUwc080385; Mon, 9 Aug 2004 21:57:30 GMT (envelope-from julian) Message-Id: <200408092157.i79LvUwc080385@repoman.freebsd.org> From: Julian Elischer Date: Mon, 9 Aug 2004 21:57:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_kse.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:57:31 -0000 julian 2004-08-09 21:57:30 UTC FreeBSD src repository Modified files: sys/kern kern_kse.c Log: Slight changes to comments and some whitespace changes. Revision Changes Path 1.193 +10 -3 src/sys/kern/kern_kse.c From owner-cvs-all@FreeBSD.ORG Mon Aug 9 22:03:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5259F16A4D0; Mon, 9 Aug 2004 22:03:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 352C243D5A; Mon, 9 Aug 2004 22:03:03 +0000 (GMT) (envelope-from anders@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79M33gq080591; Mon, 9 Aug 2004 22:03:03 GMT (envelope-from anders@repoman.freebsd.org) Received: (from anders@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79M33M4080590; Mon, 9 Aug 2004 22:03:03 GMT (envelope-from anders) Message-Id: <200408092203.i79M33M4080590@repoman.freebsd.org> From: Anders Nordby Date: Mon, 9 Aug 2004 22:03:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/samba Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 22:03:03 -0000 anders 2004-08-09 22:03:03 UTC FreeBSD ports repository Modified files: net/samba Makefile distinfo Log: Update jail patch for Samba 2.2.10. Revision Changes Path 1.144 +1 -1 ports/net/samba/Makefile 1.55 +2 -2 ports/net/samba/distinfo From owner-cvs-all@FreeBSD.ORG Mon Aug 9 22:27:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 520D116A4CE; Mon, 9 Aug 2004 22:27:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 357F043D48; Mon, 9 Aug 2004 22:27:34 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79MRYj6081225; Mon, 9 Aug 2004 22:27:34 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79MRYwW081224; Mon, 9 Aug 2004 22:27:34 GMT (envelope-from simon) Message-Id: <200408092227.i79MRYwW081224@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Mon, 9 Aug 2004 22:27:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 twa.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 22:27:34 -0000 simon 2004-08-09 22:27:34 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 twa.4 Log: - Add a HARDWARE section which lists supported devices. Revision Changes Path 1.2 +18 -15 src/share/man/man4/twa.4 From owner-cvs-all@FreeBSD.ORG Mon Aug 9 22:33:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 920EC16A4CE; Mon, 9 Aug 2004 22:33:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 735E243D2D; Mon, 9 Aug 2004 22:33:20 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79MXKoW081409; Mon, 9 Aug 2004 22:33:20 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79MXKpM081408; Mon, 9 Aug 2004 22:33:20 GMT (envelope-from simon) Message-Id: <200408092233.i79MXKpM081408@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Mon, 9 Aug 2004 22:33:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml src/release/doc/share/misc dev.archlist.txt X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 22:33:20 -0000 simon 2004-08-09 22:33:20 UTC FreeBSD src repository (doc committer) Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml release/doc/share/misc dev.archlist.txt Log: Add twa(4) to the Hardware Notes. Revision Changes Path 1.224 +2 -0 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml 1.3 +1 -0 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-all@FreeBSD.ORG Mon Aug 9 22:39:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94E4316A4CE; Mon, 9 Aug 2004 22:39:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7568843D49; Mon, 9 Aug 2004 22:39:25 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79MdPnC081621; Mon, 9 Aug 2004 22:39:25 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79MdPHL081620; Mon, 9 Aug 2004 22:39:25 GMT (envelope-from pav) Message-Id: <200408092239.i79MdPHL081620@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 9 Aug 2004 22:39:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/thefish Makefile distinfo pkg-message X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 22:39:25 -0000 pav 2004-08-09 22:39:25 UTC FreeBSD ports repository Modified files: sysutils/thefish Makefile distinfo Removed files: sysutils/thefish pkg-message Log: - Tarball rerolled to address issues pointed out by vs@ in PR's audit trail, that is: fix build on -STABLE with WITH_QT=1 and removal of pkg-message PR: ports/70177 Submitted by: Miguel Mendez (maintainer) Revision Changes Path 1.45 +1 -1 ports/sysutils/thefish/Makefile 1.29 +2 -2 ports/sysutils/thefish/distinfo 1.7 +0 -2 ports/sysutils/thefish/pkg-message (dead) From owner-cvs-all@FreeBSD.ORG Mon Aug 9 23:24:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 270CE16A4CE; Mon, 9 Aug 2004 23:24:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A0B143D2F; Mon, 9 Aug 2004 23:24:23 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79NOMUU082744; Mon, 9 Aug 2004 23:24:22 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79NOMNc082743; Mon, 9 Aug 2004 23:24:22 GMT (envelope-from julian) Message-Id: <200408092324.i79NOMNc082743@repoman.freebsd.org> From: Julian Elischer Date: Mon, 9 Aug 2004 23:24:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys proc.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 23:24:23 -0000 julian 2004-08-09 23:24:22 UTC FreeBSD src repository Modified files: sys/sys proc.h Log: Clean up and add coments. reserve some bits in flag words for upcoming work. Note the unused bits so they can be found easier. Revision Changes Path 1.391 +66 -35 src/sys/sys/proc.h From owner-cvs-all@FreeBSD.ORG Mon Aug 9 23:57:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0F4916A4CE; Mon, 9 Aug 2004 23:57:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B235443D31; Mon, 9 Aug 2004 23:57:59 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i79Nvx1p083629; Mon, 9 Aug 2004 23:57:59 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i79Nvxmb083628; Mon, 9 Aug 2004 23:57:59 GMT (envelope-from davidxu) Message-Id: <200408092357.i79Nvxmb083628@repoman.freebsd.org> From: David Xu Date: Mon, 9 Aug 2004 23:57:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 trap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 23:58:00 -0000 davidxu 2004-08-09 23:57:59 UTC FreeBSD src repository Modified files: sys/amd64/amd64 trap.c Log: In syscall, always make a copy of parameters from trapframe, this becauses some syscalls using set_mcontext can sneakily change parameters and later when those syscalls references parameters, they will wrongly use register values in mcontext_t. Approved by: peter Revision Changes Path 1.278 +9 -12 src/sys/amd64/amd64/trap.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 00:15:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A623116A4CE; Tue, 10 Aug 2004 00:15:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8819043D46; Tue, 10 Aug 2004 00:15:20 +0000 (GMT) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A0FKZC084519; Tue, 10 Aug 2004 00:15:20 GMT (envelope-from jeh@repoman.freebsd.org) Received: (from jeh@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A0FKMR084518; Tue, 10 Aug 2004 00:15:20 GMT (envelope-from jeh) Message-Id: <200408100015.i7A0FKMR084518@repoman.freebsd.org> From: "James E. Housley" Date: Tue, 10 Aug 2004 00:15:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/uvscan-dat Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 00:15:20 -0000 jeh 2004-08-10 00:15:20 UTC FreeBSD ports repository Modified files: security/uvscan-dat Makefile distinfo Log: Update to DAT 4384 Revision Changes Path 1.258 +1 -1 ports/security/uvscan-dat/Makefile 1.256 +2 -2 ports/security/uvscan-dat/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 10 00:26:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3261216A4CE; Tue, 10 Aug 2004 00:26:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1535F43D58; Tue, 10 Aug 2004 00:26:26 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A0QPog085813; Tue, 10 Aug 2004 00:26:25 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A0QP17085812; Tue, 10 Aug 2004 00:26:25 GMT (envelope-from scottl) Message-Id: <200408100026.i7A0QP17085812@repoman.freebsd.org> From: Scott Long Date: Tue, 10 Aug 2004 00:26:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_switch.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 00:26:26 -0000 scottl 2004-08-10 00:26:25 UTC FreeBSD src repository Modified files: sys/kern kern_switch.c Log: Add a temporary debugging hack to detect a deadlock in setrunqueue(). This is here so that we can gather stats on the nature of the recent rash of hard lockups, and in this particular case panic the machine instead of letting it deadlock forever. Revision Changes Path 1.78 +7 -0 src/sys/kern/kern_switch.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 00:38:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96C4516A4CE; Tue, 10 Aug 2004 00:38:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7877443D45; Tue, 10 Aug 2004 00:38:50 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A0co04086158; Tue, 10 Aug 2004 00:38:50 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A0coVa086157; Tue, 10 Aug 2004 00:38:50 GMT (envelope-from emax) Message-Id: <200408100038.i7A0coVa086157@repoman.freebsd.org> From: Maksim Yevmenkin Date: Tue, 10 Aug 2004 00:38:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph/bluetooth/include ng_hci.h src/usr.sbin/bluetooth/hccontrol link_control.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 00:38:50 -0000 emax 2004-08-10 00:38:50 UTC FreeBSD src repository Modified files: sys/netgraph/bluetooth/include ng_hci.h usr.sbin/bluetooth/hccontrol link_control.c Log: Introduce ng_hci_inquiry_response structure and use it in the hccontrol(8) Revision Changes Path 1.4 +10 -7 src/sys/netgraph/bluetooth/include/ng_hci.h 1.8 +1 -8 src/usr.sbin/bluetooth/hccontrol/link_control.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 00:56:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2100E16A4CE; Tue, 10 Aug 2004 00:56:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04F4243D53; Tue, 10 Aug 2004 00:56:38 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A0ubmN086657; Tue, 10 Aug 2004 00:56:37 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A0ubUZ086656; Tue, 10 Aug 2004 00:56:37 GMT (envelope-from eik) Message-Id: <200408100056.i7A0ubUZ086656@repoman.freebsd.org> From: Oliver Eikemeier Date: Tue, 10 Aug 2004 00:56:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/portaudit-db/database portaudit.txt X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 00:56:38 -0000 eik 2004-08-10 00:56:37 UTC FreeBSD ports repository Modified files: security/portaudit-db/database portaudit.txt Log: SpamAssassin DoS & cfengine authentication heap corruption Revision Changes Path 1.80 +5 -3 ports/security/portaudit-db/database/portaudit.txt From owner-cvs-all@FreeBSD.ORG Tue Aug 10 01:01:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 031F116A4CE; Tue, 10 Aug 2004 01:01:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9F4E43D53; Tue, 10 Aug 2004 01:01:54 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A11sHg086809; Tue, 10 Aug 2004 01:01:54 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A11sTj086808; Tue, 10 Aug 2004 01:01:54 GMT (envelope-from des) Message-Id: <200408100101.i7A11sTj086808@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 10 Aug 2004 01:01:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/lib/libfetch http.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 01:01:55 -0000 des 2004-08-10 01:01:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) lib/libfetch http.c Log: MFC: (1.73) allocate space for terminating NUL in base 64 encoded string. Revision Changes Path 1.13.2.25 +1 -1 src/lib/libfetch/http.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 01:08:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0331E16A4CE; Tue, 10 Aug 2004 01:08:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9A8543D2F; Tue, 10 Aug 2004 01:08:18 +0000 (GMT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A18IpG086998; Tue, 10 Aug 2004 01:08:18 GMT (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A18IP1086997; Tue, 10 Aug 2004 01:08:18 GMT (envelope-from des) Message-Id: <200408100108.i7A18IP1086997@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 10 Aug 2004 01:08:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.bin/fetch fetch.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 01:08:19 -0000 des 2004-08-10 01:08:18 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) usr.bin/fetch fetch.c Log: MFC: (1.69) truncate long file names in progress meter (1.70) style nits (1.71) don't strip trailing whitespace from passwords Revision Changes Path 1.10.2.25 +12 -13 src/usr.bin/fetch/fetch.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 01:24:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC4DC16A4CE; Tue, 10 Aug 2004 01:24:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F56843D5C; Tue, 10 Aug 2004 01:24:49 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A1OnnI087595; Tue, 10 Aug 2004 01:24:49 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A1OndJ087594; Tue, 10 Aug 2004 01:24:49 GMT (envelope-from kuriyama) Message-Id: <200408100124.i7A1OndJ087594@repoman.freebsd.org> From: Jun Kuriyama Date: Tue, 10 Aug 2004 01:24:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/p5-LWP-Authen-Wsse Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 01:24:49 -0000 kuriyama 2004-08-10 01:24:49 UTC FreeBSD ports repository Modified files: www/p5-LWP-Authen-Wsse Makefile pkg-plist Log: - Make conditional dependency on p5-MIME-Base64. - Cleanup pkg-plist. Revision Changes Path 1.3 +9 -3 ports/www/p5-LWP-Authen-Wsse/Makefile 1.2 +1 -0 ports/www/p5-LWP-Authen-Wsse/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 10 01:29:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8A2516A4CE; Tue, 10 Aug 2004 01:29:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B88F043D41; Tue, 10 Aug 2004 01:29:22 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A1TMxP088492; Tue, 10 Aug 2004 01:29:22 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A1TM9b088491; Tue, 10 Aug 2004 01:29:22 GMT (envelope-from marcus) Message-Id: <200408100129.i7A1TM9b088491@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 10 Aug 2004 01:29:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/imake-4 Makefile distinfo pkg-plist ports/devel/imake-4/files patch-amd64 patch-d patch-freetype patch-rman.c ports/x11/XFree86-4 Makefile ports/x11/XFree86-4-clients Makefile distinfo pkg-install ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 01:29:23 -0000 marcus 2004-08-10 01:29:22 UTC FreeBSD ports repository Modified files: devel/imake-4 Makefile distinfo pkg-plist devel/imake-4/files patch-d x11/XFree86-4 Makefile x11/XFree86-4-clients Makefile distinfo pkg-plist x11/XFree86-4-clients/files manpages x11/XFree86-4-documents Makefile distinfo pkg-plist x11/XFree86-4-documents/files patch-04 x11/XFree86-4-libraries Makefile distinfo pkg-plist x11/XFree86-4-libraries/files patch-FreeBSD.cf patch-X11.tmpl patch-dps patch-dpsinfo patch-lib-Imakefile patch-luit patch-startx patch-xdm patch-z04 x11/XFree86-4-manuals Makefile distinfo x11-fonts/XFree86-4-font100dpi Makefile distinfo pkg-plist x11-fonts/XFree86-4-font75dpi Makefile distinfo pkg-plist x11-fonts/XFree86-4-fontCyrillic Makefile distinfo pkg-plist x11-fonts/XFree86-4-fontDefaultBitmaps Makefile distinfo pkg-plist x11-fonts/XFree86-4-fontEncodings Makefile distinfo pkg-plist x11-fonts/XFree86-4-fontScalable Makefile distinfo x11-fonts/XFree86-4-fontScalable/files patch-01 x11-servers/XFree86-4-FontServer Makefile distinfo pkg-plist x11-servers/XFree86-4-NestServer Makefile distinfo pkg-plist x11-servers/XFree86-4-PrintServer Makefile distinfo x11-servers/XFree86-4-Server Makefile distinfo pkg-plist x11-servers/XFree86-4-Server/files patch-FreeBSD.cf patch-alpha_video.c patch-radeon_reg.h x11-servers/XFree86-4-Server/scripts configure x11-servers/XFree86-4-VirtualFramebufferServer Makefile distinfo pkg-plist Added files: devel/imake-4/files patch-amd64 x11/XFree86-4-clients pkg-install x11/XFree86-4-clients/files patch-programs::fonttosfnt::read.c patch-programs::xdm::Imakefile patch-programs::xdm::session.c patch-programs::xdm::socket.c x11/XFree86-4-libraries/files patch-amd64 x11-fonts/XFree86-4-fontScalable/files patch-scaled::TTF::Imakefile x11-servers/XFree86-4-FontServer pkg-install x11-servers/XFree86-4-FontServer/files patch-programs::xfs::Imakefile x11-servers/XFree86-4-NestServer pkg-install x11-servers/XFree86-4-NestServer/files patch-programs::Xserver::Xext::Imakefile x11-servers/XFree86-4-Server pkg-install x11-servers/XFree86-4-Server/files patch-GL-Imakefile patch-Xext-saver.c patch-programs::Xserver::Xext::Imakefile patch-radeon_driver.c x11-servers/XFree86-4-VirtualFramebufferServer pkg-install x11-servers/XFree86-4-VirtualFramebufferServer/files patch-programs::Xserver::Xext::Imakefile Removed files: devel/imake-4/files patch-freetype patch-rman.c x11/XFree86-4-clients/files patch-Imake.rules patch-Xres.cpp patch-mkfontscale.c x11/XFree86-4-libraries/files patch-Imake.cf patch-Xlc-fix patch-Xv.c patch-access.c patch-lcPrTxt.c patch-lib-XRes-Imakefile patch-libXfont patch-xfree86.cf patch-xkbfile-Imakefile x11-servers/XFree86-4-Server/files patch-Pci.h patch-Sbus.c patch-bsd-Imakefile patch-bsd-bsdResource.c patch-bsd_Imakefile patch-bus-Imakefile patch-bus_Imakefile patch-compiler.h patch-elfloader.c patch-freebsdPci.c patch-ftfuncs.c patch-int10-generic.c patch-libc_wrapper.c patch-loader-Imakefile patch-loader-elfloader.c patch-loader.c patch-mga_dri.c patch-mga_driver.c patch-nv_driver.c patch-nv_setup.c patch-os-support_Imakefile patch-r128_driver.c patch-radeon_cursor.c patch-radeon_dri.c patch-savage-pci-id patch-smi patch-sunffb_Imakefile patch-xc::lib::font::fontfile patch-xf86-common-Imakefile patch-xf86Events.c patch-xf86Sbus.h patch-xf86sym.c patch-xkbInit.c Log: Update XFree86 clients to 4.4 release. Release notes are available at http://www.xfree86.org/4.4.0/RELNOTES.html PR: ports/67733 imake ports/67508 libraries ports/67510 clients ports/67513 server ports/67776 100dpi fonts ports/67777 75dpi fonts ports/67778 cyrillic fonts ports/67779 default bitmap fonts ports/67781 font encodings ports/67783 scalable fonts ports/67784 font server ports/67785 XFree86 meta-port ports/67775 documents ports/67786 manpages ports/67787 nest server ports/67788 print server ports/67789 virtual framebuffer server ports/56487 (Upgrading Xfree86-clients from ports overwrites xdm config files) ports/44252 (XFree86-4-Server port removes/overwrites config files) Submitted by: Dejan Lesjak (dejan DOT lesjak AT ijs DOT si) Additional changes by: anholt Jung-uk Kim (jkim AT niksun DOT com) arved Tested by: pointyhat linimon Revision Changes Path 1.32 +4 -9 ports/devel/imake-4/Makefile 1.10 +4 -4 ports/devel/imake-4/distinfo 1.1 +22 -0 ports/devel/imake-4/files/patch-amd64 (new) 1.7 +8 -7 ports/devel/imake-4/files/patch-d 1.3 +0 -11 ports/devel/imake-4/files/patch-freetype (dead) 1.2 +0 -12 ports/devel/imake-4/files/patch-rman.c (dead) 1.9 +0 -16 ports/devel/imake-4/pkg-plist 1.15 +2 -2 ports/x11-fonts/XFree86-4-font100dpi/Makefile 1.8 +2 -2 ports/x11-fonts/XFree86-4-font100dpi/distinfo 1.4 +10 -0 ports/x11-fonts/XFree86-4-font100dpi/pkg-plist 1.14 +2 -2 ports/x11-fonts/XFree86-4-font75dpi/Makefile 1.8 +2 -2 ports/x11-fonts/XFree86-4-font75dpi/distinfo 1.4 +10 -0 ports/x11-fonts/XFree86-4-font75dpi/pkg-plist 1.19 +2 -2 ports/x11-fonts/XFree86-4-fontCyrillic/Makefile 1.10 +2 -2 ports/x11-fonts/XFree86-4-fontCyrillic/distinfo 1.4 +1 -0 ports/x11-fonts/XFree86-4-fontCyrillic/pkg-plist 1.14 +5 -4 ports/x11-fonts/XFree86-4-fontDefaultBitmaps/Makefile 1.8 +4 -4 ports/x11-fonts/XFree86-4-fontDefaultBitmaps/distinfo 1.7 +1 -0 ports/x11-fonts/XFree86-4-fontDefaultBitmaps/pkg-plist 1.13 +3 -3 ports/x11-fonts/XFree86-4-fontEncodings/Makefile 1.8 +2 -2 ports/x11-fonts/XFree86-4-fontEncodings/distinfo 1.7 +7 -1 ports/x11-fonts/XFree86-4-fontEncodings/pkg-plist 1.14 +4 -3 ports/x11-fonts/XFree86-4-fontScalable/Makefile 1.8 +4 -4 ports/x11-fonts/XFree86-4-fontScalable/distinfo 1.4 +7 -7 ports/x11-fonts/XFree86-4-fontScalable/files/patch-01 1.1 +27 -0 ports/x11-fonts/XFree86-4-fontScalable/files/patch-scaled::TTF::Imakefile (new) 1.26 +8 -5 ports/x11-servers/XFree86-4-FontServer/Makefile 1.10 +6 -6 ports/x11-servers/XFree86-4-FontServer/distinfo 1.1 +11 -0 ports/x11-servers/XFree86-4-FontServer/files/patch-programs::xfs::Imakefile (new) 1.1 +12 -0 ports/x11-servers/XFree86-4-FontServer/pkg-install (new) 1.6 +2 -1 ports/x11-servers/XFree86-4-FontServer/pkg-plist 1.29 +12 -9 ports/x11-servers/XFree86-4-NestServer/Makefile 1.13 +6 -6 ports/x11-servers/XFree86-4-NestServer/distinfo 1.1 +11 -0 ports/x11-servers/XFree86-4-NestServer/files/patch-programs::Xserver::Xext::Imakefile (new) 1.1 +13 -0 ports/x11-servers/XFree86-4-NestServer/pkg-install (new) 1.6 +1 -1 ports/x11-servers/XFree86-4-NestServer/pkg-plist 1.28 +7 -8 ports/x11-servers/XFree86-4-PrintServer/Makefile 1.13 +6 -6 ports/x11-servers/XFree86-4-PrintServer/distinfo 1.158 +60 -48 ports/x11-servers/XFree86-4-Server/Makefile 1.47 +6 -6 ports/x11-servers/XFree86-4-Server/distinfo 1.2 +37 -9 ports/x11-servers/XFree86-4-Server/files/patch-FreeBSD.cf 1.1 +11 -0 ports/x11-servers/XFree86-4-Server/files/patch-GL-Imakefile (new) 1.4 +0 -36 ports/x11-servers/XFree86-4-Server/files/patch-Pci.h (dead) 1.2 +0 -11 ports/x11-servers/XFree86-4-Server/files/patch-Sbus.c (dead) 1.1 +43 -0 ports/x11-servers/XFree86-4-Server/files/patch-Xext-saver.c (new) 1.3 +5 -36 ports/x11-servers/XFree86-4-Server/files/patch-alpha_video.c 1.2 +0 -12 ports/x11-servers/XFree86-4-Server/files/patch-bsd-Imakefile (dead) 1.3 +0 -9 ports/x11-servers/XFree86-4-Server/files/patch-bsd-bsdResource.c (dead) 1.3 +0 -16 ports/x11-servers/XFree86-4-Server/files/patch-bsd_Imakefile (dead) 1.3 +0 -9 ports/x11-servers/XFree86-4-Server/files/patch-bus-Imakefile (dead) 1.2 +0 -18 ports/x11-servers/XFree86-4-Server/files/patch-bus_Imakefile (dead) 1.2 +0 -11 ports/x11-servers/XFree86-4-Server/files/patch-compiler.h (dead) 1.2 +0 -70 ports/x11-servers/XFree86-4-Server/files/patch-elfloader.c (dead) 1.2 +0 -11 ports/x11-servers/XFree86-4-Server/files/patch-freebsdPci.c (dead) 1.2 +0 -16 ports/x11-servers/XFree86-4-Server/files/patch-ftfuncs.c (dead) 1.2 +0 -39 ports/x11-servers/XFree86-4-Server/files/patch-int10-generic.c (dead) 1.3 +0 -9 ports/x11-servers/XFree86-4-Server/files/patch-libc_wrapper.c (dead) 1.3 +0 -9 ports/x11-servers/XFree86-4-Server/files/patch-loader-Imakefile (dead) 1.3 +0 -9 ports/x11-servers/XFree86-4-Server/files/patch-loader-elfloader.c (dead) 1.2 +0 -20 ports/x11-servers/XFree86-4-Server/files/patch-loader.c (dead) 1.2 +0 -16 ports/x11-servers/XFree86-4-Server/files/patch-mga_dri.c (dead) 1.4 +0 -13 ports/x11-servers/XFree86-4-Server/files/patch-mga_driver.c (dead) 1.2 +0 -16 ports/x11-servers/XFree86-4-Server/files/patch-nv_driver.c (dead) 1.2 +0 -35 ports/x11-servers/XFree86-4-Server/files/patch-nv_setup.c (dead) 1.2 +0 -10 ports/x11-servers/XFree86-4-Server/files/patch-os-support_Imakefile (dead) 1.1 +11 -0 ports/x11-servers/XFree86-4-Server/files/patch-programs::Xserver::Xext::Imakefile (new) 1.4 +0 -30 ports/x11-servers/XFree86-4-Server/files/patch-r128_driver.c (dead) 1.2 +0 -16 ports/x11-servers/XFree86-4-Server/files/patch-radeon_cursor.c (dead) 1.2 +0 -15 ports/x11-servers/XFree86-4-Server/files/patch-radeon_dri.c (dead) 1.1 +186 -0 ports/x11-servers/XFree86-4-Server/files/patch-radeon_driver.c (new) 1.2 +31 -11 ports/x11-servers/XFree86-4-Server/files/patch-radeon_reg.h 1.2 +0 -87 ports/x11-servers/XFree86-4-Server/files/patch-savage-pci-id (dead) 1.2 +0 -40 ports/x11-servers/XFree86-4-Server/files/patch-smi (dead) 1.2 +0 -11 ports/x11-servers/XFree86-4-Server/files/patch-sunffb_Imakefile (dead) 1.2 +0 -185 ports/x11-servers/XFree86-4-Server/files/patch-xc::lib::font::fontfile (dead) 1.4 +0 -21 ports/x11-servers/XFree86-4-Server/files/patch-xf86-common-Imakefile (dead) 1.2 +0 -18 ports/x11-servers/XFree86-4-Server/files/patch-xf86Events.c (dead) 1.2 +0 -16 ports/x11-servers/XFree86-4-Server/files/patch-xf86Sbus.h (dead) 1.2 +0 -31 ports/x11-servers/XFree86-4-Server/files/patch-xf86sym.c (dead) 1.2 +0 -17 ports/x11-servers/XFree86-4-Server/files/patch-xkbInit.c (dead) 1.3 +13 -0 ports/x11-servers/XFree86-4-Server/pkg-install (new) 1.53 +33 -27 ports/x11-servers/XFree86-4-Server/pkg-plist 1.81 +5 -2 ports/x11-servers/XFree86-4-Server/scripts/configure 1.30 +11 -8 ports/x11-servers/XFree86-4-VirtualFramebufferServer/Makefile 1.13 +6 -6 ports/x11-servers/XFree86-4-VirtualFramebufferServer/distinfo 1.1 +11 -0 ports/x11-servers/XFree86-4-VirtualFramebufferServer/files/patch-programs::Xserver::Xext::Imakefile (new) 1.1 +13 -0 ports/x11-servers/XFree86-4-VirtualFramebufferServer/pkg-install (new) 1.6 +1 -1 ports/x11-servers/XFree86-4-VirtualFramebufferServer/pkg-plist 1.127 +14 -8 ports/x11/XFree86-4-clients/Makefile 1.36 +8 -8 ports/x11/XFree86-4-clients/distinfo 1.6 +1 -0 ports/x11/XFree86-4-clients/files/manpages 1.2 +0 -16 ports/x11/XFree86-4-clients/files/patch-Imake.rules (dead) 1.2 +0 -50 ports/x11/XFree86-4-clients/files/patch-Xres.cpp (dead) 1.2 +0 -12 ports/x11/XFree86-4-clients/files/patch-mkfontscale.c (dead) 1.1 +11 -0 ports/x11/XFree86-4-clients/files/patch-programs::fonttosfnt::read.c (new) 1.1 +14 -0 ports/x11/XFree86-4-clients/files/patch-programs::xdm::Imakefile (new) 1.1 +27 -0 ports/x11/XFree86-4-clients/files/patch-programs::xdm::session.c (new) 1.1 +12 -0 ports/x11/XFree86-4-clients/files/patch-programs::xdm::socket.c (new) 1.1 +16 -0 ports/x11/XFree86-4-clients/pkg-install (new) 1.41 +39 -10 ports/x11/XFree86-4-clients/pkg-plist 1.14 +3 -3 ports/x11/XFree86-4-documents/Makefile 1.7 +4 -3 ports/x11/XFree86-4-documents/distinfo 1.5 +11 -5 ports/x11/XFree86-4-documents/files/patch-04 1.7 +92 -92 ports/x11/XFree86-4-documents/pkg-plist 1.141 +55 -17 ports/x11/XFree86-4-libraries/Makefile 1.40 +6 -6 ports/x11/XFree86-4-libraries/distinfo 1.9 +18 -73 ports/x11/XFree86-4-libraries/files/patch-FreeBSD.cf 1.4 +0 -18 ports/x11/XFree86-4-libraries/files/patch-Imake.cf (dead) 1.2 +5 -17 ports/x11/XFree86-4-libraries/files/patch-X11.tmpl 1.2 +0 -108 ports/x11/XFree86-4-libraries/files/patch-Xlc-fix (dead) 1.2 +0 -16 ports/x11/XFree86-4-libraries/files/patch-Xv.c (dead) 1.2 +0 -16 ports/x11/XFree86-4-libraries/files/patch-access.c (dead) 1.1 +300 -0 ports/x11/XFree86-4-libraries/files/patch-amd64 (new) 1.3 +3 -3 ports/x11/XFree86-4-libraries/files/patch-dps 1.2 +7 -7 ports/x11/XFree86-4-libraries/files/patch-dpsinfo 1.2 +0 -10 ports/x11/XFree86-4-libraries/files/patch-lcPrTxt.c (dead) 1.2 +4 -4 ports/x11/XFree86-4-libraries/files/patch-lib-Imakefile 1.2 +0 -11 ports/x11/XFree86-4-libraries/files/patch-lib-XRes-Imakefile (dead) 1.2 +0 -369 ports/x11/XFree86-4-libraries/files/patch-libXfont (dead) 1.4 +8 -194 ports/x11/XFree86-4-libraries/files/patch-luit 1.6 +1 -1 ports/x11/XFree86-4-libraries/files/patch-startx 1.2 +39 -5 ports/x11/XFree86-4-libraries/files/patch-xdm 1.3 +0 -20 ports/x11/XFree86-4-libraries/files/patch-xfree86.cf (dead) 1.2 +0 -15 ports/x11/XFree86-4-libraries/files/patch-xkbfile-Imakefile (dead) 1.6 +10 -10 ports/x11/XFree86-4-libraries/files/patch-z04 1.48 +27 -6 ports/x11/XFree86-4-libraries/pkg-plist 1.16 +2 -2 ports/x11/XFree86-4-manuals/Makefile 1.8 +2 -2 ports/x11/XFree86-4-manuals/distinfo 1.157 +2 -2 ports/x11/XFree86-4/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 01:30:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD0B616A4CE; Tue, 10 Aug 2004 01:30:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF3E543D55; Tue, 10 Aug 2004 01:30:46 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A1Ukmd088613; Tue, 10 Aug 2004 01:30:46 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A1Ukbb088612; Tue, 10 Aug 2004 01:30:46 GMT (envelope-from marcus) Message-Id: <200408100130.i7A1Ukbb088612@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 10 Aug 2004 01:30:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-servers/XFree86-4-Server-snap Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 01:30:47 -0000 marcus 2004-08-10 01:30:46 UTC FreeBSD ports repository Modified files: x11-servers/XFree86-4-Server-snap Makefile Log: Mark this port IGNORE now that XFree86-4-Server has been updated to 4.4.0. Revision Changes Path 1.153 +1 -0 ports/x11-servers/XFree86-4-Server-snap/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 01:32:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1647A16A4CE; Tue, 10 Aug 2004 01:32:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDB5743D1D; Tue, 10 Aug 2004 01:32:05 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A1W5SO088678; Tue, 10 Aug 2004 01:32:05 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A1W5D0088677; Tue, 10 Aug 2004 01:32:05 GMT (envelope-from njl) Message-Id: <200408100132.i7A1W5D0088677@repoman.freebsd.org> From: Nate Lawson Date: Tue, 10 Aug 2004 01:32:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_shutdown.c vfs_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 01:32:06 -0000 njl 2004-08-10 01:32:05 UTC FreeBSD src repository Modified files: sys/kern kern_shutdown.c vfs_subr.c Log: Skip the syncing disks loop if there are no dirty buffers. Remove a variable used to flag the initial printf. Submitted by: truckman (earlier version) Revision Changes Path 1.162 +13 -5 src/sys/kern/kern_shutdown.c 1.519 +1 -1 src/sys/kern/vfs_subr.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 01:44:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05FB016A4CE; Tue, 10 Aug 2004 01:44:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBC6043D39; Tue, 10 Aug 2004 01:44:57 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A1iviQ089028; Tue, 10 Aug 2004 01:44:57 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A1ivgJ089027; Tue, 10 Aug 2004 01:44:57 GMT (envelope-from kuriyama) Message-Id: <200408100144.i7A1ivgJ089027@repoman.freebsd.org> From: Jun Kuriyama Date: Tue, 10 Aug 2004 01:44:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/p5-Jcode Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 01:44:58 -0000 kuriyama 2004-08-10 01:44:57 UTC FreeBSD ports repository Modified files: japanese/p5-Jcode Makefile distinfo Log: - Upgrade to 0.87. - Move conditional dependency to the bottom of Makefile. Revision Changes Path 1.26 +8 -9 ports/japanese/p5-Jcode/Makefile 1.11 +2 -2 ports/japanese/p5-Jcode/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 10 01:49:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2684E16A4CE; Tue, 10 Aug 2004 01:49:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F03F43D41; Tue, 10 Aug 2004 01:49:47 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A1nliB089226; Tue, 10 Aug 2004 01:49:47 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A1nkDt089225; Tue, 10 Aug 2004 01:49:46 GMT (envelope-from csjp) Message-Id: <200408100149.i7A1nkDt089225@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Tue, 10 Aug 2004 01:49:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/watch watch.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 01:49:47 -0000 csjp 2004-08-10 01:49:46 UTC FreeBSD src repository Modified files: usr.sbin/watch watch.c Log: By default, the watch utility will attempt to open /dev/snp0, if another process already has /dev/snp0 open, the snp(4) will return EBUSY, in which case watch will try to open /dev/snp1..9. Currently watch does not check errno to see if the failure was a result of EBUSY. This results in watch making futile attempts to open snp0..snp9 even though devices may not exist or the caller does not have permissions to access the device. In addition to this, it attempts to setup the screen for snooping even though it may not ever get an snp device. So this patch does two things 1) Checks errno for EBUSY, if open(2) fails for another reason print that reason and exit. 2) setup the terminal for snooping after the snp descriptor has been obtained. Approved by: bmilekic (mentor) Revision Changes Path 1.31 +7 -3 src/usr.sbin/watch/watch.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 01:49:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53C2316A541; Tue, 10 Aug 2004 01:49:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3543043D31; Tue, 10 Aug 2004 01:49:52 +0000 (GMT) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A1nqBY089259; Tue, 10 Aug 2004 01:49:52 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A1nqO9089258; Tue, 10 Aug 2004 01:49:52 GMT (envelope-from kevlo) Message-Id: <200408100149.i7A1nqO9089258@repoman.freebsd.org> From: Kevin Lo Date: Tue, 10 Aug 2004 01:49:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/source-highlight Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 01:49:55 -0000 kevlo 2004-08-10 01:49:52 UTC FreeBSD ports repository Modified files: textproc/source-highlight Makefile distinfo pkg-plist Log: Update to 1.9 Revision Changes Path 1.8 +1 -1 ports/textproc/source-highlight/Makefile 1.8 +2 -2 ports/textproc/source-highlight/distinfo 1.7 +4 -1 ports/textproc/source-highlight/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 10 01:57:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEC8416A4CE; Tue, 10 Aug 2004 01:57:53 +0000 (GMT) Received: from ylpvm43.prodigy.net (ylpvm43-ext.prodigy.net [207.115.57.74]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9090743D31; Tue, 10 Aug 2004 01:57:53 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (adsl-67-115-74-195.dsl.lsan03.pacbell.net [67.115.74.195]) i7A1vrnA021787; Mon, 9 Aug 2004 21:57:55 -0400 Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 63AAA51312; Mon, 9 Aug 2004 18:57:50 -0700 (PDT) Date: Mon, 9 Aug 2004 18:57:50 -0700 From: Kris Kennaway To: Joe Marcus Clarke Message-ID: <20040810015750.GA98645@xor.obsecurity.org> References: <200408100130.i7A1Ukbb088612@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8t9RHnE3ZwKMSgU+" Content-Disposition: inline In-Reply-To: <200408100130.i7A1Ukbb088612@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/x11-servers/XFree86-4-Server-snap Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 01:57:54 -0000 --8t9RHnE3ZwKMSgU+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 10, 2004 at 01:30:46AM +0000, Joe Marcus Clarke wrote: > marcus 2004-08-10 01:30:46 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > x11-servers/XFree86-4-Server-snap Makefile=20 > Log: > Mark this port IGNORE now that XFree86-4-Server has been updated to 4.4= .0. It should probably just be removed for now. It can be brought back later if someone wants to update it. Kris --8t9RHnE3ZwKMSgU+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBGCudWry0BWjoQKURAv+GAJ90SkpUYgnqSXgmsuk+XHk0KkQFcgCg9izo oe87FxOVEFeTID+TcTapMN0= =/zCP -----END PGP SIGNATURE----- --8t9RHnE3ZwKMSgU+-- From owner-cvs-all@FreeBSD.ORG Tue Aug 10 02:03:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 324E616A4CE; Tue, 10 Aug 2004 02:03:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E37C43D39; Tue, 10 Aug 2004 02:03:01 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A230Qf089786; Tue, 10 Aug 2004 02:03:00 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A23036089785; Tue, 10 Aug 2004 02:03:00 GMT (envelope-from marcus) Message-Id: <200408100203.i7A23036089785@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 10 Aug 2004 02:03:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-servers Makefile ports/x11-servers/XFree86-4-Server-snap Makefile distinfo pkg-descr pkg-message pkg-plistpatch-GL-Imakefile patch-xc::lib::font::fontfile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 02:03:01 -0000 marcus 2004-08-10 02:03:00 UTC FreeBSD ports repository Modified files: x11-servers Makefile Removed files: x11-servers/XFree86-4-Server-snap Makefile distinfo pkg-descr pkg-message pkg-plist x11-servers/XFree86-4-Server-snap/files patch-FreeBSD.cf patch-GL-Imakefile patch-alpha_video.c patch-xc::lib::font::FreeType patch-xc::lib::font::fontfile patch-xfree86.cf x11-servers/XFree86-4-Server-snap/scripts configure Log: Remove the XFree86-Server snapshot. The main port has been updated, and this port has served its purpose. Requested by: kris Revision Changes Path 1.18 +0 -1 ports/x11-servers/Makefile 1.154 +0 -182 ports/x11-servers/XFree86-4-Server-snap/Makefile (dead) 1.49 +0 -4 ports/x11-servers/XFree86-4-Server-snap/distinfo (dead) 1.5 +0 -39 ports/x11-servers/XFree86-4-Server-snap/files/patch-FreeBSD.cf (dead) 1.2 +0 -11 ports/x11-servers/XFree86-4-Server-snap/files/patch-GL-Imakefile (dead) 1.5 +0 -13 ports/x11-servers/XFree86-4-Server-snap/files/patch-alpha_video.c (dead) 1.2 +0 -62 ports/x11-servers/XFree86-4-Server-snap/files/patch-xc::lib::font::FreeType (dead) 1.2 +0 -185 ports/x11-servers/XFree86-4-Server-snap/files/patch-xc::lib::font::fontfile (dead) 1.4 +0 -11 ports/x11-servers/XFree86-4-Server-snap/files/patch-xfree86.cf (dead) 1.10 +0 -4 ports/x11-servers/XFree86-4-Server-snap/pkg-descr (dead) 1.2 +0 -5 ports/x11-servers/XFree86-4-Server-snap/pkg-message (dead) 1.51 +0 -201 ports/x11-servers/XFree86-4-Server-snap/pkg-plist (dead) 1.81 +0 -108 ports/x11-servers/XFree86-4-Server-snap/scripts/configure (dead) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 02:04:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04C9416A4CE; Tue, 10 Aug 2004 02:04:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAB5343D39; Tue, 10 Aug 2004 02:04:31 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A24VGi089836; Tue, 10 Aug 2004 02:04:31 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A24V03089835; Tue, 10 Aug 2004 02:04:31 GMT (envelope-from marcus) Message-Id: <200408100204.i7A24V03089835@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 10 Aug 2004 02:04:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports MOVED X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 02:04:32 -0000 marcus 2004-08-10 02:04:31 UTC FreeBSD ports repository Modified files: . MOVED Log: Add an entry for x11-servers/XFree86-4-Server. Revision Changes Path 1.495 +2 -1 ports/MOVED From owner-cvs-all@FreeBSD.ORG Tue Aug 10 02:05:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E350716A4CE; Tue, 10 Aug 2004 02:05:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C767543D45; Tue, 10 Aug 2004 02:05:09 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A259Yg089892; Tue, 10 Aug 2004 02:05:09 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A259lY089891; Tue, 10 Aug 2004 02:05:09 GMT (envelope-from marcus) Message-Id: <200408100205.i7A259lY089891@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 10 Aug 2004 02:05:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 02:05:10 -0000 marcus 2004-08-10 02:05:09 UTC FreeBSD ports repository Modified files: . modules Log: Remove ports/x11-servers/XFree86-4-Server-snap. Revision Changes Path 1.10858 +0 -1 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 10 02:08:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4961A16A4CE; Tue, 10 Aug 2004 02:08:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D55A43D5A; Tue, 10 Aug 2004 02:08:58 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A28wPF090070; Tue, 10 Aug 2004 02:08:58 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A28w88090069; Tue, 10 Aug 2004 02:08:58 GMT (envelope-from marcel) Message-Id: <200408100208.i7A28w88090069@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 10 Aug 2004 02:08:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/boot/efi/loader main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 02:08:58 -0000 marcel 2004-08-10 02:08:58 UTC FreeBSD src repository Modified files: sys/boot/efi/loader main.c Log: Catch up with change to . Revision Changes Path 1.21 +8 -9 src/sys/boot/efi/loader/main.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 02:12:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E11916A4CE; Tue, 10 Aug 2004 02:12:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FD1443D45; Tue, 10 Aug 2004 02:12:44 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A2Citj090239; Tue, 10 Aug 2004 02:12:44 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A2Cilb090238; Tue, 10 Aug 2004 02:12:44 GMT (envelope-from maho) Message-Id: <200408100212.i7A2Cilb090238@repoman.freebsd.org> From: Maho Nakata Date: Tue, 10 Aug 2004 02:12:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-1.1 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 02:12:44 -0000 maho 2004-08-10 02:12:44 UTC FreeBSD ports repository Modified files: editors/openoffice-1.1 Makefile Log: cosmetic change. space -> tab Revision Changes Path 1.155 +4 -4 ports/editors/openoffice-1.1/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 02:18:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7D97616A55D; Tue, 10 Aug 2004 02:18:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71CD943D45; Tue, 10 Aug 2004 02:18:28 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A2ISWu090392; Tue, 10 Aug 2004 02:18:28 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A2ISVL090391; Tue, 10 Aug 2004 02:18:28 GMT (envelope-from kensmith) Message-Id: <200408100218.i7A2ISVL090391@repoman.freebsd.org> From: Ken Smith Date: Tue, 10 Aug 2004 02:18:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/sysinstall config.c dist.c dist.h menus.c sysinstall.8 sysinstall.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 02:18:28 -0000 kensmith 2004-08-10 02:18:28 UTC FreeBSD src repository Modified files: usr.sbin/sysinstall config.c dist.c dist.h menus.c sysinstall.8 sysinstall.h Log: Initial pass at shifting sysinstall(8) to install X.org instead of XFree86. There are still a few nits to work out (graphical config non-functional). Patches by: anholt@, adapted slightly Reviewed by: 'make release' Revision Changes Path 1.225 +7 -7 src/usr.sbin/sysinstall/config.c 1.233 +35 -64 src/usr.sbin/sysinstall/dist.c 1.61 +31 -23 src/usr.sbin/sysinstall/dist.h 1.394 +79 -72 src/usr.sbin/sysinstall/menus.c 1.63 +28 -96 src/usr.sbin/sysinstall/sysinstall.8 1.261 +9 -13 src/usr.sbin/sysinstall/sysinstall.h From owner-cvs-all@FreeBSD.ORG Tue Aug 10 02:37:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E17E716A4CE; Tue, 10 Aug 2004 02:37:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C32A543D4C; Tue, 10 Aug 2004 02:37:08 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A2b8Hb090899; Tue, 10 Aug 2004 02:37:08 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A2b80l090898; Tue, 10 Aug 2004 02:37:08 GMT (envelope-from kuriyama) Message-Id: <200408100237.i7A2b80l090898@repoman.freebsd.org> From: Jun Kuriyama Date: Tue, 10 Aug 2004 02:37:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/p5-XML-Atom Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 02:37:09 -0000 kuriyama 2004-08-10 02:37:08 UTC FreeBSD ports repository Modified files: textproc/p5-XML-Atom Makefile Log: - Make depedency on p5-MIME-Base64 conditional with perl-5.8.5. Approved by: maintainer Revision Changes Path 1.7 +7 -2 ports/textproc/p5-XML-Atom/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 02:54:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 48E0816A4CE; Tue, 10 Aug 2004 02:54:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AAF143D1D; Tue, 10 Aug 2004 02:54:56 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A2su89091306; Tue, 10 Aug 2004 02:54:56 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A2st6S091305; Tue, 10 Aug 2004 02:54:55 GMT (envelope-from kuriyama) Message-Id: <200408100254.i7A2st6S091305@repoman.freebsd.org> From: Jun Kuriyama Date: Tue, 10 Aug 2004 02:54:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/p5-Jcode Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 02:54:56 -0000 kuriyama 2004-08-10 02:54:55 UTC FreeBSD ports repository Modified files: japanese/p5-Jcode Makefile Log: Unbreak about $PKGNAMEPREFIX recursion. Found by: freshports Revision Changes Path 1.27 +2 -2 ports/japanese/p5-Jcode/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 02:58:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C249516A4CE; Tue, 10 Aug 2004 02:58:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A667E43D53; Tue, 10 Aug 2004 02:58:32 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A2wWFK091437; Tue, 10 Aug 2004 02:58:32 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A2wW8J091436; Tue, 10 Aug 2004 02:58:32 GMT (envelope-from kuriyama) Message-Id: <200408100258.i7A2wW8J091436@repoman.freebsd.org> From: Jun Kuriyama Date: Tue, 10 Aug 2004 02:58:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/fastest_cvsup Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 02:58:32 -0000 kuriyama 2004-08-10 02:58:32 UTC FreeBSD ports repository Modified files: sysutils/fastest_cvsup Makefile Log: - Make depedency on p5-Time-HiRes conditional with perl-5.8.5. Revision Changes Path 1.9 +7 -3 ports/sysutils/fastest_cvsup/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 03:23:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2EA316A4CE; Tue, 10 Aug 2004 03:23:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C628E43D49; Tue, 10 Aug 2004 03:23:05 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A3N5uq092333; Tue, 10 Aug 2004 03:23:05 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A3N5j2092332; Tue, 10 Aug 2004 03:23:05 GMT (envelope-from rwatson) Message-Id: <200408100323.i7A3N5j2092332@repoman.freebsd.org> From: Robert Watson Date: Tue, 10 Aug 2004 03:23:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netatalk aarp.c ddp_input.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 03:23:06 -0000 rwatson 2004-08-10 03:23:05 UTC FreeBSD src repository Modified files: sys/netatalk aarp.c ddp_input.c Log: Inline umich license from COPYRIGHT to make it clear what license the umich copyright is asserting. Clarify that the copyright I'm asserting is the standard Berkeley license. Remove Giant assertions from AARP and DDP input routines. Revision Changes Path 1.33 +47 -3 src/sys/netatalk/aarp.c 1.26 +45 -4 src/sys/netatalk/ddp_input.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 03:26:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A49D16A4CE; Tue, 10 Aug 2004 03:26:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D4B743D5C; Tue, 10 Aug 2004 03:26:17 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A3QHBl092470; Tue, 10 Aug 2004 03:26:17 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A3QHV4092469; Tue, 10 Aug 2004 03:26:17 GMT (envelope-from rwatson) Message-Id: <200408100326.i7A3QHV4092469@repoman.freebsd.org> From: Robert Watson Date: Tue, 10 Aug 2004 03:26:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/opencrypto cryptodev.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 03:26:17 -0000 rwatson 2004-08-10 03:26:17 UTC FreeBSD src repository Modified files: sys/opencrypto cryptodev.c Log: Don't acquire Giant in cryptof_close(), as the code is intended to be able to run MPsafe (and appears to be MPsafe). Discussed with (some time ago): sam Revision Changes Path 1.22 +0 -7 src/sys/opencrypto/cryptodev.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 03:29:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD66D16A4CE; Tue, 10 Aug 2004 03:29:47 +0000 (GMT) Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AF6C43D45; Tue, 10 Aug 2004 03:29:47 +0000 (GMT) (envelope-from danfe@regency.nsu.ru) Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 4.32) id 1BuNV2-0004oh-LO; Tue, 10 Aug 2004 10:40:32 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.10/8.12.10) with ESMTP id i7A3Ts0m040354; Tue, 10 Aug 2004 10:29:54 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.10/8.12.10/Submit) id i7A3Tsfl040293; Tue, 10 Aug 2004 10:29:54 +0700 (NOVST) (envelope-from danfe) Date: Tue, 10 Aug 2004 10:29:54 +0700 From: Alexey Dokuchaev To: Joe Marcus Clarke Message-ID: <20040810032954.GA34553@regency.nsu.ru> References: <200408100129.i7A1TM9b088491@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408100129.i7A1TM9b088491@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/devel/imake-4 Makefile distinfo pkg-plist ports/devel/imake-4/files patch-amd64 patch-d patch-freetype patch-rman.c ports/x11/XFree86-4 Makefile ports/x11/XFree86-4-clients Makefile distinfo pkg-install ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 03:29:48 -0000 On Tue, Aug 10, 2004 at 01:29:22AM +0000, Joe Marcus Clarke wrote: > marcus 2004-08-10 01:29:22 UTC > > FreeBSD ports repository > > Modified files: [ ... skip quite a long file list ... ] > Log: > Update XFree86 clients to 4.4 release. Release notes are available at > http://www.xfree86.org/4.4.0/RELNOTES.html Thanks a lot. ./danfe From owner-cvs-all@FreeBSD.ORG Tue Aug 10 04:16:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18E1816A4CF; Tue, 10 Aug 2004 04:16:41 +0000 (GMT) Received: from ozlabs.org (ozlabs.org [203.10.76.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id B34D143D49; Tue, 10 Aug 2004 04:16:39 +0000 (GMT) (envelope-from grog@lemis.com) Received: from blackwater.lemis.com (blackwater.lemis.com [192.109.197.80]) by ozlabs.org (Postfix) with ESMTP id 84F432BDA6; Tue, 10 Aug 2004 14:16:37 +1000 (EST) Received: by blackwater.lemis.com (Postfix, from userid 1004) id 58F1954341; Tue, 10 Aug 2004 13:46:34 +0930 (CST) Date: Tue, 10 Aug 2004 13:46:34 +0930 From: Greg 'groggy' Lehey To: John-Mark Gurney Message-ID: <20040810041634.GV44716@wantadilla.lemis.com> References: <200408041803.i74I3hW3032824@repoman.freebsd.org> <20040804200237.GA9720@dhcp50.pn.xcllnt.net> <20040804201627.GA991@funkthat.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="E8vXRijW3SOTujIP" Content-Disposition: inline In-Reply-To: <20040804201627.GA991@funkthat.com> User-Agent: Mutt/1.4.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Marcel Moolenaar Subject: Attitude problems? (was: cvs commit: src/tools/debugscripts README kgdb kld_deb.py) X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 04:16:41 -0000 --E8vXRijW3SOTujIP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wednesday, 4 August 2004 at 13:16:27 -0700, John-Mark Gurney wrote: > Marcel Moolenaar wrote this message on Wed, Aug 04, 2004 at 13:02 -0700: >>> add a set of scripts that I posted to -current last year. This makes > > [...] > >> They are mostly useless with gdb6, because support is already (partially) >> in kgdb(1) and what is not there yet is already planned. I don't mind >> that you commit these scripts, but the last sentence is crucial: it >> means that there's more unfinished stuff in the repository that needs >> attention to complete and thereby distracting attention away from where >> it's really needed. Your time would also be spent in a more focussed and >> constructive way if you would have add some of the features to kgdb(1). > > Umm.. I did all the work a year ago... I didn't "waste" my time as > you seem to imply since it only took three minutes or so to commit them.. > > I don't have a problem having them removed once support in kgdb(1) (8?), > has been completed... > > We probably spent more time typing these two messages than it took me > to commit the scripts... > > It was requested of me to commit these the other day when I mentioned > them to another committer (who I don't remeber right now). > >> If you want to help out, make sure you help doing things that need to >> be done. > > Make sure you don't discourage people from working to improve > FreeBSD. Indeed. Marcel, it would have been easy to tell John-Mark what kind of work *would* be useful. Although I suspect that what you're doing is excellent and a great improvement on what we have (certainly on my debug scripts), my interaction with you has left me wondering if I care any more. Greg -- Note: I discard all HTML mail unseen. Finger grog@FreeBSD.org for PGP public key. See complete headers for address and phone numbers. --E8vXRijW3SOTujIP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQFBGEwiIubykFB6QiMRAiwfAJ9GpkunAKuTLREKBe9IJT5EdcD3ZQCgpfUD TutN6dEUQWVIq7Fir52v9+4= =XSRX -----END PGP SIGNATURE----- --E8vXRijW3SOTujIP-- From owner-cvs-all@FreeBSD.ORG Tue Aug 10 04:21:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4BB6316A4CE; Tue, 10 Aug 2004 04:21:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D23C43D45; Tue, 10 Aug 2004 04:21:52 +0000 (GMT) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A4LqQm093833; Tue, 10 Aug 2004 04:21:52 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A4LpP3093832; Tue, 10 Aug 2004 04:21:51 GMT (envelope-from leeym) Message-Id: <200408100421.i7A4LpP3093832@repoman.freebsd.org> From: Yen-Ming Lee Date: Tue, 10 Aug 2004 04:21:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-File-Temp Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 04:21:52 -0000 leeym 2004-08-10 04:21:51 UTC FreeBSD ports repository Modified files: devel/p5-File-Temp Makefile Log: devel/p5-File-Temp installs file at wrong path (/usr/local/lib/File/Temp.pm). add INSTALLDIRS=site to fix it. PR: 70234 Submitted by: leeym Approved by: clsung Revision Changes Path 1.10 +2 -1 ports/devel/p5-File-Temp/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 04:42:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A84B616A4CE; Tue, 10 Aug 2004 04:42:26 +0000 (GMT) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 443A843D4C; Tue, 10 Aug 2004 04:42:26 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (localhost [127.0.0.1]) by ns1.xcllnt.net (8.12.11/8.12.11) with ESMTP id i7A4gQnV072267; Mon, 9 Aug 2004 21:42:26 -0700 (PDT) (envelope-from marcel@ns1.xcllnt.net) Received: (from marcel@localhost) by ns1.xcllnt.net (8.12.11/8.12.11/Submit) id i7A4gPXx072266; Mon, 9 Aug 2004 21:42:25 -0700 (PDT) (envelope-from marcel) Date: Mon, 9 Aug 2004 21:42:25 -0700 From: Marcel Moolenaar To: "Greg 'groggy' Lehey" Message-ID: <20040810044225.GA72217@ns1.xcllnt.net> References: <200408041803.i74I3hW3032824@repoman.freebsd.org> <20040804200237.GA9720@dhcp50.pn.xcllnt.net> <20040804201627.GA991@funkthat.com> <20040810041634.GV44716@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040810041634.GV44716@wantadilla.lemis.com> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: John-Mark Gurney cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: Attitude problems? (was: cvs commit: src/tools/debugscripts README kgdb kld_deb.py) X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 04:42:26 -0000 On Tue, Aug 10, 2004 at 01:46:34PM +0930, Greg 'groggy' Lehey wrote: > > Indeed. Marcel, it would have been easy to tell John-Mark what kind > of work *would* be useful. Although I suspect that what you're doing > is excellent and a great improvement on what we have (certainly on my > debug scripts), my interaction with you has left me wondering if I > care any more. I haven't done anything with your debug scripts and we haven't had any interactions at all. What are you talking about? -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Tue Aug 10 04:46:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D855A16A4CE; Tue, 10 Aug 2004 04:46:59 +0000 (GMT) Received: from ozlabs.org (ozlabs.org [203.10.76.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D28D43D1F; Tue, 10 Aug 2004 04:46:59 +0000 (GMT) (envelope-from grog@lemis.com) Received: from blackwater.lemis.com (blackwater.lemis.com [192.109.197.80]) by ozlabs.org (Postfix) with ESMTP id 4B5072BDEA; Tue, 10 Aug 2004 14:46:57 +1000 (EST) Received: by blackwater.lemis.com (Postfix, from userid 1004) id B42AA54341; Tue, 10 Aug 2004 14:16:51 +0930 (CST) Date: Tue, 10 Aug 2004 14:16:51 +0930 From: Greg 'groggy' Lehey To: Marcel Moolenaar Message-ID: <20040810044651.GX44716@wantadilla.lemis.com> References: <200408041803.i74I3hW3032824@repoman.freebsd.org> <20040804200237.GA9720@dhcp50.pn.xcllnt.net> <20040804201627.GA991@funkthat.com> <20040810041634.GV44716@wantadilla.lemis.com> <20040810044225.GA72217@ns1.xcllnt.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="CU+BzvuqDIqVbf/Y" Content-Disposition: inline In-Reply-To: <20040810044225.GA72217@ns1.xcllnt.net> User-Agent: Mutt/1.4.1i Organization: The FreeBSD Project Phone: +61-8-8388-8286 Fax: +61-8-8388-8725 Mobile: +61-418-838-708 WWW-Home-Page: http://www.FreeBSD.org/ X-PGP-Fingerprint: 9A1B 8202 BCCE B846 F92F 09AC 22E6 F290 507A 4223 cc: cvs-src@FreeBSD.org cc: John-Mark Gurney cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: Attitude problems? (was: cvs commit: src/tools/debugscripts README kgdb kld_deb.py) X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 04:47:00 -0000 --CU+BzvuqDIqVbf/Y Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Monday, 9 August 2004 at 21:42:25 -0700, Marcel Moolenaar wrote: > On Tue, Aug 10, 2004 at 01:46:34PM +0930, Greg 'groggy' Lehey wrote: >> >> Indeed. Marcel, it would have been easy to tell John-Mark what kind >> of work *would* be useful. Although I suspect that what you're doing >> is excellent and a great improvement on what we have (certainly on my >> debug scripts), my interaction with you has left me wondering if I >> care any more. > > I haven't done anything with your debug scripts I wasn't talking about them. > and we haven't had any interactions at all. What are you talking > about? Yes we have. I sent you a question about the new kernel debugging framework. Your reply was very unhelpful (one word), and you didn't reply to my followup question. But don't let it worry you. It's not as if you're anywhere close to being the main cause of my loss of interest in FreeBSD. Greg -- Note: I discard all HTML mail unseen. Finger grog@FreeBSD.org for PGP public key. See complete headers for address and phone numbers. --CU+BzvuqDIqVbf/Y Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.0 (FreeBSD) iD8DBQFBGFM7IubykFB6QiMRAvekAKCfSh0WlSG/TdB3gq+m3rbgSwKH2gCeN6m/ 7CGP+1gnJWEeiL51clEiQkc= =rcqG -----END PGP SIGNATURE----- --CU+BzvuqDIqVbf/Y-- From owner-cvs-all@FreeBSD.ORG Tue Aug 10 04:56:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B4D2D16A4CE; Tue, 10 Aug 2004 04:56:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9831B43D5C; Tue, 10 Aug 2004 04:56:39 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A4udv4094675; Tue, 10 Aug 2004 04:56:39 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A4udX8094674; Tue, 10 Aug 2004 04:56:39 GMT (envelope-from scottl) Message-Id: <200408100456.i7A4udX8094674@repoman.freebsd.org> From: Scott Long Date: Tue, 10 Aug 2004 04:56:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 04:56:39 -0000 scottl 2004-08-10 04:56:39 UTC FreeBSD src repository Modified files: lib/libbsnmp/modules Makefile Log: Disable the snmp_atm module until the source gets fixed. This will unbreak this portion of the build. Revision Changes Path 1.3 +1 -1 src/lib/libbsnmp/modules/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 05:22:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9E6F16A4CE; Tue, 10 Aug 2004 05:22:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C26D43D49; Tue, 10 Aug 2004 05:22:04 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A5M4Me095288; Tue, 10 Aug 2004 05:22:04 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A5M4Oo095287; Tue, 10 Aug 2004 05:22:04 GMT (envelope-from kuriyama) Message-Id: <200408100522.i7A5M4Oo095287@repoman.freebsd.org> From: Jun Kuriyama Date: Tue, 10 Aug 2004 05:22:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/p5-Crypt-DES_EDE3 Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 05:22:04 -0000 kuriyama 2004-08-10 05:22:04 UTC FreeBSD ports repository Modified files: security/p5-Crypt-DES_EDE3 Makefile Added files: security/p5-Crypt-DES_EDE3 pkg-plist Log: Fix plist. Approved by: maintainer Revision Changes Path 1.5 +1 -1 ports/security/p5-Crypt-DES_EDE3/Makefile 1.4 +4 -0 ports/security/p5-Crypt-DES_EDE3/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 05:23:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0742E16A4CE; Tue, 10 Aug 2004 05:23:55 +0000 (GMT) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id C31AB43D5D; Tue, 10 Aug 2004 05:23:54 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from dhcp50.pn.xcllnt.net (dhcp50.pn.xcllnt.net [192.168.4.250]) by ns1.xcllnt.net (8.12.11/8.12.11) with ESMTP id i7A5Nsdo072392; Mon, 9 Aug 2004 22:23:54 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp50.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp50.pn.xcllnt.net (8.13.1/8.13.1) with ESMTP id i7A5NsFD010867; Mon, 9 Aug 2004 22:23:54 -0700 (PDT) (envelope-from marcel@dhcp50.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp50.pn.xcllnt.net (8.13.1/8.13.1/Submit) id i7A5NsRO010866; Mon, 9 Aug 2004 22:23:54 -0700 (PDT) (envelope-from marcel) Date: Mon, 9 Aug 2004 22:23:54 -0700 From: Marcel Moolenaar To: "Greg 'groggy' Lehey" Message-ID: <20040810052354.GA10763@dhcp50.pn.xcllnt.net> References: <200408041803.i74I3hW3032824@repoman.freebsd.org> <20040804200237.GA9720@dhcp50.pn.xcllnt.net> <20040804201627.GA991@funkthat.com> <20040810041634.GV44716@wantadilla.lemis.com> <20040810044225.GA72217@ns1.xcllnt.net> <20040810044651.GX44716@wantadilla.lemis.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040810044651.GX44716@wantadilla.lemis.com> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: John-Mark Gurney cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: Attitude problems? (was: cvs commit: src/tools/debugscripts README kgdb kld_deb.py) X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 05:23:55 -0000 On Tue, Aug 10, 2004 at 02:16:51PM +0930, Greg 'groggy' Lehey wrote: > > and we haven't had any interactions at all. What are you talking > > about? > > Yes we have. I sent you a question about the new kernel debugging > framework. Your reply was very unhelpful (one word), and you didn't > reply to my followup question. So? I was simply too busy to answer questions about why DDB changed to KDB when it was obvious that you only saw the commit to vinum. If you bothered to follow what I did, you wouldn't have asked that question. Nobody else needed to ask that question. I'm sorry if you felt ignored, but I had more important things on my mind. > But don't let it worry you. It's not > as if you're anywhere close to being the main cause of my loss of > interest in FreeBSD. I see. You used jmg's response to fire at me for something that doesn't relate to what jmg@ said and doesn't even merit such an attack and now you use my response to fire from the hip at the rest of the world for whatever got you frustrated. I don't think anybody was waiting for this, -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Tue Aug 10 05:34:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3540916A4CE; Tue, 10 Aug 2004 05:34:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1752F43D5D; Tue, 10 Aug 2004 05:34:24 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A5YN9R095586; Tue, 10 Aug 2004 05:34:23 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A5YNxB095585; Tue, 10 Aug 2004 05:34:23 GMT (envelope-from murray) Message-Id: <200408100534.i7A5YNxB095585@repoman.freebsd.org> From: Murray Stokely Date: Tue, 10 Aug 2004 05:34:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/tzsetup tzsetup.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 05:34:24 -0000 murray 2004-08-10 05:34:23 UTC FreeBSD src repository Modified files: usr.sbin/tzsetup tzsetup.c Log: Update wording regarding geography to match the man page and web site. Specifically, change the second level menu title from 'Country' to 'Country or Region', since e.g. Hong Kong is not a country. Submitted by: Xin LI Revision Changes Path 1.26 +1 -1 src/usr.sbin/tzsetup/tzsetup.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 05:34:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCC0816A4CE; Tue, 10 Aug 2004 05:34:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AED7143D5C; Tue, 10 Aug 2004 05:34:34 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A5YYZk095619; Tue, 10 Aug 2004 05:34:34 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A5YYpn095618; Tue, 10 Aug 2004 05:34:34 GMT (envelope-from sem) Message-Id: <200408100534.i7A5YYpn095618@repoman.freebsd.org> From: Sergey Matveychuk Date: Tue, 10 Aug 2004 05:34:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/portmanager Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 05:34:34 -0000 sem 2004-08-10 05:34:34 UTC FreeBSD ports repository Modified files: sysutils/portmanager Makefile distinfo pkg-plist Log: Update to 0.1.9 This version corrects bus faults introduced in ver 0.1.8. Also corrects two pkg-plist errors. PR: ports/70239 Submitted by: maintainer Revision Changes Path 1.4 +3 -3 ports/sysutils/portmanager/Makefile 1.4 +2 -2 ports/sysutils/portmanager/distinfo 1.4 +4 -4 ports/sysutils/portmanager/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 10 05:43:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB67D16A590; Tue, 10 Aug 2004 05:43:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBA6643D53; Tue, 10 Aug 2004 05:43:40 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A5hedV095905; Tue, 10 Aug 2004 05:43:40 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A5heX4095904; Tue, 10 Aug 2004 05:43:40 GMT (envelope-from marcel) Message-Id: <200408100543.i7A5heX4095904@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 10 Aug 2004 05:43:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/ia64 mkisoimages.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 05:43:41 -0000 marcel 2004-08-10 05:43:40 UTC FreeBSD src repository Modified files: release/ia64 mkisoimages.sh Log: Favor building the cdrtools port over fetching the package. There hasn't been any package build for ia64 for a long time and in this case it means that the cdrtools package on the FTP sites is one that doesn't have mkisofs. This breaks the release build. By trying to build the port first, we protect ourselves a bit more against this. Revision Changes Path 1.9 +22 -24 src/release/ia64/mkisoimages.sh From owner-cvs-all@FreeBSD.ORG Tue Aug 10 05:56:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95B9116A4CE; Tue, 10 Aug 2004 05:56:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76F5043D54; Tue, 10 Aug 2004 05:56:27 +0000 (GMT) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A5uRXC096275; Tue, 10 Aug 2004 05:56:27 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A5uRoG096274; Tue, 10 Aug 2004 05:56:27 GMT (envelope-from kevlo) Message-Id: <200408100556.i7A5uRoG096274@repoman.freebsd.org> From: Kevin Lo Date: Tue, 10 Aug 2004 05:56:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/tinyca Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 05:56:27 -0000 kevlo 2004-08-10 05:56:27 UTC FreeBSD ports repository Modified files: security/tinyca Makefile distinfo Log: Update to 0.6.5 PR: 70212 Submitted by: MAINTAINER Revision Changes Path 1.11 +1 -1 ports/security/tinyca/Makefile 1.9 +2 -2 ports/security/tinyca/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 10 06:03:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E900616A4CE; Tue, 10 Aug 2004 06:03:43 +0000 (GMT) Received: from volginfo.ru (ns.volginfo.ru [217.23.84.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83A1E43D55; Tue, 10 Aug 2004 06:03:43 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from FreeBSD.org (llp-13.vistcom.ru [217.23.84.68]) by volginfo.ru (Postfix) with ESMTP id 74ADB2012; Tue, 10 Aug 2004 10:03:43 +0400 (MSD) Message-ID: <4118653D.6040804@FreeBSD.org> Date: Tue, 10 Aug 2004 10:03:41 +0400 From: Denis Peplin User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040205 X-Accept-Language: ru, en-us, en MIME-Version: 1.0 To: Hiroki Sato References: <200408091642.i79Ggf7I066038@repoman.freebsd.org> In-Reply-To: <200408091642.i79Ggf7I066038@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/ru_RU.KOI8-R/share/mk doc.local.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 06:03:44 -0000 Hiroki Sato wrote: > hrs 2004-08-09 16:42:41 UTC > > FreeBSD doc repository > > Added files: > ru_RU.KOI8-R/share/mk doc.local.mk > Log: > Add doc.local.mk for ru_RU.KOI8-R. > > Revision Changes Path > 1.1 +3 -0 doc/ru_RU.KOI8-R/share/mk/doc.local.mk (new) > Thanks! From owner-cvs-all@FreeBSD.ORG Tue Aug 10 06:14:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FD6716A4CE; Tue, 10 Aug 2004 06:14:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43AD343D45; Tue, 10 Aug 2004 06:14:15 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A6EFSE096692; Tue, 10 Aug 2004 06:14:15 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A6EFi1096691; Tue, 10 Aug 2004 06:14:15 GMT (envelope-from kuriyama) Message-Id: <200408100614.i7A6EFi1096691@repoman.freebsd.org> From: Jun Kuriyama Date: Tue, 10 Aug 2004 06:14:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Module-Build Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 06:14:15 -0000 kuriyama 2004-08-10 06:14:15 UTC FreeBSD ports repository Modified files: devel/p5-Module-Build Makefile Log: - Make depedency on p5-podolators conditional with perl-5.8.5. Approved by: mat (maintainer) Revision Changes Path 1.17 +3 -1 ports/devel/p5-Module-Build/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 06:15:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92FA516A4CE; Tue, 10 Aug 2004 06:15:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BAEE43D5A; Tue, 10 Aug 2004 06:15:47 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A6FlVL096858; Tue, 10 Aug 2004 06:15:47 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A6FlbF096857; Tue, 10 Aug 2004 06:15:47 GMT (envelope-from marcus) Message-Id: <200408100615.i7A6FlbF096857@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 10 Aug 2004 06:15:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/galeon2 Makefile distinfo pkg-plist ports/www/galeon2/files galeon patch-ab patch-configure patch-src_popup-commands.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 06:15:47 -0000 marcus 2004-08-10 06:15:47 UTC FreeBSD ports repository Modified files: www/galeon2 Makefile distinfo pkg-plist www/galeon2/files patch-configure Added files: www/galeon2/files galeon patch-src_popup-commands.c Removed files: www/galeon2/files patch-ab Log: Update to 1.3.17. Revision Changes Path 1.150 +8 -4 ports/www/galeon2/Makefile 1.61 +2 -2 ports/www/galeon2/distinfo 1.1 +27 -0 ports/www/galeon2/files/galeon (new) 1.20 +0 -47 ports/www/galeon2/files/patch-ab (dead) 1.17 +3 -34 ports/www/galeon2/files/patch-configure 1.1 +15 -0 ports/www/galeon2/files/patch-src_popup-commands.c (new) 1.53 +0 -1 ports/www/galeon2/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 10 06:31:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91B8816A4CE; Tue, 10 Aug 2004 06:31:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73B7D43D53; Tue, 10 Aug 2004 06:31:08 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A6V8xr097292; Tue, 10 Aug 2004 06:31:08 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A6V8vO097291; Tue, 10 Aug 2004 06:31:08 GMT (envelope-from vs) Message-Id: <200408100631.i7A6V8vO097291@repoman.freebsd.org> From: Volker Stolz Date: Tue, 10 Aug 2004 06:31:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/thefish Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 06:31:08 -0000 vs 2004-08-10 06:31:08 UTC FreeBSD ports repository Modified files: sysutils/thefish Makefile Log: Fix up last update: Pass LOCALBASE & PTHREAD_LIBS in MAKE_ENV PR: ports/70177 Submitted by: Miguel Mendez (maintainer) Revision Changes Path 1.46 +4 -0 ports/sysutils/thefish/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 06:35:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96B2916A4CE; Tue, 10 Aug 2004 06:35:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7855743D55; Tue, 10 Aug 2004 06:35:20 +0000 (GMT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A6ZKpu097424; Tue, 10 Aug 2004 06:35:20 GMT (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A6ZK5E097423; Tue, 10 Aug 2004 06:35:20 GMT (envelope-from bland) Message-Id: <200408100635.i7A6ZK5E097423@repoman.freebsd.org> From: Alexander Nedotsukov Date: Tue, 10 Aug 2004 06:35:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/user-selector-applet Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 06:35:21 -0000 bland 2004-08-10 06:35:20 UTC FreeBSD ports repository Modified files: x11/user-selector-applet Makefile pkg-descr Log: - Cache distfile locally. - Minor cleanups. Revision Changes Path 1.3 +3 -3 ports/x11/user-selector-applet/Makefile 1.2 +0 -1 ports/x11/user-selector-applet/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Aug 10 06:45:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6384A16A4CE; Tue, 10 Aug 2004 06:45:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 471C443D58; Tue, 10 Aug 2004 06:45:21 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A6jL0m097826; Tue, 10 Aug 2004 06:45:21 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A6jLjm097825; Tue, 10 Aug 2004 06:45:21 GMT (envelope-from marcus) Message-Id: <200408100645.i7A6jLjm097825@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 10 Aug 2004 06:45:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/balsa Makefile distinfo ports/mail/balsa/files patch-libbalsa_mailbox_imap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 06:45:21 -0000 marcus 2004-08-10 06:45:21 UTC FreeBSD ports repository Modified files: mail/balsa Makefile distinfo Added files: mail/balsa/files patch-libbalsa_mailbox_imap.c Log: Update to 2.2.2. Revision Changes Path 1.79 +1 -1 ports/mail/balsa/Makefile 1.39 +2 -2 ports/mail/balsa/distinfo 1.1 +12 -0 ports/mail/balsa/files/patch-libbalsa_mailbox_imap.c (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 06:48:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 628BE16A4CE; Tue, 10 Aug 2004 06:48:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4484143D46; Tue, 10 Aug 2004 06:48:40 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A6metT097951; Tue, 10 Aug 2004 06:48:40 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A6meiw097950; Tue, 10 Aug 2004 06:48:40 GMT (envelope-from ache) Message-Id: <200408100648.i7A6meiw097950@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Tue, 10 Aug 2004 06:48:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/png Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 06:48:40 -0000 ache 2004-08-10 06:48:40 UTC FreeBSD ports repository Modified files: graphics/png Makefile Log: Remove swrinde.nde.swri.edu from MASTER_SITES It is reported it have problems not honoring BINARY mode when fetching .txt files over proxy. PR: 70232 Revision Changes Path 1.67 +1 -2 ports/graphics/png/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 06:51:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5069016A4CE; Tue, 10 Aug 2004 06:51:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 335A643D31; Tue, 10 Aug 2004 06:51:26 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A6pQie098114; Tue, 10 Aug 2004 06:51:26 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A6pQ9G098113; Tue, 10 Aug 2004 06:51:26 GMT (envelope-from den) Message-Id: <200408100651.i7A6pQ9G098113@repoman.freebsd.org> From: Denis Peplin Date: Tue, 10 Aug 2004 06:51:26 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/pl_PL.ISO8859-2/share/mk doc.local.mk doc/sr_YU.ISO8859-2/share/mk doc.local.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 06:51:26 -0000 den 2004-08-10 06:51:26 UTC FreeBSD doc repository Added files: pl_PL.ISO8859-2/share/mk doc.local.mk sr_YU.ISO8859-2/share/mk doc.local.mk Log: Add doc.local.mk for ISO8859-2 encodings Revision Changes Path 1.1 +3 -0 doc/pl_PL.ISO8859-2/share/mk/doc.local.mk (new) 1.1 +3 -0 doc/sr_YU.ISO8859-2/share/mk/doc.local.mk (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 06:53:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47E8E16A4CE; Tue, 10 Aug 2004 06:53:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BDB043D4C; Tue, 10 Aug 2004 06:53:04 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A6r4Xj098196; Tue, 10 Aug 2004 06:53:04 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A6r4SW098195; Tue, 10 Aug 2004 06:53:04 GMT (envelope-from sem) Message-Id: <200408100653.i7A6r4SW098195@repoman.freebsd.org> From: Sergey Matveychuk Date: Tue, 10 Aug 2004 06:53:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/mico Makefile ports/devel/ace+tao Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 06:53:04 -0000 sem 2004-08-10 06:53:04 UTC FreeBSD ports repository Modified files: devel/mico Makefile devel/ace+tao Makefile Log: Mark broken while I have no work around for gcc 3.4 build Revision Changes Path 1.14 +4 -0 ports/devel/ace+tao/Makefile 1.73 +4 -0 ports/devel/mico/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 07:11:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1659316A4CE; Tue, 10 Aug 2004 07:11:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED32A43D41; Tue, 10 Aug 2004 07:11:02 +0000 (GMT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A7B2m9098778; Tue, 10 Aug 2004 07:11:02 GMT (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A7B2Ek098777; Tue, 10 Aug 2004 07:11:02 GMT (envelope-from bland) Message-Id: <200408100711.i7A7B2Ek098777@repoman.freebsd.org> From: Alexander Nedotsukov Date: Tue, 10 Aug 2004 07:11:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/glibmm Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 07:11:03 -0000 bland 2004-08-10 07:11:02 UTC FreeBSD ports repository Modified files: devel/glibmm Makefile distinfo Log: Update to 2.4.4 Revision Changes Path 1.3 +1 -1 ports/devel/glibmm/Makefile 1.2 +2 -2 ports/devel/glibmm/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 10 07:24:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C5C216A4CE; Tue, 10 Aug 2004 07:24:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 006FC43D55; Tue, 10 Aug 2004 07:24:07 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A7O6Rk099179; Tue, 10 Aug 2004 07:24:06 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A7O6AP099178; Tue, 10 Aug 2004 07:24:06 GMT (envelope-from den) Message-Id: <200408100724.i7A7O6AP099178@repoman.freebsd.org> From: Denis Peplin Date: Tue, 10 Aug 2004 07:24:06 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 07:24:07 -0000 den 2004-08-10 07:24:06 UTC FreeBSD doc repository Modified files: . access Log: Welcome Dmitry Morozovsky (marck), new doc committer. I will be his mentor. Approved by: doceng Revision Changes Path 1.521 +1 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Tue Aug 10 07:27:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD5A016A4CE; Tue, 10 Aug 2004 07:27:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE61443D1D; Tue, 10 Aug 2004 07:27:54 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A7RsZS099407; Tue, 10 Aug 2004 07:27:54 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A7RsOb099406; Tue, 10 Aug 2004 07:27:54 GMT (envelope-from ijliao) Message-Id: <200408100727.i7A7RsOb099406@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 10 Aug 2004 07:27:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc Makefile ports/textproc/p5-Pod-Tree Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 07:27:54 -0000 ijliao 2004-08-10 07:27:54 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-Pod-Tree Makefile distinfo pkg-descr pkg-plist Log: add p5-Pod-Tree 1.10 Create a static syntax tree for a POD Revision Changes Path 1.738 +1 -0 ports/textproc/Makefile 1.1 +44 -0 ports/textproc/p5-Pod-Tree/Makefile (new) 1.1 +2 -0 ports/textproc/p5-Pod-Tree/distinfo (new) 1.1 +4 -0 ports/textproc/p5-Pod-Tree/pkg-descr (new) 1.1 +20 -0 ports/textproc/p5-Pod-Tree/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 07:28:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A7D6F16A4CE; Tue, 10 Aug 2004 07:28:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AF3743D46; Tue, 10 Aug 2004 07:28:04 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A7S4pP099463; Tue, 10 Aug 2004 07:28:04 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A7S425099462; Tue, 10 Aug 2004 07:28:04 GMT (envelope-from ijliao) Message-Id: <200408100728.i7A7S425099462@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 10 Aug 2004 07:28:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 07:28:04 -0000 ijliao 2004-08-10 07:28:04 UTC FreeBSD ports repository Modified files: . modules Log: p5-Pod-Tree --> ports/textproc/p5-Pod-Tree Revision Changes Path 1.10859 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 10 07:33:30 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A5DB16A4CE; Tue, 10 Aug 2004 07:33:30 +0000 (GMT) Received: from n33.kp.t-systems-sfr.com (n33.kp.t-systems-sfr.com [129.247.16.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id A25EC43D48; Tue, 10 Aug 2004 07:33:28 +0000 (GMT) (envelope-from harti@freebsd.org) Received: from n81.sp.op.dlr.de (n81g.sp.op.dlr.de [129.247.163.1]) i7A7XQX101074; Tue, 10 Aug 2004 09:33:26 +0200 Received: from zeus.nt.op.dlr.de (zeus.nt.op.dlr.de [129.247.173.3]) i7A7XPf665942; Tue, 10 Aug 2004 09:33:25 +0200 Received: from beagle.kn.op.dlr.de (opkndnwsbsd178 [129.247.173.178]) by zeus.nt.op.dlr.de (8.11.7+Sun/8.9.1) with ESMTP id i7A7XPe07474; Tue, 10 Aug 2004 09:33:25 +0200 (MET DST) Date: Tue, 10 Aug 2004 09:33:33 +0200 (CEST) From: Harti Brandt X-X-Sender: brandt@beagle.kn.op.dlr.de To: Scott Long In-Reply-To: <200408100456.i7A4udX8094674@repoman.freebsd.org> Message-ID: <20040810093300.O42422@beagle.kn.op.dlr.de> References: <200408100456.i7A4udX8094674@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/lib/libbsnmp/modules Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Harti Brandt List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 07:33:30 -0000 On Tue, 10 Aug 2004, Scott Long wrote: SL>scottl 2004-08-10 04:56:39 UTC SL> SL> FreeBSD src repository SL> SL> Modified files: SL> lib/libbsnmp/modules Makefile SL> Log: SL> Disable the snmp_atm module until the source gets fixed. This will unbreak SL> this portion of the build. Thanks for taking care of this. It was a pilot error on my side. harti SL> SL> Revision Changes Path SL> 1.3 +1 -1 src/lib/libbsnmp/modules/Makefile SL> SL> SL> From owner-cvs-all@FreeBSD.ORG Tue Aug 10 07:44:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E09716A4CE; Tue, 10 Aug 2004 07:44:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 809DE43D46; Tue, 10 Aug 2004 07:44:23 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A7iNIC000140; Tue, 10 Aug 2004 07:44:23 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A7iNu8000139; Tue, 10 Aug 2004 07:44:23 GMT (envelope-from vs) Message-Id: <200408100744.i7A7iNu8000139@repoman.freebsd.org> From: Volker Stolz Date: Tue, 10 Aug 2004 07:44:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/cad/gtkwave Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 07:44:23 -0000 vs 2004-08-10 07:44:23 UTC FreeBSD ports repository Modified files: cad/gtkwave Makefile distinfo pkg-plist Log: - Update to 2.0.0.p5 - USE_GCC=3.3 on 4.X Revision Changes Path 1.13 +9 -4 ports/cad/gtkwave/Makefile 1.5 +2 -2 ports/cad/gtkwave/distinfo 1.6 +7 -1 ports/cad/gtkwave/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 10 07:51:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E911416A4CE; Tue, 10 Aug 2004 07:51:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC73843D31; Tue, 10 Aug 2004 07:51:48 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A7pmJU000468; Tue, 10 Aug 2004 07:51:48 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A7pmwT000467; Tue, 10 Aug 2004 07:51:48 GMT (envelope-from pav) Message-Id: <200408100751.i7A7pmwT000467@repoman.freebsd.org> From: Pav Lucistnik Date: Tue, 10 Aug 2004 07:51:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/nvidia-driver Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 07:51:49 -0000 pav 2004-08-10 07:51:48 UTC FreeBSD ports repository Modified files: x11/nvidia-driver Makefile Log: - Detect and use xorg PR: ports/70193 Submitted by: Sergey N. Voronkov Approved by: maintainer Revision Changes Path 1.16 +2 -2 ports/x11/nvidia-driver/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 07:52:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4614D16A4CE; Tue, 10 Aug 2004 07:52:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E37143D54; Tue, 10 Aug 2004 07:52:22 +0000 (GMT) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A7qMqD000507; Tue, 10 Aug 2004 07:52:22 GMT (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A7qMYI000506; Tue, 10 Aug 2004 07:52:22 GMT (envelope-from jeff) Message-Id: <200408100752.i7A7qMYI000506@repoman.freebsd.org> From: Jeff Roberson Date: Tue, 10 Aug 2004 07:52:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 07:52:22 -0000 jeff 2004-08-10 07:52:22 UTC FreeBSD src repository Modified files: sys/kern sched_ule.c Log: - Use a new flag, KEF_XFERABLE, to record with certainty that this kse had contributed to the transferable load count. This prevents any potential problems with sched_pin() being used around calls to setrunqueue(). - Change the sched_add() load balancing algorithm to try to migrate on wakeup. This attempts to place threads that communicate with each other on the same CPU. - Don't clear the idle counts in kseq_transfer(), let the cpus do that when they call sched_add() from kseq_assign(). - Correct a few out of date comments. - Make sure the ke_cpu field is correct when we preempt. - Call kseq_assign() from sched_clock() to catch any assignments that were done without IPI. Presently all assignments are done with an IPI, but I'm trying a patch that limits that. - Don't migrate a thread if it is still runnable in sched_add(). Previously, this could only happen for KSE threads, but due to changes to sched_switch() all threads went through this path. - Remove some code that was added with preemption but is not necessary. Revision Changes Path 1.120 +76 -34 src/sys/kern/sched_ule.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 07:55:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4096816A4CE; Tue, 10 Aug 2004 07:55:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22CFD43D2F; Tue, 10 Aug 2004 07:55:19 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A7tF9q000599; Tue, 10 Aug 2004 07:55:15 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A7tF3v000598; Tue, 10 Aug 2004 07:55:15 GMT (envelope-from pav) Message-Id: <200408100755.i7A7tF3v000598@repoman.freebsd.org> From: Pav Lucistnik Date: Tue, 10 Aug 2004 07:55:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/archivers/advancecomp Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 07:55:19 -0000 pav 2004-08-10 07:55:15 UTC FreeBSD ports repository Modified files: archivers/advancecomp Makefile Log: - Mark BROKEN: does not compile with gcc-3.4 Reported by: pointyhat via kris Revision Changes Path 1.4 +7 -1 ports/archivers/advancecomp/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 08:10:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6934416A4CE; Tue, 10 Aug 2004 08:10:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C99843D58; Tue, 10 Aug 2004 08:10:05 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A8A5Es001082; Tue, 10 Aug 2004 08:10:05 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A8A5NT001081; Tue, 10 Aug 2004 08:10:05 GMT (envelope-from pav) Message-Id: <200408100810.i7A8A5NT001081@repoman.freebsd.org> From: Pav Lucistnik Date: Tue, 10 Aug 2004 08:10:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/lam7 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 08:10:05 -0000 pav 2004-08-10 08:10:04 UTC FreeBSD ports repository Modified files: net/lam7 Makefile Log: - Add another MASTER_SITE Revision Changes Path 1.7 +2 -1 ports/net/lam7/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 08:32:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3B0A16A4CE; Tue, 10 Aug 2004 08:32:57 +0000 (GMT) Received: from gw.catspoiler.org (217-ip-163.nccn.net [209.79.217.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97F3943D39; Tue, 10 Aug 2004 08:32:57 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.12.11/8.12.11) with ESMTP id i7A8WmG4013169; Tue, 10 Aug 2004 01:32:52 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Message-Id: <200408100832.i7A8WmG4013169@gw.catspoiler.org> Date: Tue, 10 Aug 2004 01:32:48 -0700 (PDT) From: Don Lewis To: njl@FreeBSD.org In-Reply-To: <200408100132.i7A1W5D0088677@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c vfs_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 08:32:58 -0000 On 10 Aug, Nate Lawson wrote: > njl 2004-08-10 01:32:05 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_shutdown.c vfs_subr.c > Log: > Skip the syncing disks loop if there are no dirty buffers. Remove a > variable used to flag the initial printf. > > Submitted by: truckman (earlier version) > > Revision Changes Path > 1.162 +13 -5 src/sys/kern/kern_shutdown.c > 1.519 +1 -1 src/sys/kern/vfs_subr.c BDE had a number of objections to this patch. This is the alternative that I came up with: Index: kern_shutdown.c =================================================================== RCS file: /home/ncvs/src/sys/kern/kern_shutdown.c,v retrieving revision 1.161 diff -u -r1.161 kern_shutdown.c --- kern_shutdown.c 30 Jul 2004 01:30:05 -0000 1.161 +++ kern_shutdown.c 31 Jul 2004 06:40:59 -0000 @@ -303,8 +303,11 @@ nbusy++; } } - if (nbusy == 0) + if (nbusy == 0) { + if (first_buf_printf) + printf("no buffers busy"); break; + } if (first_buf_printf) { printf("syncing disks, buffers remaining... "); first_buf_printf = 0; @@ -338,7 +341,7 @@ PICKUP_GIANT(); #endif } - + printf("\n"); /* * Count only busy local buffers to prevent forcing * a fsck if we're just a client of a wedged NFS server @@ -370,6 +373,7 @@ printf("giving up on %d buffers\n", nbusy); DELAY(5000000); /* 5 seconds */ } else { + printf("final sync complete\n"); /* * Unmount filesystems */ From owner-cvs-all@FreeBSD.ORG Tue Aug 10 08:44:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B17616A4CE; Tue, 10 Aug 2004 08:44:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CFE343D53; Tue, 10 Aug 2004 08:44:37 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A8ibou001962; Tue, 10 Aug 2004 08:44:37 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A8iaIH001961; Tue, 10 Aug 2004 08:44:36 GMT (envelope-from den) Message-Id: <200408100844.i7A8iaIH001961@repoman.freebsd.org> From: Denis Peplin Date: Tue, 10 Aug 2004 08:44:36 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ru_RU.KOI8-R/share/mk doc.local.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 08:44:37 -0000 den 2004-08-10 08:44:36 UTC FreeBSD doc repository Modified files: ru_RU.KOI8-R/share/mk doc.local.mk Log: Add FreeBSD Russian Documentation Project headers Revision Changes Path 1.2 +7 -0 doc/ru_RU.KOI8-R/share/mk/doc.local.mk From owner-cvs-all@FreeBSD.ORG Tue Aug 10 08:47:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8603116A4CE; Tue, 10 Aug 2004 08:47:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67C9743D53; Tue, 10 Aug 2004 08:47:57 +0000 (GMT) (envelope-from demon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A8lvBs002078; Tue, 10 Aug 2004 08:47:57 GMT (envelope-from demon@repoman.freebsd.org) Received: (from demon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A8lvX4002077; Tue, 10 Aug 2004 08:47:57 GMT (envelope-from demon) Message-Id: <200408100847.i7A8lvX4002077@repoman.freebsd.org> From: Dmitry Sivachenko Date: Tue, 10 Aug 2004 08:47:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/p5-DBIx-SearchBuilder Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 08:47:57 -0000 demon 2004-08-10 08:47:57 UTC FreeBSD ports repository Modified files: databases/p5-DBIx-SearchBuilder Makefile Log: Add missing manpages. PR: 70244 Submitted by: Yen-Ming Lee Revision Changes Path 1.29 +4 -1 ports/databases/p5-DBIx-SearchBuilder/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 08:50:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0353416A4CE; Tue, 10 Aug 2004 08:50:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA86D43D58; Tue, 10 Aug 2004 08:50:27 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A8oRaW002171; Tue, 10 Aug 2004 08:50:27 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A8oRgS002169; Tue, 10 Aug 2004 08:50:27 GMT (envelope-from eik) Message-Id: <200408100850.i7A8oRgS002169@repoman.freebsd.org> From: Oliver Eikemeier Date: Tue, 10 Aug 2004 08:50:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/portaudit-db/database portaudit.txt X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 08:50:28 -0000 eik 2004-08-10 08:50:27 UTC FreeBSD ports repository Modified files: security/portaudit-db/database portaudit.txt Log: libine "vcd:" input source buffer overflow Revision Changes Path 1.81 +2 -1 ports/security/portaudit-db/database/portaudit.txt From owner-cvs-all@FreeBSD.ORG Tue Aug 10 08:55:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2EFA16A4E6 for ; Tue, 10 Aug 2004 08:55:32 +0000 (GMT) Received: from gandalf.online.bg (gandalf.online.bg [217.75.128.9]) by mx1.FreeBSD.org (Postfix) with SMTP id 5C60443D1F for ; Tue, 10 Aug 2004 08:55:31 +0000 (GMT) (envelope-from roam@ringlet.net) Received: (qmail 8189 invoked from network); 10 Aug 2004 08:49:15 -0000 Received: from unknown (HELO straylight.m.ringlet.net) (217.75.134.254) by gandalf.online.bg with SMTP; 10 Aug 2004 08:49:15 -0000 Received: (qmail 59174 invoked by uid 1000); 10 Aug 2004 08:55:28 -0000 Date: Tue, 10 Aug 2004 11:55:28 +0300 From: Peter Pentchev To: cvs-all@freebsd.org Message-ID: <20040810085528.GH2150@straylight.m.ringlet.net> Mail-Followup-To: cvs-all@freebsd.org References: <20040809120106.7CBEE16A4DE@hub.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="nhYGnrYv1PEJ5gA2" Content-Disposition: inline In-Reply-To: <20040809120106.7CBEE16A4DE@hub.freebsd.org> User-Agent: Mutt/1.5.6i Subject: Re: cvs-all Digest, Vol 71, Issue 2 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 08:55:33 -0000 --nhYGnrYv1PEJ5gA2 Content-Type: text/plain; charset=windows-1251 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 12:01:06PM +0000, David E. O'Brien wrote: > From: "David E. O'Brien" > Subject: cvs commit: src/share/mk bsd.libnames.mk src/lib/libmagic > Makefile config.h > To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, > cvs-all@FreeBSD.org > Message-ID: <200408090848.i798mSZ0049967@repoman.freebsd.org> >=20 > obrien 2004-08-09 08:48:28 UTC >=20 > FreeBSD src repository >=20 > Modified files: > share/mk bsd.libnames.mk=20 > Added files: > lib/libmagic Makefile config.h=20 > Log: > Bmake the library containing and processing the magic. Thanks for your work on maintaining file(1)! It seems that your commit to bsd.libnames.mk also added a definition for ${LIBFBSDCURL}; was that actually meant to go into the tree? Kinda grabbed my attention as ports/ftp/curl maintainer ;) G'luck, Peter --=20 Peter Pentchev roam@ringlet.net roam@cnsys.bg roam@FreeBSD.org PGP key: http://people.FreeBSD.org/~roam/roam.key.asc Key fingerprint FDBA FD79 C26F 3C51 C95E DF9E ED18 B68D 1619 4553 "yields falsehood, when appended to its quotation." yields falsehood, when = appended to its quotation. --nhYGnrYv1PEJ5gA2 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBGI2A7Ri2jRYZRVMRAh2eAJ0X9hb0fX+d1ThDJlyrJzHi/GhXOwCgnopW Gv55D2vwU432JjYZhEBAhMc= =Pu1p -----END PGP SIGNATURE----- --nhYGnrYv1PEJ5gA2-- From owner-cvs-all@FreeBSD.ORG Tue Aug 10 09:19:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2BDA16A4CE; Tue, 10 Aug 2004 09:19:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9582843D3F; Tue, 10 Aug 2004 09:19:08 +0000 (GMT) (envelope-from joerg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7A9J8bH002940; Tue, 10 Aug 2004 09:19:08 GMT (envelope-from joerg@repoman.freebsd.org) Received: (from joerg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7A9J8tT002939; Tue, 10 Aug 2004 09:19:08 GMT (envelope-from joerg) Message-Id: <200408100919.i7A9J8tT002939@repoman.freebsd.org> From: Joerg Wunsch Date: Tue, 10 Aug 2004 09:19:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 Makefile printf.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 09:19:08 -0000 joerg 2004-08-10 09:19:08 UTC FreeBSD src repository Modified files: share/man/man9 Makefile printf.9 Log: Add documentation for log(9). MFC after: 1 week Revision Changes Path 1.239 +2 -1 src/share/man/man9/Makefile 1.4 +45 -5 src/share/man/man9/printf.9 From owner-cvs-all@FreeBSD.ORG Tue Aug 10 09:32:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2B09716A4CE; Tue, 10 Aug 2004 09:32:14 +0000 (GMT) Received: from darkness.comp.waw.pl (darkness.comp.waw.pl [195.117.238.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id B896043D48; Tue, 10 Aug 2004 09:32:13 +0000 (GMT) (envelope-from pjd@darkness.comp.waw.pl) Received: by darkness.comp.waw.pl (Postfix, from userid 1009) id 8EAE1ACAFE; Tue, 10 Aug 2004 11:32:11 +0200 (CEST) Date: Tue, 10 Aug 2004 11:32:11 +0200 From: Pawel Jakub Dawidek To: Hartmut Brandt Message-ID: <20040810093211.GA30151@darkness.comp.waw.pl> References: <200408091054.i79As63F053925@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="x+6KMIRAuhnl3hBn" Content-Disposition: inline In-Reply-To: <200408091054.i79As63F053925@repoman.freebsd.org> User-Agent: Mutt/1.4.2i X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 5.2.1-RC2 i386 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.subdir.mk sys.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 09:32:14 -0000 --x+6KMIRAuhnl3hBn Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 10:54:06AM +0000, Hartmut Brandt wrote: +> _SUBDIR: .USE +> .if defined(SUBDIR) && !empty(SUBDIR) && !defined(NO_SUBDIR) +> - @for entry in ${SUBDIR}; do \ +> + @${_+_}for entry in ${SUBDIR}; do \ This is the cause of build breakage. Anyone is working on this? --=20 Pawel Jakub Dawidek http://www.FreeBSD.org pjd@FreeBSD.org http://garage.freebsd.pl FreeBSD committer Am I Evil? Yes, I Am! --x+6KMIRAuhnl3hBn Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBGJYbForvXbEpPzQRAmfRAJ9QnfiQybuyJX0lFXWnFS+4vNRn+gCg9YdC XwbiazSY4Dg6dqgJSrynwwo= =orkS -----END PGP SIGNATURE----- --x+6KMIRAuhnl3hBn-- From owner-cvs-all@FreeBSD.ORG Tue Aug 10 09:35:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA95416A4CE; Tue, 10 Aug 2004 09:35:41 +0000 (GMT) Received: from n33.kp.t-systems-sfr.com (n33.kp.t-systems-sfr.com [129.247.16.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0051B43D53; Tue, 10 Aug 2004 09:35:40 +0000 (GMT) (envelope-from harti@freebsd.org) Received: from n81.sp.op.dlr.de (n81g.sp.op.dlr.de [129.247.163.1]) i7A9ZcX509480; Tue, 10 Aug 2004 11:35:38 +0200 Received: from zeus.nt.op.dlr.de (zeus.nt.op.dlr.de [129.247.173.3]) i7A9Zcf495540; Tue, 10 Aug 2004 11:35:38 +0200 Received: from beagle.kn.op.dlr.de (opkndnwsbsd178 [129.247.173.178]) by zeus.nt.op.dlr.de (8.11.7+Sun/8.9.1) with ESMTP id i7A9ZZe09920; Tue, 10 Aug 2004 11:35:36 +0200 (MET DST) Date: Tue, 10 Aug 2004 11:35:37 +0200 (CEST) From: Harti Brandt X-X-Sender: brandt@beagle.kn.op.dlr.de To: Pawel Jakub Dawidek In-Reply-To: <20040810093211.GA30151@darkness.comp.waw.pl> Message-ID: <20040810113324.Y42422@beagle.kn.op.dlr.de> References: <200408091054.i79As63F053925@repoman.freebsd.org> <20040810093211.GA30151@darkness.comp.waw.pl> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/share/mk bsd.subdir.mk sys.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: Harti Brandt List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 09:35:41 -0000 On Tue, 10 Aug 2004, Pawel Jakub Dawidek wrote: PJD>On Mon, Aug 09, 2004 at 10:54:06AM +0000, Hartmut Brandt wrote: PJD>+> _SUBDIR: .USE PJD>+> .if defined(SUBDIR) && !empty(SUBDIR) && !defined(NO_SUBDIR) PJD>+> - @for entry in ${SUBDIR}; do \ PJD>+> + @${_+_}for entry in ${SUBDIR}; do \ PJD> PJD>This is the cause of build breakage. Anyone is working on this? No. The cause is that make in rescue was using the wrong make. When doing a buildworld and buildworld builds new tools, the entire build process should use these tools. You may look at the last commit to crunchgen.c. Now I'm investigating whether it also picks up the wrong crunchgen. That'll take a while because rescue is built nearer to the end of the build process. harti From owner-cvs-all@FreeBSD.ORG Tue Aug 10 09:42:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34A1D16A4CE; Tue, 10 Aug 2004 09:42:34 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5547F43D5A; Tue, 10 Aug 2004 09:42:33 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i7A9gPjI046061 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 10 Aug 2004 12:42:25 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i7A9gQDt016744; Tue, 10 Aug 2004 12:42:26 +0300 (EEST) (envelope-from ru) Date: Tue, 10 Aug 2004 12:42:26 +0300 From: Ruslan Ermilov To: Harti Brandt Message-ID: <20040810094226.GC16437@ip.net.ua> References: <200408091054.i79As63F053925@repoman.freebsd.org> <20040810093211.GA30151@darkness.comp.waw.pl> <20040810113324.Y42422@beagle.kn.op.dlr.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="S1BNGpv0yoYahz37" Content-Disposition: inline In-Reply-To: <20040810113324.Y42422@beagle.kn.op.dlr.de> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Pawel Jakub Dawidek cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.subdir.mk sys.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 09:42:34 -0000 --S1BNGpv0yoYahz37 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 10, 2004 at 11:35:37AM +0200, Harti Brandt wrote: > On Tue, 10 Aug 2004, Pawel Jakub Dawidek wrote: >=20 > PJD>On Mon, Aug 09, 2004 at 10:54:06AM +0000, Hartmut Brandt wrote: > PJD>+> _SUBDIR: .USE > PJD>+> .if defined(SUBDIR) && !empty(SUBDIR) && !defined(NO_SUBDIR) > PJD>+> - @for entry in ${SUBDIR}; do \ > PJD>+> + @${_+_}for entry in ${SUBDIR}; do \ > PJD> > PJD>This is the cause of build breakage. Anyone is working on this? >=20 > No. The cause is that make in rescue was using the wrong make. When=20 > doing a buildworld and buildworld builds new tools, the entire build=20 > process should use these tools. You may look at the last commit to=20 > crunchgen.c. Now I'm investigating whether it also picks up the wrong=20 > crunchgen. That'll take a while because rescue is built nearer to the end= =20 > of the build process. >=20 Please see my reply to the tinderbox failure report with the patch that should fix this. Great job, Harti! It's so cool that this change exposed this nasty bug in crunchgen(1). Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --S1BNGpv0yoYahz37 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBGJiCqRfpzJluFF4RAmwgAJ47lhEAcdgpcr64YXJVxYcybk8bcACeORoH +0xtRuZ0Il6sikZ604nFzd0= =elOr -----END PGP SIGNATURE----- --S1BNGpv0yoYahz37-- From owner-cvs-all@FreeBSD.ORG Tue Aug 10 10:16:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A01C016A4CE; Tue, 10 Aug 2004 10:16:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8254F43D58; Tue, 10 Aug 2004 10:16:50 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AAGoUX004411; Tue, 10 Aug 2004 10:16:50 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AAGo0g004410; Tue, 10 Aug 2004 10:16:50 GMT (envelope-from sem) Message-Id: <200408101016.i7AAGo0g004410@repoman.freebsd.org> From: Sergey Matveychuk Date: Tue, 10 Aug 2004 10:16:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/napster Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 10:16:50 -0000 sem 2004-08-10 10:16:50 UTC FreeBSD ports repository Modified files: audio/napster Makefile Log: Prepare the port as master for russian/napster. PR: ports/69542 Submitted by: Roman Y. Bogdanov Approved by: maintainer (timeout) Revision Changes Path 1.25 +5 -3 ports/audio/napster/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 10:19:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 733D816A4CE; Tue, 10 Aug 2004 10:19:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5358043D49; Tue, 10 Aug 2004 10:19:39 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AAJdsU004557; Tue, 10 Aug 2004 10:19:39 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AAJdh6004556; Tue, 10 Aug 2004 10:19:39 GMT (envelope-from sem) Message-Id: <200408101019.i7AAJdh6004556@repoman.freebsd.org> From: Sergey Matveychuk Date: Tue, 10 Aug 2004 10:19:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/russian Makefile ports/russian/napster Makefile ports/russian/napster/files extra-win2koi X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 10:19:39 -0000 sem 2004-08-10 10:19:39 UTC FreeBSD ports repository Modified files: russian Makefile Added files: russian/napster Makefile russian/napster/files extra-win2koi Log: Client for the OpenNAP network with Russian koi8 <> win1251 encoding patch. Slave for audio/napster PR: ports/69543 Submitted by: Roman Y. Bogdanov Revision Changes Path 1.66 +1 -0 ports/russian/Makefile 1.1 +23 -0 ports/russian/napster/Makefile (new) 1.1 +168 -0 ports/russian/napster/files/extra-win2koi (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 10:19:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7325D16A4CE; Tue, 10 Aug 2004 10:19:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5455E43D5A; Tue, 10 Aug 2004 10:19:50 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AAJotU004603; Tue, 10 Aug 2004 10:19:50 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AAJo4l004602; Tue, 10 Aug 2004 10:19:50 GMT (envelope-from sem) Message-Id: <200408101019.i7AAJo4l004602@repoman.freebsd.org> From: Sergey Matveychuk Date: Tue, 10 Aug 2004 10:19:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 10:19:50 -0000 sem 2004-08-10 10:19:50 UTC FreeBSD ports repository Modified files: . modules Log: ru-napster --> ports/russian/napster Revision Changes Path 1.10860 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 10 10:20:30 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 382C216A4CF; Tue, 10 Aug 2004 10:20:30 +0000 (GMT) Received: from srv01.sparkit.no (srv01.sparkit.no [193.69.116.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FBA843D1F; Tue, 10 Aug 2004 10:20:28 +0000 (GMT) (envelope-from eivind@FreeBSD.org) Received: from ws.nada ([193.69.114.88]) by srv01.sparkit.no (8.12.11/8.12.11) with ESMTP id i7AAKPuA036374; Tue, 10 Aug 2004 12:20:25 +0200 (CEST) (envelope-from eivind@FreeBSD.org) Received: from ws.nada (localhost [127.0.0.1]) by ws.nada (8.12.9/8.12.10) with ESMTP id i7AAIC3f002531; Tue, 10 Aug 2004 10:18:12 GMT (envelope-from eivind@ws.nada) Received: (from eivind@localhost) by ws.nada (8.12.9/8.12.10/Submit) id i7AAICwI002530; Tue, 10 Aug 2004 10:18:12 GMT (envelope-from eivind) Date: Tue, 10 Aug 2004 10:18:12 +0000 From: Eivind Eklund To: Marcel Moolenaar Message-ID: <20040810101811.GB1121@FreeBSD.org> References: <200408041803.i74I3hW3032824@repoman.freebsd.org> <20040804200237.GA9720@dhcp50.pn.xcllnt.net> <20040804201627.GA991@funkthat.com> <20040810041634.GV44716@wantadilla.lemis.com> <20040810044225.GA72217@ns1.xcllnt.net> <20040810044651.GX44716@wantadilla.lemis.com> <20040810052354.GA10763@dhcp50.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040810052354.GA10763@dhcp50.pn.xcllnt.net> User-Agent: Mutt/1.5.4i cc: Greg 'groggy' Lehey cc: cvs-src@FreeBSD.org cc: John-Mark Gurney cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: Attitude problems? (was: cvs commit: src/tools/debugscripts README kgdb kld_deb.py) X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 10:20:30 -0000 On Mon, Aug 09, 2004 at 10:23:54PM -0700, Marcel Moolenaar wrote: > > But don't let it worry you. It's not > > as if you're anywhere close to being the main cause of my loss of > > interest in FreeBSD. > > I see. You used jmg's response to fire at me for something that doesn't > relate to what jmg@ said and doesn't even merit such an attack and now > you use my response to fire from the hip at the rest of the world for > whatever got you frustrated. I don't think anybody was waiting for this, I have had zero interaction with you beyond what I've seen in the mailing lists. I feel that what I see in the mailing lists can be significantly improved by trying to be positive. Remember: People are doing what they do in an attempt to improve FreeBSD. Your mails to people should be based on that premise, and saying "I think it would be even better if ..." or similar. If you in the moment lack the resources to formulate things positively, it is almost always better to stay quiet. Eivind. From owner-cvs-all@FreeBSD.ORG Tue Aug 10 10:26:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9B3816A4CF; Tue, 10 Aug 2004 10:26:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B63B43D58; Tue, 10 Aug 2004 10:26:41 +0000 (GMT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AAQfkQ004861; Tue, 10 Aug 2004 10:26:41 GMT (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AAQfJv004860; Tue, 10 Aug 2004 10:26:41 GMT (envelope-from bland) Message-Id: <200408101026.i7AAQfJv004860@repoman.freebsd.org> From: Alexander Nedotsukov Date: Tue, 10 Aug 2004 10:26:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gtkmm24 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 10:26:41 -0000 bland 2004-08-10 10:26:41 UTC FreeBSD ports repository Modified files: x11-toolkits/gtkmm24 Makefile distinfo pkg-plist Log: Update to 2.4.5 Revision Changes Path 1.76 +1 -1 ports/x11-toolkits/gtkmm24/Makefile 1.33 +2 -2 ports/x11-toolkits/gtkmm24/distinfo 1.30 +6 -0 ports/x11-toolkits/gtkmm24/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 10 10:30:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E39D16A4CE; Tue, 10 Aug 2004 10:30:09 +0000 (GMT) Received: from darkness.comp.waw.pl (darkness.comp.waw.pl [195.117.238.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95F6743D31; Tue, 10 Aug 2004 10:30:08 +0000 (GMT) (envelope-from pjd@darkness.comp.waw.pl) Received: by darkness.comp.waw.pl (Postfix, from userid 1009) id 22C0DACC5F; Tue, 10 Aug 2004 12:30:07 +0200 (CEST) Date: Tue, 10 Aug 2004 12:30:07 +0200 From: Pawel Jakub Dawidek To: John-Mark Gurney Message-ID: <20040810103007.GB30151@darkness.comp.waw.pl> References: <200408061506.i76F66sl018247@repoman.freebsd.org> <20040809124153.GN628@darkness.comp.waw.pl> <20040809173814.GG991@funkthat.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="neYutvxvOLaeuPCA" Content-Disposition: inline In-Reply-To: <20040809173814.GG991@funkthat.com> User-Agent: Mutt/1.4.2i X-PGP-Key-URL: http://people.freebsd.org/~pjd/pjd.asc X-OS: FreeBSD 5.2.1-RC2 i386 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/common help.common src/sys/boot/forth loader.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 10:30:09 -0000 --neYutvxvOLaeuPCA Content-Type: text/plain; charset=iso-8859-2 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 10:38:14AM -0700, John-Mark Gurney wrote: +> Pawel Jakub Dawidek wrote this message on Mon, Aug 09, 2004 at 14:41 +02= 00: +> > If kernel name is given for the 'boot' command, '/boot/' pat= h is +> > probably added to kern.module_path, but for normal boot process it is = not, +> > so kern.module_path is set only to "/boot/modules". +> > Some applications depend on this sysctl and they don't work properly n= ow. +> > Please fix. +>=20 +> Have you verified this is a problem? On my test box that has: +> defaults/loader.conf:module_path=3D"/boot/modules" # Set the modu= le search path +>=20 +> and was booted: +> [...] +> /boot/kernel/accf_http.ko text=3D0xb84 data=3D0x150+0x4 syms=3D[0x4+0x31= 0+0x4+0x334] +>=20 +> Hit [Enter] to boot immediately, or any other key for command prompt. +> Booting [/boot/kernel/kernel]... =20 +>=20 +> (i.e. normal boot process w/ no interaction) +>=20 +> My sysctl returns: +> -bash-2.05b$ sysctl kern.module_path +> kern.module_path: /boot/kernel;/boot/modules +>=20 +> Please include complete information of the breakage that this change +> is suppose to cause. I've just checked on the next machine (this is 3rd machine) and it doesn't put '/boot/kernel' into 'kern.module_path' sysctl. That's why kldload(8) cannot work properly. The only difference that I'm seeing between our environments is that I use new loader (with beastie picture) everywhere and you don't use it, right? --=20 Pawel Jakub Dawidek http://www.FreeBSD.org pjd@FreeBSD.org http://garage.freebsd.pl FreeBSD committer Am I Evil? Yes, I Am! --neYutvxvOLaeuPCA Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBGKOvForvXbEpPzQRAtL7AKCreKy85rt+gk5RUggrKT+NymwhlQCgjFtU U8jyjuDIjvjtcKxd0LLK3YU= =aVkh -----END PGP SIGNATURE----- --neYutvxvOLaeuPCA-- From owner-cvs-all@FreeBSD.ORG Tue Aug 10 10:38:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E10B616A4CE; Tue, 10 Aug 2004 10:38:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CABE43D2D; Tue, 10 Aug 2004 10:38:41 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AAcffY005151; Tue, 10 Aug 2004 10:38:41 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AAcfmX005150; Tue, 10 Aug 2004 10:38:41 GMT (envelope-from den) Message-Id: <200408101038.i7AAcfmX005150@repoman.freebsd.org> From: Denis Peplin Date: Tue, 10 Aug 2004 10:38:41 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ru_RU.KOI8-R/share/sgml articles.ent books.ent catalog X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 10:38:42 -0000 den 2004-08-10 10:38:41 UTC FreeBSD doc repository Modified files: ru_RU.KOI8-R/share/sgml catalog Added files: ru_RU.KOI8-R/share/sgml articles.ent books.ent Log: Add meta-declarations Revision Changes Path 1.1 +29 -0 doc/ru_RU.KOI8-R/share/sgml/articles.ent (new) 1.1 +31 -0 doc/ru_RU.KOI8-R/share/sgml/books.ent (new) 1.7 +7 -1 doc/ru_RU.KOI8-R/share/sgml/catalog From owner-cvs-all@FreeBSD.ORG Tue Aug 10 10:40:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6513E16A4D0; Tue, 10 Aug 2004 10:40:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B1CA43D31; Tue, 10 Aug 2004 10:40:40 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AAeeJv005253; Tue, 10 Aug 2004 10:40:40 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AAeeCl005252; Tue, 10 Aug 2004 10:40:40 GMT (envelope-from sem) Message-Id: <200408101040.i7AAeeCl005252@repoman.freebsd.org> From: Sergey Matveychuk Date: Tue, 10 Aug 2004 10:40:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/russian/napster Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 10:40:40 -0000 sem 2004-08-10 10:40:40 UTC FreeBSD ports repository Modified files: russian/napster Makefile Log: Shorten COMMENT to satisfy portlint. Revision Changes Path 1.2 +1 -1 ports/russian/napster/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 10:41:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4135E16A4CE; Tue, 10 Aug 2004 10:41:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2166543D2D; Tue, 10 Aug 2004 10:41:23 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AAfNZL005315; Tue, 10 Aug 2004 10:41:23 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AAfNfa005314; Tue, 10 Aug 2004 10:41:23 GMT (envelope-from den) Message-Id: <200408101041.i7AAfNfa005314@repoman.freebsd.org> From: Denis Peplin Date: Tue, 10 Aug 2004 10:41:23 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ru_RU.KOI8-R/share/sgml l10n.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 10:41:23 -0000 den 2004-08-10 10:41:23 UTC FreeBSD doc repository Modified files: ru_RU.KOI8-R/share/sgml l10n.ent Log: MFen 1.2 & fixes Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.2 +8 -5 doc/ru_RU.KOI8-R/share/sgml/l10n.ent From owner-cvs-all@FreeBSD.ORG Tue Aug 10 10:42:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11E0116A4CE; Tue, 10 Aug 2004 10:42:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6DB643D41; Tue, 10 Aug 2004 10:42:57 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AAgvSE005366; Tue, 10 Aug 2004 10:42:57 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AAgvQ8005365; Tue, 10 Aug 2004 10:42:57 GMT (envelope-from mat) Message-Id: <200408101042.i7AAgvQ8005365@repoman.freebsd.org> From: Mathieu Arnold Date: Tue, 10 Aug 2004 10:42:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/archivers/p5-Archive-Zip Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 10:42:58 -0000 mat 2004-08-10 10:42:57 UTC FreeBSD ports repository Modified files: archivers/p5-Archive-Zip Makefile Log: Fix Build with perl5.8 Approved by: erwin (maintainer) Revision Changes Path 1.22 +4 -3 ports/archivers/p5-Archive-Zip/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 10:52:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DCE316A4CF; Tue, 10 Aug 2004 10:52:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E4D043D48; Tue, 10 Aug 2004 10:52:43 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AAqhFQ005650; Tue, 10 Aug 2004 10:52:43 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AAqhn7005649; Tue, 10 Aug 2004 10:52:43 GMT (envelope-from den) Message-Id: <200408101052.i7AAqhn7005649@repoman.freebsd.org> From: Denis Peplin Date: Tue, 10 Aug 2004 10:52:43 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ru_RU.KOI8-R/articles/releng Makefile article.sgml extra.css X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 10:52:43 -0000 den 2004-08-10 10:52:43 UTC FreeBSD doc repository Modified files: ru_RU.KOI8-R/articles/releng Makefile article.sgml extra.css Log: Merge the following from the English version: 1.13 -> 1.14 Makefile 1.58 -> 1.60 article.sgml 1.1 -> 1.3 extra.css Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.4 +4 -2 doc/ru_RU.KOI8-R/articles/releng/Makefile 1.5 +6 -16 doc/ru_RU.KOI8-R/articles/releng/article.sgml 1.2 +2 -2 doc/ru_RU.KOI8-R/articles/releng/extra.css From owner-cvs-all@FreeBSD.ORG Tue Aug 10 11:00:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFAC216A4CE; Tue, 10 Aug 2004 11:00:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF5B143D54; Tue, 10 Aug 2004 11:00:48 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AB0mK1005851; Tue, 10 Aug 2004 11:00:48 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AB0mkq005850; Tue, 10 Aug 2004 11:00:48 GMT (envelope-from eik) Message-Id: <200408101100.i7AB0mkq005850@repoman.freebsd.org> From: Oliver Eikemeier Date: Tue, 10 Aug 2004 11:00:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 11:00:49 -0000 eik 2004-08-10 11:00:48 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: add a reference for linux-png-1.0.x to 3a408f6f-9c52-11d8-9366-0020ed76ef5a Revision Changes Path 1.163 +5 -4 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Tue Aug 10 11:04:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4802F16A4CE; Tue, 10 Aug 2004 11:04:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DB0D43D2D; Tue, 10 Aug 2004 11:04:41 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AB4f1x006100; Tue, 10 Aug 2004 11:04:41 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AB4fCi006099; Tue, 10 Aug 2004 11:04:41 GMT (envelope-from vs) Message-Id: <200408101104.i7AB4fCi006099@repoman.freebsd.org> From: Volker Stolz Date: Tue, 10 Aug 2004 11:04:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/grdb Makefile ports/x11-fonts/mkfontalias Makefile ports/x11-wm/bbconf Makefile ports/x11-wm/bbkeys Makefile ports/x11-wm/bbpager Makefile ports/x11-wm/blackbox Makefile ports/emulators/zsnes Makefile ports/x11-wm/boxtools Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 11:04:41 -0000 vs 2004-08-10 11:04:41 UTC FreeBSD ports repository Modified files: misc/grdb Makefile x11-fonts/mkfontalias Makefile x11-wm/bbconf Makefile x11-wm/bbkeys Makefile x11-wm/bbpager Makefile x11-wm/blackbox Makefile emulators/zsnes Makefile x11-wm/boxtools Makefile Log: Reset maintainer. Much thanks to Stijn for maintaining the ports so far! PR: ports/70203 Submitted by: Stijn Hoop (maintainer) Revision Changes Path 1.21 +1 -1 ports/emulators/zsnes/Makefile 1.14 +4 -1 ports/misc/grdb/Makefile 1.4 +4 -1 ports/x11-fonts/mkfontalias/Makefile 1.11 +1 -1 ports/x11-wm/bbconf/Makefile 1.11 +1 -1 ports/x11-wm/bbkeys/Makefile 1.7 +1 -1 ports/x11-wm/bbpager/Makefile 1.42 +1 -1 ports/x11-wm/blackbox/Makefile 1.4 +1 -1 ports/x11-wm/boxtools/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 11:05:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6063B16A4CE; Tue, 10 Aug 2004 11:05:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4142743D1F; Tue, 10 Aug 2004 11:05:27 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AB5PLQ006213; Tue, 10 Aug 2004 11:05:25 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AB5PG7006212; Tue, 10 Aug 2004 11:05:25 GMT (envelope-from harti) Message-Id: <200408101105.i7AB5PG7006212@repoman.freebsd.org> From: Hartmut Brandt Date: Tue, 10 Aug 2004 11:05:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: BEGEMOT Subject: cvs commit: src/contrib/bsnmp/gensnmptree gensnmptree.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 11:05:27 -0000 harti 2004-08-10 11:05:25 UTC FreeBSD src repository Modified files: (Branch: BEGEMOT) contrib/bsnmp/gensnmptree gensnmptree.c Log: Fix the 4.X -> 5.X upgrade path by include instead of stdint.h. Revision Changes Path 1.1.1.5 +1 -1 src/contrib/bsnmp/gensnmptree/gensnmptree.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 11:11:51 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 159DD16A4CE; Tue, 10 Aug 2004 11:11:51 +0000 (GMT) Received: from 21322530218.direct.eti.at (21322530218.direct.eti.at [213.225.30.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8B3D43D41; Tue, 10 Aug 2004 11:11:49 +0000 (GMT) (envelope-from tilman@arved.at) Received: from huckfinn-wi0.arved.de (localhost [127.0.0.1]) i7ABBmQM065047; Tue, 10 Aug 2004 13:11:49 +0200 (CEST) (envelope-from tilman@arved.at) Received: (from tilman@localhost) by huckfinn-wi0.arved.de (8.13.1/8.12.6/Submit) id i7ABBmi9065046; Tue, 10 Aug 2004 13:11:48 +0200 (CEST) X-Authentication-Warning: huckfinn-wi0.arved.de: tilman set sender to tilman@arved.at using -f Date: Tue, 10 Aug 2004 13:11:48 +0200 From: Tilman Linneweh To: Joe Marcus Clarke Message-ID: <20040810111148.GA64998@arved.at> References: <200408100129.i7A1TM9b088491@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408100129.i7A1TM9b088491@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/devel/imake-4 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 11:11:51 -0000 * Joe Marcus Clarke [Di, 10 Aug 2004 at 03:29 GMT]: > Update XFree86 clients to 4.4 release. Release notes are available at > http://www.xfree86.org/4.4.0/RELNOTES.html > [..] > Submitted by: Dejan Lesjak (dejan DOT lesjak AT ijs DOT si) [..] Yay! Thanks for committing and especially to Dejan for all the work. From owner-cvs-all@FreeBSD.ORG Mon Aug 9 21:58:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79ABE16A4CE for ; Mon, 9 Aug 2004 21:58:19 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF7EA43D45 for ; Mon, 9 Aug 2004 21:58:18 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.13.1/8.13.1) with ESMTP id i79LwAAi034637; Mon, 9 Aug 2004 23:58:11 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: "M. Warner Losh" From: "Poul-Henning Kamp" In-Reply-To: Your message of "Mon, 09 Aug 2004 15:05:37 MDT." <20040809.150537.96131820.imp@bsdimp.com> Date: Mon, 09 Aug 2004 23:58:10 +0200 Message-ID: <34636.1092088690@critter.freebsd.dk> Sender: phk@critter.freebsd.dk X-Mailman-Approved-At: Tue, 10 Aug 2004 11:22:36 +0000 cc: src-committers@FreeBSD.org cc: johan@FreeBSD.org cc: cvs-src@FreeBSD.org cc: nsouch@FreeBSD.org cc: will@csociety.org cc: rik@cronyx.ru cc: ru@FreeBSD.org cc: cvs-all@FreeBSD.org cc: wb@freebie.xs4all.nl Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 09 Aug 2004 21:58:19 -0000 In message <20040809.150537.96131820.imp@bsdimp.com>, "M. Warner Losh" writes: >: At least DDMMYYYY is in increasing order of magnitude :-) >: >: MMDDYYYY is in no order at all. > >But YYYYMMDD is sortable w/o a special date type! Not to mention that it is trivially and unambigously extensible to arbitrary precision: YYYYMMDDHHMMSS.mmmuuunnnppp... -- 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 Tue Aug 10 11:45:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 737B516A4CE; Tue, 10 Aug 2004 11:45:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5477743D39; Tue, 10 Aug 2004 11:45:48 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ABjmus007597; Tue, 10 Aug 2004 11:45:48 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ABjmBp007596; Tue, 10 Aug 2004 11:45:48 GMT (envelope-from vs) Message-Id: <200408101145.i7ABjmBp007596@repoman.freebsd.org> From: Volker Stolz Date: Tue, 10 Aug 2004 11:45:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/graphopt Makefileports/graphics/graphopt/files patch-src:classes:psExporter.cc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 11:45:48 -0000 vs 2004-08-10 11:45:48 UTC FreeBSD ports repository Modified files: graphics/graphopt Makefile Added files: graphics/graphopt/files patch-src:classes:psExporter.cc Log: Fix generation of PostScript-files (bump PORTREVISION) PR: ports/70199 Submitted by: Marco Molteni Revision Changes Path 1.3 +1 -1 ports/graphics/graphopt/Makefile 1.1 +17 -0 ports/graphics/graphopt/files/patch-src:classes:psExporter.cc (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 11:48:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D65316A4CE; Tue, 10 Aug 2004 11:48:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CD6343D55; Tue, 10 Aug 2004 11:48:14 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ABmExa007674; Tue, 10 Aug 2004 11:48:14 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ABmEfi007673; Tue, 10 Aug 2004 11:48:14 GMT (envelope-from sem) Message-Id: <200408101148.i7ABmEfi007673@repoman.freebsd.org> From: Sergey Matveychuk Date: Tue, 10 Aug 2004 11:48:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/dansguardian Makefile distinfo ports/www/dansguardian/files dansguardian.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 11:48:14 -0000 sem 2004-08-10 11:48:14 UTC FreeBSD ports repository Modified files: www/dansguardian Makefile distinfo www/dansguardian/files dansguardian.sh Log: * Update to version 2.8.0.2 Minor bug fix release * Also removed the "Compile with GCC 3" option as it never really worked correctly anyway PR: ports/70226 Submitted by: maintainer Revision Changes Path 1.19 +6 -7 ports/www/dansguardian/Makefile 1.11 +2 -2 ports/www/dansguardian/distinfo 1.3 +6 -6 ports/www/dansguardian/files/dansguardian.sh From owner-cvs-all@FreeBSD.ORG Tue Aug 10 12:00:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AE7D16A4CE; Tue, 10 Aug 2004 12:00:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BD1243D5C; Tue, 10 Aug 2004 12:00:50 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AC0nbS008014; Tue, 10 Aug 2004 12:00:49 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AC0n3D008013; Tue, 10 Aug 2004 12:00:49 GMT (envelope-from mat) Message-Id: <200408101200.i7AC0n3D008013@repoman.freebsd.org> From: Mathieu Arnold Date: Tue, 10 Aug 2004 12:00:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Devel-PPPort Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 12:00:50 -0000 mat 2004-08-10 12:00:49 UTC FreeBSD ports repository Modified files: devel/p5-Devel-PPPort Makefile distinfo Log: Update to 2.99.03 Revision Changes Path 1.3 +2 -2 ports/devel/p5-Devel-PPPort/Makefile 1.3 +2 -2 ports/devel/p5-Devel-PPPort/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 10 12:15:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FE3216A4CE; Tue, 10 Aug 2004 12:15:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F42643D60; Tue, 10 Aug 2004 12:15:27 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ACFRuw008430; Tue, 10 Aug 2004 12:15:27 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ACFRTE008429; Tue, 10 Aug 2004 12:15:27 GMT (envelope-from davidxu) Message-Id: <200408101215.i7ACFRTE008429@repoman.freebsd.org> From: David Xu Date: Tue, 10 Aug 2004 12:15:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 12:15:27 -0000 davidxu 2004-08-10 12:15:27 UTC FreeBSD src repository Modified files: sys/amd64/amd64 machdep.c Log: As AMD64 architecture volume 1 chapter 3.1.2 says, high 32 bits of %rflags are resevered, they can be written with anything, but they always read as zero, we should simulate it in set_regs() as we are reading/writting real hardware %rflags register. Revision Changes Path 1.617 +4 -3 src/sys/amd64/amd64/machdep.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 12:16:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99F3F16A4CE; Tue, 10 Aug 2004 12:16:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A98D43D58; Tue, 10 Aug 2004 12:16:25 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ACGPcN008519; Tue, 10 Aug 2004 12:16:25 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ACGPIk008518; Tue, 10 Aug 2004 12:16:25 GMT (envelope-from krion) Message-Id: <200408101216.i7ACGPIk008518@repoman.freebsd.org> From: Kirill Ponomarew Date: Tue, 10 Aug 2004 12:16:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/xterm Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 12:16:25 -0000 krion 2004-08-10 12:16:25 UTC FreeBSD ports repository Modified files: x11/xterm Makefile Log: Add uxterm support. Submitted by: Marcoen Hirschberg Revision Changes Path 1.7 +2 -0 ports/x11/xterm/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 12:20:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB64A16A4CE; Tue, 10 Aug 2004 12:20:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC37743D48; Tue, 10 Aug 2004 12:20:00 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ACK0xP008596; Tue, 10 Aug 2004 12:20:00 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ACK0tg008595; Tue, 10 Aug 2004 12:20:00 GMT (envelope-from davidxu) Message-Id: <200408101220.i7ACK0tg008595@repoman.freebsd.org> From: David Xu Date: Tue, 10 Aug 2004 12:20:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/gdb/arch/amd64 init.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 12:20:01 -0000 davidxu 2004-08-10 12:20:00 UTC FreeBSD src repository Modified files: gnu/usr.bin/gdb/arch/amd64 init.c Log: Initialize thread_db module. Revision Changes Path 1.2 +2 -0 src/gnu/usr.bin/gdb/arch/amd64/init.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 12:23:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56FF616A4CE; Tue, 10 Aug 2004 12:23:16 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4800A43D45; Tue, 10 Aug 2004 12:23:15 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i7ACN5GB065280 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 10 Aug 2004 15:23:06 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i7ACN7wO018439; Tue, 10 Aug 2004 15:23:07 +0300 (EEST) (envelope-from ru) Date: Tue, 10 Aug 2004 15:23:07 +0300 From: Ruslan Ermilov To: John-Mark Gurney Message-ID: <20040810122307.GA18408@ip.net.ua> References: <200408090645.i796jLUo046034@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="+QahgC5+KEYLbs62" Content-Disposition: inline In-Reply-To: <200408090645.i796jLUo046034@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys mdioctl.h src/sys/modules/md Makefile src/sbin/mdconfig mdconfig.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 12:23:16 -0000 --+QahgC5+KEYLbs62 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Aug 09, 2004 at 06:45:21AM +0000, John-Mark Gurney wrote: > jmg 2004-08-09 06:45:21 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/sys mdioctl.h=20 > sys/modules/md Makefile=20 > sbin/mdconfig mdconfig.c=20 > Log: > change the name of the md module, to g_md, introduce a define with the > name MD_MODNAME, and make mdconfig use this new define... > =20 > Revision Changes Path > 1.33 +1 -1 src/sbin/mdconfig/mdconfig.c > 1.13 +1 -1 src/sys/modules/md/Makefile > 1.16 +1 -0 src/sys/sys/mdioctl.h >=20 Why the change in the first place? Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --+QahgC5+KEYLbs62 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBGL4rqRfpzJluFF4RAvKKAJ4sGE8i5pQp7AmXG/m5+4PwGWToEgCggmBU sQMWV3wOwANAte34yJu8BV4= =faag -----END PGP SIGNATURE----- --+QahgC5+KEYLbs62-- From owner-cvs-all@FreeBSD.ORG Tue Aug 10 12:30:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0898716A4CE; Tue, 10 Aug 2004 12:30:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC8C143D3F; Tue, 10 Aug 2004 12:30:58 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ACUwrw008958; Tue, 10 Aug 2004 12:30:58 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ACUwkS008957; Tue, 10 Aug 2004 12:30:58 GMT (envelope-from den) Message-Id: <200408101230.i7ACUwkS008957@repoman.freebsd.org> From: Denis Peplin Date: Tue, 10 Aug 2004 12:30:58 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ru_RU.KOI8-R/share/sgml articles.ent books.ent catalog freebsd.dsl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 12:30:59 -0000 den 2004-08-10 12:30:58 UTC FreeBSD doc repository Modified files: ru_RU.KOI8-R/share/sgml articles.ent books.ent catalog freebsd.dsl Log: Use EN for l10n, so dsssl will use russian l10.ent Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.2 +2 -2 doc/ru_RU.KOI8-R/share/sgml/articles.ent 1.2 +2 -2 doc/ru_RU.KOI8-R/share/sgml/books.ent 1.8 +2 -2 doc/ru_RU.KOI8-R/share/sgml/catalog 1.9 +2 -2 doc/ru_RU.KOI8-R/share/sgml/freebsd.dsl From owner-cvs-all@FreeBSD.ORG Tue Aug 10 12:32:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC9CA16A4CE; Tue, 10 Aug 2004 12:32:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C16943D54; Tue, 10 Aug 2004 12:32:56 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ACWuFC009011; Tue, 10 Aug 2004 12:32:56 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ACWuNI009010; Tue, 10 Aug 2004 12:32:56 GMT (envelope-from vs) Message-Id: <200408101232.i7ACWuNI009010@repoman.freebsd.org> From: Volker Stolz Date: Tue, 10 Aug 2004 12:32:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/streamtuner Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 12:32:56 -0000 vs 2004-08-10 12:32:56 UTC FreeBSD ports repository Modified files: audio/streamtuner Makefile distinfo Log: Update to 0.12.5 PR: ports/70211 Submitted by: Jean-Yves Lefort (maintainer) Revision Changes Path 1.20 +2 -1 ports/audio/streamtuner/Makefile 1.11 +2 -2 ports/audio/streamtuner/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 10 12:36:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CEDA16A4CE; Tue, 10 Aug 2004 12:36:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10DA943D3F; Tue, 10 Aug 2004 12:36:57 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ACauGM009233; Tue, 10 Aug 2004 12:36:56 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ACauIJ009232; Tue, 10 Aug 2004 12:36:56 GMT (envelope-from mat) Message-Id: <200408101236.i7ACauIJ009232@repoman.freebsd.org> From: Mathieu Arnold Date: Tue, 10 Aug 2004 12:36:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases Makefile ports/databases/p5-DBD-PgPP Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 12:36:57 -0000 mat 2004-08-10 12:36:56 UTC FreeBSD ports repository Modified files: databases Makefile Added files: databases/p5-DBD-PgPP Makefile distinfo pkg-descr pkg-plist Log: Add p5-DBD-PgPP 0.05, Pure Perl PostgreSQL driver for the DBI. PR: ports/70229 Submitted by: Lubomir Marinov Revision Changes Path 1.379 +1 -0 ports/databases/Makefile 1.1 +34 -0 ports/databases/p5-DBD-PgPP/Makefile (new) 1.1 +2 -0 ports/databases/p5-DBD-PgPP/distinfo (new) 1.1 +7 -0 ports/databases/p5-DBD-PgPP/pkg-descr (new) 1.1 +6 -0 ports/databases/p5-DBD-PgPP/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 12:37:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4BEC16A4CE; Tue, 10 Aug 2004 12:37:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B466743D2D; Tue, 10 Aug 2004 12:37:09 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ACb9HV009283; Tue, 10 Aug 2004 12:37:09 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ACb9e2009282; Tue, 10 Aug 2004 12:37:09 GMT (envelope-from mat) Message-Id: <200408101237.i7ACb9e2009282@repoman.freebsd.org> From: Mathieu Arnold Date: Tue, 10 Aug 2004 12:37:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 12:37:10 -0000 mat 2004-08-10 12:37:09 UTC FreeBSD ports repository Modified files: . modules Log: p5-DBD-PgPP --> ports/databases/p5-DBD-PgPP Revision Changes Path 1.10861 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 10 12:39:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E522816A4CF; Tue, 10 Aug 2004 12:39:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4B9143D5F; Tue, 10 Aug 2004 12:39:40 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ACdeYS009369; Tue, 10 Aug 2004 12:39:40 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ACdeLO009368; Tue, 10 Aug 2004 12:39:40 GMT (envelope-from arved) Message-Id: <200408101239.i7ACdeLO009368@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 10 Aug 2004 12:39:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/lookupd Makefile distinfo ports/sysutils/lookupd/files patch-lookupd.c patch-parser.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 12:39:41 -0000 arved 2004-08-10 12:39:40 UTC FreeBSD ports repository Modified files: sysutils/lookupd Makefile distinfo Added files: sysutils/lookupd/files patch-lookupd.c patch-parser.c Log: Update to 0.3.c PR: 70066 Submitted by: Michael Bushkov Revision Changes Path 1.3 +1 -1 ports/sysutils/lookupd/Makefile 1.3 +2 -2 ports/sysutils/lookupd/distinfo 1.1 +11 -0 ports/sysutils/lookupd/files/patch-lookupd.c (new) 1.1 +11 -0 ports/sysutils/lookupd/files/patch-parser.c (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 12:44:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D98116A4CE; Tue, 10 Aug 2004 12:44:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E44343D5E; Tue, 10 Aug 2004 12:44:06 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ACi5Xv009520; Tue, 10 Aug 2004 12:44:05 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ACi5Kj009519; Tue, 10 Aug 2004 12:44:05 GMT (envelope-from den) Message-Id: <200408101244.i7ACi5Kj009519@repoman.freebsd.org> From: Denis Peplin Date: Tue, 10 Aug 2004 12:44:05 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ru_RU.KOI8-R/articles/diskless-x article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 12:44:06 -0000 den 2004-08-10 12:44:05 UTC FreeBSD doc repository Modified files: ru_RU.KOI8-R/articles/diskless-x article.sgml Log: MFen 1.16 Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.4 +4 -8 doc/ru_RU.KOI8-R/articles/diskless-x/article.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 10 12:48:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA0D316A4CE; Tue, 10 Aug 2004 12:48:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA19F43D60; Tue, 10 Aug 2004 12:48:41 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ACmfSw009652; Tue, 10 Aug 2004 12:48:41 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ACmfNg009651; Tue, 10 Aug 2004 12:48:41 GMT (envelope-from den) Message-Id: <200408101248.i7ACmfNg009651@repoman.freebsd.org> From: Denis Peplin Date: Tue, 10 Aug 2004 12:48:41 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ru_RU.KOI8-R/books/handbook book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 12:48:42 -0000 den 2004-08-10 12:48:41 UTC FreeBSD doc repository Modified files: ru_RU.KOI8-R/books/handbook book.sgml Log: MFen 1.156 Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.18 +7 -36 doc/ru_RU.KOI8-R/books/handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 10 12:56:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F21416A4CE; Tue, 10 Aug 2004 12:56:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E252543D39; Tue, 10 Aug 2004 12:56:20 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ACuK7S009945; Tue, 10 Aug 2004 12:56:20 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ACuKAL009944; Tue, 10 Aug 2004 12:56:20 GMT (envelope-from blackend) Message-Id: <200408101256.i7ACuKAL009944@repoman.freebsd.org> From: Marc Fonvieille Date: Tue, 10 Aug 2004 12:56:20 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/network-servers chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 12:56:21 -0000 blackend 2004-08-10 12:56:20 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/network-servers chapter.sgml Log: In Samba section: - Use of ulink tags for URLs - Use guimenu and command tags where needed - Parts of configuration files should be tagged with literal tags (inside of a block) and not with options ones. These latter should be used for command line options. Revision Changes Path 1.23 +12 -12 doc/en_US.ISO8859-1/books/handbook/network-servers/chapter.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 10 13:18:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 392AA16A4CE; Tue, 10 Aug 2004 13:18:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A45243D45; Tue, 10 Aug 2004 13:18:06 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ADI51H010493; Tue, 10 Aug 2004 13:18:05 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ADI5Jm010492; Tue, 10 Aug 2004 13:18:05 GMT (envelope-from harti) Message-Id: <200408101318.i7ADI5Jm010492@repoman.freebsd.org> From: Hartmut Brandt Date: Tue, 10 Aug 2004 13:18:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 13:18:06 -0000 harti 2004-08-10 13:18:05 UTC FreeBSD src repository Modified files: . Makefile.inc1 Log: Fix recent breakage in rescue. We need to build a new crunchgen that will not emit the bad MAKE=make line that caused the breakage. Submitted by: ru Revision Changes Path 1.435 +1 -1 src/Makefile.inc1 From owner-cvs-all@FreeBSD.ORG Tue Aug 10 13:25:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3A6D216A4CE; Tue, 10 Aug 2004 13:25:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1952F43D41; Tue, 10 Aug 2004 13:25:31 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ADPUYs010695; Tue, 10 Aug 2004 13:25:30 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ADPUP5010694; Tue, 10 Aug 2004 13:25:30 GMT (envelope-from ru) Message-Id: <200408101325.i7ADPUP5010694@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 10 Aug 2004 13:25:30 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man7 release.7 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 13:25:31 -0000 ru 2004-08-10 13:25:30 UTC FreeBSD src repository Modified files: share/man/man7 release.7 Log: Describe better what the initial /usr/obj is expected to be populated with. Prodded by: grehan Revision Changes Path 1.45 +4 -2 src/share/man/man7/release.7 From owner-cvs-all@FreeBSD.ORG Tue Aug 10 13:30:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B316316A4CE; Tue, 10 Aug 2004 13:30:57 +0000 (GMT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id D72BA43D1F; Tue, 10 Aug 2004 13:30:54 +0000 (GMT) (envelope-from scottl@samsco.org) Received: from [192.168.0.201] ([192.168.0.201]) (authenticated bits=0) by pooker.samsco.org (8.12.11/8.12.10) with ESMTP id i7ADUXFM027342; Tue, 10 Aug 2004 07:30:34 -0600 (MDT) (envelope-from scottl@samsco.org) Message-ID: <4118CD83.7050608@samsco.org> Date: Tue, 10 Aug 2004 07:28:35 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.1) Gecko/20040801 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Hartmut Brandt References: <200408101318.i7ADI5Jm010492@repoman.freebsd.org> In-Reply-To: <200408101318.i7ADI5Jm010492@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit X-Spam-Status: No, hits=0.0 required=3.8 tests=none autolearn=no version=2.63 X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on pooker.samsco.org cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src Makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 13:30:58 -0000 Hartmut Brandt wrote: > harti 2004-08-10 13:18:05 UTC > > FreeBSD src repository > > Modified files: > . Makefile.inc1 > Log: > Fix recent breakage in rescue. We need to build a new crunchgen > that will not emit the bad MAKE=make line that caused the breakage. > > Submitted by: ru > > Revision Changes Path > 1.435 +1 -1 src/Makefile.inc1 This is a wild guess, but could this somehow explain why 'make -jN' often goes nuts in rescue/ and builds things multiple times? Scott From owner-cvs-all@FreeBSD.ORG Tue Aug 10 13:32:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F3C3D16A4CE; Tue, 10 Aug 2004 13:32:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D244543D39; Tue, 10 Aug 2004 13:32:51 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ADWpfA010883; Tue, 10 Aug 2004 13:32:51 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ADWpbX010882; Tue, 10 Aug 2004 13:32:51 GMT (envelope-from roam) Message-Id: <200408101332.i7ADWpbX010882@repoman.freebsd.org> From: Peter Pentchev Date: Tue, 10 Aug 2004 13:32:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/curl Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 13:32:52 -0000 roam 2004-08-10 13:32:51 UTC FreeBSD ports repository Modified files: ftp/curl Makefile distinfo pkg-plist Log: Update to 7.12.1, which is mainly an important bugfix release, but also contains some new functionality. Revision Changes Path 1.64 +4 -4 ports/ftp/curl/Makefile 1.37 +2 -2 ports/ftp/curl/distinfo 1.12 +9 -1 ports/ftp/curl/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 10 14:13:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0E5F16A4CE; Tue, 10 Aug 2004 14:13:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0E2F43D2D; Tue, 10 Aug 2004 14:13:53 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AEDr39011911; Tue, 10 Aug 2004 14:13:53 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AEDr1H011910; Tue, 10 Aug 2004 14:13:53 GMT (envelope-from arved) Message-Id: <200408101413.i7AEDr1H011910@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 10 Aug 2004 14:13:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/hungarian/ispell Makefile distinfo pkg-plist ports/hungarian/ispell/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:13:53 -0000 arved 2004-08-10 14:13:53 UTC FreeBSD ports repository Modified files: hungarian/ispell Makefile distinfo pkg-plist hungarian/ispell/files patch-Makefile Log: Update to 1.0 RC1 PR: 70075 Submitted by: Janos Mohacsi Revision Changes Path 1.6 +4 -4 ports/hungarian/ispell/Makefile 1.5 +2 -2 ports/hungarian/ispell/distinfo 1.4 +46 -39 ports/hungarian/ispell/files/patch-Makefile 1.3 +1 -0 ports/hungarian/ispell/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 10 14:24:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFDC416A4D1; Tue, 10 Aug 2004 14:24:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A529C43D54; Tue, 10 Aug 2004 14:24:31 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AEOVgT012176; Tue, 10 Aug 2004 14:24:31 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AEOV9u012175; Tue, 10 Aug 2004 14:24:31 GMT (envelope-from arved) Message-Id: <200408101424.i7AEOV9u012175@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 10 Aug 2004 14:24:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/hungarian/hunspell Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:24:32 -0000 arved 2004-08-10 14:24:31 UTC FreeBSD ports repository Modified files: hungarian/hunspell Makefile distinfo Log: Update to 1.0.R.1 PR: 70076 Submitted by: Janos Mohacsi Revision Changes Path 1.2 +2 -2 ports/hungarian/hunspell/Makefile 1.2 +2 -2 ports/hungarian/hunspell/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 10 14:27:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C495B16A4CE; Tue, 10 Aug 2004 14:27:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A478443D1D; Tue, 10 Aug 2004 14:27:14 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AEREgW012331; Tue, 10 Aug 2004 14:27:14 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AEREar012330; Tue, 10 Aug 2004 14:27:14 GMT (envelope-from mat) Message-Id: <200408101427.i7AEREar012330@repoman.freebsd.org> From: Mathieu Arnold Date: Tue, 10 Aug 2004 14:27:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Coro Makefile distinfopatch-Coro:State.xs X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:27:14 -0000 mat 2004-08-10 14:27:14 UTC FreeBSD ports repository Modified files: devel/p5-Coro Makefile distinfo devel/p5-Coro/files patch-Coro:Makefile.PL Added files: devel/p5-Coro/files patch-Coro:State.xs Log: Update to 1.0a Revision Changes Path 1.7 +3 -1 ports/devel/p5-Coro/Makefile 1.5 +2 -2 ports/devel/p5-Coro/distinfo 1.3 +8 -4 ports/devel/p5-Coro/files/patch-Coro:Makefile.PL 1.1 +13 -0 ports/devel/p5-Coro/files/patch-Coro:State.xs (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 14:29:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1ADF316A4CE; Tue, 10 Aug 2004 14:29:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FA4C43D1D; Tue, 10 Aug 2004 14:29:31 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AETUp0012418; Tue, 10 Aug 2004 14:29:30 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AETUY2012417; Tue, 10 Aug 2004 14:29:30 GMT (envelope-from roam) Message-Id: <200408101429.i7AETUY2012417@repoman.freebsd.org> From: Peter Pentchev Date: Tue, 10 Aug 2004 14:29:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/curlpp Makefile distinfo pkg-plist ports/ftp/curlpp/files patch-configure patch-curlpp_config.in patch-src::curl.cpp patch-src::types.hpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:29:31 -0000 roam 2004-08-10 14:29:30 UTC FreeBSD ports repository Modified files: ftp/curlpp Makefile distinfo pkg-plist Removed files: ftp/curlpp/files patch-configure patch-curlpp_config.in patch-src::curl.cpp patch-src::types.hpp Log: Update curlpp to version 0.3.1, which not only lets it build with the new gcc in -CURRENT, but also makes a giant leap forward WRT example programs: they actually run instead of dumping core now! Revision Changes Path 1.8 +1 -2 ports/ftp/curlpp/Makefile 1.3 +2 -2 ports/ftp/curlpp/distinfo 1.2 +0 -31 ports/ftp/curlpp/files/patch-configure (dead) 1.2 +0 -11 ports/ftp/curlpp/files/patch-curlpp_config.in (dead) 1.2 +0 -30 ports/ftp/curlpp/files/patch-src::curl.cpp (dead) 1.2 +0 -13 ports/ftp/curlpp/files/patch-src::types.hpp (dead) 1.2 +6 -6 ports/ftp/curlpp/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 10 14:32:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18D9B16A4CE; Tue, 10 Aug 2004 14:32:26 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5858543D45; Tue, 10 Aug 2004 14:32:25 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i7AEW1Yp082126 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 10 Aug 2004 17:32:02 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i7AEW2XD019556; Tue, 10 Aug 2004 17:32:02 +0300 (EEST) (envelope-from ru) Date: Tue, 10 Aug 2004 17:32:02 +0300 From: Ruslan Ermilov To: Scott Long Message-ID: <20040810143202.GE19284@ip.net.ua> References: <200408101318.i7ADI5Jm010492@repoman.freebsd.org> <4118CD83.7050608@samsco.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KuLpqunXa7jZSBt+" Content-Disposition: inline In-Reply-To: <4118CD83.7050608@samsco.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: Hartmut Brandt cc: cvs-all@freebsd.org Subject: Re: cvs commit: src Makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:32:26 -0000 --KuLpqunXa7jZSBt+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 10, 2004 at 07:28:35AM -0600, Scott Long wrote: > Hartmut Brandt wrote: > >harti 2004-08-10 13:18:05 UTC > > > > FreeBSD src repository > > > > Modified files: > > . Makefile.inc1=20 > > Log: > > Fix recent breakage in rescue. We need to build a new crunchgen > > that will not emit the bad MAKE=3Dmake line that caused the breakage. > > =20 > > Submitted by: ru > > =20 > > Revision Changes Path > > 1.435 +1 -1 src/Makefile.inc1 >=20 > This is a wild guess, but could this somehow explain why 'make -jN' > often goes nuts in rescue/ and builds things multiple times? >=20 No, this would be completely unrelated. Could you please provide me with more details, preferably some logs, so I could look into this issue? I didn't pay enough attention when rescue/ was first added (only probably helped with some minor bugfixing), so I did not proof-read its makefiles yet for the ``make -j'' cleanness. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --KuLpqunXa7jZSBt+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBGNxhqRfpzJluFF4RAjW3AJ99P+wH+55m0FbchmIX5tQX3u+LSgCgjF9G 4ze0MKRsbr7S3NTo4pzlY0w= =WMFJ -----END PGP SIGNATURE----- --KuLpqunXa7jZSBt+-- From owner-cvs-all@FreeBSD.ORG Tue Aug 10 14:41:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC5BE16A4D0 for ; Tue, 10 Aug 2004 14:41:37 +0000 (GMT) Received: from mail6.speakeasy.net (mail6.speakeasy.net [216.254.0.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 638CD43D41 for ; Tue, 10 Aug 2004 14:41:37 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 20971 invoked from network); 10 Aug 2004 14:41:37 -0000 Received: from gate.funkthat.com (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail6.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 10 Aug 2004 14:41:36 -0000 Received: from hydrogen.funkthat.com (slghcx@localhost.funkthat.com [127.0.0.1])i7AEfauU077938; Tue, 10 Aug 2004 07:41:36 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id i7AEfZhc077937; Tue, 10 Aug 2004 07:41:35 -0700 (PDT) Date: Tue, 10 Aug 2004 07:41:35 -0700 From: John-Mark Gurney To: Pawel Jakub Dawidek Message-ID: <20040810144135.GN991@funkthat.com> References: <200408061506.i76F66sl018247@repoman.freebsd.org> <20040809124153.GN628@darkness.comp.waw.pl> <20040809173814.GG991@funkthat.com> <20040810103007.GB30151@darkness.comp.waw.pl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040810103007.GB30151@darkness.comp.waw.pl> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/boot/common help.common src/sys/boot/forth loader.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:41:38 -0000 Pawel Jakub Dawidek wrote this message on Tue, Aug 10, 2004 at 12:30 +0200: > +> Please include complete information of the breakage that this change > +> is suppose to cause. > > I've just checked on the next machine (this is 3rd machine) and it doesn't > put '/boot/kernel' into 'kern.module_path' sysctl. That's why kldload(8) > cannot work properly. > > The only difference that I'm seeing between our environments is that I use > new loader (with beastie picture) everywhere and you don't use it, right? Nope, on the system that I upgraded on Sunday, Aug 8th, I'm seeing zero problems, and the machine is using the beastie loader. As you saw in an email last night, it also has my changes... If I boot kernel.old after breaking out into the loader prompt, I see a module path of: /boot/kernel.old;/boot/kernel;/boot/modules.. This is because of a bug in loader that doesn't reset the module_path when loading a different kernel after it's already loaded one, but I haven't investigated it yet... If I use nextboot to boot kernel.old, I end up with a module path of: /boot/kernel.old;/boot/modules, which is as it should be. If I let the machine boot normally, my module path is: /boot/kernel;/boot/modules... Have you tried booting another kernel? I can't see how your machine could of booted /boot/kernel.old ever with kernel modules, if your machine is currently having troubles with loading kernel modules. (Since kernel.old would not have been added to module path, since it isn't being now, and the correct modules would never load.) -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-all@FreeBSD.ORG Tue Aug 10 14:42:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60A5C16A4CE; Tue, 10 Aug 2004 14:42:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ED8043D39; Tue, 10 Aug 2004 14:42:49 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AEgn3t012800; Tue, 10 Aug 2004 14:42:49 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AEgnsb012799; Tue, 10 Aug 2004 14:42:49 GMT (envelope-from green) Message-Id: <200408101442.i7AEgnsb012799@repoman.freebsd.org> From: Brian Feldman Date: Tue, 10 Aug 2004 14:42:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_kern.c vm_map.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:42:49 -0000 green 2004-08-10 14:42:49 UTC FreeBSD src repository Modified files: sys/vm vm_kern.c vm_map.c Log: Back out all behavioral chnages. Revision Changes Path 1.120 +0 -4 src/sys/vm/vm_kern.c 1.354 +18 -33 src/sys/vm/vm_map.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 14:43:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DB6B16A4CE; Tue, 10 Aug 2004 14:43:13 +0000 (GMT) Received: from mail.droso.net (koala.droso.net [193.88.12.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3F2743D1D; Tue, 10 Aug 2004 14:43:12 +0000 (GMT) (envelope-from erwin@mail.droso.net) Received: by mail.droso.net (Postfix, from userid 1001) id ADDB322856; Tue, 10 Aug 2004 16:43:06 +0200 (CEST) Date: Tue, 10 Aug 2004 16:43:06 +0200 From: Erwin Lansing To: Marcel Moolenaar Message-ID: <20040810144306.GT85158@droso.net> References: <200408072209.i77M9QkW078498@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="u65IjBhB3TIa72Vp" Content-Disposition: inline In-Reply-To: <200408072209.i77M9QkW078498@repoman.freebsd.org> X-Operating-System: FreeBSD/i386 5.2.1-RELEASE-p1 User-Agent: Mutt/1.5.6i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:43:13 -0000 --u65IjBhB3TIa72Vp Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Aug 07, 2004 at 10:09:26PM +0000, Marcel Moolenaar wrote: > marcel 2004-08-07 22:09:26 UTC >=20 > FreeBSD src repository >=20 > Modified files: > usr.bin/calendar/calendars calendar.freebsd=20 > Log: > Oh yeah? 4 born in the Netherlands. Taken relative to the size of > the country (i.e. committer density), we're in the top 5 for sure! :-) > =20 Then counting the number that are still living there, we're sure the number 1 of people getting away in a hurry :-) --=20 _._ _,-'""`-._ Erwin Lansing (,-.`._,'( |\`-/| erwin@lansing.dk http://droso.org `-.-' \ )-`( , o o) erwin@FreeBSD.org -bf- `- \`_`"'- --u65IjBhB3TIa72Vp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBGN76qy9aWxUlaZARAhe3AKCuB1rNJXrfIwK5idryMne2yMcXDQCg7CjW OL3NcQM0me00Y6cxCyUqlDM= =iMTf -----END PGP SIGNATURE----- --u65IjBhB3TIa72Vp-- From owner-cvs-all@FreeBSD.ORG Tue Aug 10 14:47:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29D4716A4CE; Tue, 10 Aug 2004 14:47:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0834D43D1F; Tue, 10 Aug 2004 14:47:13 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AElC6c012962; Tue, 10 Aug 2004 14:47:12 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AElCpo012961; Tue, 10 Aug 2004 14:47:12 GMT (envelope-from green) Message-Id: <200408101447.i7AElCpo012961@repoman.freebsd.org> From: Brian Feldman Date: Tue, 10 Aug 2004 14:47:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 contigmalloc.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:47:13 -0000 green 2004-08-10 14:47:12 UTC FreeBSD src repository Modified files: share/man/man9 contigmalloc.9 Log: Update contigmalloc(9)'s manpage to reflect usage of the malloc_type argument and that allocation occurs from the end of the address space backward (still first-fit). Revision Changes Path 1.2 +2 -9 src/share/man/man9/contigmalloc.9 From owner-cvs-all@FreeBSD.ORG Tue Aug 10 14:49:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80BFA16A4CE for ; Tue, 10 Aug 2004 14:49:14 +0000 (GMT) Received: from mail4.speakeasy.net (mail4.speakeasy.net [216.254.0.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09E2343D31 for ; Tue, 10 Aug 2004 14:49:14 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 7464 invoked from network); 10 Aug 2004 14:49:13 -0000 Received: from gate.funkthat.com (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail4.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 10 Aug 2004 14:49:13 -0000 Received: from hydrogen.funkthat.com (pyjsba@localhost.funkthat.com [127.0.0.1])i7AEnDuU078139; Tue, 10 Aug 2004 07:49:13 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id i7AEnDlu078138; Tue, 10 Aug 2004 07:49:13 -0700 (PDT) Date: Tue, 10 Aug 2004 07:49:13 -0700 From: John-Mark Gurney To: Ruslan Ermilov Message-ID: <20040810144913.GO991@funkthat.com> References: <200408090645.i796jLUo046034@repoman.freebsd.org> <20040810122307.GA18408@ip.net.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040810122307.GA18408@ip.net.ua> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys mdioctl.h src/sys/modules/md Makefile src/sbin/mdconfig mdconfig.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:49:14 -0000 Ruslan Ermilov wrote this message on Tue, Aug 10, 2004 at 15:23 +0300: > On Mon, Aug 09, 2004 at 06:45:21AM +0000, John-Mark Gurney wrote: > > jmg 2004-08-09 06:45:21 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/sys mdioctl.h > > sys/modules/md Makefile > > sbin/mdconfig mdconfig.c > > Log: > > change the name of the md module, to g_md, introduce a define with the > > name MD_MODNAME, and make mdconfig use this new define... > > > > Revision Changes Path > > 1.33 +1 -1 src/sbin/mdconfig/mdconfig.c > > 1.13 +1 -1 src/sys/modules/md/Makefile > > 1.16 +1 -0 src/sys/sys/mdioctl.h > > > Why the change in the first place? so that mdconfig does not try to load the md kernel module twice, and cause your machine to panic. With a recent commit of phk's to md that converts it to geom, he removed the previous DECLARE_MODULE w/ the name of md, and so the md module was no longer implementing the md module, only the g_md module. On my box that is using mfs, mdconfig would then try to load the md module a second time causing geom to panic. Sorry, I should of included some of this information in the commit message. I then realized that since md is now a full on geom module, it should be renamed to geom_md like all the other geom modules... I still need to ask cvs@ to repo copy the module Makefiles into modules/geom/md... -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-all@FreeBSD.ORG Tue Aug 10 14:52:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B646216A4CE; Tue, 10 Aug 2004 14:52:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95CF643D45; Tue, 10 Aug 2004 14:52:42 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AEqgkf013140; Tue, 10 Aug 2004 14:52:42 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AEqgh9013139; Tue, 10 Aug 2004 14:52:42 GMT (envelope-from green) Message-Id: <200408101452.i7AEqgh9013139@repoman.freebsd.org> From: Brian Feldman Date: Tue, 10 Aug 2004 14:52:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys mlock.2 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:52:42 -0000 green 2004-08-10 14:52:42 UTC FreeBSD src repository Modified files: lib/libc/sys mlock.2 Log: Update mlock(2) manpage to cross-reference m{,un}lockall(2), remove a case where ENOMEM could be returned by munlock(2), and add possible system deadlock to the BUGS section. Revision Changes Path 1.17 +5 -1 src/lib/libc/sys/mlock.2 From owner-cvs-all@FreeBSD.ORG Tue Aug 10 14:57:51 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D4FC816A4CF; Tue, 10 Aug 2004 14:57:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4F7943D53; Tue, 10 Aug 2004 14:57:51 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AEvpaB013300; Tue, 10 Aug 2004 14:57:51 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AEvpiV013299; Tue, 10 Aug 2004 14:57:51 GMT (envelope-from roam) Message-Id: <200408101457.i7AEvpiV013299@repoman.freebsd.org> From: Peter Pentchev Date: Tue, 10 Aug 2004 14:57:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/curlpp Makefile ports/ftp/curlpp/files patch-src::curlpp-config.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 14:57:52 -0000 roam 2004-08-10 14:57:51 UTC FreeBSD ports repository Modified files: ftp/curlpp Makefile Added files: ftp/curlpp/files patch-src::curlpp-config.in Log: Fix `curlpp-config --cflags`. Revision Changes Path 1.9 +1 -0 ports/ftp/curlpp/Makefile 1.1 +11 -0 ports/ftp/curlpp/files/patch-src::curlpp-config.in (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 15:01:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6C5E16A4CE; Tue, 10 Aug 2004 15:01:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4A5143D41; Tue, 10 Aug 2004 15:01:00 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AF10i6013436; Tue, 10 Aug 2004 15:01:00 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AF108b013435; Tue, 10 Aug 2004 15:01:00 GMT (envelope-from green) Message-Id: <200408101501.i7AF108b013435@repoman.freebsd.org> From: Brian Feldman Date: Tue, 10 Aug 2004 15:01:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 vslock.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:01:01 -0000 green 2004-08-10 15:01:00 UTC FreeBSD src repository Modified files: share/man/man9 vslock.9 Log: Document exactly how vslock(9) is broken. Revision Changes Path 1.13 +6 -0 src/share/man/man9/vslock.9 From owner-cvs-all@FreeBSD.ORG Tue Aug 10 15:03:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D21CA16A4CF; Tue, 10 Aug 2004 15:03:44 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F44643D41; Tue, 10 Aug 2004 15:03:44 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i7AF2BCb084288; Tue, 10 Aug 2004 11:02:11 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i7AF2BQv084285; Tue, 10 Aug 2004 11:02:11 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Tue, 10 Aug 2004 11:02:10 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Andre Oppermann In-Reply-To: <200408091612.i79GCAOB064830@repoman.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_fw.h ip_fw2.c src/sbin/ipfw ipfw.8 ipfw2.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:03:45 -0000 On Mon, 9 Aug 2004, Andre Oppermann wrote: > Modified files: > sys/netinet ip_fw.h ip_fw2.c > sbin/ipfw ipfw.8 ipfw2.c > Log: > New ipfw option "antispoof": > > For incoming packets, the packet's source address is checked if it > belongs to a directly connected network. If the network is directly > connected, then the interface the packet came on in is compared to > the interface the network is connected to. When incoming interface > and directly connected interface are not the same, the packet does > not match. If you would append opcodes to the enum rather than inserting them, you would find you wouldn't break everyone's firewalls when they install their kernel and reboot before installing world. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-all@FreeBSD.ORG Tue Aug 10 15:13:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 50A9A16A4CE; Tue, 10 Aug 2004 15:13:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F2CE43D2D; Tue, 10 Aug 2004 15:13:09 +0000 (GMT) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AFD9ld013804; Tue, 10 Aug 2004 15:13:09 GMT (envelope-from naddy@repoman.freebsd.org) Received: (from naddy@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AFD95s013803; Tue, 10 Aug 2004 15:13:09 GMT (envelope-from naddy) Message-Id: <200408101513.i7AFD95s013803@repoman.freebsd.org> From: Christian Weisgerber Date: Tue, 10 Aug 2004 15:13:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/sixxs-heartbeatd Makefile ports/net/sixxs-heartbeatd/files patch-client_heartbeat-hb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:13:09 -0000 naddy 2004-08-10 15:13:09 UTC FreeBSD ports repository Modified files: net/sixxs-heartbeatd Makefile Added files: net/sixxs-heartbeatd/files patch-client_heartbeat-hb.c Log: The return value of getaddrinfo(3) was only checked for negative values but on FreeBSD it can also return positive values to indicate a problem. PR: 70242 Submitted by: Meno Abels Revision Changes Path 1.3 +1 -1 ports/net/sixxs-heartbeatd/Makefile 1.1 +23 -0 ports/net/sixxs-heartbeatd/files/patch-client_heartbeat-hb.c (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 15:19:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E677016A4D2 for ; Tue, 10 Aug 2004 15:19:56 +0000 (GMT) Received: from mail5.speakeasy.net (mail5.speakeasy.net [216.254.0.205]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85DCB43D2D for ; Tue, 10 Aug 2004 15:19:56 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 7154 invoked from network); 10 Aug 2004 15:19:56 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 10 Aug 2004 15:19:55 -0000 Received: from 10.50.40.208 (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i7AFJpen083739; Tue, 10 Aug 2004 11:19:52 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Jeff Roberson Date: Tue, 10 Aug 2004 09:18:45 -0400 User-Agent: KMail/1.6 References: <200408100752.i7A7qMYI000506@repoman.freebsd.org> In-Reply-To: <200408100752.i7A7qMYI000506@repoman.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408100918.45387.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:19:57 -0000 On Tuesday 10 August 2004 03:52 am, Jeff Roberson wrote: > jeff 2004-08-10 07:52:22 UTC > > FreeBSD src repository > > Modified files: > sys/kern sched_ule.c > Log: > - Use a new flag, KEF_XFERABLE, to record with certainty that this kse > had contributed to the transferable load count. This prevents any > potential problems with sched_pin() being used around calls to > setrunqueue(). - Change the sched_add() load balancing algorithm to try to > migrate on wakeup. This attempts to place threads that communicate with > each other on the same CPU. > - Don't clear the idle counts in kseq_transfer(), let the cpus do that > when they call sched_add() from kseq_assign(). > - Correct a few out of date comments. > - Make sure the ke_cpu field is correct when we preempt. > - Call kseq_assign() from sched_clock() to catch any assignments that > were done without IPI. Presently all assignments are done with an IPI, but > I'm trying a patch that limits that. > - Don't migrate a thread if it is still runnable in sched_add(). > Previously, this could only happen for KSE threads, but due to changes to > sched_switch() all threads went through this path. > - Remove some code that was added with preemption but is not necessary. Couple of comments: 1) TDF_NEEDRESCHED is still needed as that is what manages user-level preemptions. Kernel preemption does not normally preempt threads at user-level priorities (see the code in maybe_preempt() for a comment with more detailed info). 2) Can a thread bound to CPU B ever be put on the runqueue via setrunqueue() by a thread on CPU A? If so, you need to keep the SMP-specific migration check before the call to maybe_preempt() so that you don't end up running the new thread on CPU A even though it is supposed to run on CPU B. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Tue Aug 10 15:22:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D9EF16A4CE; Tue, 10 Aug 2004 15:22:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C2E243D1F; Tue, 10 Aug 2004 15:22:32 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AFMVQh014075; Tue, 10 Aug 2004 15:22:31 GMT (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AFMVsP014074; Tue, 10 Aug 2004 15:22:31 GMT (envelope-from adamw) Message-Id: <200408101522.i7AFMVsP014074@repoman.freebsd.org> From: Adam Weinberger Date: Tue, 10 Aug 2004 15:22:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/talkfilters Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:22:32 -0000 adamw 2004-08-10 15:22:31 UTC FreeBSD ports repository Modified files: misc/talkfilters Makefile distinfo Log: Update to 2.3.3. Revision Changes Path 1.8 +2 -2 ports/misc/talkfilters/Makefile 1.7 +2 -2 ports/misc/talkfilters/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 10 15:25:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5267816A4CE; Tue, 10 Aug 2004 15:25:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32CE643D49; Tue, 10 Aug 2004 15:25:22 +0000 (GMT) (envelope-from mich@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AFPMh6014204; Tue, 10 Aug 2004 15:25:22 GMT (envelope-from mich@repoman.freebsd.org) Received: (from mich@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AFPM0e014203; Tue, 10 Aug 2004 15:25:22 GMT (envelope-from mich) Message-Id: <200408101525.i7AFPM0e014203@repoman.freebsd.org> From: "Michael L. Hostbaek" Date: Tue, 10 Aug 2004 15:25:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/doctorj/files patch-syntj_src_ErrorImproperSequence.h patch-util_src_Yagol.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:25:22 -0000 mich 2004-08-10 15:25:22 UTC FreeBSD ports repository Added files: devel/doctorj/files patch-syntj_src_ErrorImproperSequence.h patch-util_src_Yagol.h Log: o Fix build with gcc-3.4 o Fix build on sparc64 and amd64 Revision Changes Path 1.1 +14 -0 ports/devel/doctorj/files/patch-syntj_src_ErrorImproperSequence.h (new) 1.1 +32 -0 ports/devel/doctorj/files/patch-util_src_Yagol.h (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 15:33:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F240E16A4CE; Tue, 10 Aug 2004 15:33:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D388243D49; Tue, 10 Aug 2004 15:33:00 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AFX0CE014396; Tue, 10 Aug 2004 15:33:00 GMT (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AFX0wN014395; Tue, 10 Aug 2004 15:33:00 GMT (envelope-from adamw) Message-Id: <200408101533.i7AFX0wN014395@repoman.freebsd.org> From: Adam Weinberger Date: Tue, 10 Aug 2004 15:33:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators/mips64emul Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:33:01 -0000 adamw 2004-08-10 15:33:00 UTC FreeBSD ports repository Modified files: emulators/mips64emul Makefile distinfo Log: Update to 0.2. Requested by, cuz she knows I'm that smoove: juli Revision Changes Path 1.3 +1 -1 ports/emulators/mips64emul/Makefile 1.3 +2 -2 ports/emulators/mips64emul/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 10 15:40:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1BBE16A4CF; Tue, 10 Aug 2004 15:40:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C737F43D39; Tue, 10 Aug 2004 15:40:37 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AFebiA014724; Tue, 10 Aug 2004 15:40:37 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AFebg3014723; Tue, 10 Aug 2004 15:40:37 GMT (envelope-from vanilla) Message-Id: <200408101540.i7AFebg3014723@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 10 Aug 2004 15:40:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases Makefile ports/databases/pecl-memcache Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:40:38 -0000 vanilla 2004-08-10 15:40:37 UTC FreeBSD ports repository Modified files: databases Makefile Added files: databases/pecl-memcache Makefile distinfo pkg-descr pkg-plist Log: Add pecl-memcache 1.2, memcached extension. PR: ports/70253 Submitted by: Gerrit Beine Revision Changes Path 1.380 +1 -0 ports/databases/Makefile 1.1 +31 -0 ports/databases/pecl-memcache/Makefile (new) 1.1 +2 -0 ports/databases/pecl-memcache/distinfo (new) 1.1 +7 -0 ports/databases/pecl-memcache/pkg-descr (new) 1.1 +2 -0 ports/databases/pecl-memcache/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 15:42:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87E4016A4CE; Tue, 10 Aug 2004 15:42:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 686C243D5D; Tue, 10 Aug 2004 15:42:12 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AFgC9P014785; Tue, 10 Aug 2004 15:42:12 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AFgCWV014784; Tue, 10 Aug 2004 15:42:12 GMT (envelope-from vanilla) Message-Id: <200408101542.i7AFgCWV014784@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 10 Aug 2004 15:42:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:42:12 -0000 vanilla 2004-08-10 15:42:12 UTC FreeBSD ports repository Modified files: . modules Log: Add databases/pecl-memcache. Revision Changes Path 1.10862 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 10 15:44:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62D9316A5BC; Tue, 10 Aug 2004 15:44:07 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9762043D39; Tue, 10 Aug 2004 15:44:06 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i7AFhlY6088699 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 10 Aug 2004 18:43:48 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i7AFhnVl020020; Tue, 10 Aug 2004 18:43:49 +0300 (EEST) (envelope-from ru) Date: Tue, 10 Aug 2004 18:43:48 +0300 From: Ruslan Ermilov To: John-Mark Gurney Message-ID: <20040810154348.GA19937@ip.net.ua> References: <200408090645.i796jLUo046034@repoman.freebsd.org> <20040810122307.GA18408@ip.net.ua> <20040810144913.GO991@funkthat.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="OXfL5xGRrasGEqWY" Content-Disposition: inline In-Reply-To: <20040810144913.GO991@funkthat.com> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys mdioctl.h src/sys/modules/md Makefile src/sbin/mdconfig mdconfig.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:44:07 -0000 --OXfL5xGRrasGEqWY Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Aug 10, 2004 at 07:49:13AM -0700, John-Mark Gurney wrote: > Ruslan Ermilov wrote this message on Tue, Aug 10, 2004 at 15:23 +0300: > > On Mon, Aug 09, 2004 at 06:45:21AM +0000, John-Mark Gurney wrote: > > > jmg 2004-08-09 06:45:21 UTC > > >=20 > > > FreeBSD src repository > > >=20 > > > Modified files: > > > sys/sys mdioctl.h=20 > > > sys/modules/md Makefile=20 > > > sbin/mdconfig mdconfig.c=20 > > > Log: > > > change the name of the md module, to g_md, introduce a define with = the > > > name MD_MODNAME, and make mdconfig use this new define... > > > =20 > > > Revision Changes Path > > > 1.33 +1 -1 src/sbin/mdconfig/mdconfig.c > > > 1.13 +1 -1 src/sys/modules/md/Makefile > > > 1.16 +1 -0 src/sys/sys/mdioctl.h > > >=20 > > Why the change in the first place? >=20 > so that mdconfig does not try to load the md kernel module twice, and > cause your machine to panic. >=20 > With a recent commit of phk's to md that converts it to geom, he removed > the previous DECLARE_MODULE w/ the name of md, and so the md module was > no longer implementing the md module, only the g_md module. On my box > that is using mfs, mdconfig would then try to load the md module a > second time causing geom to panic. >=20 Thanks a bunch for explaining! > I then realized that since md is now a full on geom module, it should > be renamed to geom_md like all the other geom modules... I still need > to ask cvs@ to repo copy the module Makefiles into modules/geom/md... >=20 Yes, please. I wondered about this too (why it was not named geom_md). Another thing I'm worried about is that it's typical for a "device foo" to have the corresponding foo.ko module, and now this is no longer the case. I think many would still prefer that the file be named md.ko, while clearly the inside module should be named "g_md". Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --OXfL5xGRrasGEqWY Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBGO00qRfpzJluFF4RAprgAJ43GACTXFFI5iJa7a8eIlkXv8OvzgCfVOcK x8FJFKzt0ac1ALmGyKd2ELE= =8JUz -----END PGP SIGNATURE----- --OXfL5xGRrasGEqWY-- From owner-cvs-all@FreeBSD.ORG Tue Aug 10 15:50:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DB9216A4CE; Tue, 10 Aug 2004 15:50:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C96C43D3F; Tue, 10 Aug 2004 15:50:27 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AFoRlX015010; Tue, 10 Aug 2004 15:50:27 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AFoRd5015007; Tue, 10 Aug 2004 15:50:27 GMT (envelope-from vanilla) Message-Id: <200408101550.i7AFoRd5015007@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 10 Aug 2004 15:50:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/imlib2_loaders Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:50:27 -0000 vanilla 2004-08-10 15:50:27 UTC FreeBSD ports repository Modified files: graphics/imlib2_loaders Makefile Log: add gnometarget to USE_GNOME, that's better way. Revision Changes Path 1.11 +1 -2 ports/graphics/imlib2_loaders/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 15:50:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A22116A4CE; Tue, 10 Aug 2004 15:50:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5843343D39; Tue, 10 Aug 2004 15:50:55 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AFothr015175; Tue, 10 Aug 2004 15:50:55 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AFotuU015174; Tue, 10 Aug 2004 15:50:55 GMT (envelope-from vanilla) Message-Id: <200408101550.i7AFotuU015174@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 10 Aug 2004 15:50:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/edb Makefile ports/devel/eet Makefile ports/lang/embryo Makefile ports/graphics/epeg Makefile ports/graphics/imlib2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:50:55 -0000 vanilla 2004-08-10 15:50:55 UTC FreeBSD ports repository Modified files: databases/edb Makefile devel/eet Makefile lang/embryo Makefile graphics/epeg Makefile graphics/imlib2 Makefile Log: Add gnometarget to USE_GNOME, that's better way. Revision Changes Path 1.19 +1 -3 ports/databases/edb/Makefile 1.2 +1 -3 ports/devel/eet/Makefile 1.2 +1 -3 ports/graphics/epeg/Makefile 1.93 +1 -3 ports/graphics/imlib2/Makefile 1.2 +1 -3 ports/lang/embryo/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 15:59:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10B5716A4CE; Tue, 10 Aug 2004 15:59:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0647043D3F; Tue, 10 Aug 2004 15:59:29 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AFxSn2015423; Tue, 10 Aug 2004 15:59:28 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AFxSDZ015422; Tue, 10 Aug 2004 15:59:28 GMT (envelope-from arved) Message-Id: <200408101559.i7AFxSDZ015422@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 10 Aug 2004 15:59:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/irc/kvirc Makefile distinfo pkg-plist patch-src-kvilib-file-kvi_file.h patch-src-kvilib-net-kvi_dns.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 15:59:29 -0000 arved 2004-08-10 15:59:28 UTC FreeBSD ports repository Modified files: irc/kvirc Makefile distinfo pkg-plist irc/kvirc/files patch-modules-snd Removed files: irc/kvirc/files patch-src-kvilib-file-kvi_file.h patch-src-kvilib-net-kvi_dns.cpp Log: Update to 3.0.1 PR: 70089 Submitted by: Michael Ranner Revision Changes Path 1.37 +14 -11 ports/irc/kvirc/Makefile 1.9 +2 -2 ports/irc/kvirc/distinfo 1.2 +19 -11 ports/irc/kvirc/files/patch-modules-snd 1.2 +0 -21 ports/irc/kvirc/files/patch-src-kvilib-file-kvi_file.h (dead) 1.2 +0 -25 ports/irc/kvirc/files/patch-src-kvilib-net-kvi_dns.cpp (dead) 1.11 +1315 -1091 ports/irc/kvirc/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 10 16:03:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25CA316A4CE; Tue, 10 Aug 2004 16:03:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C82943D1D; Tue, 10 Aug 2004 16:03:20 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AG3JLU015612; Tue, 10 Aug 2004 16:03:19 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AG3JsD015611; Tue, 10 Aug 2004 16:03:19 GMT (envelope-from vanilla) Message-Id: <200408101603.i7AG3JsD015611@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 10 Aug 2004 16:03:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics Makefile ports/graphics/p5-Tk-JPEG-Lite Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 16:03:20 -0000 vanilla 2004-08-10 16:03:19 UTC FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/p5-Tk-JPEG-Lite Makefile distinfo pkg-descr pkg-plist Log: Add p5-Tk-JPEG-Lite 2.01403, very simplistic image viewer that loads JPEG images. PR: ports/69503 Submitted by: Michael Johnson Revision Changes Path 1.719 +1 -0 ports/graphics/Makefile 1.1 +32 -0 ports/graphics/p5-Tk-JPEG-Lite/Makefile (new) 1.1 +2 -0 ports/graphics/p5-Tk-JPEG-Lite/distinfo (new) 1.1 +3 -0 ports/graphics/p5-Tk-JPEG-Lite/pkg-descr (new) 1.1 +8 -0 ports/graphics/p5-Tk-JPEG-Lite/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 16:04:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F01716A4CE; Tue, 10 Aug 2004 16:04:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7451F43D41; Tue, 10 Aug 2004 16:04:26 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AG4Qwh015718; Tue, 10 Aug 2004 16:04:26 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AG4QYC015717; Tue, 10 Aug 2004 16:04:26 GMT (envelope-from vanilla) Message-Id: <200408101604.i7AG4QYC015717@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 10 Aug 2004 16:04:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits Makefile ports/x11-toolkits/p5-Tk-ResizeButton Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 16:04:26 -0000 vanilla 2004-08-10 16:04:26 UTC FreeBSD ports repository Modified files: x11-toolkits Makefile Added files: x11-toolkits/p5-Tk-ResizeButton Makefile distinfo pkg-descr pkg-plist Log: Add p5-Tk-ResizeButton 0.01, a resizeable button to be used in a Tk::HList column header. PR: ports/70230 Submitted by: Lubomir Marinov Revision Changes Path 1.331 +1 -0 ports/x11-toolkits/Makefile 1.1 +26 -0 ports/x11-toolkits/p5-Tk-ResizeButton/Makefile (new) 1.1 +2 -0 ports/x11-toolkits/p5-Tk-ResizeButton/distinfo (new) 1.1 +7 -0 ports/x11-toolkits/p5-Tk-ResizeButton/pkg-descr (new) 1.1 +5 -0 ports/x11-toolkits/p5-Tk-ResizeButton/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 16:06:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 450B416A4CE; Tue, 10 Aug 2004 16:06:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2526D43D49; Tue, 10 Aug 2004 16:06:14 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AG6EgM015865; Tue, 10 Aug 2004 16:06:14 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AG6Eqx015864; Tue, 10 Aug 2004 16:06:14 GMT (envelope-from vanilla) Message-Id: <200408101606.i7AG6Eqx015864@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 10 Aug 2004 16:06:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 16:06:14 -0000 vanilla 2004-08-10 16:06:13 UTC FreeBSD ports repository Modified files: . modules Log: Add p5-Tk-JPEG-Lite & p5-Tk-ResizeButton. Revision Changes Path 1.10863 +2 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 10 16:12:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A18C16A4CE; Tue, 10 Aug 2004 16:12:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED6AE43D2D; Tue, 10 Aug 2004 16:12:16 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AGCG00016047; Tue, 10 Aug 2004 16:12:16 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AGCGc5016046; Tue, 10 Aug 2004 16:12:16 GMT (envelope-from arved) Message-Id: <200408101612.i7AGCGc5016046@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 10 Aug 2004 16:12:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/yaph Makefile ports/net/yaph/files patch-yaph::init.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 16:12:17 -0000 arved 2004-08-10 16:12:16 UTC FreeBSD ports repository Modified files: net/yaph Makefile net/yaph/files patch-yaph::init.c Log: Fix build with gcc 3.4 PR: 70200 Submitted by: Patrick MARIE Remove uneeded dependency on gnugetopt on CURRENT. Revision Changes Path 1.2 +0 -3 ports/net/yaph/Makefile 1.2 +24 -5 ports/net/yaph/files/patch-yaph::init.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 16:14:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C14D16A4CE; Tue, 10 Aug 2004 16:14:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFD0843D1F; Tue, 10 Aug 2004 16:14:17 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AGEHHH016106; Tue, 10 Aug 2004 16:14:17 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AGEH4O016105; Tue, 10 Aug 2004 16:14:17 GMT (envelope-from vanilla) Message-Id: <200408101614.i7AGEH4O016105@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 10 Aug 2004 16:14:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/p5-WWW-Wikipedia Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 16:14:18 -0000 vanilla 2004-08-10 16:14:17 UTC FreeBSD ports repository Modified files: www/p5-WWW-Wikipedia Makefile distinfo Log: Upgrade to 1.0. PR: ports/70255 Submitted by: maintainer Revision Changes Path 1.2 +1 -1 ports/www/p5-WWW-Wikipedia/Makefile 1.2 +2 -2 ports/www/p5-WWW-Wikipedia/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 10 16:19:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43BE616A4CE; Tue, 10 Aug 2004 16:19:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24DF543D1F; Tue, 10 Aug 2004 16:19:02 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AGJ29k016245; Tue, 10 Aug 2004 16:19:02 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AGJ2cR016244; Tue, 10 Aug 2004 16:19:02 GMT (envelope-from arved) Message-Id: <200408101619.i7AGJ2cR016244@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 10 Aug 2004 16:19:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/tnftpd/files patch-src-logwtmp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 16:19:02 -0000 arved 2004-08-10 16:19:01 UTC FreeBSD ports repository Modified files: ftp/tnftpd/files patch-src-logwtmp.c Log: Fix build with gcc 3.4 PR: 70202 Submitted by: Rudolf Cejka Revision Changes Path 1.4 +1 -1 ports/ftp/tnftpd/files/patch-src-logwtmp.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 16:24:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 301AC16A4CE; Tue, 10 Aug 2004 16:24:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F2A243D41; Tue, 10 Aug 2004 16:24:47 +0000 (GMT) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AGOkMV016396; Tue, 10 Aug 2004 16:24:46 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AGOko2016395; Tue, 10 Aug 2004 16:24:46 GMT (envelope-from leeym) Message-Id: <200408101624.i7AGOko2016395@repoman.freebsd.org> From: Yen-Ming Lee Date: Tue, 10 Aug 2004 16:24:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/mytop Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 16:24:47 -0000 leeym 2004-08-10 16:24:46 UTC FreeBSD ports repository Modified files: databases/mytop Makefile Log: - Time::HiRes is included in perl 5.8.5, depends on it only when perl < 5.8.5 - fix for POD when perl < 5.6.0 only - bump PORTREVISION PR: 70247 Submitted by: Rong-En Fan Revision Changes Path 1.13 +13 -4 ports/databases/mytop/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 16:29:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2BBB416A4CE; Tue, 10 Aug 2004 16:29:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C15743D54; Tue, 10 Aug 2004 16:29:27 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AGTQ6I016526; Tue, 10 Aug 2004 16:29:26 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AGTQk9016525; Tue, 10 Aug 2004 16:29:26 GMT (envelope-from hrs) Message-Id: <200408101629.i7AGTQk9016525@repoman.freebsd.org> From: Hiroki Sato Date: Tue, 10 Aug 2004 16:29:26 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ja_JP.eucJP/share/sgml transtable.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 16:29:27 -0000 hrs 2004-08-10 16:29:26 UTC FreeBSD doc repository Modified files: ja_JP.eucJP/share/sgml transtable.xml Log: Add transtable entries: Costa Rica, Indonesia, Kyrgyzstan, and Thailand. Revision Changes Path 1.4 +20 -0 doc/ja_JP.eucJP/share/sgml/transtable.xml From owner-cvs-all@FreeBSD.ORG Tue Aug 10 16:38:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E910D16A4CE; Tue, 10 Aug 2004 16:38:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7CAB43D4C; Tue, 10 Aug 2004 16:38:19 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AGcJ53016837; Tue, 10 Aug 2004 16:38:19 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AGcJE1016836; Tue, 10 Aug 2004 16:38:19 GMT (envelope-from green) Message-Id: <200408101638.i7AGcJE1016836@repoman.freebsd.org> From: Brian Feldman Date: Tue, 10 Aug 2004 16:38:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys mlock.2 src/share/man/man9 contigmalloc.9 vslock.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 16:38:20 -0000 green 2004-08-10 16:38:19 UTC FreeBSD src repository Modified files: lib/libc/sys mlock.2 share/man/man9 contigmalloc.9 vslock.9 Log: Update "documentation date" fields. Revision Changes Path 1.18 +1 -1 src/lib/libc/sys/mlock.2 1.3 +1 -1 src/share/man/man9/contigmalloc.9 1.14 +1 -1 src/share/man/man9/vslock.9 From owner-cvs-all@FreeBSD.ORG Tue Aug 10 16:41:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B3AE16A4CE; Tue, 10 Aug 2004 16:41:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B32843D41; Tue, 10 Aug 2004 16:41:21 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AGfLvI016969; Tue, 10 Aug 2004 16:41:21 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AGfLHj016968; Tue, 10 Aug 2004 16:41:21 GMT (envelope-from vanilla) Message-Id: <200408101641.i7AGfLHj016968@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 10 Aug 2004 16:41:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/imlib2 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 16:41:21 -0000 vanilla 2004-08-10 16:41:21 UTC FreeBSD ports repository Modified files: graphics/imlib2 Makefile Log: Fix typo error, s/tartet/target/. Submitted by: "Herbert J. Skuhra" Revision Changes Path 1.94 +1 -1 ports/graphics/imlib2/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 16:49:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2685116A4CE for ; Tue, 10 Aug 2004 16:49:15 +0000 (GMT) Received: from mail4.speakeasy.net (mail4.speakeasy.net [216.254.0.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id E11E243D53 for ; Tue, 10 Aug 2004 16:49:14 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 13411 invoked from network); 10 Aug 2004 16:49:14 -0000 Received: from gate.funkthat.com (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail4.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 10 Aug 2004 16:49:14 -0000 Received: from hydrogen.funkthat.com (cfqpsz@localhost.funkthat.com [127.0.0.1])i7AGnEuU080214; Tue, 10 Aug 2004 09:49:14 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id i7AGnDvi080213; Tue, 10 Aug 2004 09:49:13 -0700 (PDT) Date: Tue, 10 Aug 2004 09:49:13 -0700 From: John-Mark Gurney To: Ruslan Ermilov Message-ID: <20040810164913.GP991@funkthat.com> References: <200408090645.i796jLUo046034@repoman.freebsd.org> <20040810122307.GA18408@ip.net.ua> <20040810144913.GO991@funkthat.com> <20040810154348.GA19937@ip.net.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040810154348.GA19937@ip.net.ua> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/sys mdioctl.h src/sys/modules/md Makefile src/sbin/mdconfig mdconfig.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 16:49:15 -0000 Ruslan Ermilov wrote this message on Tue, Aug 10, 2004 at 18:43 +0300: > Another thing I'm worried about is that it's typical for a "device foo" > to have the corresponding foo.ko module, and now this is no longer the > case. I think many would still prefer that the file be named md.ko, > while clearly the inside module should be named "g_md". There is already other modules that break this conventions (and bde doesn't like the sound and geom subdirs in modules) such as sound, network interfaces, and all the other geom's... Then there is the screen savers which use a suffix instead of the prefix.. :) I'm not familar with kldxref, but it seems like it would make sense for it to grow logic so that if you try to load a module that the "kernel" knows about, but doesn't match the name, it would return that... That still wouldn't fix the breakage, since md is now no longer md, but g_md... Should we fix the naming in the kernel config? -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-all@FreeBSD.ORG Tue Aug 10 16:53:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3204116A4CE; Tue, 10 Aug 2004 16:53:11 +0000 (GMT) Received: from green.homeunix.org (pcp04371970pcs.nrockv01.md.comcast.net [69.140.223.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id B010643D45; Tue, 10 Aug 2004 16:53:10 +0000 (GMT) (envelope-from green@green.homeunix.org) Received: from green.homeunix.org (green@localhost [127.0.0.1]) by green.homeunix.org (8.13.1/8.13.1) with ESMTP id i7AGrD77013514; Tue, 10 Aug 2004 12:53:13 -0400 (EDT) (envelope-from green@green.homeunix.org) Received: (from green@localhost) by green.homeunix.org (8.13.1/8.13.1/Submit) id i7AGrD29013513; Tue, 10 Aug 2004 12:53:13 -0400 (EDT) (envelope-from green) Date: Tue, 10 Aug 2004 12:53:13 -0400 From: Brian Fundakowski Feldman To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040810165313.GE4902@green.homeunix.org> References: <200408101638.i7AGcJE1016836@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408101638.i7AGcJE1016836@repoman.freebsd.org> User-Agent: Mutt/1.5.6i Subject: Re: cvs commit: src/lib/libc/sys mlock.2 src/share/man/man9 contigmalloc.9 vslock.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 16:53:11 -0000 On Tue, Aug 10, 2004 at 04:38:19PM +0000, Brian Feldman wrote: > green 2004-08-10 16:38:19 UTC > > FreeBSD src repository > > Modified files: > lib/libc/sys mlock.2 > share/man/man9 contigmalloc.9 vslock.9 > Log: > Update "documentation date" fields. Thanks to ru for pointing out that I need to update these. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-all@FreeBSD.ORG Tue Aug 10 17:06:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D48216A4CE; Tue, 10 Aug 2004 17:06:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2082343D2D; Tue, 10 Aug 2004 17:06:16 +0000 (GMT) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AH6Fg2017846; Tue, 10 Aug 2004 17:06:15 GMT (envelope-from osa@repoman.freebsd.org) Received: (from osa@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AH6F0l017845; Tue, 10 Aug 2004 17:06:15 GMT (envelope-from osa) Message-Id: <200408101706.i7AH6F0l017845@repoman.freebsd.org> From: "Sergey A. Osokin" Date: Tue, 10 Aug 2004 17:06:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/coda5_client Makefile ports/net/coda6_client Makefile ports/devel/lwp Makefile distinfo ports/devel/rpc2 Makefile distinfo pkg-plist ports/devel/rvm Makefile distinfo ports/net/coda5_server Makefile ports/net/coda5_server/files ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 17:06:16 -0000 osa 2004-08-10 17:06:15 UTC FreeBSD ports repository Modified files: net/coda5_client Makefile net/coda6_client Makefile devel/lwp Makefile distinfo devel/rpc2 Makefile distinfo pkg-plist devel/rvm Makefile distinfo net/coda5_server Makefile net/coda6_server Makefile distinfo pkg-plist Added files: net/coda5_server/files patch-coda-src-venus-comm.cc patch-coda-src-venus-fso.h net/coda6_server/files patch-coda-src-venus-comm.cc patch-coda-src-venus-fso.h Log: Update coda5*- and coda6*-affiliated software. Fix build under fresh -CURRENT (gcc 3.4.2). Bump or remove PORTREVISION where it needed. Revision Changes Path 1.19 +1 -2 ports/devel/lwp/Makefile 1.9 +2 -2 ports/devel/lwp/distinfo 1.14 +1 -2 ports/devel/rpc2/Makefile 1.9 +2 -2 ports/devel/rpc2/distinfo 1.7 +4 -3 ports/devel/rpc2/pkg-plist 1.13 +1 -2 ports/devel/rvm/Makefile 1.8 +2 -2 ports/devel/rvm/distinfo 1.15 +1 -1 ports/net/coda5_client/Makefile 1.28 +2 -2 ports/net/coda5_server/Makefile 1.1 +11 -0 ports/net/coda5_server/files/patch-coda-src-venus-comm.cc (new) 1.1 +20 -0 ports/net/coda5_server/files/patch-coda-src-venus-fso.h (new) 1.3 +0 -1 ports/net/coda6_client/Makefile 1.3 +2 -3 ports/net/coda6_server/Makefile 1.3 +2 -2 ports/net/coda6_server/distinfo 1.1 +11 -0 ports/net/coda6_server/files/patch-coda-src-venus-comm.cc (new) 1.1 +32 -0 ports/net/coda6_server/files/patch-coda-src-venus-fso.h (new) 1.2 +1 -0 ports/net/coda6_server/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 10 17:15:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 692F316A4CE; Tue, 10 Aug 2004 17:15:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 49EAF43D1F; Tue, 10 Aug 2004 17:15:22 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AHFMnm018086; Tue, 10 Aug 2004 17:15:22 GMT (envelope-from hq@repoman.freebsd.org) Received: (from hq@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AHFMmh018085; Tue, 10 Aug 2004 17:15:22 GMT (envelope-from hq) Message-Id: <200408101715.i7AHFMmh018085@repoman.freebsd.org> From: Herve Quiroz Date: Tue, 10 Aug 2004 17:15:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/xerces-j Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 17:15:22 -0000 hq 2004-08-10 17:15:22 UTC FreeBSD ports repository Modified files: textproc/xerces-j Makefile Log: - Calm portlint: echo -> ${ECHO_CMD} Approved by: glewis (mentor) Revision Changes Path 1.17 +1 -1 ports/textproc/xerces-j/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 17:19:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E5C7216A4CE; Tue, 10 Aug 2004 17:19:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C66D543D45; Tue, 10 Aug 2004 17:19:32 +0000 (GMT) (envelope-from tom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AHJWSh018188; Tue, 10 Aug 2004 17:19:32 GMT (envelope-from tom@repoman.freebsd.org) Received: (from tom@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AHJWbx018187; Tue, 10 Aug 2004 17:19:32 GMT (envelope-from tom) Message-Id: <200408101719.i7AHJWbx018187@repoman.freebsd.org> From: Tom Hukins Date: Tue, 10 Aug 2004 17:19:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mod_perl2 pkg-message X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 17:19:33 -0000 tom 2004-08-10 17:19:32 UTC FreeBSD ports repository Modified files: www/mod_perl2 pkg-message Log: Fix erroneous path to DSO. Approved by: maintainer Revision Changes Path 1.3 +1 -1 ports/www/mod_perl2/pkg-message From owner-cvs-all@FreeBSD.ORG Tue Aug 10 17:20:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 47C2216A4CF; Tue, 10 Aug 2004 17:20:21 +0000 (GMT) Received: from mail.qubesoft.com (gate.qubesoft.com [217.169.36.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F4B743D1F; Tue, 10 Aug 2004 17:20:20 +0000 (GMT) (envelope-from dfr@nlsystems.com) Received: from bluebottle.qubesoft.com (bluebottle.qubesoft.com [192.168.1.2]) by mail.qubesoft.com (8.12.9/8.12.9) with ESMTP id i7AHKFGR033172; Tue, 10 Aug 2004 18:20:19 +0100 (BST) (envelope-from dfr@nlsystems.com) Received: from builder02.qubesoft.com (builder02.qubesoft.com [192.168.1.8]) i7AHKBfJ040371; Tue, 10 Aug 2004 18:20:15 +0100 (BST) (envelope-from dfr@nlsystems.com) From: Doug Rabson To: Brian Feldman In-Reply-To: <200408091846.i79IkD8x073800@repoman.freebsd.org> References: <200408091846.i79IkD8x073800@repoman.freebsd.org> Content-Type: text/plain Message-Id: <1092158411.13089.4.camel@builder02.qubesoft.com> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 10 Aug 2004 18:20:11 +0100 Content-Transfer-Encoding: 7bit X-Virus-Scanned: ClamAV version 'clamd / ClamAV version 0.65', clamav-milter version '0.60p' cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern link_elf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 17:20:21 -0000 On Mon, 2004-08-09 at 19:46, Brian Feldman wrote: > green 2004-08-09 18:46:13 UTC > > FreeBSD src repository > > Modified files: > sys/kern link_elf.c > Log: > Normalize the VM wiring done with SPARSE_MAPPING: check for errors, and > unmap when done. For whatever reason, SPARSE_MAPPING is not even a > config option, so this is dead code. I used this for a while when binutils was misconfigured on the alpha to leave a 1Mb gap between sections and I didn't want to waste the memory. From owner-cvs-all@FreeBSD.ORG Tue Aug 10 17:32:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7198D16A4CE; Tue, 10 Aug 2004 17:32:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51DD443D2F; Tue, 10 Aug 2004 17:32:01 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AHW1Vv018544; Tue, 10 Aug 2004 17:32:01 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AHW1O7018543; Tue, 10 Aug 2004 17:32:01 GMT (envelope-from roam) Message-Id: <200408101732.i7AHW1O7018543@repoman.freebsd.org> From: Peter Pentchev Date: Tue, 10 Aug 2004 17:32:01 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/faq book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 17:32:01 -0000 roam 2004-08-10 17:32:01 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/faq book.sgml Log: Add a blurb about the main reason for not including CVSup in the base system: the fact that we would need a Modula-3 compiler to go with it. PR: 70124 Suggested by: Joel Dahl Revision Changes Path 1.640 +24 -0 doc/en_US.ISO8859-1/books/faq/book.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 10 17:41:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A7FB16A4CE; Tue, 10 Aug 2004 17:41:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C6B643D46; Tue, 10 Aug 2004 17:41:52 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AHfqMV018912; Tue, 10 Aug 2004 17:41:52 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AHfqxZ018911; Tue, 10 Aug 2004 17:41:52 GMT (envelope-from blackend) Message-Id: <200408101741.i7AHfqxZ018911@repoman.freebsd.org> From: Marc Fonvieille Date: Tue, 10 Aug 2004 17:41:52 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/fr_FR.ISO8859-1/books/handbook/network-servers chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 17:41:52 -0000 blackend 2004-08-10 17:41:52 UTC FreeBSD doc repository Modified files: fr_FR.ISO8859-1/books/handbook/network-servers chapter.sgml Log: MFen 1.7 --> 1.23 Revision Changes Path 1.3 +430 -1 doc/fr_FR.ISO8859-1/books/handbook/network-servers/chapter.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 10 17:43:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D54E16A4CE; Tue, 10 Aug 2004 17:43:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F99643D45; Tue, 10 Aug 2004 17:43:00 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AHh0ki018957; Tue, 10 Aug 2004 17:43:00 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AHh0ki018956; Tue, 10 Aug 2004 17:43:00 GMT (envelope-from jhb) Message-Id: <200408101743.i7AHh0ki018956@repoman.freebsd.org> From: John Baldwin Date: Tue, 10 Aug 2004 17:43:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_condvar.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 17:43:00 -0000 jhb 2004-08-10 17:43:00 UTC FreeBSD src repository Modified files: sys/kern kern_condvar.c Log: Synchronize the extra SA threading checks and return value handling of condition variables with that of msleep(). Reviewed by: davidxu Revision Changes Path 1.50 +50 -24 src/sys/kern/kern_condvar.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 17:44:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D587D16A4CE; Tue, 10 Aug 2004 17:44:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6EE943D48; Tue, 10 Aug 2004 17:44:53 +0000 (GMT) (envelope-from jdp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AHirww019038; Tue, 10 Aug 2004 17:44:53 GMT (envelope-from jdp@repoman.freebsd.org) Received: (from jdp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AHirNU019037; Tue, 10 Aug 2004 17:44:53 GMT (envelope-from jdp) Message-Id: <200408101744.i7AHirNU019037@repoman.freebsd.org> From: John Polstra Date: Tue, 10 Aug 2004 17:44:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/ezm3 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 17:44:54 -0000 jdp 2004-08-10 17:44:53 UTC FreeBSD ports repository Modified files: lang/ezm3 Makefile Log: Fix an incorrect distfile name for the Alpha. Revision Changes Path 1.12 +1 -4 ports/lang/ezm3/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 18:04:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 146F316A4CE; Tue, 10 Aug 2004 18:04:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B8E543D41; Tue, 10 Aug 2004 18:04:22 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AI4LCZ019600; Tue, 10 Aug 2004 18:04:21 GMT (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AI4LIC019599; Tue, 10 Aug 2004 18:04:21 GMT (envelope-from adamw) Message-Id: <200408101804.i7AI4LIC019599@repoman.freebsd.org> From: Adam Weinberger Date: Tue, 10 Aug 2004 18:04:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators/mips64emul Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 18:04:22 -0000 adamw 2004-08-10 18:04:21 UTC FreeBSD ports repository Modified files: emulators/mips64emul Makefile Log: Oosp. Bump PORTEPOCH. Who would have thought that 0.2 < 20040701 ? What is mathematics coming to these days?! You know, back in MY day, we didn't have decimal points, 'cause fractions hadn't been invented yet. You wouldn't go down to the store and ask for half a cow. You couldn't even go to the store and ask for a cow, 'cause meat hadn't been invented yet! You think you all have it so easy, with your decimal points and your hamburgers. Imagine what it was like back when we didn't have mouths yet! We had to smear ground patty on our skin and hope that it'd absorb into our bloodstream. Yeah, you try getting some ground beef into your bloodstream. THEN you'll find out whether you're a man or woman or boy or girl or some reasonable facsimile thereof. Revision Changes Path 1.4 +1 -0 ports/emulators/mips64emul/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 18:11:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3312F16A4CE; Tue, 10 Aug 2004 18:11:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1513D43D48; Tue, 10 Aug 2004 18:11:52 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AIBp1b019904; Tue, 10 Aug 2004 18:11:51 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AIBpu9019903; Tue, 10 Aug 2004 18:11:51 GMT (envelope-from eik) Message-Id: <200408101811.i7AIBpu9019903@repoman.freebsd.org> From: Oliver Eikemeier Date: Tue, 10 Aug 2004 18:11:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/rc_subr Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 18:11:52 -0000 eik 2004-08-10 18:11:51 UTC FreeBSD ports repository Modified files: sysutils/rc_subr Makefile distinfo Log: update to rc.subr 1.31 - pass extra args when start/stop commands are overidden - update README and example.sh Revision Changes Path 1.8 +1 -1 ports/sysutils/rc_subr/Makefile 1.6 +2 -2 ports/sysutils/rc_subr/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 10 18:18:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6C4516A4CE; Tue, 10 Aug 2004 18:18:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96C2543D2F; Tue, 10 Aug 2004 18:18:42 +0000 (GMT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AIIgUZ020091; Tue, 10 Aug 2004 18:18:42 GMT (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AIIge8020090; Tue, 10 Aug 2004 18:18:42 GMT (envelope-from cperciva) Message-Id: <200408101818.i7AIIge8020090@repoman.freebsd.org> From: Colin Percival Date: Tue, 10 Aug 2004 18:18:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/sysinstall dist.c dist.h menus.c sysinstall.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 18:18:42 -0000 cperciva 2004-08-10 18:18:42 UTC FreeBSD src repository Modified files: usr.sbin/sysinstall dist.c dist.h menus.c sysinstall.8 Log: Teach sysinstall about the "srescue" distribution, which contains the contents of /usr/src/rescue. Until now, the files were shipped with releases but sysinstall would ignore them (resulting in a non-buildable source tree). Sanity checked by: jhb Revision Changes Path 1.234 +1 -0 src/usr.sbin/sysinstall/dist.c 1.62 +2 -1 src/usr.sbin/sysinstall/dist.h 1.395 +2 -0 src/usr.sbin/sysinstall/menus.c 1.64 +2 -0 src/usr.sbin/sysinstall/sysinstall.8 From owner-cvs-all@FreeBSD.ORG Tue Aug 10 18:26:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9995316A4CE; Tue, 10 Aug 2004 18:26:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9144B43D46; Tue, 10 Aug 2004 18:26:27 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AIQRap020351; Tue, 10 Aug 2004 18:26:27 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AIQRYN020350; Tue, 10 Aug 2004 18:26:27 GMT (envelope-from krion) Message-Id: <200408101826.i7AIQRYN020350@repoman.freebsd.org> From: Kirill Ponomarew Date: Tue, 10 Aug 2004 18:26:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/hte Makefile distinfo ports/editors/hte/files patch-cstream.cc patch-htle.cc patch-src::srt_x86.cc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 18:26:27 -0000 krion 2004-08-10 18:26:27 UTC FreeBSD ports repository Modified files: editors/hte Makefile distinfo Removed files: editors/hte/files patch-cstream.cc patch-htle.cc patch-src::srt_x86.cc Log: Update to version 0.8.0 PR: ports/70261 Submitted by: Ports Fury Revision Changes Path 1.15 +9 -2 ports/editors/hte/Makefile 1.12 +2 -2 ports/editors/hte/distinfo 1.4 +0 -35 ports/editors/hte/files/patch-cstream.cc (dead) 1.2 +0 -46 ports/editors/hte/files/patch-htle.cc (dead) 1.2 +0 -18 ports/editors/hte/files/patch-src::srt_x86.cc (dead) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 18:34:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EB3D16A4CE; Tue, 10 Aug 2004 18:34:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1015E43D45; Tue, 10 Aug 2004 18:34:16 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AIYFxB020564; Tue, 10 Aug 2004 18:34:15 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AIYFVF020563; Tue, 10 Aug 2004 18:34:15 GMT (envelope-from krion) Message-Id: <200408101834.i7AIYFVF020563@repoman.freebsd.org> From: Kirill Ponomarew Date: Tue, 10 Aug 2004 18:34:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/finance/libofx/files patch-ofxdump_ofxdump.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 18:34:16 -0000 krion 2004-08-10 18:34:15 UTC FreeBSD ports repository Added files: finance/libofx/files patch-ofxdump_ofxdump.cpp Log: Fix build with gcc-3.4 PR: ports/70262 Submitted by: Ports Fury Revision Changes Path 1.1 +134 -0 ports/finance/libofx/files/patch-ofxdump_ofxdump.cpp (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 18:36:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22DF116A4CE; Tue, 10 Aug 2004 18:36:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03ABD43D53; Tue, 10 Aug 2004 18:36:14 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AIaDjF020763; Tue, 10 Aug 2004 18:36:13 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AIaDPm020762; Tue, 10 Aug 2004 18:36:13 GMT (envelope-from krion) Message-Id: <200408101836.i7AIaDPm020762@repoman.freebsd.org> From: Kirill Ponomarew Date: Tue, 10 Aug 2004 18:36:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/bbmail Makefile pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 18:36:14 -0000 krion 2004-08-10 18:36:13 UTC FreeBSD ports repository Modified files: mail/bbmail Makefile pkg-descr Removed files: mail/bbmail pkg-plist Log: Update MASTER_SITES and WWW: line Support PLIST_FILES PR: ports/70263 Submitted by: Ports Fury Revision Changes Path 1.18 +8 -3 ports/mail/bbmail/Makefile 1.7 +1 -1 ports/mail/bbmail/pkg-descr 1.4 +0 -3 ports/mail/bbmail/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 18:38:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DB1F16A4CF; Tue, 10 Aug 2004 18:38:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4B9243D48; Tue, 10 Aug 2004 18:38:33 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AIcXoI020848; Tue, 10 Aug 2004 18:38:33 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AIcXvW020847; Tue, 10 Aug 2004 18:38:33 GMT (envelope-from krion) Message-Id: <200408101838.i7AIcXvW020847@repoman.freebsd.org> From: Kirill Ponomarew Date: Tue, 10 Aug 2004 18:38:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/bbapm Makefile pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 18:38:34 -0000 krion 2004-08-10 18:38:33 UTC FreeBSD ports repository Modified files: sysutils/bbapm Makefile pkg-descr Removed files: sysutils/bbapm pkg-plist Log: Update MASTER_SITES and WWW: line Support PLIST_FILES PR: ports/70265 Submitted by: Ports Fury Revision Changes Path 1.16 +14 -4 ports/sysutils/bbapm/Makefile 1.4 +1 -1 ports/sysutils/bbapm/pkg-descr 1.2 +0 -7 ports/sysutils/bbapm/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 18:41:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32BE516A4CE; Tue, 10 Aug 2004 18:41:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1339143D48; Tue, 10 Aug 2004 18:41:26 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AIfPMT020996; Tue, 10 Aug 2004 18:41:25 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AIfPaw020995; Tue, 10 Aug 2004 18:41:25 GMT (envelope-from krion) Message-Id: <200408101841.i7AIfPaw020995@repoman.freebsd.org> From: Kirill Ponomarew Date: Tue, 10 Aug 2004 18:41:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-clocks/bbdate Makefile pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 18:41:26 -0000 krion 2004-08-10 18:41:25 UTC FreeBSD ports repository Modified files: x11-clocks/bbdate Makefile pkg-descr Removed files: x11-clocks/bbdate pkg-plist Log: Update MASTER_SITES and WWW: line Support PLIST_FILES PR: ports/70266 Submitted by: Ports Fury Revision Changes Path 1.17 +10 -1 ports/x11-clocks/bbdate/Makefile 1.6 +1 -1 ports/x11-clocks/bbdate/pkg-descr 1.2 +0 -7 ports/x11-clocks/bbdate/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 18:48:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C51C816A4CE; Tue, 10 Aug 2004 18:48:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCBFE43D1D; Tue, 10 Aug 2004 18:48:23 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AImNEw021251; Tue, 10 Aug 2004 18:48:23 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AImNWD021250; Tue, 10 Aug 2004 18:48:23 GMT (envelope-from krion) Message-Id: <200408101848.i7AImNWD021250@repoman.freebsd.org> From: Kirill Ponomarew Date: Tue, 10 Aug 2004 18:48:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/bbconf Makefile distinfo pkg-plist ports/x11-wm/bbconf/files patch-Makefile.in patch-admin::ltmain.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 18:48:23 -0000 krion 2004-08-10 18:48:23 UTC FreeBSD ports repository Modified files: x11-wm/bbconf Makefile distinfo Removed files: x11-wm/bbconf pkg-plist x11-wm/bbconf/files patch-Makefile.in patch-admin::ltmain.sh Log: Update to version 1.10 PR: ports/70267 Submitted by: Ports Fury Revision Changes Path 1.12 +22 -8 ports/x11-wm/bbconf/Makefile 1.5 +2 -2 ports/x11-wm/bbconf/distinfo 1.3 +0 -29 ports/x11-wm/bbconf/files/patch-Makefile.in (dead) 1.2 +0 -19 ports/x11-wm/bbconf/files/patch-admin::ltmain.sh (dead) 1.3 +0 -14 ports/x11-wm/bbconf/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 18:51:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16F1D16A4CE; Tue, 10 Aug 2004 18:51:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDD0D43D48; Tue, 10 Aug 2004 18:51:20 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AIpKVu021437; Tue, 10 Aug 2004 18:51:20 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AIpKhX021436; Tue, 10 Aug 2004 18:51:20 GMT (envelope-from krion) Message-Id: <200408101851.i7AIpKhX021436@repoman.freebsd.org> From: Kirill Ponomarew Date: Tue, 10 Aug 2004 18:51:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/bbkeys Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 18:51:21 -0000 krion 2004-08-10 18:51:20 UTC FreeBSD ports repository Modified files: x11-wm/bbkeys Makefile distinfo Removed files: x11-wm/bbkeys pkg-plist Log: Update to version 0.8.6 PR: ports/70268 Submitted by: Ports Fury Revision Changes Path 1.12 +15 -8 ports/x11-wm/bbkeys/Makefile 1.8 +2 -2 ports/x11-wm/bbkeys/distinfo 1.5 +0 -11 ports/x11-wm/bbkeys/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 18:53:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AB4416A4CE; Tue, 10 Aug 2004 18:53:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CB4C43D53; Tue, 10 Aug 2004 18:53:12 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AIrCCH021530; Tue, 10 Aug 2004 18:53:12 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AIrC10021529; Tue, 10 Aug 2004 18:53:12 GMT (envelope-from krion) Message-Id: <200408101853.i7AIrC10021529@repoman.freebsd.org> From: Kirill Ponomarew Date: Tue, 10 Aug 2004 18:53:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/bbpager Makefile pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 18:53:12 -0000 krion 2004-08-10 18:53:12 UTC FreeBSD ports repository Modified files: x11-wm/bbpager Makefile pkg-descr Removed files: x11-wm/bbpager pkg-plist Log: Update MASTER_SITES and WWW: line Support PLIST_FILES PR: ports/70269 Submitted by: Ports Fury Revision Changes Path 1.8 +9 -1 ports/x11-wm/bbpager/Makefile 1.4 +1 -1 ports/x11-wm/bbpager/pkg-descr 1.3 +0 -5 ports/x11-wm/bbpager/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 18:54:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2F6216A518; Tue, 10 Aug 2004 18:54:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9344843D54; Tue, 10 Aug 2004 18:54:49 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AIsnhf021579; Tue, 10 Aug 2004 18:54:49 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AIsnBK021578; Tue, 10 Aug 2004 18:54:49 GMT (envelope-from krion) Message-Id: <200408101854.i7AIsnBK021578@repoman.freebsd.org> From: Kirill Ponomarew Date: Tue, 10 Aug 2004 18:54:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/fluxconf Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 18:54:49 -0000 krion 2004-08-10 18:54:49 UTC FreeBSD ports repository Modified files: x11-wm/fluxconf Makefile Log: Do not include the package name in the comment. Portlint. PR: ports/70270 Submitted by: Ports Fury Revision Changes Path 1.12 +2 -2 ports/x11-wm/fluxconf/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:01:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A2F016A4CE; Tue, 10 Aug 2004 19:01:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 510E943D46; Tue, 10 Aug 2004 19:01:26 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJ1QW4021916; Tue, 10 Aug 2004 19:01:26 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJ1Q2s021915; Tue, 10 Aug 2004 19:01:26 GMT (envelope-from skv) Message-Id: <200408101901.i7AJ1Q2s021915@repoman.freebsd.org> From: Sergey Skvortsov Date: Tue, 10 Aug 2004 19:01:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/p5-Pod-Constants Makefile ports/textproc/p5-Pod-Stripper Makefile ports/textproc/p5-PodParser Makefile pkg-descr pkg-plist ports/textproc/p5-podlators Makefile pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:01:26 -0000 skv 2004-08-10 19:01:26 UTC FreeBSD ports repository Modified files: textproc/p5-Pod-Constants Makefile textproc/p5-Pod-Stripper Makefile textproc/p5-PodParser Makefile pkg-descr pkg-plist textproc/p5-podlators Makefile pkg-descr pkg-plist Log: Unbreak build of p5-[Pp]od* PR: ports/70185 Submitted by: Yen-Ming Lee Revision Changes Path 1.5 +5 -9 ports/textproc/p5-Pod-Constants/Makefile 1.3 +5 -10 ports/textproc/p5-Pod-Stripper/Makefile 1.12 +14 -7 ports/textproc/p5-PodParser/Makefile 1.3 +0 -3 ports/textproc/p5-PodParser/pkg-descr 1.3 +3 -3 ports/textproc/p5-PodParser/pkg-plist 1.6 +16 -6 ports/textproc/p5-podlators/Makefile 1.3 +0 -3 ports/textproc/p5-podlators/pkg-descr 1.3 +2 -2 ports/textproc/p5-podlators/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:04:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 288AD16A4CE; Tue, 10 Aug 2004 19:04:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A36E43D39; Tue, 10 Aug 2004 19:04:00 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJ3xVl021980; Tue, 10 Aug 2004 19:03:59 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJ3x4A021979; Tue, 10 Aug 2004 19:03:59 GMT (envelope-from wilko) Message-Id: <200408101903.i7AJ3x4A021979@repoman.freebsd.org> From: Wilko Bulte Date: Tue, 10 Aug 2004 19:03:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:04:00 -0000 wilko 2004-08-10 19:03:59 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: There is nothing but real hardware to verify things: 164sx can really run on non-ECC, plain vanilla PC133 PC SDRAM DIMMs. Thanks to: obrien@ for the donation of a 164sx mlb. Revision Changes Path 1.67 +7 -4 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:04:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6407916A4CE; Tue, 10 Aug 2004 19:04:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45A2743D53; Tue, 10 Aug 2004 19:04:42 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJ4gCG022056; Tue, 10 Aug 2004 19:04:42 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJ4giN022055; Tue, 10 Aug 2004 19:04:42 GMT (envelope-from eik) Message-Id: <200408101904.i7AJ4giN022055@repoman.freebsd.org> From: Oliver Eikemeier Date: Tue, 10 Aug 2004 19:04:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/shells/bash3 Makefile ports/shells/bash3/files patch-arrayfunc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:04:42 -0000 eik 2004-08-10 19:04:42 UTC FreeBSD ports repository Modified files: shells/bash3 Makefile Added files: shells/bash3/files patch-arrayfunc.c Log: Fix segfault when accessing an unset array Revision Changes Path 1.71 +1 -0 ports/shells/bash3/Makefile 1.1 +16 -0 ports/shells/bash3/files/patch-arrayfunc.c (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:07:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3DCD816A4CE; Tue, 10 Aug 2004 19:07:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2028D43D53; Tue, 10 Aug 2004 19:07:42 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJ7gIm022222; Tue, 10 Aug 2004 19:07:42 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJ7ggb022221; Tue, 10 Aug 2004 19:07:42 GMT (envelope-from wilko) Message-Id: <200408101907.i7AJ7ggb022221@repoman.freebsd.org> From: Wilko Bulte Date: Tue, 10 Aug 2004 19:07:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:07:42 -0000 wilko 2004-08-10 19:07:41 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: typo Revision Changes Path 1.68 +0 -1 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:07:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 853DF16A4CE; Tue, 10 Aug 2004 19:07:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66B0443D68; Tue, 10 Aug 2004 19:07:55 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJ7t0j022251; Tue, 10 Aug 2004 19:07:55 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJ7thd022250; Tue, 10 Aug 2004 19:07:55 GMT (envelope-from pjd) Message-Id: <200408101907.i7AJ7thd022250@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 10 Aug 2004 19:07:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/stripe g_stripe.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:07:55 -0000 pjd 2004-08-10 19:07:55 UTC FreeBSD src repository Modified files: sys/geom/stripe g_stripe.c Log: Fix one of the lastest commit. This bio_caller1 should also be changed to bio_driver1 (as all the rest). This introduced a small memory leak, but it wasn't really critical, because maximum memory for g_stripe_zone is always set, so after few requests gstripe was working in "economic" mode. Revision Changes Path 1.15 +1 -1 src/sys/geom/stripe/g_stripe.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:09:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF52516A4CE; Tue, 10 Aug 2004 19:09:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A142543D53; Tue, 10 Aug 2004 19:09:20 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJ9K3k022302; Tue, 10 Aug 2004 19:09:20 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJ9KhC022301; Tue, 10 Aug 2004 19:09:20 GMT (envelope-from wilko) Message-Id: <200408101909.i7AJ9KhC022301@repoman.freebsd.org> From: Wilko Bulte Date: Tue, 10 Aug 2004 19:09:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:09:20 -0000 wilko 2004-08-10 19:09:20 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: There is nothing but real hardware to verify things: 164sx can really run on non-ECC, plain vanilla PC133 PC SDRAM DIMMs. Thanks to: obrien@ for the donation of a 164sx mlb. Revision Changes Path 1.13.2.42 +6 -4 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:20:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 872C016A4CE; Tue, 10 Aug 2004 19:20:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6901C43D39; Tue, 10 Aug 2004 19:20:05 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJK5PH022598; Tue, 10 Aug 2004 19:20:05 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJK5L0022597; Tue, 10 Aug 2004 19:20:05 GMT (envelope-from wilko) Message-Id: <200408101920.i7AJK5L0022597@repoman.freebsd.org> From: Wilko Bulte Date: Tue, 10 Aug 2004 19:20:05 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/donations donors.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:20:05 -0000 wilko 2004-08-10 19:20:05 UTC FreeBSD doc repository Modified files: en/donations donors.sgml Log: DS donated memory for my DS10. Revision Changes Path 1.188 +10 -1 www/en/donations/donors.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:23:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C708716A4CE; Tue, 10 Aug 2004 19:23:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A87B943D2D; Tue, 10 Aug 2004 19:23:47 +0000 (GMT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJNlC1022729; Tue, 10 Aug 2004 19:23:47 GMT (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJNlXS022728; Tue, 10 Aug 2004 19:23:47 GMT (envelope-from alfred) Message-Id: <200408101923.i7AJNlXS022728@repoman.freebsd.org> From: Alfred Perlstein Date: Tue, 10 Aug 2004 19:23:47 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/porters-handbook book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:23:47 -0000 alfred 2004-08-10 19:23:47 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: Bump the version I added to be in line with the actual version in sys/param.h, I was confused by someone else not updating this file along with their commit to sys/param.h. Revision Changes Path 1.478 +1 -1 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:27:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 958D516A4CE; Tue, 10 Aug 2004 19:27:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 775AA43D1F; Tue, 10 Aug 2004 19:27:19 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJRJ30022899; Tue, 10 Aug 2004 19:27:19 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJRJ34022898; Tue, 10 Aug 2004 19:27:19 GMT (envelope-from thierry) Message-Id: <200408101927.i7AJRJ34022898@repoman.freebsd.org> From: Thierry Thomas Date: Tue, 10 Aug 2004 19:27:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/pear-Net_POP3 Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:27:19 -0000 thierry 2004-08-10 19:27:19 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/pear-Net_POP3 Makefile distinfo pkg-descr Log: Add pear-Net_POP3 1.3.2, provides a POP3 class to access POP3 server. PR: 70251 Submitted by: Gerrit Beine. Revision Changes Path 1.1343 +1 -0 ports/net/Makefile 1.1 +25 -0 ports/net/pear-Net_POP3/Makefile (new) 1.1 +2 -0 ports/net/pear-Net_POP3/distinfo (new) 1.1 +5 -0 ports/net/pear-Net_POP3/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:27:30 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECFE516A4CE; Tue, 10 Aug 2004 19:27:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF37E43D55; Tue, 10 Aug 2004 19:27:30 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJRUmU022945; Tue, 10 Aug 2004 19:27:30 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJRU5Q022944; Tue, 10 Aug 2004 19:27:30 GMT (envelope-from thierry) Message-Id: <200408101927.i7AJRU5Q022944@repoman.freebsd.org> From: Thierry Thomas Date: Tue, 10 Aug 2004 19:27:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:27:31 -0000 thierry 2004-08-10 19:27:30 UTC FreeBSD ports repository Modified files: . modules Log: pear-Net_POP3 --> ports/net/pear-Net_POP3 Revision Changes Path 1.10864 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:32:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B7C316A4CE; Tue, 10 Aug 2004 19:32:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CB1C43D54; Tue, 10 Aug 2004 19:32:19 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJWJ4w023133; Tue, 10 Aug 2004 19:32:19 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJWJb3023132; Tue, 10 Aug 2004 19:32:19 GMT (envelope-from eik) Message-Id: <200408101932.i7AJWJb3023132@repoman.freebsd.org> From: Oliver Eikemeier Date: Tue, 10 Aug 2004 19:32:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/shells/bash3 Makefile ports/shells/bash3/files patch-braces.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:32:19 -0000 eik 2004-08-10 19:32:19 UTC FreeBSD ports repository Modified files: shells/bash3 Makefile Added files: shells/bash3/files patch-braces.c Log: Fix nested brace vs. variable expansion Revision Changes Path 1.72 +1 -1 ports/shells/bash3/Makefile 1.1 +15 -0 ports/shells/bash3/files/patch-braces.c (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:32:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CF5316A4CE; Tue, 10 Aug 2004 19:32:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E01843D41; Tue, 10 Aug 2004 19:32:34 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJWYR1023162; Tue, 10 Aug 2004 19:32:34 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJWYuZ023161; Tue, 10 Aug 2004 19:32:34 GMT (envelope-from marcel) Message-Id: <200408101932.i7AJWYuZ023161@repoman.freebsd.org> From: Marcel Moolenaar Date: Tue, 10 Aug 2004 19:32:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/gdb gdb_main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:32:34 -0000 marcel 2004-08-10 19:32:34 UTC FreeBSD src repository Modified files: sys/gdb gdb_main.c Log: Comment-out the debugging printf I left in in case there were some packet related problems. No problems have been reported. Revision Changes Path 1.2 +1 -1 src/sys/gdb/gdb_main.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:39:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D1A1A16A4CE; Tue, 10 Aug 2004 19:39:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B3F0043D39; Tue, 10 Aug 2004 19:39:12 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJdCnj023405; Tue, 10 Aug 2004 19:39:12 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJdC7k023404; Tue, 10 Aug 2004 19:39:12 GMT (envelope-from thierry) Message-Id: <200408101939.i7AJdC7k023404@repoman.freebsd.org> From: Thierry Thomas Date: Tue, 10 Aug 2004 19:39:12 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:39:13 -0000 thierry 2004-08-10 19:39:12 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Add an entry for Alex Kiesel. PR: ports/50068 (and previous PRs) Revision Changes Path 1.249 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:44:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20E5F16A4CE; Tue, 10 Aug 2004 19:44:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 025C943D2F; Tue, 10 Aug 2004 19:44:03 +0000 (GMT) (envelope-from ade@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJi2rL023566; Tue, 10 Aug 2004 19:44:02 GMT (envelope-from ade@repoman.freebsd.org) Received: (from ade@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJi274023565; Tue, 10 Aug 2004 19:44:02 GMT (envelope-from ade) Message-Id: <200408101944.i7AJi274023565@repoman.freebsd.org> From: Ade Lovett Date: Tue, 10 Aug 2004 19:44:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/p5-Pg Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:44:03 -0000 ade 2004-08-10 19:44:02 UTC FreeBSD ports repository Modified files: databases/p5-Pg Makefile distinfo Log: Update to 2.1.1, fixing a critical issue with the previous version using system malloc (irrespective of whether perl itself was compiled with its own malloc or system malloc), with the obvious hilarity on freeing. Maintainer timeout. Please wake up :) Submitted by: ade Approved by: maintainer-timeout (2 weeks) Revision Changes Path 1.38 +1 -3 ports/databases/p5-Pg/Makefile 1.10 +2 -2 ports/databases/p5-Pg/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:52:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F59216A4CE; Tue, 10 Aug 2004 19:52:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E46B643D41; Tue, 10 Aug 2004 19:52:12 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJqCKq023879; Tue, 10 Aug 2004 19:52:12 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJqCe7023878; Tue, 10 Aug 2004 19:52:12 GMT (envelope-from pjd) Message-Id: <200408101952.i7AJqCe7023878@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 10 Aug 2004 19:52:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/mirror g_mirror_ctl.csrc/sbin/geom/class/mirror geom_mirror.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:52:13 -0000 pjd 2004-08-10 19:52:12 UTC FreeBSD src repository Modified files: sys/geom/mirror g_mirror_ctl.c sbin/geom/class/mirror geom_mirror.c Log: Forgot to commit those: introduce hardcoded provider functionality, which allow to store provider's name in the metadata and avoid problems when few providers share the same last sector. Revision Changes Path 1.3 +31 -14 src/sbin/geom/class/mirror/geom_mirror.c 1.4 +33 -3 src/sys/geom/mirror/g_mirror_ctl.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:53:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BE9816A4CE; Tue, 10 Aug 2004 19:53:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E30843D54; Tue, 10 Aug 2004 19:53:31 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AJrVWd023928; Tue, 10 Aug 2004 19:53:31 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AJrV00023927; Tue, 10 Aug 2004 19:53:31 GMT (envelope-from pjd) Message-Id: <200408101953.i7AJrV00023927@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Tue, 10 Aug 2004 19:53:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/mirror g_mirror.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:53:31 -0000 pjd 2004-08-10 19:53:31 UTC FreeBSD src repository Modified files: sys/geom/mirror g_mirror.c Log: - Recognize HARDCODED flag when dumping consumer configuration. - Improve code readabilty a bit. Revision Changes Path 1.16 +27 -39 src/sys/geom/mirror/g_mirror.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 20:13:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34BA816A4CE; Tue, 10 Aug 2004 20:13:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 16E9643D49; Tue, 10 Aug 2004 20:13:41 +0000 (GMT) (envelope-from scop@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AKDeSw024637; Tue, 10 Aug 2004 20:13:40 GMT (envelope-from scop@repoman.freebsd.org) Received: (from scop@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AKDejP024636; Tue, 10 Aug 2004 20:13:40 GMT (envelope-from scop) Message-Id: <200408102013.i7AKDejP024636@repoman.freebsd.org> From: Ville Skyttä Date: Tue, 10 Aug 2004 20:13:40 +0000 (UTC) To: projects-committers@FreeBSD.org, cvs-projects@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: projects/cvsweb ChangeLog cvsweb.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:13:41 -0000 scop 2004-08-10 20:13:40 UTC FreeBSD projects repository Modified files: cvsweb ChangeLog cvsweb.conf Log: Add mirror config example. Revision Changes Path 1.161 +4 -0 projects/cvsweb/ChangeLog 1.88 +8 -0 projects/cvsweb/cvsweb.conf From owner-cvs-all@FreeBSD.ORG Tue Aug 10 20:15:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B30D716A4D0; Tue, 10 Aug 2004 20:15:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 957B843D39; Tue, 10 Aug 2004 20:15:12 +0000 (GMT) (envelope-from le@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AKFCrI024699; Tue, 10 Aug 2004 20:15:12 GMT (envelope-from le@repoman.freebsd.org) Received: (from le@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AKFCVv024698; Tue, 10 Aug 2004 20:15:12 GMT (envelope-from le) Message-Id: <200408102015.i7AKFCVv024698@repoman.freebsd.org> From: Lukas Ertl Date: Tue, 10 Aug 2004 20:15:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/vinum geom_vinum_drive.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:15:12 -0000 le 2004-08-10 20:15:12 UTC FreeBSD src repository Modified files: sys/geom/vinum geom_vinum_drive.c Log: Lock the topology before calling gv_parse_config, not afterwards. Revision Changes Path 1.9 +1 -1 src/sys/geom/vinum/geom_vinum_drive.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 20:27:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1C1B16A4CE; Tue, 10 Aug 2004 20:27:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4B2443D2F; Tue, 10 Aug 2004 20:27:17 +0000 (GMT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AKRH4Z025086; Tue, 10 Aug 2004 20:27:17 GMT (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AKRH7P025085; Tue, 10 Aug 2004 20:27:17 GMT (envelope-from glewis) Message-Id: <200408102027.i7AKRH7P025085@repoman.freebsd.org> From: Greg Lewis Date: Tue, 10 Aug 2004 20:27:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jdk13 pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:27:18 -0000 glewis 2004-08-10 20:27:17 UTC FreeBSD ports repository Modified files: java/jdk13 pkg-plist Log: . Call unregistervm with the VM we registered, not the comment associated with (as comments should be optional). Revision Changes Path 1.16 +1 -1 ports/java/jdk13/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Aug 10 20:28:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6F8E16A4DA; Tue, 10 Aug 2004 20:28:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87CFB43D2D; Tue, 10 Aug 2004 20:28:44 +0000 (GMT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AKSiPM025139; Tue, 10 Aug 2004 20:28:44 GMT (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AKSi46025138; Tue, 10 Aug 2004 20:28:44 GMT (envelope-from glewis) Message-Id: <200408102028.i7AKSi46025138@repoman.freebsd.org> From: Greg Lewis Date: Tue, 10 Aug 2004 20:28:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jdk13/files patch-common::Defs-bsd.gmk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:28:44 -0000 glewis 2004-08-10 20:28:44 UTC FreeBSD ports repository Modified files: java/jdk13/files patch-common::Defs-bsd.gmk Log: . Set CC, CXX and CPP conditionally so that this port will respect them if set in the port build. Note that the HotSpot build will likely require additional changes for it to also respect these variables. Revision Changes Path 1.7 +17 -3 ports/java/jdk13/files/patch-common::Defs-bsd.gmk From owner-cvs-all@FreeBSD.ORG Tue Aug 10 20:28:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0BB516A4DF; Tue, 10 Aug 2004 20:28:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B267043D3F; Tue, 10 Aug 2004 20:28:52 +0000 (GMT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AKSqY4025197; Tue, 10 Aug 2004 20:28:52 GMT (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AKSqnG025196; Tue, 10 Aug 2004 20:28:52 GMT (envelope-from clement) Message-Id: <200408102028.i7AKSqnG025196@repoman.freebsd.org> From: Clement Laforet Date: Tue, 10 Aug 2004 20:28:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/unfs3 Makefile distinfo ports/net/unfs3/files patch-configure.ac X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:28:53 -0000 clement 2004-08-10 20:28:52 UTC FreeBSD ports repository Modified files: net/unfs3 Makefile distinfo Added files: net/unfs3/files patch-configure.ac Log: - Update to 0.9.10 Revision Changes Path 1.4 +3 -3 ports/net/unfs3/Makefile 1.4 +2 -2 ports/net/unfs3/distinfo 1.1 +16 -0 ports/net/unfs3/files/patch-configure.ac (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 20:30:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CBAC16A4CE; Tue, 10 Aug 2004 20:30:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C380543D49; Tue, 10 Aug 2004 20:30:30 +0000 (GMT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AKUUGp025279; Tue, 10 Aug 2004 20:30:30 GMT (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AKUUH7025277; Tue, 10 Aug 2004 20:30:30 GMT (envelope-from glewis) Message-Id: <200408102030.i7AKUUH7025277@repoman.freebsd.org> From: Greg Lewis Date: Tue, 10 Aug 2004 20:30:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jdk13/files patch-t2kScalerContext.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:30:31 -0000 glewis 2004-08-10 20:30:30 UTC FreeBSD ports repository Added files: java/jdk13/files patch-t2kScalerContext.cpp Log: . Fix the main build for gcc 3.4. The HotSpot build may need some additional patches. This patch is taken almost verbatim from PR 69853 which was submitted by Jake Hamby . I've applied it to jdk13 rather than jdk14 though. Revision Changes Path 1.1 +13 -0 ports/java/jdk13/files/patch-t2kScalerContext.cpp (new) From owner-cvs-all@FreeBSD.ORG Tue Aug 10 20:45:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9FED616A4CF; Tue, 10 Aug 2004 20:45:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F01043D31; Tue, 10 Aug 2004 20:45:03 +0000 (GMT) (envelope-from josef@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AKj3Yo026105; Tue, 10 Aug 2004 20:45:03 GMT (envelope-from josef@repoman.freebsd.org) Received: (from josef@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AKj3hU026104; Tue, 10 Aug 2004 20:45:03 GMT (envelope-from josef) Message-Id: <200408102045.i7AKj3hU026104@repoman.freebsd.org> From: Josef El-Rayes Date: Tue, 10 Aug 2004 20:45:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/fpc-oracle Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:45:03 -0000 josef 2004-08-10 20:45:02 UTC FreeBSD ports repository (doc committer) Modified files: databases/fpc-oracle Makefile Log: Fix wrong COMMENT in Makefile Approved by: clement Spotted by: Gerhard Gonter Revision Changes Path 1.3 +1 -1 ports/databases/fpc-oracle/Makefile From owner-cvs-all@FreeBSD.ORG Tue Aug 10 20:49:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6205016A4E9; Tue, 10 Aug 2004 20:49:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A6F943D49; Tue, 10 Aug 2004 20:49:32 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AKnWln026675; Tue, 10 Aug 2004 20:49:32 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AKnWbB026674; Tue, 10 Aug 2004 20:49:32 GMT (envelope-from thierry) Message-Id: <200408102049.i7AKnWbB026674@repoman.freebsd.org> From: Thierry Thomas Date: Tue, 10 Aug 2004 20:49:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/pear-HTTP_Upload Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:49:32 -0000 thierry 2004-08-10 20:49:32 UTC FreeBSD ports repository Modified files: www/pear-HTTP_Upload Makefile distinfo Log: Upgrade to 0.9.0. Revision Changes Path 1.4 +1 -2 ports/www/pear-HTTP_Upload/Makefile 1.3 +2 -2 ports/www/pear-HTTP_Upload/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 10 20:50:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C595316A4DA; Tue, 10 Aug 2004 20:50:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A882843D5C; Tue, 10 Aug 2004 20:50:05 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AKo5B7027163; Tue, 10 Aug 2004 20:50:05 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AKo5KG027159; Tue, 10 Aug 2004 20:50:05 GMT (envelope-from thierry) Message-Id: <200408102050.i7AKo5KG027159@repoman.freebsd.org> From: Thierry Thomas Date: Tue, 10 Aug 2004 20:50:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/pear-Log Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:50:05 -0000 thierry 2004-08-10 20:50:05 UTC FreeBSD ports repository Modified files: sysutils/pear-Log Makefile distinfo Log: Upgrade to 1.8.5. Revision Changes Path 1.19 +3 -3 ports/sysutils/pear-Log/Makefile 1.14 +2 -2 ports/sysutils/pear-Log/distinfo From owner-cvs-all@FreeBSD.ORG Tue Aug 10 20:51:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19D8D16A4CE; Tue, 10 Aug 2004 20:51:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDC9043D2F; Tue, 10 Aug 2004 20:51:48 +0000 (GMT) (envelope-from le@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AKpmVl028143; Tue, 10 Aug 2004 20:51:48 GMT (envelope-from le@repoman.freebsd.org) Received: (from le@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AKpmmm028142; Tue, 10 Aug 2004 20:51:48 GMT (envelope-from le) Message-Id: <200408102051.i7AKpmmm028142@repoman.freebsd.org> From: Lukas Ertl Date: Tue, 10 Aug 2004 20:51:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/vinum geom_vinum_plex.c geom_vinum_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:51:49 -0000 le 2004-08-10 20:51:48 UTC FreeBSD src repository Modified files: sys/geom/vinum geom_vinum_plex.c geom_vinum_subr.c Log: If we kill the worklist thread of a RAID5 plex we can destroy the worklist mutex at the same time, so move the mtx_destroy() call to gv_kill_thread(). Revision Changes Path 1.8 +0 -1 src/sys/geom/vinum/geom_vinum_plex.c 1.6 +1 -0 src/sys/geom/vinum/geom_vinum_subr.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 20:51:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA32616A54B; Tue, 10 Aug 2004 20:51:52 +0000 (GMT) Received: from cs.rice.edu (cs.rice.edu [128.42.1.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD6FC43D2D; Tue, 10 Aug 2004 20:51:51 +0000 (GMT) (envelope-from alc@cs.rice.edu) Received: from localhost (calypso.cs.rice.edu [128.42.1.127]) by cs.rice.edu (Postfix) with ESMTP id 502244B00B; Tue, 10 Aug 2004 15:51:51 -0500 (CDT) Received: from cs.rice.edu ([128.42.1.30]) by localhost (calypso.cs.rice.edu [128.42.1.127]) (amavisd-new, port 10024) with LMTP id 16451-01-24; Tue, 10 Aug 2004 15:51:51 -0500 (CDT) Received: by cs.rice.edu (Postfix, from userid 19572) id F05E54B003; Tue, 10 Aug 2004 15:51:50 -0500 (CDT) Date: Tue, 10 Aug 2004 15:51:50 -0500 From: Alan Cox To: Brian Feldman Message-ID: <20040810205150.GX3527@cs.rice.edu> References: <200408101442.i7AEgnsb012799@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408101442.i7AEgnsb012799@repoman.freebsd.org> User-Agent: Mutt/1.4.2i X-Virus-Scanned: by amavis-20030616-p7 at cs.rice.edu cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/vm vm_kern.c vm_map.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:51:53 -0000 On Tue, Aug 10, 2004 at 02:42:49PM +0000, Brian Feldman wrote: > green 2004-08-10 14:42:49 UTC > > FreeBSD src repository > > Modified files: > sys/vm vm_kern.c vm_map.c > Log: > Back out all behavioral chnages. > > Revision Changes Path > 1.120 +0 -4 src/sys/vm/vm_kern.c > 1.354 +18 -33 src/sys/vm/vm_map.c Thank you. Also, for updating the man pages. Alan From owner-cvs-all@FreeBSD.ORG Tue Aug 10 20:53:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ABFC16A4CF; Tue, 10 Aug 2004 20:53:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6165D43D31; Tue, 10 Aug 2004 20:53:26 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AKrQxp028280; Tue, 10 Aug 2004 20:53:26 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AKrQxM028279; Tue, 10 Aug 2004 20:53:26 GMT (envelope-from alc) Message-Id: <200408102053.i7AKrQxM028279@repoman.freebsd.org> From: Alan Cox Date: Tue, 10 Aug 2004 20:53:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/include pmap.h src/sys/sparc64/sparc64 machdep.c pmap.c tsb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:53:26 -0000 alc 2004-08-10 20:53:26 UTC FreeBSD src repository Modified files: sys/sparc64/include pmap.h sys/sparc64/sparc64 machdep.c pmap.c tsb.c Log: Add pmap locking to many of the functions. Implement the protection check required by the pmap_extract_and_hold() specification. Remove the acquisition and release of Giant from pmap_extract_and_hold() and pmap_protect(). Many thanks to Ken Smith for resolving a sparc64-specific initialization problem in my original patch. Tested by: kensmith@ Revision Changes Path 1.42 +14 -0 src/sys/sparc64/include/pmap.h 1.111 +5 -0 src/sys/sparc64/sparc64/machdep.c 1.138 +51 -16 src/sys/sparc64/sparc64/pmap.c 1.36 +2 -4 src/sys/sparc64/sparc64/tsb.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 20:59:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 09DF916A4CE; Tue, 10 Aug 2004 20:59:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E001643D31; Tue, 10 Aug 2004 20:59:14 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AKxE69029521; Tue, 10 Aug 2004 20:59:14 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AKxEOc029520; Tue, 10 Aug 2004 20:59:14 GMT (envelope-from green) Message-Id: <200408102059.i7AKxEOc029520@repoman.freebsd.org> From: Brian Feldman Date: Tue, 10 Aug 2004 20:59:14 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/porters-handbook book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 20:59:15 -0000 green 2004-08-10 20:59:14 UTC FreeBSD doc repository (src,ports committer) Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: Insert the UMA changes bump into the __FreeBSD_version values. Revision Changes Path 1.479 +6 -0 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 10 21:07:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E161C16A4CF; Tue, 10 Aug 2004 21:07:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C28EE43D41; Tue, 10 Aug 2004 21:07:27 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AL7RoS031183; Tue, 10 Aug 2004 21:07:27 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AL7RB8031182; Tue, 10 Aug 2004 21:07:27 GMT (envelope-from simon) Message-Id: <200408102107.i7AL7RB8031182@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Tue, 10 Aug 2004 21:07:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 mlx.4 mly.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 21:07:28 -0000 simon 2004-08-10 21:07:27 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 mlx.4 mly.4 Log: Add a HARDWARE section which lists supported devices. Clean up device lists a bit while I'm here anyway. Revision Changes Path 1.17 +19 -14 src/share/man/man4/mlx.4 1.8 +19 -15 src/share/man/man4/mly.4 From owner-cvs-all@FreeBSD.ORG Tue Aug 10 21:43:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1A0A16A4CE; Tue, 10 Aug 2004 21:43:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D36F943D46; Tue, 10 Aug 2004 21:43:40 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ALhel0032093; Tue, 10 Aug 2004 21:43:40 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ALhec8032092; Tue, 10 Aug 2004 21:43:40 GMT (envelope-from alc) Message-Id: <200408102143.i7ALhec8032092@repoman.freebsd.org> From: Alan Cox Date: Tue, 10 Aug 2004 21:43:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/arm/arm pmap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 21:43:41 -0000 alc 2004-08-10 21:43:40 UTC FreeBSD src repository Modified files: sys/arm/arm pmap.c Log: Add a comment describing pmap_extract_and_hold() noting that the protection check still needs implementation on arm. Revision Changes Path 1.12 +7 -0 src/sys/arm/arm/pmap.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 21:47:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7271516A4CE; Tue, 10 Aug 2004 21:47:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 548A843D5A; Tue, 10 Aug 2004 21:47:11 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ALlB49032244; Tue, 10 Aug 2004 21:47:11 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ALlBSv032243; Tue, 10 Aug 2004 21:47:11 GMT (envelope-from alc) Message-Id: <200408102147.i7ALlBSv032243@repoman.freebsd.org> From: Alan Cox Date: Tue, 10 Aug 2004 21:47:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_physio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 21:47:11 -0000 alc 2004-08-10 21:47:11 UTC FreeBSD src repository Modified files: sys/kern kern_physio.c Log: Eliminate the acquisition and release of Giant within physio(). Remove the spl calls. Reviewed by: phk@ Discussed with: scottl@ Revision Changes Path 1.64 +0 -6 src/sys/kern/kern_physio.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 22:02:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 457FB16A4CE; Tue, 10 Aug 2004 22:02:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28AFE43D2D; Tue, 10 Aug 2004 22:02:53 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AM2rxM032733; Tue, 10 Aug 2004 22:02:53 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AM2rke032732; Tue, 10 Aug 2004 22:02:53 GMT (envelope-from njl) Message-Id: <200408102202.i7AM2rke032732@repoman.freebsd.org> From: Nate Lawson Date: Tue, 10 Aug 2004 22:02:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 22:02:53 -0000 njl 2004-08-10 22:02:53 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: Don't call DEVICE_RESUME a second time if DEVICE_SUSPEND fails. The bus_generic_suspend method does this for us. Disable interrupts before entering S1. This may help some systems suspend to S1 successfully. Revision Changes Path 1.184 +10 -11 src/sys/dev/acpica/acpi.c From owner-cvs-all@FreeBSD.ORG Tue Aug 10 22:17:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA6BC16A4CE; Tue, 10 Aug 2004 22:17:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D56C43D4C; Tue, 10 Aug 2004 22:17:01 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AMH1na033151; Tue, 10 Aug 2004 22:17:01 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AMH1QG033150; Tue, 10 Aug 2004 22:17:01 GMT (envelope-from simon) Message-Id: <200408102217.i7AMH1QG033150@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Tue, 10 Aug 2004 22:17:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 ncv.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 22:17:01 -0000 simon 2004-08-10 22:17:01 UTC FreeBSD src repository (doc committer) Modified files: share/man/man4 ncv.4 Log: Add a HARDWARE section which lists supported devices. Revision Changes Path 1.6 +5 -3 src/share/man/man4/ncv.4 From owner-cvs-all@FreeBSD.ORG Tue Aug 10 22:19:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCF9C16A4CE; Tue, 10 Aug 2004 22:19:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC50F43D5C; Tue, 10 Aug 2004 22:19:57 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AMJv3f033249; Tue, 10 Aug 2004 22:19:57 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AMJv2c033248; Tue, 10 Aug 2004 22:19:57 GMT (envelope-from simon) Message-Id: <200408102219.i7AMJv2c033248@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Tue, 10 Aug 2004 22:19:57 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/share/misc dev.archlist.txt src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 22:19:58 -0000 simon 2004-08-10 22:19:57 UTC FreeBSD src repository (doc committer) Modified files: release/doc/share/misc dev.archlist.txt release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Auto generate device listings the following drivers: mlx, mly, and ncv. Revision Changes Path 1.225 +4 -9 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml 1.4 +3 -0 src/release/doc/share/misc/dev.archlist.txt From owner-cvs-all@FreeBSD.ORG Tue Aug 10 22:26:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5103D16A4CE; Tue, 10 Aug 2004 22:26:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 343B943D2D; Tue, 10 Aug 2004 22:26:47 +0000 (GMT) (envelope-from scop@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AMQl8C033624; Tue, 10 Aug 2004 22:26:47 GMT (envelope-from scop@repoman.freebsd.org) Received: (from scop@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AMQlae033623; Tue, 10 Aug 2004 22:26:47 GMT (envelope-from scop) Message-Id: <200408102226.i7AMQlae033623@repoman.freebsd.org> From: Ville Skyttä Date: Tue, 10 Aug 2004 22:26:47 +0000 (UTC) To: projects-committers@FreeBSD.org, cvs-projects@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: projects/cvsweb ChangeLog cvsweb.cgi X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 22:26:47 -0000 scop 2004-08-10 22:26:47 UTC FreeBSD projects repository Modified files: cvsweb ChangeLog cvsweb.cgi Log: Ensure that CVSROOT/modules is always properly closed. Revision Changes Path 1.162 +2 -0 projects/cvsweb/ChangeLog 1.267 +2 -0 projects/cvsweb/cvsweb.cgi From owner-cvs-all@FreeBSD.ORG Tue Aug 10 22:33:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBE9316A4CE; Tue, 10 Aug 2004 22:33:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE18343D3F; Tue, 10 Aug 2004 22:33:21 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AMXLBE036091; Tue, 10 Aug 2004 22:33:21 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AMXLAj036090; Tue, 10 Aug 2004 22:33:21 GMT (envelope-from simon) Message-Id: <200408102233.i7AMXLAj036090@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Tue, 10 Aug 2004 22:33:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/common dev.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 22:33:21 -0000 simon 2004-08-10 22:33:21 UTC FreeBSD src repository (doc committer) Modified files: release/doc/en_US.ISO8859-1/hardware/common dev.sgml Log: Add id tags to sections which does not already have one to make it simpler to link directly into the Hardware Notes. Revision Changes Path 1.226 +11 -11 src/release/doc/en_US.ISO8859-1/hardware/common/dev.sgml From owner-cvs-all@FreeBSD.ORG Tue Aug 10 22:37:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F9F416A4CE; Tue, 10 Aug 2004 22:37:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1216B43D39; Tue, 10 Aug 2004 22:37:46 +0000 (GMT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AMbjAT037364; Tue, 10 Aug 2004 22:37:45 GMT (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AMbjwa037363; Tue, 10 Aug 2004 22:37:45 GMT (envelope-from simon) Message-Id: <200408102237.i7AMbjwa037363@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Tue, 10 Aug 2004 22:37:45 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/tools/portsgrowth ports.log X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 22:37:46 -0000 simon 2004-08-10 22:37:45 UTC FreeBSD doc repository Modified files: tools/portsgrowth ports.log Log: Add more ports counts. Source: http://www.FreeBSD.org/ports/INDEX Revision Changes Path 1.17 +16 -0 www/tools/portsgrowth/ports.log From owner-cvs-all@FreeBSD.ORG Tue Aug 10 22:39:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB12D16A4CE; Tue, 10 Aug 2004 22:39:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD42C43D1D; Tue, 10 Aug 2004 22:39:07 +0000 (GMT) (envelope-from scop@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AMd7Fn037415; Tue, 10 Aug 2004 22:39:07 GMT (envelope-from scop@repoman.freebsd.org) Received: (from scop@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AMd7Ek037414; Tue, 10 Aug 2004 22:39:07 GMT (envelope-from scop) Message-Id: <200408102239.i7AMd7Ek037414@repoman.freebsd.org> From: Ville Skyttä Date: Tue, 10 Aug 2004 22:39:07 +0000 (UTC) To: projects-committers@FreeBSD.org, cvs-projects@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: projects/cvsweb ChangeLog cvsweb.cgi X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 22:39:08 -0000 scop 2004-08-10 22:39:07 UTC FreeBSD projects repository Modified files: cvsweb ChangeLog cvsweb.cgi Log: Coding style and variable scoping improvements. Revision Changes Path 1.163 +2 -0 projects/cvsweb/ChangeLog 1.268 +26 -41 projects/cvsweb/cvsweb.cgi From owner-cvs-all@FreeBSD.ORG Tue Aug 10 22:57:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F064716A4CE; Tue, 10 Aug 2004 22:57:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D307443D1F; Tue, 10 Aug 2004 22:57:18 +0000 (GMT) (envelope-from scop@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7AMvIMM037925; Tue, 10 Aug 2004 22:57:18 GMT (envelope-from scop@repoman.freebsd.org) Received: (from scop@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7AMvIoI037924; Tue, 10 Aug 2004 22:57:18 GMT (envelope-from scop) Message-Id: <200408102257.i7AMvIoI037924@repoman.freebsd.org> From: Ville Skyttä Date: Tue, 10 Aug 2004 22:57:18 +0000 (UTC) To: projects-committers@FreeBSD.org, cvs-projects@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: projects/cvsweb ChangeLog cvsweb.cgi X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 22:57:19 -0000 scop 2004-08-10 22:57:18 UTC FreeBSD projects repository Modified files: cvsweb ChangeLog cvsweb.cgi Log: Send temporary HTTP redirects where appropriate instead of always permanent ones. Revision Changes Path 1.164 +3 -0 projects/cvsweb/ChangeLog 1.269 +18 -7 projects/cvsweb/cvsweb.cgi From owner-cvs-all@FreeBSD.ORG Tue Aug 10 23:21:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B1EB916A4CE; Tue, 10 Aug 2004 23:21:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9524A43D2F; Tue, 10 Aug 2004 23:21:16 +0000 (GMT) (envelope-from scop@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ANLG6X038644; Tue, 10 Aug 2004 23:21:16 GMT (envelope-from scop@repoman.freebsd.org) Received: (from scop@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ANLGal038643; Tue, 10 Aug 2004 23:21:16 GMT (envelope-from scop) Message-Id: <200408102321.i7ANLGal038643@repoman.freebsd.org> From: Ville Skyttä Date: Tue, 10 Aug 2004 23:21:16 +0000 (UTC) To: projects-committers@FreeBSD.org, cvs-projects@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: projects/cvsweb ChangeLog cvsweb.cgi X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 23:21:16 -0000 scop 2004-08-10 23:21:16 UTC FreeBSD projects repository Modified files: cvsweb ChangeLog cvsweb.cgi Log: When submitting the options form in an Attic/ dir, stay there, don't change to the parent dir. Revision Changes Path 1.165 +3 -0 projects/cvsweb/ChangeLog 1.270 +1 -4 projects/cvsweb/cvsweb.cgi From owner-cvs-all@FreeBSD.ORG Tue Aug 10 23:52:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2366716A4CE; Tue, 10 Aug 2004 23:52:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0791D43D5A; Tue, 10 Aug 2004 23:52:46 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ANqjp8039414; Tue, 10 Aug 2004 23:52:45 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ANqjrJ039413; Tue, 10 Aug 2004 23:52:45 GMT (envelope-from rwatson) Message-Id: <200408102352.i7ANqjrJ039413@repoman.freebsd.org> From: Robert Watson Date: Tue, 10 Aug 2004 23:52:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 23:52:46 -0000 rwatson 2004-08-10 23:52:45 UTC FreeBSD src repository Modified files: sys/sys vnode.h Log: Modify vnode locking key: the v_pollinfo pointer itself is protected by Giant; the contents are protected by the pollinfo mutex. We rely on Giant to prevent races in assigning the value of v_pollinfo. Revision Changes Path 1.242 +2 -1 src/sys/sys/vnode.h From owner-cvs-all@FreeBSD.ORG Wed Aug 11 00:12:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B1AE16A4CE; Wed, 11 Aug 2004 00:12:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7019E43D45; Wed, 11 Aug 2004 00:12:27 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B0CReE039954; Wed, 11 Aug 2004 00:12:27 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B0CRnp039953; Wed, 11 Aug 2004 00:12:27 GMT (envelope-from emax) Message-Id: <200408110012.i7B0CRnp039953@repoman.freebsd.org> From: Maksim Yevmenkin Date: Wed, 11 Aug 2004 00:12:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 00:12:27 -0000 emax 2004-08-11 00:12:27 UTC FreeBSD src repository Modified files: sys/net if_tap.c Log: Set IFF_RUNNING flag on the interface as soon as the control device is opened. Revision Changes Path 1.46 +9 -3 src/sys/net/if_tap.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 00:22:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 106CD16A4CE; Wed, 11 Aug 2004 00:22:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E952643D48; Wed, 11 Aug 2004 00:22:23 +0000 (GMT) (envelope-from emax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B0MNe5040267; Wed, 11 Aug 2004 00:22:23 GMT (envelope-from emax@repoman.freebsd.org) Received: (from emax@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B0MNYj040266; Wed, 11 Aug 2004 00:22:23 GMT (envelope-from emax) Message-Id: <200408110022.i7B0MNYj040266@repoman.freebsd.org> From: Maksim Yevmenkin Date: Wed, 11 Aug 2004 00:22:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/bluetooth/bcmfw bcmfw.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 00:22:24 -0000 emax 2004-08-11 00:22:23 UTC FreeBSD src repository Modified files: usr.sbin/bluetooth/bcmfw bcmfw.8 Log: Update links to the bluez-firmware package Update md5 hash Revision Changes Path 1.5 +4 -4 src/usr.sbin/bluetooth/bcmfw/bcmfw.8 From owner-cvs-all@FreeBSD.ORG Wed Aug 11 00:36:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8C4F16A4CE; Wed, 11 Aug 2004 00:36:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C327643D2F; Wed, 11 Aug 2004 00:36:27 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B0aRcY041610; Wed, 11 Aug 2004 00:36:27 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B0aRcp041609; Wed, 11 Aug 2004 00:36:27 GMT (envelope-from maho) Message-Id: <200408110036.i7B0aRcp041609@repoman.freebsd.org> From: Maho Nakata Date: Wed, 11 Aug 2004 00:36:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-1.1-devel Makefile distinfo ports/editors/openoffice-1.1-devel/files Makefile.localized X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 00:36:27 -0000 maho 2004-08-11 00:36:27 UTC FreeBSD ports repository Modified files: editors/openoffice-1.1-devel Makefile distinfo editors/openoffice-1.1-devel/files Makefile.localized Log: o clean up (cosmetic change) o update to 2004/Aug/10 cws_src645_ooo113fix2 snapshot o correct version number (not 1.1.3 but 1.1.3.${SNAPDATE}) o add seven localized langs, sort Makefile @my LANGUAGES in config_office/set_soenv.in Revision Changes Path 1.149 +13 -12 ports/editors/openoffice-1.1-devel/Makefile 1.37 +2 -2 ports/editors/openoffice-1.1-devel/distinfo 1.3 +83 -39 ports/editors/openoffice-1.1-devel/files/Makefile.localized From owner-cvs-all@FreeBSD.ORG Wed Aug 11 01:16:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3E6616A4CE; Wed, 11 Aug 2004 01:16:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8749443D45; Wed, 11 Aug 2004 01:16:04 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B1G4ZE042691; Wed, 11 Aug 2004 01:16:04 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B1G4RJ042690; Wed, 11 Aug 2004 01:16:04 GMT (envelope-from marcus) Message-Id: <200408110116.i7B1G4RJ042690@repoman.freebsd.org> From: Joe Marcus Clarke Date: Wed, 11 Aug 2004 01:16:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.gnome.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:16:04 -0000 marcus 2004-08-11 01:16:04 UTC FreeBSD ports repository Modified files: Mk bsd.gnome.mk Log: Correct a check for gconf2 presence that was causing gconf.xml.defaults to be created regardless of whether or not gconf2 support was requested. Reported by: lofi Tested by: lofi Revision Changes Path 1.75 +2 -2 ports/Mk/bsd.gnome.mk From owner-cvs-all@FreeBSD.ORG Wed Aug 11 01:17:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54BF116A4CE; Wed, 11 Aug 2004 01:17:35 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id EFD3443D45; Wed, 11 Aug 2004 01:17:34 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i7B1G0dB001689; Tue, 10 Aug 2004 21:16:00 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i7B1G0UJ001686; Tue, 10 Aug 2004 21:16:00 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Tue, 10 Aug 2004 21:16:00 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: <200408102352.i7ANqjrJ039413@repoman.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Re: cvs commit: src/sys/sys vnode.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:17:35 -0000 On Tue, 10 Aug 2004, Robert Watson wrote: > Log: > Modify vnode locking key: the v_pollinfo pointer itself is protected > by Giant; the contents are protected by the pollinfo mutex. We rely > on Giant to prevent races in assigning the value of v_pollinfo. Oops, left out: Reported by: jmg Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-all@FreeBSD.ORG Wed Aug 11 01:21:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7FEE16A4CE; Wed, 11 Aug 2004 01:21:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C115543D2F; Wed, 11 Aug 2004 01:21:37 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B1Lb4Z042924; Wed, 11 Aug 2004 01:21:37 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B1LbVO042923; Wed, 11 Aug 2004 01:21:37 GMT (envelope-from cy) Message-Id: <200408110121.i7B1LbVO042923@repoman.freebsd.org> From: Cy Schubert Date: Wed, 11 Aug 2004 01:21:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports MOVED ports/net Makefile ports/net/ntp-devel Makefile distinfo pkg-descr pkg-plist ports/net/ntp-devel/files patch-aa patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:21:38 -0000 cy 2004-08-11 01:21:37 UTC FreeBSD ports repository Modified files: . MOVED net Makefile Removed files: net/ntp-devel Makefile distinfo pkg-descr pkg-plist net/ntp-devel/files patch-aa patch-configure Log: NTP development branch has been dormant for a long time. This port does not currently serve any purpose. It will be resurrected when NTP development resumes. Revision Changes Path 1.496 +2 -1 ports/MOVED 1.1344 +0 -1 ports/net/Makefile 1.39 +0 -43 ports/net/ntp-devel/Makefile (dead) 1.18 +0 -2 ports/net/ntp-devel/distinfo (dead) 1.3 +0 -38 ports/net/ntp-devel/files/patch-aa (dead) 1.3 +0 -14 ports/net/ntp-devel/files/patch-configure (dead) 1.6 +0 -18 ports/net/ntp-devel/pkg-descr (dead) 1.17 +0 -187 ports/net/ntp-devel/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 01:23:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7BDA316A4CE; Wed, 11 Aug 2004 01:23:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F5B643D1D; Wed, 11 Aug 2004 01:23:31 +0000 (GMT) (envelope-from cy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B1NVT6042981; Wed, 11 Aug 2004 01:23:31 GMT (envelope-from cy@repoman.freebsd.org) Received: (from cy@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B1NVIf042980; Wed, 11 Aug 2004 01:23:31 GMT (envelope-from cy) Message-Id: <200408110123.i7B1NVIf042980@repoman.freebsd.org> From: Cy Schubert Date: Wed, 11 Aug 2004 01:23:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:23:31 -0000 cy 2004-08-11 01:23:31 UTC FreeBSD ports repository Modified files: . modules Log: NTP development branch has been dormant for a long time. This port does not currently serve any purpose. It will be resurrected when NTP development resumes. Revision Changes Path 1.10865 +0 -2 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 11 01:24:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B34316A4CE; Wed, 11 Aug 2004 01:24:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5594543D3F; Wed, 11 Aug 2004 01:24:22 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B1OMPG043068; Wed, 11 Aug 2004 01:24:22 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B1OMNp043067; Wed, 11 Aug 2004 01:24:22 GMT (envelope-from marcus) Message-Id: <200408110124.i7B1OMNp043067@repoman.freebsd.org> From: Joe Marcus Clarke Date: Wed, 11 Aug 2004 01:24:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/deskutils/glabels Makefile distinfo pkg-plist patch-data_mime_Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:24:22 -0000 marcus 2004-08-11 01:24:22 UTC FreeBSD ports repository Modified files: deskutils/glabels Makefile distinfo pkg-plist Added files: deskutils/glabels/files patch-data_mime_Makefile.in Removed files: deskutils/glabels/files patch-configure Log: Update to 2.0.0. Revision Changes Path 1.25 +5 -3 ports/deskutils/glabels/Makefile 1.10 +2 -2 ports/deskutils/glabels/distinfo 1.2 +0 -10 ports/deskutils/glabels/files/patch-configure (dead) 1.1 +25 -0 ports/deskutils/glabels/files/patch-data_mime_Makefile.in (new) 1.9 +15 -8 ports/deskutils/glabels/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 01:27:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C084816A4CE; Wed, 11 Aug 2004 01:27:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A339343D45; Wed, 11 Aug 2004 01:27:37 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B1RbEK045310; Wed, 11 Aug 2004 01:27:37 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B1Rb4i045309; Wed, 11 Aug 2004 01:27:37 GMT (envelope-from lofi) Message-Id: <200408110127.i7B1Rb4i045309@repoman.freebsd.org> From: Michael Nottebrock Date: Wed, 11 Aug 2004 01:27:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/arabic/koffice-i18n Makefile ports/audio Makefile ports/audio/mpeglib_artsplug Makefile distinfo pkg-descr patch-mpeglib_lib_util_render_dither2YUV_rgb2yuvdefs.h patch-splay_control.cpp ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:27:37 -0000 lofi 2004-08-11 01:27:37 UTC FreeBSD ports repository Modified files: arabic/koffice-i18n Makefile audio Makefile chinese/koffice-i18n-zh_CN Makefile distinfo pkg-plist chinese/koffice-i18n-zh_TW Makefile distinfo deskutils/kdepim3 Makefile editors/kate-plugins Makefile editors/koffice-kde3 Makefile distinfo pkg-plist french/koffice-i18n Makefile distinfo pkg-plist games/atlantikdesigner Makefile games/kdegames3 Makefile german/koffice-i18n Makefile distinfo graphics Makefile graphics/kdegraphics3 Makefile hebrew/koffice-i18n Makefile distinfo hungarian/koffice-i18n Makefile distinfo japanese/koffice-i18n Makefile distinfo misc/kdeutils3 Makefile misc/koffice-i18n Makefile misc/koffice-i18n-af Makefile distinfo misc/koffice-i18n-bg Makefile distinfo misc/koffice-i18n-bs Makefile misc/koffice-i18n-ca Makefile distinfo misc/koffice-i18n-cs Makefile distinfo misc/koffice-i18n-da Makefile distinfo misc/koffice-i18n-el Makefile distinfo pkg-plist misc/koffice-i18n-en_GB Makefile distinfo pkg-plist misc/koffice-i18n-eo Makefile distinfo misc/koffice-i18n-es Makefile distinfo misc/koffice-i18n-et Makefile distinfo misc/koffice-i18n-fa Makefile distinfo misc/koffice-i18n-fi Makefile distinfo misc/koffice-i18n-it Makefile distinfo pkg-plist misc/koffice-i18n-lo Makefile distinfo misc/koffice-i18n-lt Makefile misc/koffice-i18n-lv Makefile misc/koffice-i18n-mt Makefile distinfo misc/koffice-i18n-nb Makefile distinfo misc/koffice-i18n-nl Makefile distinfo pkg-plist misc/koffice-i18n-nn Makefile distinfo misc/koffice-i18n-se Makefile distinfo misc/koffice-i18n-sk Makefile distinfo pkg-plist misc/koffice-i18n-sl Makefile distinfo misc/koffice-i18n-sr Makefile distinfo misc/koffice-i18n-sv Makefile distinfo misc/koffice-i18n-tg Makefile distinfo pkg-plist misc/koffice-i18n-th Makefile distinfo misc/koffice-i18n-tr Makefile distinfo misc/koffice-i18n-ven Makefile distinfo misc/koffice-i18n-xh Makefile distinfo misc/koffice-i18n-zu Makefile distinfo multimedia Makefile multimedia/kdemultimedia3 Makefile multimedia/kdemultimedia3/files plist.base plist.base.rm net/kdenetwork3 Makefile net/kdenetwork3/files patch-configure palm Makefile polish/koffice-i18n Makefile distinfo portuguese/koffice-i18n Makefile distinfo pkg-plist portuguese/koffice-i18n-pt_BR Makefile distinfo pkg-plist russian/koffice-i18n Makefile distinfo pkg-plist security/portaudit-db/database portaudit.txt sysutils Makefile ukrainian/koffice-i18n Makefile www Makefile x11 Makefile x11/kdebase3 Makefile pkg-message x11/kdelibs3 Makefile x11-themes/kdeartwork3 Makefile Added files: audio/mpeglib_artsplug Makefile distinfo pkg-descr pkg-plist audio/mpeglib_artsplug/files patch-mpeglib_lib_util_render_dither2YUV_rgb2yuvdefs.h patch-mpeglibartsplay.cpp patch-mpg_control.cpp patch-splay_control.cpp patch-tplay_control.cpp patch-vorbis_control.cpp patch-yuv_control.cpp deskutils/kdepim3 pkg-plist graphics/kamera Makefile distinfo pkg-descr pkg-plist graphics/kdegraphics3 pkg-plist graphics/kooka Makefile distinfo pkg-descr pkg-plist graphics/kuickshow Makefile distinfo pkg-descr pkg-plist misc/kdeutils3 pkg-plist multimedia/xine_artsplugin Makefile distinfo pkg-descr pkg-plist net/kdenetwork3 pkg-plist palm/kpilot Makefile distinfo pkg-descr pkg-plist sysutils/klaptopdaemon Makefile distinfo pkg-descr pkg-plist www/konqueror-nsplugins Makefile distinfo pkg-descr pkg-plist www/konqueror-nsplugins/files patch-nsplugins-pluginscan.cpp x11/kdebase3 pkg-install pkg-plist x11/kdebase3/files kdm.sh patch-post-3.2.3-kdebase-htmlframes x11/kdelibs3/files patch-post-3.2.3-kdelibs-htmlframes patch-post-3.2.3-kdelibs-kcookiejar x11/xscreensaver-kde Makefile distinfo pkg-descr pkg-plist x11-themes/kdeartwork3 pkg-plist Removed files: deskutils/kdepim3/files plist.base plist.base.rm plist.kpilot plist.kpilot.rm graphics/kdegraphics3/files plist.base plist.base.rm plist.gphoto2 plist.gphoto2.rm plist.imlib plist.imlib.rm plist.sane plist.sane.rm misc/kdeutils3/files plist.base plist.base.rm plist.klaptop plist.klaptop.rm multimedia/kdemultimedia3/files patch-mpeglibartsplay.cpp patch-mpg_control.cpp patch-splay_control.cpp patch-tplay_control.cpp patch-vorbis_control.cpp patch-yuv_control.cpp plist.mpeglib plist.mpeglib.rm plist.no-mpeglib plist.xine plist.xine.rm net/kdenetwork3/files plist.base plist.base.rm plist.ktalkd x11/kdebase3/files patch-nsplugins-pluginscan.cpp plist.base plist.base.rm plist.motif x11-themes/kdeartwork3/files plist.base plist.base.rm plist.xs plist.xs.rm Log: Factor out all but one of the build switches of the KDE main module ports into separate ports. The OPTIONS will remain as of yet and trigger dependencies now, for easy transition. Update KOffice to version 1.3.2. Add patches to fix a number of issues, including: - fix kxkb on Xorg - fix kdemultimedia WITH_MPEGLIB (now mpeglib_artsplug) compilation on gcc 3.4.2 with optimizations greater than -O Add security related patches and entries to portaudit.txt. Revision Changes Path 1.12 +0 -0 ports/arabic/koffice-i18n/Makefile 1.543 +1 -0 ports/audio/Makefile 1.1 +39 -0 ports/audio/mpeglib_artsplug/Makefile (new) 1.1 +2 -0 ports/audio/mpeglib_artsplug/distinfo (new) 1.1 +12 -0 ports/audio/mpeglib_artsplug/files/patch-mpeglib_lib_util_render_dither2YUV_rgb2yuvdefs.h (new) 1.1 +16 -0 ports/audio/mpeglib_artsplug/files/patch-mpeglibartsplay.cpp (new) 1.1 +24 -0 ports/audio/mpeglib_artsplug/files/patch-mpg_control.cpp (new) 1.1 +16 -0 ports/audio/mpeglib_artsplug/files/patch-splay_control.cpp (new) 1.1 +16 -0 ports/audio/mpeglib_artsplug/files/patch-tplay_control.cpp (new) 1.1 +16 -0 ports/audio/mpeglib_artsplug/files/patch-vorbis_control.cpp (new) 1.1 +16 -0 ports/audio/mpeglib_artsplug/files/patch-yuv_control.cpp (new) 1.1 +1 -0 ports/audio/mpeglib_artsplug/pkg-descr (new) 1.1 +125 -0 ports/audio/mpeglib_artsplug/pkg-plist (new) 1.7 +1 -1 ports/chinese/koffice-i18n-zh_CN/Makefile 1.5 +2 -2 ports/chinese/koffice-i18n-zh_CN/distinfo 1.5 +0 -5 ports/chinese/koffice-i18n-zh_CN/pkg-plist 1.9 +1 -1 ports/chinese/koffice-i18n-zh_TW/Makefile 1.5 +2 -2 ports/chinese/koffice-i18n-zh_TW/distinfo 1.41 +4 -6 ports/deskutils/kdepim3/Makefile 1.6 +0 -996 ports/deskutils/kdepim3/files/plist.base (dead) 1.4 +0 -208 ports/deskutils/kdepim3/files/plist.base.rm (dead) 1.4 +0 -99 ports/deskutils/kdepim3/files/plist.kpilot (dead) 1.4 +0 -17 ports/deskutils/kdepim3/files/plist.kpilot.rm (dead) 1.16 +1188 -0 ports/deskutils/kdepim3/pkg-plist (new) 1.5 +0 -0 ports/editors/kate-plugins/Makefile 1.65 +1 -1 ports/editors/koffice-kde3/Makefile 1.21 +2 -2 ports/editors/koffice-kde3/distinfo 1.20 +0 -3 ports/editors/koffice-kde3/pkg-plist 1.11 +1 -1 ports/french/koffice-i18n/Makefile 1.5 +2 -2 ports/french/koffice-i18n/distinfo 1.3 +0 -6 ports/french/koffice-i18n/pkg-plist 1.6 +0 -0 ports/games/atlantikdesigner/Makefile 1.80 +0 -0 ports/games/kdegames3/Makefile 1.12 +1 -1 ports/german/koffice-i18n/Makefile 1.5 +2 -2 ports/german/koffice-i18n/distinfo 1.720 +3 -0 ports/graphics/Makefile 1.1 +39 -0 ports/graphics/kamera/Makefile (new) 1.1 +2 -0 ports/graphics/kamera/distinfo (new) 1.1 +3 -0 ports/graphics/kamera/pkg-descr (new) 1.1 +19 -0 ports/graphics/kamera/pkg-plist (new) 1.88 +12 -14 ports/graphics/kdegraphics3/Makefile 1.6 +0 -928 ports/graphics/kdegraphics3/files/plist.base (dead) 1.5 +0 -107 ports/graphics/kdegraphics3/files/plist.base.rm (dead) 1.2 +0 -11 ports/graphics/kdegraphics3/files/plist.gphoto2 (dead) 1.5 +0 -6 ports/graphics/kdegraphics3/files/plist.gphoto2.rm (dead) 1.4 +0 -20 ports/graphics/kdegraphics3/files/plist.imlib (dead) 1.2 +0 -2 ports/graphics/kdegraphics3/files/plist.imlib.rm (dead) 1.4 +0 -40 ports/graphics/kdegraphics3/files/plist.sane (dead) 1.3 +0 -4 ports/graphics/kdegraphics3/files/plist.sane.rm (dead) 1.29 +990 -0 ports/graphics/kdegraphics3/pkg-plist (new) 1.1 +41 -0 ports/graphics/kooka/Makefile (new) 1.1 +2 -0 ports/graphics/kooka/distinfo (new) 1.1 +11 -0 ports/graphics/kooka/pkg-descr (new) 1.1 +55 -0 ports/graphics/kooka/pkg-plist (new) 1.7 +40 -0 ports/graphics/kuickshow/Makefile (new) 1.4 +2 -0 ports/graphics/kuickshow/distinfo (new) 1.4 +6 -0 ports/graphics/kuickshow/pkg-descr (new) 1.5 +34 -0 ports/graphics/kuickshow/pkg-plist (new) 1.9 +1 -1 ports/hebrew/koffice-i18n/Makefile 1.5 +2 -2 ports/hebrew/koffice-i18n/distinfo 1.9 +1 -1 ports/hungarian/koffice-i18n/Makefile 1.5 +2 -2 ports/hungarian/koffice-i18n/distinfo 1.11 +1 -1 ports/japanese/koffice-i18n/Makefile 1.5 +2 -2 ports/japanese/koffice-i18n/distinfo 1.86 +8 -12 ports/misc/kdeutils3/Makefile 1.5 +0 -464 ports/misc/kdeutils3/files/plist.base (dead) 1.5 +0 -116 ports/misc/kdeutils3/files/plist.base.rm (dead) 1.4 +0 -37 ports/misc/kdeutils3/files/plist.klaptop (dead) 1.4 +0 -10 ports/misc/kdeutils3/files/plist.klaptop.rm (dead) 1.33 +535 -0 ports/misc/kdeutils3/pkg-plist (new) 1.9 +1 -1 ports/misc/koffice-i18n-af/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-af/distinfo 1.4 +1 -1 ports/misc/koffice-i18n-bg/Makefile 1.2 +2 -2 ports/misc/koffice-i18n-bg/distinfo 1.9 +2 -0 ports/misc/koffice-i18n-bs/Makefile 1.7 +1 -1 ports/misc/koffice-i18n-ca/Makefile 1.4 +2 -2 ports/misc/koffice-i18n-ca/distinfo 1.9 +1 -1 ports/misc/koffice-i18n-cs/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-cs/distinfo 1.9 +1 -1 ports/misc/koffice-i18n-da/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-da/distinfo 1.9 +1 -1 ports/misc/koffice-i18n-el/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-el/distinfo 1.3 +0 -1 ports/misc/koffice-i18n-el/pkg-plist 1.9 +1 -1 ports/misc/koffice-i18n-en_GB/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-en_GB/distinfo 1.4 +0 -5 ports/misc/koffice-i18n-en_GB/pkg-plist 1.9 +1 -1 ports/misc/koffice-i18n-eo/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-eo/distinfo 1.9 +1 -1 ports/misc/koffice-i18n-es/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-es/distinfo 1.9 +1 -1 ports/misc/koffice-i18n-et/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-et/distinfo 1.7 +1 -1 ports/misc/koffice-i18n-fa/Makefile 1.4 +2 -2 ports/misc/koffice-i18n-fa/distinfo 1.7 +1 -1 ports/misc/koffice-i18n-fi/Makefile 1.4 +2 -2 ports/misc/koffice-i18n-fi/distinfo 1.9 +1 -1 ports/misc/koffice-i18n-it/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-it/distinfo 1.3 +9 -6 ports/misc/koffice-i18n-it/pkg-plist 1.7 +1 -1 ports/misc/koffice-i18n-lo/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-lo/distinfo 1.9 +2 -0 ports/misc/koffice-i18n-lt/Makefile 1.9 +2 -0 ports/misc/koffice-i18n-lv/Makefile 1.9 +1 -1 ports/misc/koffice-i18n-mt/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-mt/distinfo 1.9 +1 -1 ports/misc/koffice-i18n-nb/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-nb/distinfo 1.9 +1 -1 ports/misc/koffice-i18n-nl/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-nl/distinfo 1.4 +0 -9 ports/misc/koffice-i18n-nl/pkg-plist 1.9 +1 -1 ports/misc/koffice-i18n-nn/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-nn/distinfo 1.7 +1 -1 ports/misc/koffice-i18n-se/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-se/distinfo 1.9 +1 -1 ports/misc/koffice-i18n-sk/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-sk/distinfo 1.3 +2 -5 ports/misc/koffice-i18n-sk/pkg-plist 1.9 +1 -1 ports/misc/koffice-i18n-sl/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-sl/distinfo 1.7 +1 -1 ports/misc/koffice-i18n-sr/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-sr/distinfo 1.9 +1 -1 ports/misc/koffice-i18n-sv/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-sv/distinfo 1.4 +1 -1 ports/misc/koffice-i18n-tg/Makefile 1.3 +2 -2 ports/misc/koffice-i18n-tg/distinfo 1.3 +53 -1 ports/misc/koffice-i18n-tg/pkg-plist 1.9 +1 -1 ports/misc/koffice-i18n-th/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-th/distinfo 1.9 +1 -1 ports/misc/koffice-i18n-tr/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-tr/distinfo 1.9 +1 -1 ports/misc/koffice-i18n-ven/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-ven/distinfo 1.9 +1 -1 ports/misc/koffice-i18n-xh/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-xh/distinfo 1.9 +1 -1 ports/misc/koffice-i18n-zu/Makefile 1.5 +2 -2 ports/misc/koffice-i18n-zu/distinfo 1.21 +1 -1 ports/misc/koffice-i18n/Makefile 1.79 +1 -0 ports/multimedia/Makefile 1.107 +8 -25 ports/multimedia/kdemultimedia3/Makefile 1.2 +0 -16 ports/multimedia/kdemultimedia3/files/patch-mpeglibartsplay.cpp (dead) 1.2 +0 -24 ports/multimedia/kdemultimedia3/files/patch-mpg_control.cpp (dead) 1.2 +0 -16 ports/multimedia/kdemultimedia3/files/patch-splay_control.cpp (dead) 1.2 +0 -16 ports/multimedia/kdemultimedia3/files/patch-tplay_control.cpp (dead) 1.2 +0 -16 ports/multimedia/kdemultimedia3/files/patch-vorbis_control.cpp (dead) 1.2 +0 -16 ports/multimedia/kdemultimedia3/files/patch-yuv_control.cpp (dead) 1.10 +0 -88 ports/multimedia/kdemultimedia3/files/plist.base 1.8 +0 -16 ports/multimedia/kdemultimedia3/files/plist.base.rm 1.2 +0 -20 ports/multimedia/kdemultimedia3/files/plist.mpeglib (dead) 1.2 +0 -1 ports/multimedia/kdemultimedia3/files/plist.mpeglib.rm (dead) 1.3 +0 -12 ports/multimedia/kdemultimedia3/files/plist.no-mpeglib (dead) 1.3 +0 -9 ports/multimedia/kdemultimedia3/files/plist.xine (dead) 1.2 +0 -1 ports/multimedia/kdemultimedia3/files/plist.xine.rm (dead) 1.1 +46 -0 ports/multimedia/xine_artsplugin/Makefile (new) 1.1 +2 -0 ports/multimedia/xine_artsplugin/distinfo (new) 1.1 +2 -0 ports/multimedia/xine_artsplugin/pkg-descr (new) 1.1 +10 -0 ports/multimedia/xine_artsplugin/pkg-plist (new) 1.103 +2 -21 ports/net/kdenetwork3/Makefile 1.2 +21 -0 ports/net/kdenetwork3/files/patch-configure 1.8 +0 -1409 ports/net/kdenetwork3/files/plist.base (dead) 1.4 +0 -217 ports/net/kdenetwork3/files/plist.base.rm (dead) 1.3 +0 -12 ports/net/kdenetwork3/files/plist.ktalkd (dead) 1.43 +1614 -0 ports/net/kdenetwork3/pkg-plist (new) 1.55 +1 -0 ports/palm/Makefile 1.34 +48 -0 ports/palm/kpilot/Makefile (new) 1.6 +2 -0 ports/palm/kpilot/distinfo (new) 1.6 +4 -0 ports/palm/kpilot/pkg-descr (new) 1.6 +134 -0 ports/palm/kpilot/pkg-plist (new) 1.10 +1 -1 ports/polish/koffice-i18n/Makefile 1.5 +2 -2 ports/polish/koffice-i18n/distinfo 1.9 +1 -1 ports/portuguese/koffice-i18n-pt_BR/Makefile 1.5 +2 -2 ports/portuguese/koffice-i18n-pt_BR/distinfo 1.3 +10 -6 ports/portuguese/koffice-i18n-pt_BR/pkg-plist 1.12 +1 -1 ports/portuguese/koffice-i18n/Makefile 1.5 +2 -2 ports/portuguese/koffice-i18n/distinfo 1.4 +0 -5 ports/portuguese/koffice-i18n/pkg-plist 1.15 +1 -1 ports/russian/koffice-i18n/Makefile 1.8 +2 -2 ports/russian/koffice-i18n/distinfo 1.7 +0 -1 ports/russian/koffice-i18n/pkg-plist 1.82 +3 -1 ports/security/portaudit-db/database/portaudit.txt 1.569 +1 -0 ports/sysutils/Makefile 1.1 +38 -0 ports/sysutils/klaptopdaemon/Makefile (new) 1.1 +2 -0 ports/sysutils/klaptopdaemon/distinfo (new) 1.1 +1 -0 ports/sysutils/klaptopdaemon/pkg-descr (new) 1.1 +51 -0 ports/sysutils/klaptopdaemon/pkg-plist (new) 1.10 +0 -0 ports/ukrainian/koffice-i18n/Makefile 1.960 +1 -0 ports/www/Makefile 1.1 +40 -0 ports/www/konqueror-nsplugins/Makefile (new) 1.1 +2 -0 ports/www/konqueror-nsplugins/distinfo (new) 1.1 +10 -0 ports/www/konqueror-nsplugins/files/patch-nsplugins-pluginscan.cpp (new) 1.1 +2 -0 ports/www/konqueror-nsplugins/pkg-descr (new) 1.1 +7 -0 ports/www/konqueror-nsplugins/pkg-plist (new) 1.28 +10 -6 ports/x11-themes/kdeartwork3/Makefile 1.5 +0 -7353 ports/x11-themes/kdeartwork3/files/plist.base (dead) 1.3 +0 -161 ports/x11-themes/kdeartwork3/files/plist.base.rm (dead) 1.3 +0 -199 ports/x11-themes/kdeartwork3/files/plist.xs (dead) 1.2 +0 -1 ports/x11-themes/kdeartwork3/files/plist.xs.rm (dead) 1.14 +7501 -0 ports/x11-themes/kdeartwork3/pkg-plist (new) 1.527 +1 -0 ports/x11/Makefile 1.141 +12 -6 ports/x11/kdebase3/Makefile 1.1 +18 -0 ports/x11/kdebase3/files/kdm.sh (new) 1.2 +0 -10 ports/x11/kdebase3/files/patch-nsplugins-pluginscan.cpp (dead) 1.1 +138 -0 ports/x11/kdebase3/files/patch-post-3.2.3-kdebase-htmlframes (new) 1.10 +0 -3580 ports/x11/kdebase3/files/plist.base (dead) 1.7 +0 -585 ports/x11/kdebase3/files/plist.base.rm (dead) 1.4 +0 -7 ports/x11/kdebase3/files/plist.motif (dead) 1.1 +16 -0 ports/x11/kdebase3/pkg-install (new) 1.8 +9 -0 ports/x11/kdebase3/pkg-message 1.58 +4120 -0 ports/x11/kdebase3/pkg-plist (new) 1.153 +1 -1 ports/x11/kdelibs3/Makefile 1.1 +434 -0 ports/x11/kdelibs3/files/patch-post-3.2.3-kdelibs-htmlframes (new) 1.1 +140 -0 ports/x11/kdelibs3/files/patch-post-3.2.3-kdelibs-kcookiejar (new) 1.1 +60 -0 ports/x11/xscreensaver-kde/Makefile (new) 1.1 +2 -0 ports/x11/xscreensaver-kde/distinfo (new) 1.1 +2 -0 ports/x11/xscreensaver-kde/pkg-descr (new) 1.1 +202 -0 ports/x11/xscreensaver-kde/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 01:27:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 11D9716A4CE; Wed, 11 Aug 2004 01:27:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8ADE43D49; Wed, 11 Aug 2004 01:27:53 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B1Rrlv045345; Wed, 11 Aug 2004 01:27:53 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B1Rrjx045344; Wed, 11 Aug 2004 01:27:53 GMT (envelope-from rwatson) Message-Id: <200408110127.i7B1Rrjx045344@repoman.freebsd.org> From: Robert Watson Date: Wed, 11 Aug 2004 01:27:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:27:54 -0000 rwatson 2004-08-11 01:27:53 UTC FreeBSD src repository Modified files: sys/kern vfs_subr.c Log: In v_addpollinfo(), we allocate storage to back vp->v_pollinfo. However, we may sleep when doing so; check that we didn't race with another thread allocating storage for the vnode after allocation is made to a local pointer, and only update the vnode pointer if it's still NULL. Otherwise, accept that another thread got there first, and release the local storage. Discussed with: jmg Revision Changes Path 1.520 +7 -1 src/sys/kern/vfs_subr.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 01:28:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33C2A16A4CE; Wed, 11 Aug 2004 01:28:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18B3643D31; Wed, 11 Aug 2004 01:28:19 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B1SIvk045383; Wed, 11 Aug 2004 01:28:18 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B1SIap045382; Wed, 11 Aug 2004 01:28:18 GMT (envelope-from lofi) Message-Id: <200408110128.i7B1SIap045382@repoman.freebsd.org> From: Michael Nottebrock Date: Wed, 11 Aug 2004 01:28:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:28:19 -0000 lofi 2004-08-11 01:28:18 UTC FreeBSD ports repository Modified files: . modules Log: kamera --> ports/graphics/kamera klaptopdaemon --> ports/sysutils/klaptopdaemon konqueror-nsplugins --> ports/www/konqueror-nsplugins kooka --> ports/graphics/kooka kpilot --> ports/palm/kpilot kuickshow --> ports/graphics/kuickshow mpeglib_artsplug --> ports/audio/mpeglib_artsplug xine_artsplugin --> ports/multimedia/xine_artsplugins xscreensaver-kde --> ports/x11/xscreensaver-kde Revision Changes Path 1.10866 +11 -2 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 11 01:30:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20AEB16A4CE; Wed, 11 Aug 2004 01:30:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0537943D2F; Wed, 11 Aug 2004 01:30:58 +0000 (GMT) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B1Uvpc045575; Wed, 11 Aug 2004 01:30:57 GMT (envelope-from jeh@repoman.freebsd.org) Received: (from jeh@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B1UvhW045574; Wed, 11 Aug 2004 01:30:57 GMT (envelope-from jeh) Message-Id: <200408110130.i7B1UvhW045574@repoman.freebsd.org> From: "James E. Housley" Date: Wed, 11 Aug 2004 01:30:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators/sim6811 Makefileports/emulators/sim6811/files patch-ac X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:30:58 -0000 jeh 2004-08-11 01:30:57 UTC FreeBSD ports repository Modified files: emulators/sim6811 Makefile emulators/sim6811/files patch-ac Log: * Remove the last of the delecrations that were also in * Bump PORTREVISION Revision Changes Path 1.13 +1 -1 ports/emulators/sim6811/Makefile 1.2 +10 -8 ports/emulators/sim6811/files/patch-ac From owner-cvs-all@FreeBSD.ORG Wed Aug 11 01:31:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49E8516A4D1; Wed, 11 Aug 2004 01:31:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC70643D1D; Wed, 11 Aug 2004 01:31:01 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B1V15w045636; Wed, 11 Aug 2004 01:31:01 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B1V1Ha045635; Wed, 11 Aug 2004 01:31:01 GMT (envelope-from lofi) Message-Id: <200408110131.i7B1V1Ha045635@repoman.freebsd.org> From: Michael Nottebrock Date: Wed, 11 Aug 2004 01:31:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio Makefile ports/audio/libtunepimp Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:31:28 -0000 lofi 2004-08-11 01:31:01 UTC FreeBSD ports repository Modified files: audio Makefile Added files: audio/libtunepimp Makefile distinfo pkg-descr pkg-plist Log: Add libtunepimp, a client library for musicbrainz Submitted by: Lauri Watts Revision Changes Path 1.544 +1 -0 ports/audio/Makefile 1.1 +36 -0 ports/audio/libtunepimp/Makefile (new) 1.1 +2 -0 ports/audio/libtunepimp/distinfo (new) 1.1 +9 -0 ports/audio/libtunepimp/pkg-descr (new) 1.1 +11 -0 ports/audio/libtunepimp/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 01:31:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2A6A16A4D7; Wed, 11 Aug 2004 01:31:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84D1043D2D; Wed, 11 Aug 2004 01:31:35 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B1VZYU045698; Wed, 11 Aug 2004 01:31:35 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B1VZ04045697; Wed, 11 Aug 2004 01:31:35 GMT (envelope-from lofi) Message-Id: <200408110131.i7B1VZ04045697@repoman.freebsd.org> From: Michael Nottebrock Date: Wed, 11 Aug 2004 01:31:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:31:37 -0000 lofi 2004-08-11 01:31:35 UTC FreeBSD ports repository Modified files: . modules Log: libtunepimp --> ports/audio/libtunepimp Revision Changes Path 1.10867 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 11 01:32:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9053E16A4D1; Wed, 11 Aug 2004 01:32:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72D3B43D39; Wed, 11 Aug 2004 01:32:01 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B1W12K045747; Wed, 11 Aug 2004 01:32:01 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B1W1XB045746; Wed, 11 Aug 2004 01:32:01 GMT (envelope-from marcus) Message-Id: <200408110132.i7B1W1XB045746@repoman.freebsd.org> From: Joe Marcus Clarke Date: Wed, 11 Aug 2004 01:32:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/libgnome Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:32:03 -0000 marcus 2004-08-11 01:32:01 UTC FreeBSD ports repository Modified files: x11/libgnome Makefile distinfo pkg-plist Log: Update to 2.6.1.2. Revision Changes Path 1.138 +3 -3 ports/x11/libgnome/Makefile 1.61 +2 -2 ports/x11/libgnome/distinfo 1.54 +1 -26 ports/x11/libgnome/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 01:34:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1970916A4CE; Wed, 11 Aug 2004 01:34:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1373043D2D; Wed, 11 Aug 2004 01:34:19 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B1YI9X045792; Wed, 11 Aug 2004 01:34:18 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B1YI9Y045791; Wed, 11 Aug 2004 01:34:18 GMT (envelope-from rwatson) Message-Id: <200408110134.i7B1YI9Y045791@repoman.freebsd.org> From: Robert Watson Date: Wed, 11 Aug 2004 01:34:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/conf GENERIC X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:34:19 -0000 rwatson 2004-08-11 01:34:18 UTC FreeBSD src repository Modified files: sys/i386/conf GENERIC Log: Add ADAPTIVE_GIANT to GENERIC on i386, with the intent of making it a standard configuration similar to [NO_]ADAPTIVE_MUTEXES. This feature causes Giant to be included in the set of mutexes adaptively spun on. It appears to have a positive effect on performance on SMP across several workloads, including measurements of a 16% improvement on buildworld, and 30%+ improvement for MySQL using the supersmack benchmark with Giant over the network stack; a 6% improvement without Giant on the network stack (as a result of less giant contention). Revision Changes Path 1.413 +1 -0 src/sys/i386/conf/GENERIC From owner-cvs-all@FreeBSD.ORG Wed Aug 11 01:35:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E856E16A4CE; Wed, 11 Aug 2004 01:35:27 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.176]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8211243D62; Wed, 11 Aug 2004 01:35:27 +0000 (GMT) (envelope-from max@love2party.net) Received: from [212.227.126.161] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1Bui1W-0006dW-00; Wed, 11 Aug 2004 03:35:26 +0200 Received: from [217.83.12.117] (helo=donor.laier.local) by mrelayng.kundenserver.de with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id 1Bui1W-0005FE-00; Wed, 11 Aug 2004 03:35:26 +0200 From: Max Laier To: Maksim Yevmenkin Date: Wed, 11 Aug 2004 03:33:25 +0200 User-Agent: KMail/1.6.2 References: <200408110012.i7B0CRnp039953@repoman.freebsd.org> In-Reply-To: <200408110012.i7B0CRnp039953@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_tdXGBO/MaOZWwID"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408110333.33418.max@love2party.net> X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:61c499deaeeba3ba5be80f48ecc83056 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:35:28 -0000 --Boundary-02=_tdXGBO/MaOZWwID Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Wednesday 11 August 2004 02:12, Maksim Yevmenkin wrote: > emax 2004-08-11 00:12:27 UTC > > FreeBSD src repository > > Modified files: > sys/net if_tap.c > Log: > Set IFF_RUNNING flag on the interface as soon as the control device is > opened. Erm ... 1) IFF_RUNNING has a different meaning (for all I know) - "resources=20 allocated" i.e. address(es) assigned. See if_loop.c for instance. 2) What are these spl's for? You are not going to MFC that anyway as it wou= ld=20 be user visible. I recon a thread with this topic, but I think the outcome was that this is = not=20 a good thing to do. Can't find the thread though. =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 --Boundary-02=_tdXGBO/MaOZWwID Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBGXdtXyyEoT62BG0RAphhAJ9xzRmIJwvhV4qCU9u52DvvjReNEACfVU/1 gJlMDP5zxSpiPFt4CbMLM5I= =ELea -----END PGP SIGNATURE----- --Boundary-02=_tdXGBO/MaOZWwID-- From owner-cvs-all@FreeBSD.ORG Wed Aug 11 01:39:30 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F089316A4CE; Wed, 11 Aug 2004 01:39:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D43B643D53; Wed, 11 Aug 2004 01:39:29 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B1dTS6045982; Wed, 11 Aug 2004 01:39:29 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B1dTOd045981; Wed, 11 Aug 2004 01:39:29 GMT (envelope-from marcus) Message-Id: <200408110139.i7B1dTOd045981@repoman.freebsd.org> From: Joe Marcus Clarke Date: Wed, 11 Aug 2004 01:39:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.gnome.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:39:30 -0000 marcus 2004-08-11 01:39:29 UTC FreeBSD ports repository Modified files: Mk bsd.gnome.mk Log: Gack, forgot a '_' in the last commit. USE_GNOME will only work if gconf2 was explicitly requested. Use _USE_GNOME instead. Revision Changes Path 1.76 +2 -2 ports/Mk/bsd.gnome.mk From owner-cvs-all@FreeBSD.ORG Wed Aug 11 01:41:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBBDE16A4CE; Wed, 11 Aug 2004 01:41:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF8D343D5D; Wed, 11 Aug 2004 01:41:13 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B1fDnH046110; Wed, 11 Aug 2004 01:41:13 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B1fD0c046109; Wed, 11 Aug 2004 01:41:13 GMT (envelope-from marcus) Message-Id: <200408110141.i7B1fD0c046109@repoman.freebsd.org> From: Joe Marcus Clarke Date: Wed, 11 Aug 2004 01:41:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/quick-lounge-applet Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 01:41:14 -0000 marcus 2004-08-11 01:41:13 UTC FreeBSD ports repository Modified files: misc/quick-lounge-applet Makefile distinfo pkg-plist Log: Update to 2.1.2. Revision Changes Path 1.13 +3 -3 ports/misc/quick-lounge-applet/Makefile 1.8 +2 -2 ports/misc/quick-lounge-applet/distinfo 1.6 +5 -0 ports/misc/quick-lounge-applet/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 02:04:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4132216A4CE; Wed, 11 Aug 2004 02:04:34 +0000 (GMT) Received: from green.homeunix.org (pcp04371970pcs.nrockv01.md.comcast.net [69.140.223.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id D389543D41; Wed, 11 Aug 2004 02:04:33 +0000 (GMT) (envelope-from green@green.homeunix.org) Received: from green.homeunix.org (green@localhost [127.0.0.1]) by green.homeunix.org (8.13.1/8.13.1) with ESMTP id i7B24Xwa001325; Tue, 10 Aug 2004 22:04:33 -0400 (EDT) (envelope-from green@green.homeunix.org) Received: (from green@localhost) by green.homeunix.org (8.13.1/8.13.1/Submit) id i7B24W9X001324; Tue, 10 Aug 2004 22:04:32 -0400 (EDT) (envelope-from green) Date: Tue, 10 Aug 2004 22:04:31 -0400 From: Brian Fundakowski Feldman To: Max Laier Message-ID: <20040811020431.GA981@green.homeunix.org> References: <200408110012.i7B0CRnp039953@repoman.freebsd.org> <200408110333.33418.max@love2party.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408110333.33418.max@love2party.net> User-Agent: Mutt/1.5.6i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Maksim Yevmenkin cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 02:04:34 -0000 On Wed, Aug 11, 2004 at 03:33:25AM +0200, Max Laier wrote: > On Wednesday 11 August 2004 02:12, Maksim Yevmenkin wrote: > > emax 2004-08-11 00:12:27 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/net if_tap.c > > Log: > > Set IFF_RUNNING flag on the interface as soon as the control device is > > opened. > > Erm ... > 1) IFF_RUNNING has a different meaning (for all I know) - "resources > allocated" i.e. address(es) assigned. See if_loop.c for instance. > 2) What are these spl's for? You are not going to MFC that anyway as it would > be user visible. > > I recon a thread with this topic, but I think the outcome was that this is not > a good thing to do. Can't find the thread though. Having written a driver recently, the best I could find is that IFF_RUNNING essentially means not dead... -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-all@FreeBSD.ORG Wed Aug 11 02:31:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 768B116A4CE; Wed, 11 Aug 2004 02:31:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67BD543D45; Wed, 11 Aug 2004 02:31:33 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B2VXTV047363; Wed, 11 Aug 2004 02:31:33 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B2VXfY047362; Wed, 11 Aug 2004 02:31:33 GMT (envelope-from kuriyama) Message-Id: <200408110231.i7B2VXfY047362@repoman.freebsd.org> From: Jun Kuriyama Date: Wed, 11 Aug 2004 02:31:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/net-snmp Makefile distinfo pkg-plist ports/net-mgmt/net-snmp/files patch-aa patch-auto_nlist.c patch-diskio.c patch-freebsd.h patch-freebsd5.h patch-hr_storage.c patch-hr_swrun.c patch-ipv6.c patch-local:snmpconf ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 02:31:33 -0000 kuriyama 2004-08-11 02:31:33 UTC FreeBSD ports repository Modified files: net-mgmt/net-snmp Makefile distinfo pkg-plist net-mgmt/net-snmp/files patch-hr_storage.c patch-hr_swrun.c patch-ipv6.c patch-local:snmpconf patch-tcpTable.c Removed files: net-mgmt/net-snmp/files patch-aa patch-auto_nlist.c patch-diskio.c patch-freebsd.h patch-freebsd5.h patch-memory_freebsd2.c patch-udpTable.c patch-vmstat_freebsd2.c Log: - Upgrade to 5.1.2. Numerous patches are integrated into this release. Revision Changes Path 1.116 +5 -5 ports/net-mgmt/net-snmp/Makefile 1.27 +2 -2 ports/net-mgmt/net-snmp/distinfo 1.6 +0 -13 ports/net-mgmt/net-snmp/files/patch-aa (dead) 1.2 +0 -10 ports/net-mgmt/net-snmp/files/patch-auto_nlist.c (dead) 1.5 +0 -56 ports/net-mgmt/net-snmp/files/patch-diskio.c (dead) 1.2 +0 -11 ports/net-mgmt/net-snmp/files/patch-freebsd.h (dead) 1.2 +0 -22 ports/net-mgmt/net-snmp/files/patch-freebsd5.h (dead) 1.11 +13 -31 ports/net-mgmt/net-snmp/files/patch-hr_storage.c 1.7 +37 -54 ports/net-mgmt/net-snmp/files/patch-hr_swrun.c 1.3 +567 -75 ports/net-mgmt/net-snmp/files/patch-ipv6.c 1.4 +33 -42 ports/net-mgmt/net-snmp/files/patch-local:snmpconf 1.5 +0 -37 ports/net-mgmt/net-snmp/files/patch-memory_freebsd2.c (dead) 1.4 +2 -36 ports/net-mgmt/net-snmp/files/patch-tcpTable.c 1.2 +0 -25 ports/net-mgmt/net-snmp/files/patch-udpTable.c (dead) 1.2 +0 -14 ports/net-mgmt/net-snmp/files/patch-vmstat_freebsd2.c (dead) 1.37 +1 -0 ports/net-mgmt/net-snmp/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 02:35:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE0C816A4CF; Wed, 11 Aug 2004 02:35:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2E0943D49; Wed, 11 Aug 2004 02:35:06 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B2Z6tT047682; Wed, 11 Aug 2004 02:35:06 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B2Z6JR047681; Wed, 11 Aug 2004 02:35:06 GMT (envelope-from marcel) Message-Id: <200408110235.i7B2Z6JR047681@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 11 Aug 2004 02:35:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/alpha/alpha elf_machdep.c src/sys/amd64/amd64 elf_machdep.c src/sys/arm/arm elf_machdep.c src/sys/compat/ia32 ia32_sysvec.c src/sys/i386/i386 elf_machdep.c src/sys/ia64/ia64... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 02:35:06 -0000 marcel 2004-08-11 02:35:06 UTC FreeBSD src repository Modified files: sys/alpha/alpha elf_machdep.c sys/amd64/amd64 elf_machdep.c sys/arm/arm elf_machdep.c sys/compat/ia32 ia32_sysvec.c sys/i386/i386 elf_machdep.c sys/ia64/ia64 elf_machdep.c machdep.c sys/ia64/include md_var.h sys/kern imgact_elf.c sys/powerpc/powerpc elf_machdep.c sys/sparc64/sparc64 elf_machdep.c sys/sys imgact_elf.h Log: Add __elfN(dump_thread). This function is called from __elfN(coredump) to allow dumping per-thread machine specific notes. On ia64 we use this function to flush the dirty registers onto the backingstore before we write out the PRSTATUS notes. Tested on: alpha, amd64, i386, ia64 & sparc64 Not tested on: arm, powerpc Revision Changes Path 1.19 +7 -0 src/sys/alpha/alpha/elf_machdep.c 1.22 +8 -0 src/sys/amd64/amd64/elf_machdep.c 1.3 +8 -0 src/sys/arm/arm/elf_machdep.c 1.19 +8 -0 src/sys/compat/ia32/ia32_sysvec.c 1.20 +8 -0 src/sys/i386/i386/elf_machdep.c 1.19 +28 -53 src/sys/ia64/ia64/elf_machdep.c 1.183 +28 -23 src/sys/ia64/ia64/machdep.c 1.18 +2 -0 src/sys/ia64/include/md_var.h 1.155 +5 -2 src/sys/kern/imgact_elf.c 1.22 +8 -0 src/sys/powerpc/powerpc/elf_machdep.c 1.19 +8 -0 src/sys/sparc64/sparc64/elf_machdep.c 1.27 +3 -0 src/sys/sys/imgact_elf.h From owner-cvs-all@FreeBSD.ORG Wed Aug 11 03:30:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B62E16A4CE; Wed, 11 Aug 2004 03:30:33 +0000 (GMT) Received: from toxic.magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7275C43D41; Wed, 11 Aug 2004 03:30:33 +0000 (GMT) (envelope-from adamw@magnesium.net) Received: by toxic.magnesium.net (Postfix, from userid 1252) id 4B688DA85E; Tue, 10 Aug 2004 20:30:33 -0700 (PDT) Date: Tue, 10 Aug 2004 23:30:33 -0400 From: Adam Weinberger To: Joe Marcus Clarke Message-ID: <20040811033033.GW96458@toxic.magnesium.net> Mail-Followup-To: Adam Weinberger , Joe Marcus Clarke , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200408110139.i7B1dTOd045981@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408110139.i7B1dTOd045981@repoman.freebsd.org> X-Editor: Vim 6.2 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-URL: http://www.vectors.cx X-ASL: 6/m/behind you User-Agent: Mutt/1.5.4i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/Mk bsd.gnome.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 03:30:34 -0000 >> (08.10.2004 @ 2139 PST): Joe Marcus Clarke said, in 0.3K: << > marcus 2004-08-11 01:39:29 UTC > > FreeBSD ports repository > > Modified files: > Mk bsd.gnome.mk > Log: > Gack, forgot a '_' in the last commit. USE_GNOME will only work if gconf2 > was explicitly requested. Use _USE_GNOME instead. > > Revision Changes Path > 1.76 +2 -2 ports/Mk/bsd.gnome.mk >> end of "cvs commit: ports/Mk bsd.gnome.mk" from Joe Marcus Clarke << Shoot. Sorry about that... _USE_GNOME is what I was looking for all along (not _USE_GNOME_ALL). Thanks for catching this, marcus and lofi! # Adam -- Adam Weinberger adamw@magnesium.net || adamw@FreeBSD.org adamw@vectors.cx || adamw@gnome.org http://www.vectors.cx From owner-cvs-all@FreeBSD.ORG Wed Aug 11 03:33:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECD3616A4CE; Wed, 11 Aug 2004 03:33:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D07E843D54; Wed, 11 Aug 2004 03:33:32 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B3XWVZ049407; Wed, 11 Aug 2004 03:33:32 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B3XWaO049406; Wed, 11 Aug 2004 03:33:32 GMT (envelope-from rwatson) Message-Id: <200408110333.i7B3XWaO049406@repoman.freebsd.org> From: Robert Watson Date: Wed, 11 Aug 2004 03:33:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/random randomdev_soft.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 03:33:33 -0000 rwatson 2004-08-11 03:33:32 UTC FreeBSD src repository Modified files: sys/dev/random randomdev_soft.c Log: Perform a lockless read to test whether an entropy havesting fifo is full, avoiding the cost of mutex operations if it is. We re-test once the mutex is acquired to make sure it's still true before doing the -modify-write part of the read-modify-write. Note that due to the maximum fifo depth being pretty deep, this is unlikely to improve harvesting performance yet. Approved by: markm Revision Changes Path 1.4 +4 -0 src/sys/dev/random/randomdev_soft.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 03:38:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F372416A4CF; Wed, 11 Aug 2004 03:38:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1B2C43D54; Wed, 11 Aug 2004 03:38:55 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B3ctxl049604; Wed, 11 Aug 2004 03:38:55 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B3ctoM049603; Wed, 11 Aug 2004 03:38:55 GMT (envelope-from rwatson) Message-Id: <200408110338.i7B3ctoM049603@repoman.freebsd.org> From: Robert Watson Date: Wed, 11 Aug 2004 03:38:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb if_aue.c if_axe.c if_cue.c if_kue.c if_rue.c if_udav.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 03:38:56 -0000 rwatson 2004-08-11 03:38:55 UTC FreeBSD src repository Modified files: sys/dev/usb if_aue.c if_axe.c if_cue.c if_kue.c if_rue.c if_udav.c Log: Mark USB ethernet devices as IFF_NEEDSGIANT, since the USB framework if_start routines cannot currently be entered without Giant. When the kernel is running with debug.mpsafenet != 0, this will defer if_start execution to a task queue thread holding Giant, which may introduce additional latency, but avoid incorrect execution. Suggested by: dfr Revision Changes Path 1.86 +2 -1 src/sys/dev/usb/if_aue.c 1.21 +2 -1 src/sys/dev/usb/if_axe.c 1.52 +2 -1 src/sys/dev/usb/if_cue.c 1.58 +2 -1 src/sys/dev/usb/if_kue.c 1.16 +2 -1 src/sys/dev/usb/if_rue.c 1.8 +2 -1 src/sys/dev/usb/if_udav.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 03:43:10 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9849216A4CE; Wed, 11 Aug 2004 03:43:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C0C643D53; Wed, 11 Aug 2004 03:43:10 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B3hA2q049776; Wed, 11 Aug 2004 03:43:10 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B3hA0G049775; Wed, 11 Aug 2004 03:43:10 GMT (envelope-from rwatson) Message-Id: <200408110343.i7B3hA0G049775@repoman.freebsd.org> From: Robert Watson Date: Wed, 11 Aug 2004 03:43:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern uipc_socket.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 03:43:10 -0000 rwatson 2004-08-11 03:43:10 UTC FreeBSD src repository Modified files: sys/kern uipc_socket.c Log: Replace a reference to splnet() with a reference to locking in a comment. Revision Changes Path 1.207 +1 -1 src/sys/kern/uipc_socket.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 03:56:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7466416A4CE; Wed, 11 Aug 2004 03:56:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5746343D45; Wed, 11 Aug 2004 03:56:06 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B3u6UC050152; Wed, 11 Aug 2004 03:56:06 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B3u6dT050151; Wed, 11 Aug 2004 03:56:06 GMT (envelope-from nork) Message-Id: <200408110356.i7B3u6dT050151@repoman.freebsd.org> From: Norikatsu Shigemura Date: Wed, 11 Aug 2004 03:56:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/mozilla-jlp Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 03:56:06 -0000 nork 2004-08-11 03:56:06 UTC FreeBSD ports repository Modified files: japanese/mozilla-jlp Makefile distinfo Log: Update to 1.7.2. PR: ports/70072 Submitted by: Fortune (maintainer) Revision Changes Path 1.58 +3 -3 ports/japanese/mozilla-jlp/Makefile 1.41 +2 -2 ports/japanese/mozilla-jlp/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 11 04:30:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83CA516A4CE; Wed, 11 Aug 2004 04:30:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6555043D53; Wed, 11 Aug 2004 04:30:49 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B4Un35051010; Wed, 11 Aug 2004 04:30:49 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B4UneQ051009; Wed, 11 Aug 2004 04:30:49 GMT (envelope-from scottl) Message-Id: <200408110430.i7B4UneQ051009@repoman.freebsd.org> From: Scott Long Date: Wed, 11 Aug 2004 04:30:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_vr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 04:30:49 -0000 scottl 2004-08-11 04:30:49 UTC FreeBSD src repository Modified files: sys/pci if_vr.c Log: Revert rev 1.93 and replace it by grabbing the vr lock before calling mii_pollstat(). The previous was causing the vr lock to recurse. PR: kern/70189 Revision Changes Path 1.94 +2 -2 src/sys/pci/if_vr.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 04:35:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D33C116A4CE; Wed, 11 Aug 2004 04:35:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B5B7743D58; Wed, 11 Aug 2004 04:35:20 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B4ZKwq051129; Wed, 11 Aug 2004 04:35:20 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B4ZKnZ051128; Wed, 11 Aug 2004 04:35:20 GMT (envelope-from rwatson) Message-Id: <200408110435.i7B4ZKnZ051128@repoman.freebsd.org> From: Robert Watson Date: Wed, 11 Aug 2004 04:35:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet in_pcb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 04:35:21 -0000 rwatson 2004-08-11 04:35:20 UTC FreeBSD src repository Modified files: sys/netinet in_pcb.c Log: Assert the locks of inpcbinfo's and inpcb's passed into in_pcbconnect() and in_pcbconnect_setup(), since these functions frob the port and address state of inpcbs. Revision Changes Path 1.153 +6 -0 src/sys/netinet/in_pcb.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 04:44:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CE8516A4CE; Wed, 11 Aug 2004 04:44:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FCAD43D3F; Wed, 11 Aug 2004 04:44:49 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B4inxg051381; Wed, 11 Aug 2004 04:44:49 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B4inGH051380; Wed, 11 Aug 2004 04:44:49 GMT (envelope-from rwatson) Message-Id: <200408110444.i7B4inGH051380@repoman.freebsd.org> From: Robert Watson Date: Wed, 11 Aug 2004 04:44:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 04:44:49 -0000 rwatson 2004-08-11 04:44:49 UTC FreeBSD src repository Modified files: sys/conf NOTES Log: Add 'axe' interface to NOTES so it is built with LINT as with other USB network interface device drivers. Revision Changes Path 1.1255 +6 -0 src/sys/conf/NOTES From owner-cvs-all@FreeBSD.ORG Wed Aug 11 05:06:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31F6D16A4CE; Wed, 11 Aug 2004 05:06:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14F1D43D48; Wed, 11 Aug 2004 05:06:31 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B56UJm052027; Wed, 11 Aug 2004 05:06:30 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B56U8Q052026; Wed, 11 Aug 2004 05:06:30 GMT (envelope-from marcus) Message-Id: <200408110506.i7B56U8Q052026@repoman.freebsd.org> From: Joe Marcus Clarke Date: Wed, 11 Aug 2004 05:06:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.gnome.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 05:06:31 -0000 marcus 2004-08-11 05:06:30 UTC FreeBSD ports repository Modified files: Mk bsd.gnome.mk Log: Use some more hackery to make sure _USE_GNOME is actually defined, and that gconf2 is actually one of the requested components. Reported by: INDEX build script Revision Changes Path 1.77 +3 -2 ports/Mk/bsd.gnome.mk From owner-cvs-all@FreeBSD.ORG Wed Aug 11 05:20:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E412216A4CE; Wed, 11 Aug 2004 05:20:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C539843D39; Wed, 11 Aug 2004 05:20:25 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B5KPrP052716; Wed, 11 Aug 2004 05:20:25 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B5KPNC052715; Wed, 11 Aug 2004 05:20:25 GMT (envelope-from bmah) Message-Id: <200408110520.i7B5KPNC052715@repoman.freebsd.org> From: "Bruce A. Mah" Date: Wed, 11 Aug 2004 05:20:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 05:20:26 -0000 bmah 2004-08-11 05:20:25 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Fix a few nits. Mostly grammar and punctuation changes, although some minor content changes were made to the acpi_asus(4) and acpi_toshiba(4) notes. Revision Changes Path 1.758 +20 -22 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 05:29:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36B7B16A4CE; Wed, 11 Aug 2004 05:29:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07C4643D45; Wed, 11 Aug 2004 05:29:14 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B5TDAr052916; Wed, 11 Aug 2004 05:29:13 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B5TD4F052915; Wed, 11 Aug 2004 05:29:13 GMT (envelope-from marcel) Message-Id: <200408110529.i7B5TD4F052915@repoman.freebsd.org> From: Marcel Moolenaar Date: Wed, 11 Aug 2004 05:29:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 05:29:14 -0000 marcel 2004-08-11 05:29:13 UTC FreeBSD src repository Modified files: sys/ia64/ia64 machdep.c Log: In set_regs(), flush the dirty registers onto the backingstore before we update the registers. That way we don't have any dirty registers to worry about and also know that bsp=bspstore, which makes updating the RSE related registers predictable. This is not the end of it. We need more validity checks, but for now this allows us to complete the gdb testsuite without crashing the kernel. Revision Changes Path 1.184 +3 -0 src/sys/ia64/ia64/machdep.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 06:17:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2365C16A4CF; Wed, 11 Aug 2004 06:17:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F267F43D46; Wed, 11 Aug 2004 06:17:02 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B6H2Gu054186; Wed, 11 Aug 2004 06:17:02 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B6H21C054185; Wed, 11 Aug 2004 06:17:02 GMT (envelope-from ru) Message-Id: <200408110617.i7B6H21C054185@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 11 Aug 2004 06:17:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 06:17:03 -0000 ru 2004-08-11 06:17:02 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: I was born in the USSR. Revision Changes Path 1.132 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Wed Aug 11 06:44:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFB1416A4CE; Wed, 11 Aug 2004 06:44:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0A8E43D48; Wed, 11 Aug 2004 06:44:24 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B6iO4e054854; Wed, 11 Aug 2004 06:44:24 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B6iO2O054853; Wed, 11 Aug 2004 06:44:24 GMT (envelope-from vs) Message-Id: <200408110644.i7B6iO2O054853@repoman.freebsd.org> From: Volker Stolz Date: Wed, 11 Aug 2004 06:44:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/milter-greylist Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 06:44:24 -0000 vs 2004-08-11 06:44:24 UTC FreeBSD ports repository Modified files: mail/milter-greylist Makefile distinfo Log: Update to 1.5.6 PR: ports/70260 Submitted by: Cyril Guibourg (maintainer) Revision Changes Path 1.8 +1 -2 ports/mail/milter-greylist/Makefile 1.5 +2 -2 ports/mail/milter-greylist/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 11 06:44:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 288A316A4CE; Wed, 11 Aug 2004 06:44:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0796D43D58; Wed, 11 Aug 2004 06:44:37 +0000 (GMT) (envelope-from demon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B6iafn054883; Wed, 11 Aug 2004 06:44:36 GMT (envelope-from demon@repoman.freebsd.org) Received: (from demon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B6iaLH054882; Wed, 11 Aug 2004 06:44:36 GMT (envelope-from demon) Message-Id: <200408110644.i7B6iaLH054882@repoman.freebsd.org> From: Dmitry Sivachenko Date: Wed, 11 Aug 2004 06:44:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 06:44:37 -0000 demon 2004-08-11 06:44:36 UTC FreeBSD src repository (ports committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Correct the name of the country I was born in. Revision Changes Path 1.133 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Wed Aug 11 06:51:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B768816A4CE; Wed, 11 Aug 2004 06:51:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96CBF43D2F; Wed, 11 Aug 2004 06:51:38 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B6pcwH055115; Wed, 11 Aug 2004 06:51:38 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B6pcac055114; Wed, 11 Aug 2004 06:51:38 GMT (envelope-from vs) Message-Id: <200408110651.i7B6pcac055114@repoman.freebsd.org> From: Volker Stolz Date: Wed, 11 Aug 2004 06:51:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/f-prot-sig Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 06:51:38 -0000 vs 2004-08-11 06:51:38 UTC FreeBSD ports repository Modified files: security/f-prot-sig Makefile distinfo Log: Update to 20040810 - W32/Mydoom.N@mm - W32/Mydoom.P@mm - W32/Bagle.AI@mm - W32/Sober.I@mm - W32/Mydoom.Q@mm PR: ports/70274 Submitted by: Tim Bishop (maintainer) Revision Changes Path 1.20 +1 -1 ports/security/f-prot-sig/Makefile 1.16 +2 -2 ports/security/f-prot-sig/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 11 06:54:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49CAF16A4E8; Wed, 11 Aug 2004 06:54:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27F0143D45; Wed, 11 Aug 2004 06:54:38 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B6sb2X055222; Wed, 11 Aug 2004 06:54:37 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B6sbJR055221; Wed, 11 Aug 2004 06:54:37 GMT (envelope-from maho) Message-Id: <200408110654.i7B6sbJR055221@repoman.freebsd.org> From: Maho Nakata Date: Wed, 11 Aug 2004 06:54:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-1.1 Makefile ports/editors/openoffice-1.1-devel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 06:54:38 -0000 maho 2004-08-11 06:54:37 UTC FreeBSD ports repository Modified files: editors/openoffice-1.1 Makefile editors/openoffice-1.1-devel Makefile Log: Add WITHOUT_MOZILLA flag. So that we can select with/without mozilla connectivity. Revision Changes Path 1.150 +5 -4 ports/editors/openoffice-1.1-devel/Makefile 1.156 +7 -6 ports/editors/openoffice-1.1/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 07:09:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E0B716A4CE; Wed, 11 Aug 2004 07:09:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E57743D41; Wed, 11 Aug 2004 07:09:44 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B79hL7055701; Wed, 11 Aug 2004 07:09:43 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B79h2X055700; Wed, 11 Aug 2004 07:09:43 GMT (envelope-from harti) Message-Id: <200408110709.i7B79h2X055700@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 07:09:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man5 make.conf.5 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 07:09:44 -0000 harti 2004-08-11 07:09:43 UTC FreeBSD src repository Modified files: share/man/man5 make.conf.5 Log: Yet another place where we can document that MAKEOBJDIRPREFIX and MAKEOBJDIR are, and have always been, environment variables. Requested by: kris Revision Changes Path 1.89 +8 -0 src/share/man/man5/make.conf.5 From owner-cvs-all@FreeBSD.ORG Wed Aug 11 07:14:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37EC916A4CE; Wed, 11 Aug 2004 07:14:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 177A643D1D; Wed, 11 Aug 2004 07:14:12 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B7EBrk055876; Wed, 11 Aug 2004 07:14:11 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B7EBhd055875; Wed, 11 Aug 2004 07:14:11 GMT (envelope-from harti) Message-Id: <200408110714.i7B7EBhd055875@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 07:14:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/examples/etc make.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 07:14:12 -0000 harti 2004-08-11 07:14:11 UTC FreeBSD src repository Modified files: share/examples/etc make.conf Log: Document the correct use of MAKEOBJDIRPREFIX and MAKEOBJDIR. Requested by: kris Revision Changes Path 1.228 +6 -0 src/share/examples/etc/make.conf From owner-cvs-all@FreeBSD.ORG Wed Aug 11 07:15:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F3AE16A4CE; Wed, 11 Aug 2004 07:15:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E81B43D2D; Wed, 11 Aug 2004 07:15:37 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B7Fb2e056006; Wed, 11 Aug 2004 07:15:37 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B7FadJ056005; Wed, 11 Aug 2004 07:15:36 GMT (envelope-from maho) Message-Id: <200408110715.i7B7FadJ056005@repoman.freebsd.org> From: Maho Nakata Date: Wed, 11 Aug 2004 07:15:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-1.1 Makefile distinfo ports/editors/openoffice-1.1-devel Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 07:15:37 -0000 maho 2004-08-11 07:15:36 UTC FreeBSD ports repository Modified files: editors/openoffice-1.1 Makefile distinfo editors/openoffice-1.1-devel Makefile distinfo Log: Add Turkish localized help Revision Changes Path 1.151 +4 -2 ports/editors/openoffice-1.1-devel/Makefile 1.38 +2 -2 ports/editors/openoffice-1.1-devel/distinfo 1.157 +4 -2 ports/editors/openoffice-1.1/Makefile 1.40 +2 -0 ports/editors/openoffice-1.1/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 11 07:52:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD7F016A4CE; Wed, 11 Aug 2004 07:52:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E32C43D5E; Wed, 11 Aug 2004 07:52:12 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B7qCav057128; Wed, 11 Aug 2004 07:52:12 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B7qCpk057127; Wed, 11 Aug 2004 07:52:12 GMT (envelope-from pav) Message-Id: <200408110752.i7B7qCpk057127@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 11 Aug 2004 07:52:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio Makefile ports/audio/mac Makefile distinfo pkg-descr pkg-plist ports/audio/mac/files patch-src-MACLib-Assembly-Assembly.hpatch-src-Shared-NoWindows.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 07:52:12 -0000 pav 2004-08-11 07:52:12 UTC FreeBSD ports repository Modified files: audio Makefile Added files: audio/mac Makefile distinfo pkg-descr pkg-plist audio/mac/files patch-src-MACLib-APEInfo.cpp patch-src-MACLib-APETag.cpp patch-src-MACLib-Assembly-Assembly.h patch-src-MACLib-MACLib.cpp patch-src-MACLib-WAVInputSource.cpp patch-src-Shared-NoWindows.h Log: Add mac, Monkey's Audio Codec which was recently released in source code. It contain a library and an executable compressor/decompressor of .ape files. Does not build under 4.x, we hit the wall with missing wcstol(). Working patches would be welcomed. PR: ports/70153 Submitted by: Martin Dieringer Revision Changes Path 1.545 +1 -0 ports/audio/Makefile 1.1 +38 -0 ports/audio/mac/Makefile (new) 1.1 +2 -0 ports/audio/mac/distinfo (new) 1.1 +11 -0 ports/audio/mac/files/patch-src-MACLib-APEInfo.cpp (new) 1.1 +20 -0 ports/audio/mac/files/patch-src-MACLib-APETag.cpp (new) 1.1 +11 -0 ports/audio/mac/files/patch-src-MACLib-Assembly-Assembly.h (new) 1.1 +20 -0 ports/audio/mac/files/patch-src-MACLib-MACLib.cpp (new) 1.1 +11 -0 ports/audio/mac/files/patch-src-MACLib-WAVInputSource.cpp (new) 1.1 +11 -0 ports/audio/mac/files/patch-src-Shared-NoWindows.h (new) 1.1 +9 -0 ports/audio/mac/pkg-descr (new) 1.1 +24 -0 ports/audio/mac/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 07:52:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C2D9716A4CE; Wed, 11 Aug 2004 07:52:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A327A43D31; Wed, 11 Aug 2004 07:52:54 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B7qsRD057169; Wed, 11 Aug 2004 07:52:54 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B7qsHT057168; Wed, 11 Aug 2004 07:52:54 GMT (envelope-from pav) Message-Id: <200408110752.i7B7qsHT057168@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 11 Aug 2004 07:52:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 07:52:55 -0000 pav 2004-08-11 07:52:54 UTC FreeBSD ports repository Modified files: . modules Log: mac --> ports/audio/mac Revision Changes Path 1.10868 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 11 08:09:51 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AC3F16A4CE; Wed, 11 Aug 2004 08:09:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3D3D43D5C; Wed, 11 Aug 2004 08:09:50 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B89oAi057674; Wed, 11 Aug 2004 08:09:50 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B89oJc057673; Wed, 11 Aug 2004 08:09:50 GMT (envelope-from vs) Message-Id: <200408110809.i7B89oJc057673@repoman.freebsd.org> From: Volker Stolz Date: Wed, 11 Aug 2004 08:09:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/scilab Makefile distinfo pkg-plist ports/math/scilab/files patch-ba patch-bb patch-bc patch-bf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 08:09:51 -0000 vs 2004-08-11 08:09:50 UTC FreeBSD ports repository Modified files: math/scilab Makefile distinfo pkg-plist math/scilab/files patch-ba patch-bb Removed files: math/scilab/files patch-bc patch-bf Log: Update to 3.0 PR: ports/70175 Submitted by: Jean-Sebastien Roy (maintainer) Revision Changes Path 1.22 +8 -4 ports/math/scilab/Makefile 1.7 +2 -2 ports/math/scilab/distinfo 1.4 +3 -3 ports/math/scilab/files/patch-ba 1.5 +11 -11 ports/math/scilab/files/patch-bb 1.2 +0 -11 ports/math/scilab/files/patch-bc (dead) 1.2 +0 -12 ports/math/scilab/files/patch-bf (dead) 1.7 +13144 -8690 ports/math/scilab/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 08:23:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3102716A4CE; Wed, 11 Aug 2004 08:23:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1046843D54; Wed, 11 Aug 2004 08:23:49 +0000 (GMT) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B8NmR1058033; Wed, 11 Aug 2004 08:23:48 GMT (envelope-from osa@repoman.freebsd.org) Received: (from osa@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B8Nm1U058032; Wed, 11 Aug 2004 08:23:48 GMT (envelope-from osa) Message-Id: <200408110823.i7B8Nm1U058032@repoman.freebsd.org> From: "Sergey A. Osokin" Date: Wed, 11 Aug 2004 08:23:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/rvm/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 08:23:49 -0000 osa 2004-08-11 08:23:48 UTC FreeBSD ports repository Removed files: devel/rvm/files patch-aa Log: Remove needless patch. Revision Changes Path 1.2 +0 -14 ports/devel/rvm/files/patch-aa (dead) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 08:27:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEC8116A4CE; Wed, 11 Aug 2004 08:27:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCC5143D41; Wed, 11 Aug 2004 08:27:32 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B8RWEc058168; Wed, 11 Aug 2004 08:27:32 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B8RWJk058167; Wed, 11 Aug 2004 08:27:32 GMT (envelope-from krion) Message-Id: <200408110827.i7B8RWJk058167@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 11 Aug 2004 08:27:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/gsasl Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 08:27:33 -0000 krion 2004-08-11 08:27:32 UTC FreeBSD ports repository Modified files: security/gsasl Makefile distinfo pkg-plist Log: Update to 0.1.4 Revision Changes Path 1.18 +1 -1 ports/security/gsasl/Makefile 1.11 +2 -2 ports/security/gsasl/distinfo 1.7 +16 -0 ports/security/gsasl/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 08:28:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63B8A16A4D0; Wed, 11 Aug 2004 08:28:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 406F643D41; Wed, 11 Aug 2004 08:28:27 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B8SRxS058219; Wed, 11 Aug 2004 08:28:27 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B8SREs058218; Wed, 11 Aug 2004 08:28:27 GMT (envelope-from ijliao) Message-Id: <200408110828.i7B8SREs058218@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 11 Aug 2004 08:28:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-SVN-Mirror Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 08:28:27 -0000 ijliao 2004-08-11 08:28:27 UTC FreeBSD ports repository Modified files: devel/p5-SVN-Mirror Makefile distinfo pkg-plist Log: upgrade to 0.41 pass maintainership PR: 70125 Submitted by: Rong-En Fan (new maintainer) Approved by: old maintainer Revision Changes Path 1.6 +2 -2 ports/devel/p5-SVN-Mirror/Makefile 1.5 +2 -2 ports/devel/p5-SVN-Mirror/distinfo 1.4 +3 -2 ports/devel/p5-SVN-Mirror/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 08:31:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33C3016A4CF; Wed, 11 Aug 2004 08:31:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2834C43D46; Wed, 11 Aug 2004 08:31:03 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B8V3q4058387; Wed, 11 Aug 2004 08:31:03 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B8V3lv058386; Wed, 11 Aug 2004 08:31:03 GMT (envelope-from ijliao) Message-Id: <200408110831.i7B8V3lv058386@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 11 Aug 2004 08:31:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/svk Makefile distinfo pkg-message pkg-plist ports/devel/svk/files patch-bin-svk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 08:31:03 -0000 ijliao 2004-08-11 08:31:03 UTC FreeBSD ports repository Modified files: devel/svk Makefile distinfo pkg-plist devel/svk/files patch-bin-svk Added files: devel/svk pkg-message Log: upgrade to 0.18 pass maintainership PR: 70126 Submitted by: Rong-En Fan (new maintainer) Reviewed by: old maintainer Revision Changes Path 1.8 +12 -4 ports/devel/svk/Makefile 1.6 +2 -2 ports/devel/svk/distinfo 1.2 +1 -1 ports/devel/svk/files/patch-bin-svk 1.1 +8 -0 ports/devel/svk/pkg-message (new) 1.3 +1 -0 ports/devel/svk/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 08:35:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8260416A4CE; Wed, 11 Aug 2004 08:35:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FCCD43D5A; Wed, 11 Aug 2004 08:35:45 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B8Zjio058537; Wed, 11 Aug 2004 08:35:45 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B8ZjCM058536; Wed, 11 Aug 2004 08:35:45 GMT (envelope-from ijliao) Message-Id: <200408110835.i7B8ZjCM058536@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 11 Aug 2004 08:35:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-SVN-Simple Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 08:35:45 -0000 ijliao 2004-08-11 08:35:45 UTC FreeBSD ports repository Modified files: devel/p5-SVN-Simple Makefile Log: unbreak pass maintainership PR: 70278 Submitted by: Rong-En Fan (new maintainer) Reviewed by: old maintainer Revision Changes Path 1.3 +1 -3 ports/devel/p5-SVN-Simple/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 08:40:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0A6816A4CE; Wed, 11 Aug 2004 08:40:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADF9143D46; Wed, 11 Aug 2004 08:40:38 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B8ec2X058701; Wed, 11 Aug 2004 08:40:38 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B8ec35058700; Wed, 11 Aug 2004 08:40:38 GMT (envelope-from ijliao) Message-Id: <200408110840.i7B8ec35058700@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 11 Aug 2004 08:40:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-SVN-Mirror Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 08:40:39 -0000 ijliao 2004-08-11 08:40:38 UTC FreeBSD ports repository Modified files: devel/p5-SVN-Mirror Makefile Log: fix depend list PR: 70291 Submitted by: maintainer Revision Changes Path 1.7 +5 -4 ports/devel/p5-SVN-Mirror/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 08:43:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B28616A4CF; Wed, 11 Aug 2004 08:43:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 497EB43D55; Wed, 11 Aug 2004 08:43:17 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B8hHov058809; Wed, 11 Aug 2004 08:43:17 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B8hHSW058808; Wed, 11 Aug 2004 08:43:17 GMT (envelope-from ijliao) Message-Id: <200408110843.i7B8hHSW058808@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 11 Aug 2004 08:43:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Module-ScanDeps Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 08:43:17 -0000 ijliao 2004-08-11 08:43:17 UTC FreeBSD ports repository Modified files: devel/p5-Module-ScanDeps Makefile distinfo Log: upgrade to 0.46 pass maintainership PR: 70141 Submitted by: Rong-En Fan (new maintainer) Reviewed by: old maintainer Revision Changes Path 1.4 +2 -2 ports/devel/p5-Module-ScanDeps/Makefile 1.5 +2 -2 ports/devel/p5-Module-ScanDeps/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 11 08:45:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20EB416A4CE; Wed, 11 Aug 2004 08:45:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13D2B43D5A; Wed, 11 Aug 2004 08:45:56 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B8jtwe058956; Wed, 11 Aug 2004 08:45:55 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B8jtDS058955; Wed, 11 Aug 2004 08:45:55 GMT (envelope-from maho) Message-Id: <200408110845.i7B8jtDS058955@repoman.freebsd.org> From: Maho Nakata Date: Wed, 11 Aug 2004 08:45:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-1.1/files patch-odk+configure.pl patch-odk+setsdkenv_unix.in ports/editors/openoffice-1.1-devel/files patch-odk+configure.pl patch-odk+setsdkenv_unix.in patch-odk+settings+settings.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 08:45:56 -0000 maho 2004-08-11 08:45:55 UTC FreeBSD ports repository Modified files: editors/openoffice-1.1/files patch-odk+setsdkenv_unix.in patch-odk+settings+settings.mk editors/openoffice-1.1-devel/files patch-odk+setsdkenv_unix.in patch-odk+settings+settings.mk Added files: editors/openoffice-1.1/files patch-odk+configure.pl editors/openoffice-1.1-devel/files patch-odk+configure.pl Log: Better support for SDK, and now have IZ #24142. Revision Changes Path 1.1 +44 -0 ports/editors/openoffice-1.1-devel/files/patch-odk+configure.pl (new) 1.2 +2 -0 ports/editors/openoffice-1.1-devel/files/patch-odk+setsdkenv_unix.in 1.2 +2 -0 ports/editors/openoffice-1.1-devel/files/patch-odk+settings+settings.mk 1.1 +44 -0 ports/editors/openoffice-1.1/files/patch-odk+configure.pl (new) 1.2 +2 -0 ports/editors/openoffice-1.1/files/patch-odk+setsdkenv_unix.in 1.2 +2 -0 ports/editors/openoffice-1.1/files/patch-odk+settings+settings.mk From owner-cvs-all@FreeBSD.ORG Wed Aug 11 08:46:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C4A916A4CE; Wed, 11 Aug 2004 08:46:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B8E543D5D; Wed, 11 Aug 2004 08:46:34 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B8kY2F059002; Wed, 11 Aug 2004 08:46:34 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B8kY9e059001; Wed, 11 Aug 2004 08:46:34 GMT (envelope-from ijliao) Message-Id: <200408110846.i7B8kY9e059001@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 11 Aug 2004 08:46:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-PAR Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 08:46:34 -0000 ijliao 2004-08-11 08:46:34 UTC FreeBSD ports repository Modified files: devel/p5-PAR Makefile distinfo pkg-plist Log: upgrade to 0.85 pass maintainership PR: 70142 Submitted by: Rong-En Fan (new maintainer) Reviewed by: old maintainer Revision Changes Path 1.7 +6 -5 ports/devel/p5-PAR/Makefile 1.5 +2 -2 ports/devel/p5-PAR/distinfo 1.3 +2 -2 ports/devel/p5-PAR/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 08:46:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 031D616A4CF; Wed, 11 Aug 2004 08:46:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D007A43D1F; Wed, 11 Aug 2004 08:46:47 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B8klRK059031; Wed, 11 Aug 2004 08:46:47 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B8klNv059030; Wed, 11 Aug 2004 08:46:47 GMT (envelope-from vs) Message-Id: <200408110846.i7B8klNv059030@repoman.freebsd.org> From: Volker Stolz Date: Wed, 11 Aug 2004 08:46:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/irc/kvirc Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 08:46:48 -0000 vs 2004-08-11 08:46:47 UTC FreeBSD ports repository Modified files: irc/kvirc Makefile Log: Nitpick: Don't quote COMMENT Approved by: maintainer Revision Changes Path 1.38 +1 -1 ports/irc/kvirc/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 08:48:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 171B816A4CE; Wed, 11 Aug 2004 08:48:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E805343D46; Wed, 11 Aug 2004 08:48:16 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B8mGIS059088; Wed, 11 Aug 2004 08:48:16 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B8mGte059087; Wed, 11 Aug 2004 08:48:16 GMT (envelope-from ijliao) Message-Id: <200408110848.i7B8mGte059087@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 11 Aug 2004 08:48:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Locale-Maketext-Simple Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 08:48:17 -0000 ijliao 2004-08-11 08:48:16 UTC FreeBSD ports repository Modified files: devel/p5-Locale-Maketext-Simple Makefile distinfo Log: upgrade to 0.12 pass maintainership PR: 70140 Submitted by: Rong-En Fan (new maintainer) Reviewed by: old maintainer Revision Changes Path 1.4 +2 -2 ports/devel/p5-Locale-Maketext-Simple/Makefile 1.4 +2 -2 ports/devel/p5-Locale-Maketext-Simple/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 11 09:04:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 097BF16A4CE; Wed, 11 Aug 2004 09:04:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC38A43D49; Wed, 11 Aug 2004 09:04:10 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7B94AfX059501; Wed, 11 Aug 2004 09:04:10 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7B94APA059500; Wed, 11 Aug 2004 09:04:10 GMT (envelope-from ijliao) Message-Id: <200408110904.i7B94APA059500@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 11 Aug 2004 09:04:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/chinese/p5-Encode-HanConvert Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 09:04:11 -0000 ijliao 2004-08-11 09:04:10 UTC FreeBSD ports repository Modified files: chinese/p5-Encode-HanConvert Makefile Log: pass maintainership Revision Changes Path 1.7 +1 -1 ports/chinese/p5-Encode-HanConvert/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 10:01:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7758316A4CE; Wed, 11 Aug 2004 10:01:43 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12ABF43D4C; Wed, 11 Aug 2004 10:01:43 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-13.local ([172.16.0.13] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1BupvP-000JsN-LK; Wed, 11 Aug 2004 12:01:42 +0200 Date: Wed, 11 Aug 2004 12:03:16 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Josef El-Rayes From: Oliver Eikemeier In-Reply-To: <200408102045.i7AKj3hU026104@repoman.freebsd.org> Message-Id: Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/databases/fpc-oracle Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:01:43 -0000 Josef El-Rayes wrote: > josef 2004-08-10 20:45:02 UTC > > FreeBSD ports repository (doc committer) > > Modified files: > databases/fpc-oracle Makefile > Log: > Fix wrong COMMENT in Makefile > > Approved by: clement My personal opinion here is that COMMENT and pkg-descr (and perhaps pkg-message) should be treated like man pages in src, which means that doc committers shouldn't need approval to commit to them. Provided that the maintainer is respected, of course. -Oliver From owner-cvs-all@FreeBSD.ORG Wed Aug 11 10:06:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97BEF16A4CE; Wed, 11 Aug 2004 10:06:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74E2B43D48; Wed, 11 Aug 2004 10:06:07 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BA67O5061122; Wed, 11 Aug 2004 10:06:07 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BA671o061121; Wed, 11 Aug 2004 10:06:07 GMT (envelope-from murray) Message-Id: <200408111006.i7BA671o061121@repoman.freebsd.org> From: Murray Stokely Date: Wed, 11 Aug 2004 10:06:07 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/l10n chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:06:07 -0000 murray 2004-08-11 10:06:07 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/l10n chapter.sgml Log: Update broken link. Revision Changes Path 1.98 +2 -1 doc/en_US.ISO8859-1/books/handbook/l10n/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 10:12:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5674A16A4CE; Wed, 11 Aug 2004 10:12:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 340AE43D46; Wed, 11 Aug 2004 10:12:16 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BACGeb061280; Wed, 11 Aug 2004 10:12:16 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BACGtV061279; Wed, 11 Aug 2004 10:12:16 GMT (envelope-from andre) Message-Id: <200408111012.i7BACGtV061279@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 10:12:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet tcp_hostcache.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:12:16 -0000 andre 2004-08-11 10:12:16 UTC FreeBSD src repository Modified files: sys/netinet tcp_hostcache.c Log: Correct the displayed bandwidth calculation for a readout via sysctl. The saved value does not have to be scaled with HZ; it is already in bytes per second. Only the multiply by eight remains to show bits per second (bps). Revision Changes Path 1.5 +1 -1 src/sys/netinet/tcp_hostcache.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 10:18:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67A9416A4CE; Wed, 11 Aug 2004 10:18:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 451FA43D3F; Wed, 11 Aug 2004 10:18:49 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BAInXC061476; Wed, 11 Aug 2004 10:18:49 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BAIncT061475; Wed, 11 Aug 2004 10:18:49 GMT (envelope-from andre) Message-Id: <200408111018.i7BAIncT061475@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 10:18:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys socket.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:18:49 -0000 andre 2004-08-11 10:18:49 UTC FreeBSD src repository Modified files: sys/sys socket.h Log: RFC 2292 requires to check msg_controllen, in case that the kernel returns an empty list for some reasons. NetBSD: socket.h,v 1.62 2001/09/07 08:13:01 itojun OpenBSD: socket.h,v 1.39 2001/09/07 16:45:25 itojun MFC after: 2 weeks Revision Changes Path 1.83 +8 -1 src/sys/sys/socket.h From owner-cvs-all@FreeBSD.ORG Wed Aug 11 10:23:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21C8116A4CE for ; Wed, 11 Aug 2004 10:23:35 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E9D243D62 for ; Wed, 11 Aug 2004 10:23:34 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 88770 invoked from network); 11 Aug 2004 10:17:33 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 11 Aug 2004 10:17:33 -0000 Message-ID: <4119F3AA.662F019D@freebsd.org> Date: Wed, 11 Aug 2004 12:23:38 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200408111018.i7BAIncT061475@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/sys socket.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:23:35 -0000 Andre Oppermann wrote: > > andre 2004-08-11 10:18:49 UTC > > FreeBSD src repository > > Modified files: > sys/sys socket.h > Log: > RFC 2292 requires to check msg_controllen, in case that the kernel returns > an empty list for some reasons. > > NetBSD: socket.h,v 1.62 2001/09/07 08:13:01 itojun > OpenBSD: socket.h,v 1.39 2001/09/07 16:45:25 itojun > > MFC after: 2 weeks > > Revision Changes Path > 1.83 +8 -1 src/sys/sys/socket.h This fixes a nasty problem we had with porting OpenBGPd to FreeBSD. -- Andre From owner-cvs-all@FreeBSD.ORG Wed Aug 11 10:25:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B305116A4CE; Wed, 11 Aug 2004 10:25:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9359943D53; Wed, 11 Aug 2004 10:25:23 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BAPN0r062252; Wed, 11 Aug 2004 10:25:23 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BAPNRj062251; Wed, 11 Aug 2004 10:25:23 GMT (envelope-from den) Message-Id: <200408111025.i7BAPNRj062251@repoman.freebsd.org> From: Denis Peplin Date: Wed, 11 Aug 2004 10:25:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/ru_RU.KOI8-R Makefile src/release/doc/ru_RU.KOI8-R/early-adopter article.sgml src/release/doc/ru_RU.KOI8-R/hardware Makefile.inc src/release/doc/ru_RU.KOI8-R/hardware/alpha Makefile article.sgml... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:25:23 -0000 den 2004-08-11 10:25:23 UTC FreeBSD src repository (doc committer) Modified files: release/doc/ru_RU.KOI8-R Makefile release/doc/ru_RU.KOI8-R/early-adopter article.sgml release/doc/ru_RU.KOI8-R/hardware Makefile.inc release/doc/ru_RU.KOI8-R/hardware/alpha Makefile article.sgml release/doc/ru_RU.KOI8-R/hardware/amd64 Makefile article.sgml release/doc/ru_RU.KOI8-R/hardware/common dev.sgml release/doc/ru_RU.KOI8-R/hardware/i386 Makefile article.sgml release/doc/ru_RU.KOI8-R/hardware/ia64 Makefile article.sgml release/doc/ru_RU.KOI8-R/hardware/pc98 Makefile article.sgml release/doc/ru_RU.KOI8-R/hardware/sparc64 Makefile article.sgml release/doc/ru_RU.KOI8-R/installation/alpha article.sgml release/doc/ru_RU.KOI8-R/installation/amd64 article.sgml release/doc/ru_RU.KOI8-R/installation/i386 article.sgml release/doc/ru_RU.KOI8-R/installation/ia64 article.sgml release/doc/ru_RU.KOI8-R/installation/pc98 article.sgml release/doc/ru_RU.KOI8-R/installation/sparc64 article.sgml release/doc/ru_RU.KOI8-R/readme article.sgml release/doc/ru_RU.KOI8-R/relnotes/alpha article.sgml release/doc/ru_RU.KOI8-R/relnotes/amd64 article.sgml release/doc/ru_RU.KOI8-R/relnotes/common new.sgml release/doc/ru_RU.KOI8-R/relnotes/i386 article.sgml release/doc/ru_RU.KOI8-R/relnotes/ia64 article.sgml release/doc/ru_RU.KOI8-R/relnotes/pc98 article.sgml release/doc/ru_RU.KOI8-R/relnotes/sparc64 article.sgml Log: Merge from recent English revisions Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/Makefile 1.4 +11 -27 src/release/doc/ru_RU.KOI8-R/early-adopter/article.sgml 1.2 +10 -2 src/release/doc/ru_RU.KOI8-R/hardware/Makefile.inc 1.2 +4 -2 src/release/doc/ru_RU.KOI8-R/hardware/alpha/Makefile 1.3 +7 -8 src/release/doc/ru_RU.KOI8-R/hardware/alpha/article.sgml 1.2 +4 -2 src/release/doc/ru_RU.KOI8-R/hardware/amd64/Makefile 1.3 +7 -8 src/release/doc/ru_RU.KOI8-R/hardware/amd64/article.sgml 1.2 +53 -156 src/release/doc/ru_RU.KOI8-R/hardware/common/dev.sgml 1.2 +4 -2 src/release/doc/ru_RU.KOI8-R/hardware/i386/Makefile 1.3 +7 -8 src/release/doc/ru_RU.KOI8-R/hardware/i386/article.sgml 1.2 +4 -2 src/release/doc/ru_RU.KOI8-R/hardware/ia64/Makefile 1.3 +7 -8 src/release/doc/ru_RU.KOI8-R/hardware/ia64/article.sgml 1.2 +4 -2 src/release/doc/ru_RU.KOI8-R/hardware/pc98/Makefile 1.3 +7 -8 src/release/doc/ru_RU.KOI8-R/hardware/pc98/article.sgml 1.2 +4 -2 src/release/doc/ru_RU.KOI8-R/hardware/sparc64/Makefile 1.3 +7 -8 src/release/doc/ru_RU.KOI8-R/hardware/sparc64/article.sgml 1.3 +7 -9 src/release/doc/ru_RU.KOI8-R/installation/alpha/article.sgml 1.3 +7 -9 src/release/doc/ru_RU.KOI8-R/installation/amd64/article.sgml 1.3 +7 -9 src/release/doc/ru_RU.KOI8-R/installation/i386/article.sgml 1.3 +7 -9 src/release/doc/ru_RU.KOI8-R/installation/ia64/article.sgml 1.3 +7 -9 src/release/doc/ru_RU.KOI8-R/installation/pc98/article.sgml 1.3 +6 -9 src/release/doc/ru_RU.KOI8-R/installation/sparc64/article.sgml 1.4 +5 -12 src/release/doc/ru_RU.KOI8-R/readme/article.sgml 1.4 +7 -13 src/release/doc/ru_RU.KOI8-R/relnotes/alpha/article.sgml 1.4 +7 -13 src/release/doc/ru_RU.KOI8-R/relnotes/amd64/article.sgml 1.6 +9 -11 src/release/doc/ru_RU.KOI8-R/relnotes/common/new.sgml 1.4 +7 -13 src/release/doc/ru_RU.KOI8-R/relnotes/i386/article.sgml 1.4 +7 -13 src/release/doc/ru_RU.KOI8-R/relnotes/ia64/article.sgml 1.4 +7 -13 src/release/doc/ru_RU.KOI8-R/relnotes/pc98/article.sgml 1.4 +7 -13 src/release/doc/ru_RU.KOI8-R/relnotes/sparc64/article.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 10:34:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE81E16A4CE; Wed, 11 Aug 2004 10:34:16 +0000 (GMT) Received: from web.portaone.com (web.portaone.com [195.70.151.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D8E443D49; Wed, 11 Aug 2004 10:34:16 +0000 (GMT) (envelope-from sobomax@portaone.com) Received: from [192.168.0.20] (portacare.portaone.com [195.140.247.242]) (authenticated bits=0) by web.portaone.com (8.12.8p2/8.12.8) with ESMTP id i7BAYDx0073469 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 11 Aug 2004 12:34:14 +0200 (CEST) (envelope-from sobomax@portaone.com) Message-ID: <4119F61F.6080502@portaone.com> Date: Wed, 11 Aug 2004 13:34:07 +0300 From: Maxim Sobolev Organization: Porta Software Ltd User-Agent: Mozilla Thunderbird 0.7.2 (Windows/20040707) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Oliver Eikemeier References: <200407302201.i6UM1E23002020@repoman.freebsd.org> In-Reply-To: <200407302201.i6UM1E23002020@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-ports@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: ports-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT modules ports/shells Makefileports/shells/bash3 ports/shells/bash3/filespatch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:34:17 -0000 Hmmm, why do we have those "bash", "bash2" and "bash3"? There may have been some historical reasons for bash/bash2 separation, but I wonder if they are still valid for the bash2 vs bash3 case. -Maxim Oliver Eikemeier wrote: > eik 2004-07-30 22:01:14 UTC > > FreeBSD ports repository > > Modified files: > . modules > shells Makefile > shells/bash3 Makefile distinfo pkg-descr pkg-plist > Added files: > shells/bash3 pkg-deinstall pkg-install > Removed files: > shells/bash3/files patch-ac patch-af patch-bashline.c > patch-builtins_shopt.def > patch-config-bot.h patch-config.guess > patch-config.sub patch-doc_bash.1 > patch-doc_bashref.texi patch-redir.c > patch-shmbutil.h patch-subst.c > patch-terminal.c patch-tests_shopt.right > patch-tests_shopt.tests > Log: > Add bash3, The GNU Bourne-Again SHell version 3.00 > > http://cnswww.cns.cwru.edu/~chet/bash/NEWS > > Revision Changes Path > 1.10791 +1 -0 CVSROOT/modules > 1.48 +1 -0 ports/shells/Makefile > 1.70 +60 -50 ports/shells/bash3/Makefile > 1.25 +2 -18 ports/shells/bash3/distinfo > 1.6 +0 -14 ports/shells/bash3/files/patch-ac (dead) > 1.4 +0 -14 ports/shells/bash3/files/patch-af (dead) > 1.5 +0 -118 ports/shells/bash3/files/patch-bashline.c (dead) > 1.2 +0 -22 ports/shells/bash3/files/patch-builtins_shopt.def (dead) > 1.2 +0 -13 ports/shells/bash3/files/patch-config-bot.h (dead) > 1.2 +0 -10 ports/shells/bash3/files/patch-config.guess (dead) > 1.2 +0 -15 ports/shells/bash3/files/patch-config.sub (dead) > 1.2 +0 -16 ports/shells/bash3/files/patch-doc_bash.1 (dead) > 1.2 +0 -37 ports/shells/bash3/files/patch-doc_bashref.texi (dead) > 1.2 +0 -20 ports/shells/bash3/files/patch-redir.c (dead) > 1.2 +0 -13 ports/shells/bash3/files/patch-shmbutil.h (dead) > 1.2 +0 -27 ports/shells/bash3/files/patch-subst.c (dead) > 1.3 +0 -14 ports/shells/bash3/files/patch-terminal.c (dead) > 1.2 +0 -35 ports/shells/bash3/files/patch-tests_shopt.right (dead) > 1.2 +0 -25 ports/shells/bash3/files/patch-tests_shopt.tests (dead) > 1.1 +17 -0 ports/shells/bash3/pkg-deinstall (new) > 1.6 +5 -9 ports/shells/bash3/pkg-descr > 1.1 +16 -0 ports/shells/bash3/pkg-install (new) > 1.19 +78 -10 ports/shells/bash3/pkg-plist > > > From owner-cvs-all@FreeBSD.ORG Wed Aug 11 10:42:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEA8616A4CE; Wed, 11 Aug 2004 10:42:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD79143D45; Wed, 11 Aug 2004 10:42:59 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BAgxM0062810; Wed, 11 Aug 2004 10:42:59 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BAgxbZ062809; Wed, 11 Aug 2004 10:42:59 GMT (envelope-from andre) Message-Id: <200408111042.i7BAgxbZ062809@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 10:42:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_fastfwd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:43:00 -0000 andre 2004-08-11 10:42:59 UTC FreeBSD src repository Modified files: sys/netinet ip_fastfwd.c Log: Make IP fastforwarding ALTQ-aware by adding the input traffic conditioner check and disabling the early output interface queue length check. Revision Changes Path 1.14 +10 -0 src/sys/netinet/ip_fastfwd.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 10:46:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DD4216A4CE; Wed, 11 Aug 2004 10:46:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D54043D2F; Wed, 11 Aug 2004 10:46:16 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BAkFcW062950; Wed, 11 Aug 2004 10:46:15 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BAkFVR062949; Wed, 11 Aug 2004 10:46:15 GMT (envelope-from andre) Message-Id: <200408111046.i7BAkFVR062949@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 10:46:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_input.c ip_output.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:46:16 -0000 andre 2004-08-11 10:46:15 UTC FreeBSD src repository Modified files: sys/netinet ip_input.c ip_output.c Log: Consistently use NULL for pointer comparisons. Revision Changes Path 1.280 +11 -11 src/sys/netinet/ip_input.c 1.223 +10 -10 src/sys/netinet/ip_output.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 10:49:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A026216A4CE; Wed, 11 Aug 2004 10:49:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80D8443D4C; Wed, 11 Aug 2004 10:49:56 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BAnuv8063065; Wed, 11 Aug 2004 10:49:56 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BAnufO063064; Wed, 11 Aug 2004 10:49:56 GMT (envelope-from andre) Message-Id: <200408111049.i7BAnufO063064@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 10:49:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_fastfwd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:49:56 -0000 andre 2004-08-11 10:49:56 UTC FreeBSD src repository Modified files: sys/netinet ip_fastfwd.c Log: Only check for local broadcast addresses if the mbuf is flagged with M_BCAST. Revision Changes Path 1.15 +2 -1 src/sys/netinet/ip_fastfwd.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 10:51:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6254016A4CE; Wed, 11 Aug 2004 10:51:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4124F43D31; Wed, 11 Aug 2004 10:51:14 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BApE1L063180; Wed, 11 Aug 2004 10:51:14 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BApEN8063179; Wed, 11 Aug 2004 10:51:14 GMT (envelope-from murray) Message-Id: <200408111051.i7BApEN8063179@repoman.freebsd.org> From: Murray Stokely Date: Wed, 11 Aug 2004 10:51:14 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/share/mk doc.docbook.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 10:51:14 -0000 murray 2004-08-11 10:51:14 UTC FreeBSD doc repository Modified files: share/mk doc.docbook.mk Log: Honor DVIPSFLAGS even if PAPERSIZE is not defined. Revision Changes Path 1.112 +2 -1 doc/share/mk/doc.docbook.mk From owner-cvs-all@FreeBSD.ORG Wed Aug 11 11:02:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33C3016A4CE; Wed, 11 Aug 2004 11:02:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 275E543D49; Wed, 11 Aug 2004 11:02:27 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BB2Rnh063530; Wed, 11 Aug 2004 11:02:27 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BB2QOm063529; Wed, 11 Aug 2004 11:02:26 GMT (envelope-from ru) Message-Id: <200408111102.i7BB2QOm063529@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 11 Aug 2004 11:02:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:02:27 -0000 ru 2004-08-11 11:02:26 UTC FreeBSD src repository Modified files: . Makefile.inc1 Log: Enforce the check that MAKEOBJDIRPREFIX (if set) is set in environment only, and not as a global (in /etc/make.conf) or command-line variable. MAKEOBJDIRPREFIX has never been a global or command-line variable, and the fact that it works in some scenarios for "make buildworld" doesn't make it any more correct. Using it as a global or command-line variable is error prone, discouraged, costs us lot of false build reports, etc. This commit is aimed to fix it once and for all. Anyone potentially objecting to this change is encouraged to read the make(1) and make.conf(5) manpages, and the comments regarding the use of the MAKEOBJDIRPREFIX variable in /usr/share/mk/bsd.obj.mk and /usr/share/examples/etc/make.conf. Revision Changes Path 1.436 +7 -0 src/Makefile.inc1 From owner-cvs-all@FreeBSD.ORG Wed Aug 11 11:03:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 518B416A4CE; Wed, 11 Aug 2004 11:03:24 +0000 (GMT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 96FF843D4C; Wed, 11 Aug 2004 11:03:23 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id ABB861674EF; Wed, 11 Aug 2004 13:03:22 +0200 (CEST) Received: from kiste.my.domain (lofi@kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i7BB3L46091444 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Wed, 11 Aug 2004 13:03:21 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Jun Kuriyama Date: Wed, 11 Aug 2004 13:03:15 +0200 User-Agent: KMail/1.6.2 References: <200408110231.i7B2VXfY047362@repoman.freebsd.org> In-Reply-To: <200408110231.i7B2VXfY047362@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_4zfGBOjx4WfgYcX"; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <200408111303.20643.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/net-mgmt/net-snmp Makefile distinfo pkg-plist ports/net-mgmt/net-snmp/files patch-aa patch-auto_nlist.c patch-diskio.c patch-freebsd.h patch-freebsd5.h patch-hr_storage.c patch-hr_swrun.c patch-ipv6.c patch-local:snmpconf ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:03:24 -0000 --Boundary-02=_4zfGBOjx4WfgYcX Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Wednesday 11 August 2004 04:31, Jun Kuriyama wrote: > kuriyama 2004-08-11 02:31:33 UTC > > FreeBSD ports repository > > Modified files: > net-mgmt/net-snmp Makefile distinfo pkg-plist > net-mgmt/net-snmp/files patch-hr_storage.c patch-hr_swrun.c > patch-ipv6.c patch-local:snmpconf > patch-tcpTable.c > Removed files: > net-mgmt/net-snmp/files patch-aa patch-auto_nlist.c > patch-diskio.c patch-freebsd.h > patch-freebsd5.h > patch-memory_freebsd2.c > patch-udpTable.c > patch-vmstat_freebsd2.c > Log: > - Upgrade to 5.1.2. > > Numerous patches are integrated into this release. This breaks on -STABLE now: /bin/sh /usr/local/bin/libtool15 --mode=3Dcompile cc -I../../include=20 =2DI../../include -I. -I../.. -I. -I./../.. -I./../../s nmplib -I./.. -I.. -I/usr/libdata/perl/5.00503/mach/CORE -DINET6 -O=20 =2Dpipe -Dfreebsd4 -c -o mibII/ipv6.lo mibII/ipv6 =2Ec cc -I../../include -I../../include -I. -I../.. -I. -I./../..=20 =2DI./../../snmplib -I./.. -I.. -I/usr/libdata/perl/5.00503/ma ch/CORE -DINET6 -O -pipe -Dfreebsd4 -c mibII/ipv6.c -fPIC -DPIC -o=20 mibII/.libs/ipv6.o mibII/ipv6.c: In function `var_udp6': mibII/ipv6.c:1317: `INP_IPV6PROTO' undeclared (first use in this function) mibII/ipv6.c:1317: (Each undeclared identifier is reported only once mibII/ipv6.c:1317: for each function it appears in.) mibII/ipv6.c: In function `var_tcp6': mibII/ipv6.c:1737: `INP_IPV6PROTO' undeclared (first use in this function) *** Error code 1 Stop in /tmp/a/ports/net-mgmt/net-snmp/work/net-snmp-5.1.2/agent/mibgroup. *** Error code 1 =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_4zfGBOjx4WfgYcX Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBBGfz4Xhc68WspdLARAnH8AJ4yxgPpiwdnFw4P+mgVQaM0GJQ7RgCePLaT qN9uaTqSrAxQ7K2hB/InPG0= =EFsA -----END PGP SIGNATURE----- --Boundary-02=_4zfGBOjx4WfgYcX-- From owner-cvs-all@FreeBSD.ORG Wed Aug 11 11:05:51 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F004416A4CE; Wed, 11 Aug 2004 11:05:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0C7F43D45; Wed, 11 Aug 2004 11:05:51 +0000 (GMT) (envelope-from scop@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BB5pC5063700; Wed, 11 Aug 2004 11:05:51 GMT (envelope-from scop@repoman.freebsd.org) Received: (from scop@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BB5pjt063699; Wed, 11 Aug 2004 11:05:51 GMT (envelope-from scop) Message-Id: <200408111105.i7BB5pjt063699@repoman.freebsd.org> From: Ville Skyttä Date: Wed, 11 Aug 2004 11:05:51 +0000 (UTC) To: projects-committers@FreeBSD.org, cvs-projects@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: projects/cvsweb ChangeLog NEWS cvsweb.cgi X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:05:52 -0000 scop 2004-08-11 11:05:51 UTC FreeBSD projects repository Modified files: cvsweb ChangeLog NEWS cvsweb.cgi Log: Review and rework URI escaping. Revision Changes Path 1.166 +4 -0 projects/cvsweb/ChangeLog 1.30 +3 -1 projects/cvsweb/NEWS 1.271 +64 -65 projects/cvsweb/cvsweb.cgi From owner-cvs-all@FreeBSD.ORG Wed Aug 11 11:07:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FD2016A4CE; Wed, 11 Aug 2004 11:07:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F28B443D5A; Wed, 11 Aug 2004 11:07:14 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BB7EoD063765; Wed, 11 Aug 2004 11:07:14 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BB7EbC063764; Wed, 11 Aug 2004 11:07:14 GMT (envelope-from vs) Message-Id: <200408111107.i7BB7EbC063764@repoman.freebsd.org> From: Volker Stolz Date: Wed, 11 Aug 2004 11:07:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/plplot Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:07:15 -0000 vs 2004-08-11 11:07:14 UTC FreeBSD ports repository Modified files: math/plplot Makefile distinfo pkg-plist Log: Update to 5.3.1 PR: ports/70264 Submitted by: Ports Fury Revision Changes Path 1.32 +10 -1 ports/math/plplot/Makefile 1.9 +2 -2 ports/math/plplot/distinfo 1.12 +59 -22 ports/math/plplot/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 11:10:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D867A16A4CE; Wed, 11 Aug 2004 11:10:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7B5A43D3F; Wed, 11 Aug 2004 11:10:46 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BBAkBY063897; Wed, 11 Aug 2004 11:10:46 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BBAkqv063896; Wed, 11 Aug 2004 11:10:46 GMT (envelope-from pjd) Message-Id: <200408111110.i7BBAkqv063896@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 11 Aug 2004 11:10:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/mirror g_mirror.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:10:47 -0000 pjd 2004-08-11 11:10:46 UTC FreeBSD src repository Modified files: sys/geom/mirror g_mirror.c Log: Try harder to not panic on 'stop -f'. After the commit, this command should be really safe to use. Revision Changes Path 1.17 +83 -39 src/sys/geom/mirror/g_mirror.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 11:20:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F87B16A4D6; Wed, 11 Aug 2004 11:20:36 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5225343D5A; Wed, 11 Aug 2004 11:20:36 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-13.local ([172.16.0.13] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1Bur9l-000FtL-A7; Wed, 11 Aug 2004 13:20:35 +0200 Date: Wed, 11 Aug 2004 13:22:10 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Maxim Sobolev From: Oliver Eikemeier In-Reply-To: <4119F61F.6080502@portaone.com> Message-Id: Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: cvs-ports@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: ports-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT modules ports/shells Makefile ports/shells/bash3 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/shells/bash3/files patch-ac patch-af patch-bashline.c patch-builtins_shopt.def patch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:20:36 -0000 Maxim Sobolev wrote: > Hmmm, why do we have those "bash", "bash2" and "bash3"? There may have > been some historical reasons for bash/bash2 separation, but I wonder if > they are still valid for the bash2 vs bash3 case. I guess bash 3.0 (like most .0 releases) has still some bugs to be ironed out, see for example: Therefore it seems wise to keep bash2 to run scripts until bash3 is mature. OTOH people might want to use the new bash3 features: So having bash2 and bash3 is justified. Do you think the directories should have different names? -Oliver From owner-cvs-all@FreeBSD.ORG Wed Aug 11 11:41:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A523916A4CE; Wed, 11 Aug 2004 11:41:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8674F43D5C; Wed, 11 Aug 2004 11:41:11 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BBfBxx064630; Wed, 11 Aug 2004 11:41:11 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BBfBfN064629; Wed, 11 Aug 2004 11:41:11 GMT (envelope-from andre) Message-Id: <200408111141.i7BBfBfN064629@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 11:41:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_fw2.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:41:11 -0000 andre 2004-08-11 11:41:11 UTC FreeBSD src repository Modified files: sys/netinet ip_fw2.c Log: Only invoke verify_path() for verrevpath and versrcreach when we have an IP packet. Revision Changes Path 1.68 +4 -4 src/sys/netinet/ip_fw2.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 11:49:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C593916A4CE; Wed, 11 Aug 2004 11:49:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A608A43D49; Wed, 11 Aug 2004 11:49:48 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BBnmJZ064832; Wed, 11 Aug 2004 11:49:48 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BBnmmO064831; Wed, 11 Aug 2004 11:49:48 GMT (envelope-from andre) Message-Id: <200408111149.i7BBnmmO064831@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 11:49:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet in.c in.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:49:48 -0000 andre 2004-08-11 11:49:48 UTC FreeBSD src repository Modified files: sys/netinet in.c in.h Log: Add the function in_localip() which returns 1 if an internet address is for the local host and configured on one of its interfaces. Revision Changes Path 1.76 +17 -0 src/sys/netinet/in.c 1.86 +1 -0 src/sys/netinet/in.h From owner-cvs-all@FreeBSD.ORG Wed Aug 11 11:51:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51A0A16A4CE; Wed, 11 Aug 2004 11:51:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 330F143D3F; Wed, 11 Aug 2004 11:51:29 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BBpTPE064995; Wed, 11 Aug 2004 11:51:29 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BBpT8I064994; Wed, 11 Aug 2004 11:51:29 GMT (envelope-from lth) Message-Id: <200408111151.i7BBpT8I064994@repoman.freebsd.org> From: Lars Thegler Date: Wed, 11 Aug 2004 11:51:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:51:29 -0000 lth 2004-08-11 11:51:29 UTC FreeBSD ports repository Modified files: . modules Log: Fixed after move of p5-dapple and removal of p5-Net-DAAP-Client-Auth. Noticed by: erwin Revision Changes Path 1.10869 +1 -2 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 11 11:52:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FECF16A4CE; Wed, 11 Aug 2004 11:52:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EA0243D39; Wed, 11 Aug 2004 11:52:53 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BBqrNu065054; Wed, 11 Aug 2004 11:52:53 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BBqrcO065053; Wed, 11 Aug 2004 11:52:53 GMT (envelope-from kuriyama) Message-Id: <200408111152.i7BBqrcO065053@repoman.freebsd.org> From: Jun Kuriyama Date: Wed, 11 Aug 2004 11:52:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/net-snmp/files patch-ipv6.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:52:53 -0000 kuriyama 2004-08-11 11:52:53 UTC FreeBSD ports repository Modified files: net-mgmt/net-snmp/files patch-ipv6.c Log: Add a hack to unbreak on releng4. Revision Changes Path 1.4 +32 -29 ports/net-mgmt/net-snmp/files/patch-ipv6.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 11:54:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6ECB216A4CE; Wed, 11 Aug 2004 11:54:40 +0000 (GMT) Received: from web.portaone.com (support.portaone.com [195.70.151.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id D00E243D46; Wed, 11 Aug 2004 11:54:39 +0000 (GMT) (envelope-from sobomax@portaone.com) Received: from [192.168.0.20] (portacare.portaone.com [195.140.247.242]) (authenticated bits=0) by web.portaone.com (8.12.8p2/8.12.8) with ESMTP id i7BBr0x0082248 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 11 Aug 2004 13:53:01 +0200 (CEST) (envelope-from sobomax@portaone.com) Message-ID: <411A0898.3020605@portaone.com> Date: Wed, 11 Aug 2004 14:52:56 +0300 From: Maxim Sobolev Organization: Porta Software Ltd User-Agent: Mozilla Thunderbird 0.7.2 (Windows/20040707) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Oliver Eikemeier References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-ports@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: ports-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT modules ports/shells Makefileports/shells/bash3 ports/shells/bash3/filespatch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:54:40 -0000 Oliver Eikemeier wrote: > Maxim Sobolev wrote: > >> Hmmm, why do we have those "bash", "bash2" and "bash3"? There may have >> been some historical reasons for bash/bash2 separation, but I wonder >> if they are still valid for the bash2 vs bash3 case. > > > I guess bash 3.0 (like most .0 releases) has still some bugs to be > ironed out, see for example: > > Well, all software have bugs, if bash maintainers think that it is ready for release, shouldn't we just agree with their decision? Critical bugs can be backported into the ports tree if necessary until next stable release is out. That is how our ports tree works. If somebody wants previous version he can get it from pre-compiled packages or from cvs repo. > Therefore it seems wise to keep bash2 to run scripts until bash3 is mature. > OTOH people might want to use the new bash3 features: > > > So having bash2 and bash3 is justified. Do you think the directories > should have different names? I still don't see the reason for having bash2/bash3. We have more than 10000 ports in the tree, most of them are routinely being updated to the new major release without creating those ugly new fooN ports. Creation of fooN is only justified if it is backward incompatible with foo{N-1}, while there are still ports in the tree that rely on previous version. Hypotetical bugs in .0 release does not justify it. -Maxim From owner-cvs-all@FreeBSD.ORG Wed Aug 11 11:55:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C8EE16A4CE; Wed, 11 Aug 2004 11:55:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C1D043D3F; Wed, 11 Aug 2004 11:55:37 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BBtbnJ065181; Wed, 11 Aug 2004 11:55:37 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BBtbjD065180; Wed, 11 Aug 2004 11:55:37 GMT (envelope-from dinoex) Message-Id: <200408111155.i7BBtbjD065180@repoman.freebsd.org> From: Dirk Meyer Date: Wed, 11 Aug 2004 11:55:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/kiltdown Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:55:37 -0000 dinoex 2004-08-11 11:55:37 UTC FreeBSD ports repository Modified files: mail/kiltdown Makefile Log: - mark BROKEN with gcc34 Revision Changes Path 1.18 +7 -1 ports/mail/kiltdown/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 11:58:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 994AB16A4CE; Wed, 11 Aug 2004 11:58:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A20E43D54; Wed, 11 Aug 2004 11:58:23 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BBwN4X065259; Wed, 11 Aug 2004 11:58:23 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BBwNcb065258; Wed, 11 Aug 2004 11:58:23 GMT (envelope-from dinoex) Message-Id: <200408111158.i7BBwNcb065258@repoman.freebsd.org> From: Dirk Meyer Date: Wed, 11 Aug 2004 11:58:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators/vice Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:58:23 -0000 dinoex 2004-08-11 11:58:23 UTC FreeBSD ports repository Modified files: emulators/vice Makefile Log: - mark BROKEN for gcc34 Revision Changes Path 1.35 +3 -0 ports/emulators/vice/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 11:58:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C9AAE16A4CE; Wed, 11 Aug 2004 11:58:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7F6C43D3F; Wed, 11 Aug 2004 11:58:55 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BBwtjt065309; Wed, 11 Aug 2004 11:58:55 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BBwtOB065308; Wed, 11 Aug 2004 11:58:55 GMT (envelope-from arved) Message-Id: <200408111158.i7BBwtOB065308@repoman.freebsd.org> From: Tilman Linneweh Date: Wed, 11 Aug 2004 11:58:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/irc/bitchx Makefile ports/irc/bitchx/files patch-aq X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 11:58:55 -0000 arved 2004-08-11 11:58:55 UTC FreeBSD ports repository Modified files: irc/bitchx Makefile irc/bitchx/files patch-aq Log: enable Hebrew support PR: 70249 Submitted by: Amir Shalem Drop maintainership, I have been using irssi for more than a year. Revision Changes Path 1.73 +1 -1 ports/irc/bitchx/Makefile 1.2 +12 -3 ports/irc/bitchx/files/patch-aq From owner-cvs-all@FreeBSD.ORG Wed Aug 11 12:04:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40A4416A4CE; Wed, 11 Aug 2004 12:04:07 +0000 (GMT) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [210.226.20.147]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC22343D5F; Wed, 11 Aug 2004 12:04:04 +0000 (GMT) (envelope-from kuriyama@imgsrc.co.jp) Received: from localhost (localhost [127.0.0.1]) by black.imgsrc.co.jp (Postfix) with ESMTP id A65E850BA3; Wed, 11 Aug 2004 21:04:01 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [IPv6:2001:218:422:2::9999]) by black.imgsrc.co.jp (Postfix) with ESMTP id 3C6F450B82; Wed, 11 Aug 2004 21:04:00 +0900 (JST) Date: Wed, 11 Aug 2004 21:04:00 +0900 Message-ID: <7mzn51hoen.wl@black.imgsrc.co.jp> From: Jun Kuriyama To: Michael Nottebrock In-Reply-To: <200408111303.20643.michaelnottebrock@gmx.net> References: <200408110231.i7B2VXfY047362@repoman.freebsd.org> <200408111303.20643.michaelnottebrock@gmx.net> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.6 (Maruoka) FLIM/1.14.6 (Marutamachi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by amavisd 0.1 cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/net-mgmt/net-snmp Makefile distinfo pkg-plist ports/net-mgmt/net-snmp/files patch-aa patch-auto_nlist.c patch-diskio.c patch-freebsd.h patch-freebsd5.h patch-hr_storage.c patch-hr_swrun.c patch-ipv6.c patch-local:snmpconf ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:04:07 -0000 At Wed, 11 Aug 2004 13:03:15 +0200, Michael Nottebrock wrote: > This breaks on -STABLE now: Sorry, I just committed a quick hack. -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project From owner-cvs-all@FreeBSD.ORG Wed Aug 11 12:04:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E63216A4CF; Wed, 11 Aug 2004 12:04:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B97F43D3F; Wed, 11 Aug 2004 12:04:36 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BC4Z71065497; Wed, 11 Aug 2004 12:04:35 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BC4Z6M065496; Wed, 11 Aug 2004 12:04:35 GMT (envelope-from pjd) Message-Id: <200408111204.i7BC4Z6M065496@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 11 Aug 2004 12:04:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom geom_io.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:04:36 -0000 pjd 2004-08-11 12:04:35 UTC FreeBSD src repository Modified files: sys/geom geom_io.c Log: When sending request once again because of ENOMEM, reset bio_children and bio_inbed fields to 0. Without this change we can end up with I/O leakage in some rare situations. I tested this change by putting failure probability mechanism simlar to this used in NOP class into g_clone_bio(9) function, so it was able to return NULL with the given probability. Discussed with: phk Revision Changes Path 1.57 +2 -0 src/sys/geom/geom_io.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 12:05:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B425816A4CF; Wed, 11 Aug 2004 12:05:55 +0000 (GMT) Received: from web.portaone.com (support.portaone.com [195.70.151.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD6A843D3F; Wed, 11 Aug 2004 12:05:54 +0000 (GMT) (envelope-from sobomax@portaone.com) Received: from [192.168.0.20] (portacare.portaone.com [195.140.247.242]) (authenticated bits=0) by web.portaone.com (8.12.8p2/8.12.8) with ESMTP id i7BC4Ox0083138 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 11 Aug 2004 14:04:25 +0200 (CEST) (envelope-from sobomax@portaone.com) Message-ID: <411A0B41.9070607@portaone.com> Date: Wed, 11 Aug 2004 15:04:17 +0300 From: Maxim Sobolev Organization: Porta Software Ltd User-Agent: Mozilla Thunderbird 0.7.2 (Windows/20040707) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Oliver Eikemeier References: <411A0898.3020605@portaone.com> In-Reply-To: <411A0898.3020605@portaone.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-ports@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: ports-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT modules ports/shells Makefileports/shells/bash3 ports/shells/bash3/filespatch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:05:55 -0000 P.S. My recommendation is to kill both bash1 and bash2, repo-copy bash3 into just bash and remove bash3 as well. Maxim Sobolev wrote: > Oliver Eikemeier wrote: > >> Maxim Sobolev wrote: >> >>> Hmmm, why do we have those "bash", "bash2" and "bash3"? There may >>> have been some historical reasons for bash/bash2 separation, but I >>> wonder if they are still valid for the bash2 vs bash3 case. >> >> >> >> I guess bash 3.0 (like most .0 releases) has still some bugs to be >> ironed out, see for example: >> >> > > > Well, all software have bugs, if bash maintainers think that it is ready > for release, shouldn't we just agree with their decision? Critical bugs > can be backported into the ports tree if necessary until next stable > release is out. That is how our ports tree works. If somebody wants > previous version he can get it from pre-compiled packages or from cvs repo. > >> Therefore it seems wise to keep bash2 to run scripts until bash3 is >> mature. >> OTOH people might want to use the new bash3 features: >> >> >> So having bash2 and bash3 is justified. Do you think the directories >> should have different names? > > > I still don't see the reason for having bash2/bash3. We have more than > 10000 ports in the tree, most of them are routinely being updated to the > new major release without creating those ugly new fooN ports. > > Creation of fooN is only justified if it is backward incompatible with > foo{N-1}, while there are still ports in the tree that rely on previous > version. Hypotetical bugs in .0 release does not justify it. > > -Maxim > > > From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:11:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3018916A4CE; Tue, 10 Aug 2004 19:11:18 +0000 (GMT) Received: from smtp-vbr6.xs4all.nl (smtp-vbr6.xs4all.nl [194.109.24.26]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B8AA43D2D; Tue, 10 Aug 2004 19:11:17 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-vbr6.xs4all.nl (8.12.11/8.12.11) with ESMTP id i7AJAqqY080198; Tue, 10 Aug 2004 21:10:52 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i7AJAqs6068418; Tue, 10 Aug 2004 21:10:52 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i7AJAp9S068417; Tue, 10 Aug 2004 21:10:51 +0200 (CEST) (envelope-from wb) Date: Tue, 10 Aug 2004 21:10:51 +0200 From: Wilko Bulte To: Poul-Henning Kamp Message-ID: <20040810191051.GA68379@freebie.xs4all.nl> References: <20040809.150537.96131820.imp@bsdimp.com> <34636.1092088690@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <34636.1092088690@critter.freebsd.dk> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner X-Mailman-Approved-At: Wed, 11 Aug 2004 12:08:29 +0000 cc: src-committers@FreeBSD.org cc: johan@FreeBSD.org cc: cvs-src@FreeBSD.org cc: nsouch@FreeBSD.org cc: will@csociety.org cc: rik@cronyx.ru cc: ru@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "M. Warner Losh" Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:11:18 -0000 On Mon, Aug 09, 2004 at 11:58:10PM +0200, Poul-Henning Kamp wrote.. > In message <20040809.150537.96131820.imp@bsdimp.com>, "M. Warner Losh" writes: > > >: At least DDMMYYYY is in increasing order of magnitude :-) > >: > >: MMDDYYYY is in no order at all. > > > >But YYYYMMDD is sortable w/o a special date type! > > Not to mention that it is trivially and unambigously extensible to arbitrary > precision: > > YYYYMMDDHHMMSS.mmmuuunnnppp... I suppose you have the midwife consult your atomic clock for the exact time of birth? :) -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Tue Aug 10 19:44:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBDA316A4CE for ; Tue, 10 Aug 2004 19:44:32 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C33D43D5D for ; Tue, 10 Aug 2004 19:44:32 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.13.1/8.13.1) with ESMTP id i7AJiTSY056151; Tue, 10 Aug 2004 21:44:29 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Wilko Bulte From: "Poul-Henning Kamp" In-Reply-To: Your message of "Tue, 10 Aug 2004 21:10:51 +0200." <20040810191051.GA68379@freebie.xs4all.nl> Date: Tue, 10 Aug 2004 21:44:29 +0200 Message-ID: <56150.1092167069@critter.freebsd.dk> Sender: phk@critter.freebsd.dk X-Mailman-Approved-At: Wed, 11 Aug 2004 12:08:29 +0000 cc: src-committers@FreeBSD.org cc: johan@FreeBSD.org cc: cvs-src@FreeBSD.org cc: nsouch@FreeBSD.org cc: will@csociety.org cc: rik@cronyx.ru cc: ru@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "M. Warner Losh" Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 19:44:32 -0000 In message <20040810191051.GA68379@freebie.xs4all.nl>, Wilko Bulte writes: >On Mon, Aug 09, 2004 at 11:58:10PM +0200, Poul-Henning Kamp wrote.. >> In message <20040809.150537.96131820.imp@bsdimp.com>, "M. Warner Losh" writes: >> >> >: At least DDMMYYYY is in increasing order of magnitude :-) >> >: >> >: MMDDYYYY is in no order at all. >> > >> >But YYYYMMDD is sortable w/o a special date type! >> >> Not to mention that it is trivially and unambigously extensible to arbitrary >> precision: >> >> YYYYMMDDHHMMSS.mmmuuunnnppp... > >I suppose you have the midwife consult your atomic clock for the exact >time of birth? I was not in a position to sufficiently communicate with the midwife at my birth, sorry. -- 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 Tue Aug 10 21:45:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06EB516A4CE; Tue, 10 Aug 2004 21:45:49 +0000 (GMT) Received: from smtp-vbr15.xs4all.nl (smtp-vbr15.xs4all.nl [194.109.24.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E3C943D46; Tue, 10 Aug 2004 21:45:48 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) i7ALjBWi006019; Tue, 10 Aug 2004 23:45:11 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i7ALjAB1069802; Tue, 10 Aug 2004 23:45:10 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i7ALjApr069801; Tue, 10 Aug 2004 23:45:10 +0200 (CEST) (envelope-from wb) Date: Tue, 10 Aug 2004 23:45:10 +0200 From: Wilko Bulte To: Poul-Henning Kamp Message-ID: <20040810214510.GA69747@freebie.xs4all.nl> References: <20040810191051.GA68379@freebie.xs4all.nl> <56150.1092167069@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <56150.1092167069@critter.freebsd.dk> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner X-Mailman-Approved-At: Wed, 11 Aug 2004 12:08:29 +0000 cc: src-committers@FreeBSD.org cc: johan@FreeBSD.org cc: cvs-src@FreeBSD.org cc: nsouch@FreeBSD.org cc: will@csociety.org cc: rik@cronyx.ru cc: ru@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "M. Warner Losh" Subject: Re: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 10 Aug 2004 21:45:49 -0000 On Tue, Aug 10, 2004 at 09:44:29PM +0200, Poul-Henning Kamp wrote.. > In message <20040810191051.GA68379@freebie.xs4all.nl>, Wilko Bulte writes: > >On Mon, Aug 09, 2004 at 11:58:10PM +0200, Poul-Henning Kamp wrote.. > >> In message <20040809.150537.96131820.imp@bsdimp.com>, "M. Warner Losh" writes: > >> > >> >: At least DDMMYYYY is in increasing order of magnitude :-) > >> >: > >> >: MMDDYYYY is in no order at all. > >> > > >> >But YYYYMMDD is sortable w/o a special date type! > >> > >> Not to mention that it is trivially and unambigously extensible to arbitrary > >> precision: > >> > >> YYYYMMDDHHMMSS.mmmuuunnnppp... > > > >I suppose you have the midwife consult your atomic clock for the exact > >time of birth? > > I was not in a position to sufficiently communicate with the midwife > at my birth, sorry. Figures. I was more refering to offspring of your own to be honest ;) -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Wed Aug 11 12:17:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A5DE16A4CE; Wed, 11 Aug 2004 12:17:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F84443D62; Wed, 11 Aug 2004 12:17:55 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BCHtJ7066216; Wed, 11 Aug 2004 12:17:55 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BCHtLd066215; Wed, 11 Aug 2004 12:17:55 GMT (envelope-from harti) Message-Id: <200408111217.i7BCHtLd066215@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 12:17:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: BEGEMOT Subject: cvs commit: src/contrib/ngatm - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:17:55 -0000 harti 2004-08-11 12:17:54 UTC FreeBSD src repository src/contrib/ngatm - Imported sources Update of /home/ncvs/src/contrib/ngatm In directory repoman.freebsd.org:/tmp/cvs-serv66203 Log Message: Virgin import of NgATM user part 1.1 Status: Vendor Tag: BEGEMOT Release Tags: NGATM_1_1 U src/contrib/ngatm/man/libngatm.3 U src/contrib/ngatm/man/uniaddr.3 U src/contrib/ngatm/man/unifunc.3 U src/contrib/ngatm/man/unimsg.3 U src/contrib/ngatm/man/unisap.3 U src/contrib/ngatm/man/unistruct.3 U src/contrib/ngatm/libngatm/cccust.h U src/contrib/ngatm/libngatm/net_in.fig U src/contrib/ngatm/libngatm/net_out.fig U src/contrib/ngatm/libngatm/sscfucust.h U src/contrib/ngatm/libngatm/sscopcust.h U src/contrib/ngatm/libngatm/unicust.h U src/contrib/ngatm/libngatm/unimsg.c N src/contrib/ngatm/snmp_atm/BEGEMOT-ATM.txt N src/contrib/ngatm/snmp_atm/atm.h N src/contrib/ngatm/snmp_atm/atm_tree.def N src/contrib/ngatm/snmp_atm/snmp_atm.3 N src/contrib/ngatm/snmp_atm/snmp_atm.c N src/contrib/ngatm/snmp_atm/snmp_atm.h U src/contrib/ngatm/sscop/common.c U src/contrib/ngatm/sscop/common.h U src/contrib/ngatm/sscop/sscop.1 U src/contrib/ngatm/sscop/sscop_main.c No conflicts created by this import From owner-cvs-all@FreeBSD.ORG Wed Aug 11 12:19:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9C7C916A4CE; Wed, 11 Aug 2004 12:19:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E2CF43D45; Wed, 11 Aug 2004 12:19:32 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BCJW7b066288; Wed, 11 Aug 2004 12:19:32 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BCJWLI066287; Wed, 11 Aug 2004 12:19:32 GMT (envelope-from harti) Message-Id: <200408111219.i7BCJWLI066287@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 12:19:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/ngatm FREEBSD-Xlist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:19:32 -0000 harti 2004-08-11 12:19:32 UTC FreeBSD src repository Added files: contrib/ngatm FREEBSD-Xlist Log: Exclusion list for easier import. Revision Changes Path 1.1 +13 -0 src/contrib/ngatm/FREEBSD-Xlist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 12:21:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EFDE16A4CE; Wed, 11 Aug 2004 12:21:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2CBC43D5E; Wed, 11 Aug 2004 12:21:36 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BCLa9a066405; Wed, 11 Aug 2004 12:21:36 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BCLaln066404; Wed, 11 Aug 2004 12:21:36 GMT (envelope-from harti) Message-Id: <200408111221.i7BCLaln066404@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 12:21:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: BEGEMOT Subject: cvs commit: src/sys/contrib/ngatm/netnatm - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:21:37 -0000 harti 2004-08-11 12:21:36 UTC FreeBSD src repository src/sys/contrib/ngatm/netnatm - Imported sources Update of /home/ncvs/src/sys/contrib/ngatm/netnatm In directory repoman.freebsd.org:/tmp/cvs-serv66392 Log Message: Virgin import of NgATM shared kernel/user part 1.1 Status: Vendor Tag: BEGEMOT Release Tags: NGATM_1_1 U src/sys/contrib/ngatm/netnatm/unimsg.h U src/sys/contrib/ngatm/netnatm/genfiles U src/sys/contrib/ngatm/netnatm/addr.h U src/sys/contrib/ngatm/netnatm/api/unisap.h U src/sys/contrib/ngatm/netnatm/api/cc_conn.c U src/sys/contrib/ngatm/netnatm/api/cc_data.c U src/sys/contrib/ngatm/netnatm/api/cc_dump.c U src/sys/contrib/ngatm/netnatm/api/cc_port.c U src/sys/contrib/ngatm/netnatm/api/cc_sig.c U src/sys/contrib/ngatm/netnatm/api/cc_user.c U src/sys/contrib/ngatm/netnatm/api/ccatm.h U src/sys/contrib/ngatm/netnatm/api/ccpriv.h U src/sys/contrib/ngatm/netnatm/api/unisap.c U src/sys/contrib/ngatm/netnatm/api/atmapi.h U src/sys/contrib/ngatm/netnatm/sig/unisig.h U src/sys/contrib/ngatm/netnatm/sig/genmsgcpyh.awk U src/sys/contrib/ngatm/netnatm/sig/sig_call.c U src/sys/contrib/ngatm/netnatm/sig/sig_coord.c U src/sys/contrib/ngatm/netnatm/sig/sig_party.c U src/sys/contrib/ngatm/netnatm/sig/sig_print.c U src/sys/contrib/ngatm/netnatm/sig/sig_reset.c U src/sys/contrib/ngatm/netnatm/sig/sig_uni.c U src/sys/contrib/ngatm/netnatm/sig/sig_verify.c U src/sys/contrib/ngatm/netnatm/sig/uni.h U src/sys/contrib/ngatm/netnatm/sig/unidef.h U src/sys/contrib/ngatm/netnatm/sig/unimkmsg.h U src/sys/contrib/ngatm/netnatm/sig/unipriv.h U src/sys/contrib/ngatm/netnatm/sig/genmsgcpyc.awk U src/sys/contrib/ngatm/netnatm/saal/sscoppriv.h U src/sys/contrib/ngatm/netnatm/saal/saal_sscop.c U src/sys/contrib/ngatm/netnatm/saal/sscfu.h U src/sys/contrib/ngatm/netnatm/saal/sscfudef.h U src/sys/contrib/ngatm/netnatm/saal/sscfupriv.h U src/sys/contrib/ngatm/netnatm/saal/sscop.h U src/sys/contrib/ngatm/netnatm/saal/sscopdef.h U src/sys/contrib/ngatm/netnatm/saal/saal_sscfu.c U src/sys/contrib/ngatm/netnatm/msg/unistruct.h U src/sys/contrib/ngatm/netnatm/msg/genieh.awk U src/sys/contrib/ngatm/netnatm/msg/genmsgc.awk U src/sys/contrib/ngatm/netnatm/msg/genmsgh.awk U src/sys/contrib/ngatm/netnatm/msg/ie.def U src/sys/contrib/ngatm/netnatm/msg/msg.def U src/sys/contrib/ngatm/netnatm/msg/parseie.awk U src/sys/contrib/ngatm/netnatm/msg/parsemsg.awk U src/sys/contrib/ngatm/netnatm/msg/priv.h U src/sys/contrib/ngatm/netnatm/msg/privmsg.c U src/sys/contrib/ngatm/netnatm/msg/traffic.c U src/sys/contrib/ngatm/netnatm/msg/uni_config.h U src/sys/contrib/ngatm/netnatm/msg/uni_hdr.h U src/sys/contrib/ngatm/netnatm/msg/uni_ie.c U src/sys/contrib/ngatm/netnatm/msg/unimsglib.h U src/sys/contrib/ngatm/netnatm/msg/uniprint.h U src/sys/contrib/ngatm/netnatm/msg/geniec.awk U src/sys/contrib/ngatm/netnatm/misc/straddr.c U src/sys/contrib/ngatm/netnatm/misc/unimsg_common.c No conflicts created by this import From owner-cvs-all@FreeBSD.ORG Wed Aug 11 12:25:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0B1F16A4CE; Wed, 11 Aug 2004 12:25:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A00BE43D2D; Wed, 11 Aug 2004 12:25:09 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BCP95q066506; Wed, 11 Aug 2004 12:25:09 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BCP9us066505; Wed, 11 Aug 2004 12:25:09 GMT (envelope-from harti) Message-Id: <200408111225.i7BCP9us066505@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 12:25:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/contrib/ngatm FREEBSD-Xlist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:25:09 -0000 harti 2004-08-11 12:25:09 UTC FreeBSD src repository Added files: sys/contrib/ngatm FREEBSD-Xlist Log: Exclusion list for easier import. Revision Changes Path 1.1 +15 -0 src/sys/contrib/ngatm/FREEBSD-Xlist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 12:27:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61C2416A4D8; Wed, 11 Aug 2004 12:27:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 432C343D1D; Wed, 11 Aug 2004 12:27:31 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BCRVto066658; Wed, 11 Aug 2004 12:27:31 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BCRVwL066657; Wed, 11 Aug 2004 12:27:31 GMT (envelope-from harti) Message-Id: <200408111227.i7BCRVwL066657@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 12:27:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:27:31 -0000 harti 2004-08-11 12:27:31 UTC FreeBSD src repository Modified files: lib/libbsnmp/modules Makefile Log: Now, after the import of NgATM-1.1, re-enable the atm module. Revision Changes Path 1.4 +1 -1 src/lib/libbsnmp/modules/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 12:32:10 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C63316A4CE; Wed, 11 Aug 2004 12:32:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A20F43D1D; Wed, 11 Aug 2004 12:32:10 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BCWAUs066816; Wed, 11 Aug 2004 12:32:10 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BCWAcL066815; Wed, 11 Aug 2004 12:32:10 GMT (envelope-from andre) Message-Id: <200408111232.i7BCWAcL066815@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 12:32:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_fastfwd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:32:10 -0000 andre 2004-08-11 12:32:10 UTC FreeBSD src repository Modified files: sys/netinet ip_fastfwd.c Log: Make use of in_localip() function and replace previous direct LIST_FOREACH loops over INADDR_HASH. Revision Changes Path 1.16 +38 -44 src/sys/netinet/ip_fastfwd.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 12:33:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63E6616A4CE; Wed, 11 Aug 2004 12:33:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4564243D45; Wed, 11 Aug 2004 12:33:08 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BCX8wq066863; Wed, 11 Aug 2004 12:33:08 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BCX8tH066862; Wed, 11 Aug 2004 12:33:08 GMT (envelope-from mat) Message-Id: <200408111233.i7BCX8tH066862@repoman.freebsd.org> From: Mathieu Arnold Date: Wed, 11 Aug 2004 12:33:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-DateTime-Format-Builder Makefiledistinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:33:08 -0000 mat 2004-08-11 12:33:08 UTC FreeBSD ports repository Modified files: devel/p5-DateTime-Format-Builder Makefile distinfo pkg-plist Log: Update to 0.78.05 Add some doc, and examples Revision Changes Path 1.10 +13 -1 ports/devel/p5-DateTime-Format-Builder/Makefile 1.9 +2 -2 ports/devel/p5-DateTime-Format-Builder/distinfo 1.4 +8 -0 ports/devel/p5-DateTime-Format-Builder/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 12:33:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0EAB016A4CF for ; Wed, 11 Aug 2004 12:33:18 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26D5A43D48 for ; Wed, 11 Aug 2004 12:33:17 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 89896 invoked from network); 11 Aug 2004 12:27:15 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 11 Aug 2004 12:27:15 -0000 Message-ID: <411A1210.E8280616@freebsd.org> Date: Wed, 11 Aug 2004 14:33:20 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200408111149.i7BBnmmO064831@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/netinet in.c in.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:33:18 -0000 Andre Oppermann wrote: > > andre 2004-08-11 11:49:48 UTC > > FreeBSD src repository > > Modified files: > sys/netinet in.c in.h > Log: > Add the function in_localip() which returns 1 if an internet address is for > the local host and configured on one of its interfaces. > > Revision Changes Path > 1.76 +17 -0 src/sys/netinet/in.c > 1.86 +1 -0 src/sys/netinet/in.h I'm going to use this for ip_fastfwd() and the new pfil_hooked ipfw. -- Andre From owner-cvs-all@FreeBSD.ORG Wed Aug 11 12:57:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C920B16A4CE; Wed, 11 Aug 2004 12:57:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9F5243D4C; Wed, 11 Aug 2004 12:57:17 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BCvHEx067562; Wed, 11 Aug 2004 12:57:17 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BCvHYh067561; Wed, 11 Aug 2004 12:57:17 GMT (envelope-from pjd) Message-Id: <200408111257.i7BCvHYh067561@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 11 Aug 2004 12:57:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/stripe g_stripe.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 12:57:17 -0000 pjd 2004-08-11 12:57:17 UTC FreeBSD src repository Modified files: sys/geom/stripe g_stripe.c Log: Increase default kern.geom.stripe.maxmem to 50 elements. Revision Changes Path 1.16 +1 -1 src/sys/geom/stripe/g_stripe.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 13:11:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 164AE16A4CE; Wed, 11 Aug 2004 13:11:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E95EE43D49; Wed, 11 Aug 2004 13:11:56 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BDBuUD068014; Wed, 11 Aug 2004 13:11:56 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BDBuNo068013; Wed, 11 Aug 2004 13:11:56 GMT (envelope-from vs) Message-Id: <200408111311.i7BDBuNo068013@repoman.freebsd.org> From: Volker Stolz Date: Wed, 11 Aug 2004 13:11:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/nylon Makefile pkg-plist ports/net/nylon/files nylon.sh.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 13:11:57 -0000 vs 2004-08-11 13:11:56 UTC FreeBSD ports repository Modified files: net/nylon Makefile Added files: net/nylon/files nylon.sh.in Removed files: net/nylon pkg-plist Log: - RC_SUBR-ify - Nuke pkg-plist while here Based on PR: ports/70295 Submitted by: Rob MacGregor Revision Changes Path 1.10 +10 -0 ports/net/nylon/Makefile 1.1 +36 -0 ports/net/nylon/files/nylon.sh.in (new) 1.3 +0 -2 ports/net/nylon/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 13:15:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95B8916A4CE; Wed, 11 Aug 2004 13:15:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 756B243D1F; Wed, 11 Aug 2004 13:15:29 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BDFTw8068157; Wed, 11 Aug 2004 13:15:29 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BDFTtM068156; Wed, 11 Aug 2004 13:15:29 GMT (envelope-from den) Message-Id: <200408111315.i7BDFTtM068156@repoman.freebsd.org> From: Denis Peplin Date: Wed, 11 Aug 2004 13:15:29 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/mirrors chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 13:15:29 -0000 den 2004-08-11 13:15:29 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/mirrors chapter.sgml Log: Use url entities Revision Changes Path 1.350 +2 -2 doc/en_US.ISO8859-1/books/handbook/mirrors/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 13:47:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C7B8916A4CE; Wed, 11 Aug 2004 13:47:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 969D643D39; Wed, 11 Aug 2004 13:47:02 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BDl2XL068975; Wed, 11 Aug 2004 13:47:02 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BDl2JG068974; Wed, 11 Aug 2004 13:47:02 GMT (envelope-from marck) Message-Id: <200408111347.i7BDl2JG068974@repoman.freebsd.org> From: Dmitry Morozovsky Date: Wed, 11 Aug 2004 13:47:02 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/share/sgml authors.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 13:47:02 -0000 marck 2004-08-11 13:47:02 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/share/sgml authors.ent Log: Add my author entity. Approved by: den (mentor) Revision Changes Path 1.321 +2 -0 doc/en_US.ISO8859-1/share/sgml/authors.ent From owner-cvs-all@FreeBSD.ORG Wed Aug 11 13:50:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCE9216A4CE; Wed, 11 Aug 2004 13:50:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DEC443D3F; Wed, 11 Aug 2004 13:50:05 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BDo5hT069079; Wed, 11 Aug 2004 13:50:05 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BDo5NT069078; Wed, 11 Aug 2004 13:50:05 GMT (envelope-from skv) Message-Id: <200408111350.i7BDo5NT069078@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 11 Aug 2004 13:50:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/p5-Class-DBI Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 13:50:05 -0000 skv 2004-08-11 13:50:05 UTC FreeBSD ports repository Modified files: databases/p5-Class-DBI Makefile pkg-descr Log: Add missing manpage PR: ports/70288 Submitted by: Yen-Ming Lee Revision Changes Path 1.11 +2 -1 ports/databases/p5-Class-DBI/Makefile 1.4 +1 -4 ports/databases/p5-Class-DBI/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Aug 11 13:50:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9348D16A4CF; Wed, 11 Aug 2004 13:50:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E24843D5F; Wed, 11 Aug 2004 13:50:58 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BDowRd069191; Wed, 11 Aug 2004 13:50:58 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BDowrF069190; Wed, 11 Aug 2004 13:50:58 GMT (envelope-from marck) Message-Id: <200408111350.i7BDowrF069190@repoman.freebsd.org> From: Dmitry Morozovsky Date: Wed, 11 Aug 2004 13:50:58 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml contrib.committers.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 13:50:58 -0000 marck 2004-08-11 13:50:58 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml contrib.committers.sgml Log: Move myself from additional contributors to committers. Approved by: den (mentor) Revision Changes Path 1.250 +0 -5 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml 1.50 +4 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 13:52:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 54C4C16A4CE; Wed, 11 Aug 2004 13:52:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3587943D3F; Wed, 11 Aug 2004 13:52:44 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BDqimu069262; Wed, 11 Aug 2004 13:52:44 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BDqiV2069261; Wed, 11 Aug 2004 13:52:44 GMT (envelope-from marck) Message-Id: <200408111352.i7BDqiV2069261@repoman.freebsd.org> From: Dmitry Morozovsky Date: Wed, 11 Aug 2004 13:52:44 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/share/pgpkeys marck.key pgpkeys.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 13:52:44 -0000 marck 2004-08-11 13:52:44 UTC FreeBSD doc repository Modified files: share/pgpkeys pgpkeys.ent Added files: share/pgpkeys marck.key Log: Add my PGP key. Approved by: den (mentor) Revision Changes Path 1.1 +54 -0 doc/share/pgpkeys/marck.key (new) 1.43 +1 -0 doc/share/pgpkeys/pgpkeys.ent From owner-cvs-all@FreeBSD.ORG Wed Aug 11 13:52:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9940C16A4CE; Wed, 11 Aug 2004 13:52:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79B4E43D1F; Wed, 11 Aug 2004 13:52:57 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BDqvFk069298; Wed, 11 Aug 2004 13:52:57 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BDqvJT069297; Wed, 11 Aug 2004 13:52:57 GMT (envelope-from skv) Message-Id: <200408111352.i7BDqvJT069297@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 11 Aug 2004 13:52:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/p5-DBD-mysql Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 13:52:57 -0000 skv 2004-08-11 13:52:57 UTC FreeBSD ports repository Modified files: databases/p5-DBD-mysql Makefile distinfo pkg-descr Log: Updated to 2.9004 Revision Changes Path 1.49 +1 -1 ports/databases/p5-DBD-mysql/Makefile 1.23 +2 -2 ports/databases/p5-DBD-mysql/distinfo 1.8 +0 -3 ports/databases/p5-DBD-mysql/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Aug 11 13:54:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C40216A4CE; Wed, 11 Aug 2004 13:54:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E62443D45; Wed, 11 Aug 2004 13:54:01 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BDs1Ab069347; Wed, 11 Aug 2004 13:54:01 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BDs1Kb069346; Wed, 11 Aug 2004 13:54:01 GMT (envelope-from scottl) Message-Id: <200408111354.i7BDs1Kb069346@repoman.freebsd.org> From: Scott Long Date: Wed, 11 Aug 2004 13:54:01 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releng index.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 13:54:01 -0000 scottl 2004-08-11 13:54:01 UTC FreeBSD doc repository Modified files: en/releng index.sgml Log: Change 'TBD 2004' to 'Oct 2004' for the 5.3 date. Revision Changes Path 1.112 +2 -2 www/en/releng/index.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 13:54:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4ED3816A4CE; Wed, 11 Aug 2004 13:54:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3072D43D31; Wed, 11 Aug 2004 13:54:33 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BDsXCq069384; Wed, 11 Aug 2004 13:54:33 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BDsXUs069383; Wed, 11 Aug 2004 13:54:33 GMT (envelope-from marck) Message-Id: <200408111354.i7BDsXUs069383@repoman.freebsd.org> From: Dmitry Morozovsky Date: Wed, 11 Aug 2004 13:54:33 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 13:54:33 -0000 marck 2004-08-11 13:54:33 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml Log: Add my PGP key to the Handbook. Approved by: den (mentor) Revision Changes Path 1.236 +5 -0 doc/en_US.ISO8859-1/books/handbook/pgpkeys/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 13:57:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9930C16A4CE; Wed, 11 Aug 2004 13:57:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77E3043D31; Wed, 11 Aug 2004 13:57:23 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BDvNjQ069528; Wed, 11 Aug 2004 13:57:23 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BDvN7Q069527; Wed, 11 Aug 2004 13:57:23 GMT (envelope-from skv) Message-Id: <200408111357.i7BDvN7Q069527@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 11 Aug 2004 13:57:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Class-Inspector Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 13:57:23 -0000 skv 2004-08-11 13:57:23 UTC FreeBSD ports repository Modified files: devel/p5-Class-Inspector Makefile distinfo pkg-descr Log: Updated to 1.06 Revision Changes Path 1.6 +1 -4 ports/devel/p5-Class-Inspector/Makefile 1.6 +2 -2 ports/devel/p5-Class-Inspector/distinfo 1.3 +0 -3 ports/devel/p5-Class-Inspector/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Aug 11 13:57:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B6FFE16A4CF; Wed, 11 Aug 2004 13:57:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACC3243D5D; Wed, 11 Aug 2004 13:57:27 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BDvRxu069584; Wed, 11 Aug 2004 13:57:27 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BDvRRE069583; Wed, 11 Aug 2004 13:57:27 GMT (envelope-from roam) Message-Id: <200408111357.i7BDvRRE069583@repoman.freebsd.org> From: Peter Pentchev Date: Wed, 11 Aug 2004 13:57:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/bogosort Makefile pkg-plist ports/misc/bogosort/files patch-config.h.in patch-sortedp.c patch-xmalloc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 13:57:27 -0000 roam 2004-08-11 13:57:27 UTC FreeBSD ports repository Modified files: misc/bogosort Makefile Added files: misc/bogosort/files patch-config.h.in patch-sortedp.c patch-xmalloc.c Removed files: misc/bogosort pkg-plist Log: A whole lotta fixes: - fix build with gcc-3.4; - fix sortedp.c and zbogotest to handle empty files properly; - add a 'test' target; - use INFO and PLIST_FILES and nuke pkg-plist. And yes, I know that adding HAVE_STRING_H to config.h.in is somewhat hackish; the proper fix - a string.h check in configure.in - is on its way to the bogosort developers :) Revision Changes Path 1.9 +18 -0 ports/misc/bogosort/Makefile 1.1 +7 -0 ports/misc/bogosort/files/patch-config.h.in (new) 1.1 +11 -0 ports/misc/bogosort/files/patch-sortedp.c (new) 1.1 +24 -0 ports/misc/bogosort/files/patch-xmalloc.c (new) 1.2 +0 -4 ports/misc/bogosort/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 13:59:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B433B16A4CE; Wed, 11 Aug 2004 13:59:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9436943D4C; Wed, 11 Aug 2004 13:59:54 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BDxs3H069635; Wed, 11 Aug 2004 13:59:54 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BDxscC069634; Wed, 11 Aug 2004 13:59:54 GMT (envelope-from marck) Message-Id: <200408111359.i7BDxscC069634@repoman.freebsd.org> From: Dmitry Morozovsky Date: Wed, 11 Aug 2004 13:59:54 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/news news.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 13:59:54 -0000 marck 2004-08-11 13:59:54 UTC FreeBSD doc repository Modified files: en/news news.xml Log: Add news about myself Approved by: den (mentor) Revision Changes Path 1.231 +10 -1 www/en/news/news.xml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 14:15:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 258C916A4CF; Wed, 11 Aug 2004 14:15:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F139643D31; Wed, 11 Aug 2004 14:15:00 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BEF06v070090; Wed, 11 Aug 2004 14:15:00 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BEF0Ka070089; Wed, 11 Aug 2004 14:15:00 GMT (envelope-from den) Message-Id: <200408111415.i7BEF0Ka070089@repoman.freebsd.org> From: Denis Peplin Date: Wed, 11 Aug 2004 14:15:00 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ru_RU.KOI8-R/books/handbook/network-servers chapter.sgml doc/ru_RU.KOI8-R/books/handbook/mirrors chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 14:15:01 -0000 den 2004-08-11 14:15:00 UTC FreeBSD doc repository Modified files: ru_RU.KOI8-R/books/handbook/network-servers chapter.sgml ru_RU.KOI8-R/books/handbook/mirrors chapter.sgml Log: Merge the following from the English version: 1.13 -> 1.22 network-servers/chapter.sgml 1.340 -> 1.350 mirrors/chapter.sgml Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.7 +54 -31 doc/ru_RU.KOI8-R/books/handbook/mirrors/chapter.sgml 1.3 +94 -42 doc/ru_RU.KOI8-R/books/handbook/network-servers/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 14:16:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A055516A4CE; Wed, 11 Aug 2004 14:16:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 807DF43D45; Wed, 11 Aug 2004 14:16:37 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BEGb0w070451; Wed, 11 Aug 2004 14:16:37 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BEGb9l070450; Wed, 11 Aug 2004 14:16:37 GMT (envelope-from skv) Message-Id: <200408111416.i7BEGb9l070450@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 11 Aug 2004 14:16:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-File-Flat Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 14:16:37 -0000 skv 2004-08-11 14:16:37 UTC FreeBSD ports repository Modified files: devel/p5-File-Flat Makefile distinfo pkg-descr Log: Updated to 0.92 Revision Changes Path 1.4 +2 -1 ports/devel/p5-File-Flat/Makefile 1.4 +2 -2 ports/devel/p5-File-Flat/distinfo 1.2 +0 -3 ports/devel/p5-File-Flat/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Aug 11 14:23:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0C7716A4CE; Wed, 11 Aug 2004 14:23:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8086D43D2D; Wed, 11 Aug 2004 14:23:47 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BENlaL070621; Wed, 11 Aug 2004 14:23:47 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BENlqQ070620; Wed, 11 Aug 2004 14:23:47 GMT (envelope-from skv) Message-Id: <200408111423.i7BENlqQ070620@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 11 Aug 2004 14:23:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-UNIVERSAL-moniker Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 14:23:47 -0000 skv 2004-08-11 14:23:47 UTC FreeBSD ports repository Modified files: devel/p5-UNIVERSAL-moniker Makefile distinfo pkg-descr Log: Updated to 0.08 Revision Changes Path 1.4 +1 -2 ports/devel/p5-UNIVERSAL-moniker/Makefile 1.4 +2 -2 ports/devel/p5-UNIVERSAL-moniker/distinfo 1.2 +0 -3 ports/devel/p5-UNIVERSAL-moniker/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Aug 11 14:29:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B9EA916A4CF; Wed, 11 Aug 2004 14:29:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A4B543D2F; Wed, 11 Aug 2004 14:29:23 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BETN0Q070792; Wed, 11 Aug 2004 14:29:23 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BETNrQ070791; Wed, 11 Aug 2004 14:29:23 GMT (envelope-from skv) Message-Id: <200408111429.i7BETNrQ070791@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 11 Aug 2004 14:29:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/p5-SWF-File Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 14:29:23 -0000 skv 2004-08-11 14:29:23 UTC FreeBSD ports repository Modified files: graphics/p5-SWF-File Makefile distinfo Log: Updated to 0.341 Revision Changes Path 1.8 +1 -1 ports/graphics/p5-SWF-File/Makefile 1.7 +2 -2 ports/graphics/p5-SWF-File/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 11 14:41:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70FE416A4CE; Wed, 11 Aug 2004 14:41:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5141943D54; Wed, 11 Aug 2004 14:41:14 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BEfEAY071179; Wed, 11 Aug 2004 14:41:14 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BEfEOx071178; Wed, 11 Aug 2004 14:41:14 GMT (envelope-from skv) Message-Id: <200408111441.i7BEfEOx071178@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 11 Aug 2004 14:41:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/p5-SWF-Builder Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 14:41:14 -0000 skv 2004-08-11 14:41:14 UTC FreeBSD ports repository Modified files: graphics/p5-SWF-Builder Makefile distinfo pkg-descr pkg-plist Log: Updated to 0.05 Revision Changes Path 1.2 +7 -4 ports/graphics/p5-SWF-Builder/Makefile 1.2 +2 -2 ports/graphics/p5-SWF-Builder/distinfo 1.2 +8 -11 ports/graphics/p5-SWF-Builder/pkg-descr 1.2 +13 -10 ports/graphics/p5-SWF-Builder/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 14:46:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7C6416A4CF; Wed, 11 Aug 2004 14:46:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAFEE43D39; Wed, 11 Aug 2004 14:46:03 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BEk3S5071376; Wed, 11 Aug 2004 14:46:03 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BEk3eR071375; Wed, 11 Aug 2004 14:46:03 GMT (envelope-from marck) Message-Id: <200408111446.i7BEk3eR071375@repoman.freebsd.org> From: Dmitry Morozovsky Date: Wed, 11 Aug 2004 14:46:03 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.386bsd.sgml contrib.committers.sgml contrib.corealumni.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 14:46:04 -0000 marck 2004-08-11 14:46:03 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/contributors contrib.386bsd.sgml contrib.committers.sgml contrib.corealumni.sgml Log: Large whitespace cleanup. Discussed on: -doc Approved by: den (mentor) Revision Changes Path 1.2 +96 -96 doc/en_US.ISO8859-1/articles/contributors/contrib.386bsd.sgml 1.51 +328 -328 doc/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml 1.4 +27 -27 doc/en_US.ISO8859-1/articles/contributors/contrib.corealumni.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 14:52:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D114316A4CE; Wed, 11 Aug 2004 14:52:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B295843D2F; Wed, 11 Aug 2004 14:52:33 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BEqX6O071622; Wed, 11 Aug 2004 14:52:33 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BEqXg8071621; Wed, 11 Aug 2004 14:52:33 GMT (envelope-from jmg) Message-Id: <200408111452.i7BEqXg8071621@repoman.freebsd.org> From: John-Mark Gurney Date: Wed, 11 Aug 2004 14:52:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 bus_dma.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 14:52:34 -0000 jmg 2004-08-11 14:52:33 UTC FreeBSD src repository Modified files: share/man/man9 bus_dma.9 Log: fix description of the macros for BUS_DMASYNC opertions. It's from the CPU's point of view... Add a reference to a better description of what the ops do... Reviewed by: scottl Revision Changes Path 1.14 +4 -2 src/share/man/man9/bus_dma.9 From owner-cvs-all@FreeBSD.ORG Wed Aug 11 14:52:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D664F16A4CE; Wed, 11 Aug 2004 14:52:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA8F343D1F; Wed, 11 Aug 2004 14:52:50 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BEqofo071669; Wed, 11 Aug 2004 14:52:50 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BEqoNN071668; Wed, 11 Aug 2004 14:52:50 GMT (envelope-from njl) Message-Id: <200408111452.i7BEqoNN071668@repoman.freebsd.org> From: Nate Lawson Date: Wed, 11 Aug 2004 14:52:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci_link.c acpi_pcib.c acpi_pcib_acpi.c acpi_pcib_pci.c acpi_pcibvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 14:52:51 -0000 njl 2004-08-11 14:52:50 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci_link.c acpi_pcib.c acpi_pcib_acpi.c acpi_pcib_pci.c acpi_pcibvar.h Log: Re-work ACPI PCI IRQ routing (_PRT, link devices). The old approach was incomplete in that the PRT routing was not aware of link programming. Fix this by doing all routing through the link devices. The new algorithm for setting up links is: 1. Read _CRS to get current setting. If invalid (not in _PRS), then set to 0. 2. Attempt to call _DIS on the link. If successful, mark the link as not routed. Otherwise, assume it still is. Then when a routing request occurs: 3. Update weights for all IRQs 4. Attempt to route the initial IRQ if valid 5. If that fails, walk through the sorted list, attempting to route IRQs. 6. Configure the trigger/polarity based on _PRS. Other changes: * Add acpi_pci_find_prt() to look up the PRT entry for a given device and acpi_pci_link_route() to select/route the best IRQ for it. * Remove duplicated code in acpi_pcib_route_interrupt() that picked the first IRQ from _PRS. * Remove unneeded arguments from acpi_pcib_resume() and friends. * Ignore _STA on link devices but report if it seems strange. * Add a prt_source handle to the PRT structure since the ACPI struct ACPI_PCI_ROUTING_TABLE uses a fixed-size entry for it. We'll need to dynamically size this object if we want to use it the same way ACPI-CA does. Null-terminate the source. Tested by: Luo Hong , Jeffrey Katcher Info from: jhb, Len Brown (Intel) Revision Changes Path 1.19 +242 -201 src/sys/dev/acpica/acpi_pci_link.c 1.47 +48 -264 src/sys/dev/acpica/acpi_pcib.c 1.39 +2 -6 src/sys/dev/acpica/acpi_pcib_acpi.c 1.10 +2 -3 src/sys/dev/acpica/acpi_pcib_pci.c 1.3 +35 -4 src/sys/dev/acpica/acpi_pcibvar.h From owner-cvs-all@FreeBSD.ORG Wed Aug 11 14:56:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5797D16A4CE; Wed, 11 Aug 2004 14:56:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 388A743D3F; Wed, 11 Aug 2004 14:56:53 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BEurqg071872; Wed, 11 Aug 2004 14:56:53 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BEurL9071871; Wed, 11 Aug 2004 14:56:53 GMT (envelope-from vs) Message-Id: <200408111456.i7BEurL9071871@repoman.freebsd.org> From: Volker Stolz Date: Wed, 11 Aug 2004 14:56:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/gj Makefile pkg-plist ports/java/gj-jdk11 Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 14:56:53 -0000 vs 2004-08-11 14:56:53 UTC FreeBSD ports repository Modified files: java/gj Makefile pkg-plist java/gj-jdk11 Makefile pkg-plist Log: - Use bsd.java.mk-2.0 (reminded by hq@) - Use PKGNAMESUFFIX - Twiddle PLIST_FILES/pkg-plist to hopefully ease merging Revision Changes Path 1.2 +1 -0 ports/java/gj-jdk11/Makefile 1.2 +0 -3 ports/java/gj-jdk11/pkg-plist 1.3 +6 -3 ports/java/gj/Makefile 1.2 +1 -4 ports/java/gj/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 14:57:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FE6A16A4CE; Wed, 11 Aug 2004 14:57:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F0DD43D1F; Wed, 11 Aug 2004 14:57:48 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BEvltx071969; Wed, 11 Aug 2004 14:57:47 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BEvlfP071968; Wed, 11 Aug 2004 14:57:47 GMT (envelope-from skv) Message-Id: <200408111457.i7BEvlfP071968@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 11 Aug 2004 14:57:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc Makefile ports/textproc/p5-Pod-DocBook Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 14:57:48 -0000 skv 2004-08-11 14:57:47 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-Pod-DocBook Makefile distinfo pkg-descr pkg-plist Log: Add p5-Pod-DocBook 1.2, convert Pod data to DocBook SGML. Revision Changes Path 1.739 +1 -0 ports/textproc/Makefile 1.1 +35 -0 ports/textproc/p5-Pod-DocBook/Makefile (new) 1.1 +2 -0 ports/textproc/p5-Pod-DocBook/distinfo (new) 1.1 +6 -0 ports/textproc/p5-Pod-DocBook/pkg-descr (new) 1.1 +6 -0 ports/textproc/p5-Pod-DocBook/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 14:58:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 388B616A4CE; Wed, 11 Aug 2004 14:58:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AA6443D48; Wed, 11 Aug 2004 14:58:00 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BEvx68072020; Wed, 11 Aug 2004 14:57:59 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BEvx8L072019; Wed, 11 Aug 2004 14:57:59 GMT (envelope-from skv) Message-Id: <200408111457.i7BEvx8L072019@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 11 Aug 2004 14:57:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 14:58:00 -0000 skv 2004-08-11 14:57:59 UTC FreeBSD ports repository Modified files: . modules Log: p5-Pod-DocBook --> ports/textproc/p5-Pod-DocBook Revision Changes Path 1.10870 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 11 15:05:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE13416A4D0 for ; Wed, 11 Aug 2004 15:05:09 +0000 (GMT) Received: from mail3.speakeasy.net (mail3.speakeasy.net [216.254.0.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2ACF43D53 for ; Wed, 11 Aug 2004 15:04:59 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 17472 invoked from network); 11 Aug 2004 15:04:59 -0000 Received: from gate.funkthat.com (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail3.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 11 Aug 2004 15:04:59 -0000 Received: from hydrogen.funkthat.com (gxwfwn@localhost.funkthat.com [127.0.0.1])i7BF4wuU000595; Wed, 11 Aug 2004 08:04:58 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id i7BF4wco000594; Wed, 11 Aug 2004 08:04:58 -0700 (PDT) Date: Wed, 11 Aug 2004 08:04:58 -0700 From: John-Mark Gurney To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040811150458.GU991@funkthat.com> References: <200408111452.i7BEqXg8071621@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408111452.i7BEqXg8071621@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html Subject: Re: cvs commit: src/share/man/man9 bus_dma.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 15:05:10 -0000 John-Mark Gurney wrote this message on Wed, Aug 11, 2004 at 14:52 +0000: > jmg 2004-08-11 14:52:33 UTC > > FreeBSD src repository > > Modified files: > share/man/man9 bus_dma.9 > Log: > fix description of the macros for BUS_DMASYNC opertions. It's from the CPU's > point of view... Add a reference to a better description of what the ops > do... If you were previously confused (and even if you thought you knew what they were) on what BUS_DMASYNC_ ops to us, please reread the manpage and review any drivers written using them. -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-all@FreeBSD.ORG Wed Aug 11 15:40:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A460B16A4E9; Wed, 11 Aug 2004 15:40:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8395F43D49; Wed, 11 Aug 2004 15:40:32 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BFeWNT073186; Wed, 11 Aug 2004 15:40:32 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BFeWS0073185; Wed, 11 Aug 2004 15:40:32 GMT (envelope-from nork) Message-Id: <200408111540.i7BFeWS0073185@repoman.freebsd.org> From: Norikatsu Shigemura Date: Wed, 11 Aug 2004 15:40:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/p5-Crypt-OpenSSL-RSA Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 15:40:33 -0000 nork 2004-08-11 15:40:32 UTC FreeBSD ports repository Modified files: security/p5-Crypt-OpenSSL-RSA Makefile distinfo pkg-descr pkg-plist Log: Update to 0.21. PR: ports/70257 Submitted by: skv Revision Changes Path 1.14 +1 -1 ports/security/p5-Crypt-OpenSSL-RSA/Makefile 1.9 +2 -2 ports/security/p5-Crypt-OpenSSL-RSA/distinfo 1.3 +2 -0 ports/security/p5-Crypt-OpenSSL-RSA/pkg-descr 1.6 +0 -3 ports/security/p5-Crypt-OpenSSL-RSA/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 15:46:10 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A022816A4CE; Wed, 11 Aug 2004 15:46:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8039343D58; Wed, 11 Aug 2004 15:46:10 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BFkAGv073361; Wed, 11 Aug 2004 15:46:10 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BFkAIE073360; Wed, 11 Aug 2004 15:46:10 GMT (envelope-from eik) Message-Id: <200408111546.i7BFkAIE073360@repoman.freebsd.org> From: Oliver Eikemeier Date: Wed, 11 Aug 2004 15:46:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pkg_install/version Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 15:46:10 -0000 eik 2004-08-11 15:46:10 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/version Makefile Log: FWIIW, make the `test' target in pkg_install/version actually work. Revision Changes Path 1.15 +1 -1 src/usr.sbin/pkg_install/version/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 15:47:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6BCA416A4CE; Wed, 11 Aug 2004 15:47:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D27B43D5A; Wed, 11 Aug 2004 15:47:13 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BFlDLV073403; Wed, 11 Aug 2004 15:47:13 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BFlD7f073402; Wed, 11 Aug 2004 15:47:13 GMT (envelope-from eik) Message-Id: <200408111547.i7BFlD7f073402@repoman.freebsd.org> From: Oliver Eikemeier Date: Wed, 11 Aug 2004 15:47:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pkg_install/add pkg_add.1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 15:47:13 -0000 eik 2004-08-11 15:47:13 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/add pkg_add.1 Log: typo Approved by: ru Revision Changes Path 1.65 +1 -1 src/usr.sbin/pkg_install/add/pkg_add.1 From owner-cvs-all@FreeBSD.ORG Wed Aug 11 15:52:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6D0F16A4CE; Wed, 11 Aug 2004 15:52:56 +0000 (GMT) Received: from creme-brulee.marcuscom.com (rrcs-midsouth-24-172-16-118.biz.rr.com [24.172.16.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB2A543D45; Wed, 11 Aug 2004 15:52:55 +0000 (GMT) (envelope-from marcus@marcuscom.com) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) i7BFmhdK055559; Wed, 11 Aug 2004 11:48:43 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Maxim Sobolev In-Reply-To: <411A0B41.9070607@portaone.com> References: <411A0898.3020605@portaone.com> <411A0B41.9070607@portaone.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-ibuPqjDj8BcS64n5L9np" Organization: MarcusCom, Inc. Message-Id: <1092239490.731.0.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Wed, 11 Aug 2004 11:51:30 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on creme-brulee.marcuscom.com cc: cvs-ports@FreeBSD.org cc: ports-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Oliver Eikemeier Subject: Re: cvs commit: CVSROOT modules ports/shells Makefilepkg-install patch-bashline.c patch-builtins_shopt.def patch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 15:52:56 -0000 --=-ibuPqjDj8BcS64n5L9np Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2004-08-11 at 08:04, Maxim Sobolev wrote: > P.S. My recommendation is to kill both bash1 and bash2, repo-copy bash3=20 > into just bash and remove bash3 as well. Actually, we can't do that. In order to preserve all histories, we should delete bash2 and bash3, and update bash to 3.0....that is, if that's what all the maintainers agree to. Joe >=20 > Maxim Sobolev wrote: > > Oliver Eikemeier wrote: > >=20 > >> Maxim Sobolev wrote: > >> > >>> Hmmm, why do we have those "bash", "bash2" and "bash3"? There may=20 > >>> have been some historical reasons for bash/bash2 separation, but I=20 > >>> wonder if they are still valid for the bash2 vs bash3 case. > >> > >> > >> > >> I guess bash 3.0 (like most .0 releases) has still some bugs to be=20 > >> ironed out, see for example: > >> > >> > >=20 > >=20 > > Well, all software have bugs, if bash maintainers think that it is read= y=20 > > for release, shouldn't we just agree with their decision? Critical bugs= =20 > > can be backported into the ports tree if necessary until next stable=20 > > release is out. That is how our ports tree works. If somebody wants=20 > > previous version he can get it from pre-compiled packages or from cvs r= epo. > >=20 > >> Therefore it seems wise to keep bash2 to run scripts until bash3 is=20 > >> mature. > >> OTOH people might want to use the new bash3 features: > >> > >> > >> So having bash2 and bash3 is justified. Do you think the directories=20 > >> should have different names? > >=20 > >=20 > > I still don't see the reason for having bash2/bash3. We have more than=20 > > 10000 ports in the tree, most of them are routinely being updated to th= e=20 > > new major release without creating those ugly new fooN ports. > >=20 > > Creation of fooN is only justified if it is backward incompatible with=20 > > foo{N-1}, while there are still ports in the tree that rely on previous= =20 > > version. Hypotetical bugs in .0 release does not justify it. > >=20 > > -Maxim > >=20 > >=20 > >=20 --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-ibuPqjDj8BcS64n5L9np Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBGkCCb2iPiv4Uz4cRAsJdAJ0aebclsCP5nSvV+rzsnAe0O7bblwCgpl8M FTv0oYhuWOWym5kOWEOuAgI= =n1nj -----END PGP SIGNATURE----- --=-ibuPqjDj8BcS64n5L9np-- From owner-cvs-all@FreeBSD.ORG Wed Aug 11 15:55:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 22A4716A4CE; Wed, 11 Aug 2004 15:55:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 035C743D1D; Wed, 11 Aug 2004 15:55:23 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BFtM8q073656; Wed, 11 Aug 2004 15:55:22 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BFtM6s073655; Wed, 11 Aug 2004 15:55:22 GMT (envelope-from mat) Message-Id: <200408111555.i7BFtM6s073655@repoman.freebsd.org> From: Mathieu Arnold Date: Wed, 11 Aug 2004 15:55:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/spamass-rules Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 15:55:23 -0000 mat 2004-08-11 15:55:22 UTC FreeBSD ports repository Modified files: mail/spamass-rules Makefile distinfo Log: - Update to 20040811 - Added new options: AHBL - dnsbl.ahbl.org BRAZILIAN GERMAN PR: 70293 Submitted by: maintainer Revision Changes Path 1.4 +24 -3 ports/mail/spamass-rules/Makefile 1.2 +2 -2 ports/mail/spamass-rules/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:01:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1116216A4CE; Wed, 11 Aug 2004 16:01:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3BB743D5C; Wed, 11 Aug 2004 16:01:46 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BG1kpj073840; Wed, 11 Aug 2004 16:01:46 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BG1kR7073839; Wed, 11 Aug 2004 16:01:46 GMT (envelope-from harti) Message-Id: <200408111601.i7BG1kR7073839@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 16:01:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:01:47 -0000 harti 2004-08-11 16:01:46 UTC FreeBSD src repository Modified files: lib/libbsnmp/modules Makefile Log: Again something bad is happening so comment out the ATM module. Revision Changes Path 1.5 +3 -3 src/lib/libbsnmp/modules/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:05:51 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 505BE16A4CF; Wed, 11 Aug 2004 16:05:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EA1B43D1D; Wed, 11 Aug 2004 16:05:51 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BG5pN9074059; Wed, 11 Aug 2004 16:05:51 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BG5pJe074058; Wed, 11 Aug 2004 16:05:51 GMT (envelope-from vanilla) Message-Id: <200408111605.i7BG5pJe074058@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Wed, 11 Aug 2004 16:05:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc Makefileports/textproc/p5-Template-Magic Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:05:51 -0000 vanilla 2004-08-11 16:05:51 UTC FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-Template-Magic Makefile distinfo pkg-descr pkg-plist Log: Add p5-Template-Magic 1.25, a Perl Module with magic merger of runtime values with templates. PR: ports/69451 Submitted by: Cheng-Lung Sung Revision Changes Path 1.740 +1 -0 ports/textproc/Makefile 1.1 +35 -0 ports/textproc/p5-Template-Magic/Makefile (new) 1.1 +2 -0 ports/textproc/p5-Template-Magic/distinfo (new) 1.1 +8 -0 ports/textproc/p5-Template-Magic/pkg-descr (new) 1.1 +18 -0 ports/textproc/p5-Template-Magic/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:07:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9729C16A4CE; Wed, 11 Aug 2004 16:07:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 781FD43D3F; Wed, 11 Aug 2004 16:07:37 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BG7b5L074119; Wed, 11 Aug 2004 16:07:37 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BG7bj9074118; Wed, 11 Aug 2004 16:07:37 GMT (envelope-from vanilla) Message-Id: <200408111607.i7BG7bj9074118@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Wed, 11 Aug 2004 16:07:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:07:37 -0000 vanilla 2004-08-11 16:07:37 UTC FreeBSD ports repository Modified files: . modules Log: Add p5-Template-Magic. Revision Changes Path 1.10871 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:10:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE2DC16A4CE; Wed, 11 Aug 2004 16:10:20 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47F2743D1D; Wed, 11 Aug 2004 16:10:18 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-13.local ([172.16.0.13] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1Buvg7-0007d2-48; Wed, 11 Aug 2004 18:10:17 +0200 Date: Wed, 11 Aug 2004 18:11:52 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Joe Marcus Clarke From: Oliver Eikemeier In-Reply-To: <1092239490.731.0.camel@gyros> Message-Id: <282D8E76-EBB1-11D8-887A-00039312D914@fillmore-labs.com> Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: cvs-ports@FreeBSD.org cc: Maxim Sobolev cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: CVSROOT modules ports/shells Makefile ports/shells/bash3 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/shells/bash3/files patch-ac patch-af patch-bashline.c patch-builtins_shopt.def patch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:10:20 -0000 Joe Marcus Clarke wrote: > On Wed, 2004-08-11 at 08:04, Maxim Sobolev wrote: >> P.S. My recommendation is to kill both bash1 and bash2, repo-copy bash3 >> into just bash and remove bash3 as well. > > Actually, we can't do that. In order to preserve all histories, we > should delete bash2 and bash3, and update bash to 3.0....that is, if > that's what all the maintainers agree to. Since there never has been a shells/bash port (only shells/bash1) we can do a repocopy bash3 -> bash. When you think repocopying bash3 -> bash is a good idea, just do it. I'm fine with deleting bash1, but I think we should keep bash2 around a little longer, unfortunately the bugs in the .0 release seem not to be purely hypothetical. Anyway, this should mostly affect complex bash scripts, not interactive usage. We we do the repocopy we should fix the LATEST_LINKs of both ports. -Oliver From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:14:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F044A16A4CE; Wed, 11 Aug 2004 16:14:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D020443D1D; Wed, 11 Aug 2004 16:14:07 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGE78Z074305; Wed, 11 Aug 2004 16:14:07 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGE7CJ074304; Wed, 11 Aug 2004 16:14:07 GMT (envelope-from kuriyama) Message-Id: <200408111614.i7BGE7CJ074304@repoman.freebsd.org> From: Jun Kuriyama Date: Wed, 11 Aug 2004 16:14:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/swatch Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:14:08 -0000 kuriyama 2004-08-11 16:14:07 UTC FreeBSD ports repository Modified files: security/swatch Makefile distinfo pkg-plist Log: Upgrade to 3.1.1. Approved by: maintainer Revision Changes Path 1.20 +4 -4 ports/security/swatch/Makefile 1.8 +2 -2 ports/security/swatch/distinfo 1.7 +6 -1 ports/security/swatch/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:14:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EEDB16A4CE; Wed, 11 Aug 2004 16:14:46 +0000 (GMT) Received: from creme-brulee.marcuscom.com (rrcs-midsouth-24-172-16-118.biz.rr.com [24.172.16.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id A10B943D2F; Wed, 11 Aug 2004 16:14:45 +0000 (GMT) (envelope-from marcus@marcuscom.com) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) i7BGAbNg055793; Wed, 11 Aug 2004 12:10:37 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Oliver Eikemeier In-Reply-To: <282D8E76-EBB1-11D8-887A-00039312D914@fillmore-labs.com> References: <282D8E76-EBB1-11D8-887A-00039312D914@fillmore-labs.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-sSrDz0OwUQP0MZdDbmCA" Organization: MarcusCom, Inc. Message-Id: <1092240804.731.11.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Wed, 11 Aug 2004 12:13:25 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on creme-brulee.marcuscom.com cc: cvs-ports@FreeBSD.org cc: Maxim Sobolev cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: CVSROOT modules ports/shells Makefilepkg-install patch-bashline.c patch-builtins_shopt.def patch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:14:46 -0000 --=-sSrDz0OwUQP0MZdDbmCA Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2004-08-11 at 12:11, Oliver Eikemeier wrote: > Joe Marcus Clarke wrote: >=20 > > On Wed, 2004-08-11 at 08:04, Maxim Sobolev wrote: > >> P.S. My recommendation is to kill both bash1 and bash2, repo-copy bash= 3 > >> into just bash and remove bash3 as well. > > > > Actually, we can't do that. In order to preserve all histories, we > > should delete bash2 and bash3, and update bash to 3.0....that is, if > > that's what all the maintainers agree to. >=20 > Since there never has been a shells/bash port (only shells/bash1) we can=20 > do a repocopy bash3 -> bash. Sorry, I missed the fact that bash 1.x was bash1 and not just bash. > When you think repocopying bash3 -> bash is=20 > a good idea, just do it. I don't use bash, so I'll leave it up to those that know. > I'm fine with deleting bash1, but I think we=20 > should keep bash2 around a little longer, unfortunately the bugs in the=20 > .0 release seem not to be purely hypothetical. Anyway, this should=20 > mostly affect complex bash scripts, not interactive usage. We we do the=20 > repocopy we should fix the LATEST_LINKs of both ports. Just file the PR, and the copy will be done. Joe >=20 > -Oliver --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-sSrDz0OwUQP0MZdDbmCA Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBGkWkb2iPiv4Uz4cRAiyCAJ978nHo8Jo4P/kdHJKYpq2FeY0IaACgkiqC /Z66HkcRq/ll8TKviNdthXg= =ySCg -----END PGP SIGNATURE----- --=-sSrDz0OwUQP0MZdDbmCA-- From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:16:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 331C516A4D0; Wed, 11 Aug 2004 16:16:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 122DD43D1D; Wed, 11 Aug 2004 16:16:25 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGGO5H074678; Wed, 11 Aug 2004 16:16:24 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGGOYZ074677; Wed, 11 Aug 2004 16:16:24 GMT (envelope-from eik) Message-Id: <200408111616.i7BGGOYZ074677@repoman.freebsd.org> From: Oliver Eikemeier Date: Wed, 11 Aug 2004 16:16:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:16:25 -0000 eik 2004-08-11 16:16:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c pkg_delete.1 usr.sbin/pkg_install/info Makefile info.h main.c perform.c pkg_info.1 show.c usr.sbin/pkg_install/lib Makefile deps.c file.c lib.h match.c pen.c plist.c str.c version.c usr.sbin/pkg_install/sign Makefile pgp_sign.c pkg_sign.1 sha1.c sign.c stand.h x509.c usr.sbin/pkg_install/version Makefile pkg_version.1 test-pkg_version.sh Added files: (Branch: RELENG_4) usr.sbin/pkg_install/lib url.c usr.sbin/pkg_install/version main.c perform.c version.h Removed files: (Branch: RELENG_4) usr.sbin/pkg_install/version pkg_version.pl Log: sync the pkg_install tools with -CURRENT: - MFC of the package tools revision 20040629 changes. - replace the perl version of pkg_version(1) by its C equivalent, which means that `pkg_version -c' does no longer work - keep the perl version of pkg_update(1) until a replacement is available - include some man pages fixes Revision Changes Path 1.11.2.5 +2 -1 src/usr.sbin/pkg_install/add/Makefile 1.9.2.2 +1 -1 src/usr.sbin/pkg_install/add/add.h 1.25.2.12 +5 -5 src/usr.sbin/pkg_install/add/extract.c 1.9.2.5 +5 -5 src/usr.sbin/pkg_install/add/futil.c 1.29.2.23 +35 -7 src/usr.sbin/pkg_install/add/main.c 1.57.2.17 +18 -13 src/usr.sbin/pkg_install/add/perform.c 1.35.2.16 +73 -28 src/usr.sbin/pkg_install/add/pkg_add.1 1.11.2.4 +7 -12 src/usr.sbin/pkg_install/create/Makefile 1.15.2.7 +2 -1 src/usr.sbin/pkg_install/create/create.h 1.21.2.9 +10 -4 src/usr.sbin/pkg_install/create/main.c 1.49.2.20 +20 -7 src/usr.sbin/pkg_install/create/perform.c 1.35.2.19 +89 -43 src/usr.sbin/pkg_install/create/pkg_create.1 1.13.2.9 +47 -31 src/usr.sbin/pkg_install/create/pl.c 1.11.2.5 +4 -8 src/usr.sbin/pkg_install/delete/Makefile 1.5.2.3 +1 -2 src/usr.sbin/pkg_install/delete/delete.h 1.17.2.9 +7 -2 src/usr.sbin/pkg_install/delete/main.c 1.22.2.13 +47 -30 src/usr.sbin/pkg_install/delete/perform.c 1.16.2.10 +30 -13 src/usr.sbin/pkg_install/delete/pkg_delete.1 1.11.2.5 +2 -1 src/usr.sbin/pkg_install/info/Makefile 1.11.2.12 +4 -0 src/usr.sbin/pkg_install/info/info.h 1.22.2.17 +29 -6 src/usr.sbin/pkg_install/info/main.c 1.29.2.15 +43 -21 src/usr.sbin/pkg_install/info/perform.c 1.24.2.16 +72 -22 src/usr.sbin/pkg_install/info/pkg_info.1 1.14.2.16 +4 -1 src/usr.sbin/pkg_install/info/show.c 1.6.8.7 +3 -2 src/usr.sbin/pkg_install/lib/Makefile 1.1.2.9 +3 -3 src/usr.sbin/pkg_install/lib/deps.c 1.40.2.16 +23 -134 src/usr.sbin/pkg_install/lib/file.c 1.29.2.15 +15 -7 src/usr.sbin/pkg_install/lib/lib.h 1.2.2.10 +205 -33 src/usr.sbin/pkg_install/lib/match.c 1.31.2.8 +2 -2 src/usr.sbin/pkg_install/lib/pen.c 1.29.2.13 +4 -3 src/usr.sbin/pkg_install/lib/plist.c 1.6.2.7 +2 -2 src/usr.sbin/pkg_install/lib/str.c 1.4.2.1 +154 -0 src/usr.sbin/pkg_install/lib/url.c (new) 1.1.2.4 +280 -0 src/usr.sbin/pkg_install/lib/version.c 1.1.2.3 +6 -5 src/usr.sbin/pkg_install/sign/Makefile 1.1.2.4 +1 -0 src/usr.sbin/pkg_install/sign/pgp_sign.c 1.1.2.6 +4 -2 src/usr.sbin/pkg_install/sign/pkg_sign.1 1.1.2.4 +15 -9 src/usr.sbin/pkg_install/sign/sha1.c 1.1.2.4 +1 -0 src/usr.sbin/pkg_install/sign/sign.c 1.1.2.2 +2 -2 src/usr.sbin/pkg_install/sign/stand.h 1.1.2.3 +3 -4 src/usr.sbin/pkg_install/sign/x509.c 1.5.2.6 +17 -4 src/usr.sbin/pkg_install/version/Makefile 1.2.2.1 +103 -0 src/usr.sbin/pkg_install/version/main.c (new) 1.10.2.1 +390 -0 src/usr.sbin/pkg_install/version/perform.c (new) 1.5.2.15 +47 -57 src/usr.sbin/pkg_install/version/pkg_version.1 1.4.2.15 +0 -623 src/usr.sbin/pkg_install/version/pkg_version.pl (dead) 1.1.2.6 +20 -1 src/usr.sbin/pkg_install/version/test-pkg_version.sh 1.3.2.1 +47 -0 src/usr.sbin/pkg_install/version/version.h (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:16:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A91C16A4CE; Wed, 11 Aug 2004 16:16:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A8AE43D55; Wed, 11 Aug 2004 16:16:47 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGGl7t074713; Wed, 11 Aug 2004 16:16:47 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGGlF9074712; Wed, 11 Aug 2004 16:16:47 GMT (envelope-from vs) Message-Id: <200408111616.i7BGGlF9074712@repoman.freebsd.org> From: Volker Stolz Date: Wed, 11 Aug 2004 16:16:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/simplog Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:16:47 -0000 vs 2004-08-11 16:16:47 UTC FreeBSD ports repository Modified files: www/simplog Makefile pkg-descr Log: Update MASTER_SITES and contents of Makefile & pkg-descr PR: ports/70256 Submitted by: Jose Liang (maintainer) Revision Changes Path 1.2 +7 -13 ports/www/simplog/Makefile 1.2 +3 -0 ports/www/simplog/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:18:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D39816A4CE; Wed, 11 Aug 2004 16:18:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C80743D1F; Wed, 11 Aug 2004 16:18:19 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGIJPm074796; Wed, 11 Aug 2004 16:18:19 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGIJin074795; Wed, 11 Aug 2004 16:18:19 GMT (envelope-from marck) Message-Id: <200408111618.i7BGIJin074795@repoman.freebsd.org> From: Dmitry Morozovsky Date: Wed, 11 Aug 2004 16:18:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:18:19 -0000 marck 2004-08-11 16:18:19 UTC FreeBSD src repository (doc committer) Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add my birthday. Approved by: den (mentor) Revision Changes Path 1.134 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:18:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B40A16A4CF; Wed, 11 Aug 2004 16:18:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E115B43D3F; Wed, 11 Aug 2004 16:18:44 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGIiw6074829; Wed, 11 Aug 2004 16:18:44 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGIibD074828; Wed, 11 Aug 2004 16:18:44 GMT (envelope-from eik) Message-Id: <200408111618.i7BGIibD074828@repoman.freebsd.org> From: Oliver Eikemeier Date: Wed, 11 Aug 2004 16:18:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/sys param.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:18:45 -0000 eik 2004-08-11 16:18:44 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) sys/sys param.h Log: bump __FreeBSD_version for the MFC of revision 20040629 of the package tools. Revision Changes Path 1.61.2.44 +1 -1 src/sys/sys/param.h From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:22:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77EF816A4CE; Wed, 11 Aug 2004 16:22:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 584B443D53; Wed, 11 Aug 2004 16:22:06 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGM68r074974; Wed, 11 Aug 2004 16:22:06 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGM6qg074973; Wed, 11 Aug 2004 16:22:06 GMT (envelope-from eik) Message-Id: <200408111622.i7BGM6qg074973@repoman.freebsd.org> From: Oliver Eikemeier Date: Wed, 11 Aug 2004 16:22:06 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/porters-handbook book.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:22:06 -0000 eik 2004-08-11 16:22:06 UTC FreeBSD doc repository (src,ports committer) Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: document __FreeBSD_version 491101: MFC of the package tools revision 20040629. Revision Changes Path 1.480 +6 -0 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:24:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 703A716A4E7; Wed, 11 Aug 2004 16:24:06 +0000 (GMT) Received: from shrike.submonkey.net (cpc2-cdif3-6-0-cust204.cdif.cable.ntl.com [81.103.67.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0382543D31; Wed, 11 Aug 2004 16:24:06 +0000 (GMT) (envelope-from setantae@submonkey.net) Received: from setantae by shrike.submonkey.net with local (Exim 4.41 (FreeBSD)) id 1BuvtV-000L8e-5C; Wed, 11 Aug 2004 17:24:05 +0100 Date: Wed, 11 Aug 2004 17:24:05 +0100 From: Ceri Davies To: Oliver Eikemeier Message-ID: <20040811162405.GV87690@submonkey.net> Mail-Followup-To: Ceri Davies , Oliver Eikemeier , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200408111616.i7BGGOYZ074677@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ch6x/diZ8cQC324S" Content-Disposition: inline In-Reply-To: <200408111616.i7BGGOYZ074677@repoman.freebsd.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.6i Sender: Ceri Davies cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:24:06 -0000 --ch6x/diZ8cQC324S Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 11, 2004 at 04:16:24PM +0000, Oliver Eikemeier wrote: > eik 2004-08-11 16:16:24 UTC >=20 > =20 > - replace the perl version of pkg_version(1) by its C equivalent, > which means that `pkg_version -c' does no longer work I don't think that this should have gone into RELENG_4, in this case. Ceri --=20 --ch6x/diZ8cQC324S Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBGkgkocfcwTS3JF8RApO1AJ9+j5hZROpcNithJNIveLiZo1xcDwCfXh3/ fJY+k3d6MQ2xGBRPXPwTCBE= =GOIl -----END PGP SIGNATURE----- --ch6x/diZ8cQC324S-- From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:24:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65BCE16A4DC; Wed, 11 Aug 2004 16:24:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5849D43D55; Wed, 11 Aug 2004 16:24:26 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGOQm1075177; Wed, 11 Aug 2004 16:24:26 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGOQdI075176; Wed, 11 Aug 2004 16:24:26 GMT (envelope-from blackend) Message-Id: <200408111624.i7BGOQdI075176@repoman.freebsd.org> From: Marc Fonvieille Date: Wed, 11 Aug 2004 16:24:26 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/disks chapter.sgml doc/en_US.ISO8859-1/books/handbook/installchapter.sgml doc/en_US.ISO8859-1/books/handbook/network-serverschapter.sgml ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:24:26 -0000 blackend 2004-08-11 16:24:26 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/disks chapter.sgml en_US.ISO8859-1/books/handbook/install chapter.sgml en_US.ISO8859-1/books/handbook/linuxemu chapter.sgml en_US.ISO8859-1/books/handbook/multimedia chapter.sgml en_US.ISO8859-1/books/handbook/network-servers chapter.sgml en_US.ISO8859-1/books/handbook/ppp-and-slip chapter.sgml en_US.ISO8859-1/books/handbook/security chapter.sgml en_US.ISO8859-1/books/handbook/serialcomms chapter.sgml en_US.ISO8859-1/books/handbook/vinum chapter.sgml Log: Devices name/node tagging is not consistent in the Handbook, it should respect the following scheme: - if the device name is /dev/foo --> /dev/foo - if the device name is just foo --> foo (See "4.2.5.7 Devices" from fdp-primer) Revision Changes Path 1.219 +5 -5 doc/en_US.ISO8859-1/books/handbook/disks/chapter.sgml 1.300 +1 -1 doc/en_US.ISO8859-1/books/handbook/install/chapter.sgml 1.114 +10 -10 doc/en_US.ISO8859-1/books/handbook/linuxemu/chapter.sgml 1.89 +14 -14 doc/en_US.ISO8859-1/books/handbook/multimedia/chapter.sgml 1.24 +1 -1 doc/en_US.ISO8859-1/books/handbook/network-servers/chapter.sgml 1.142 +13 -8 doc/en_US.ISO8859-1/books/handbook/ppp-and-slip/chapter.sgml 1.210 +2 -2 doc/en_US.ISO8859-1/books/handbook/security/chapter.sgml 1.94 +7 -7 doc/en_US.ISO8859-1/books/handbook/serialcomms/chapter.sgml 1.31 +24 -24 doc/en_US.ISO8859-1/books/handbook/vinum/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:28:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42ADA16A4CE; Wed, 11 Aug 2004 16:28:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2453943D45; Wed, 11 Aug 2004 16:28:41 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGSfwW075310; Wed, 11 Aug 2004 16:28:41 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGSfiT075309; Wed, 11 Aug 2004 16:28:41 GMT (envelope-from blackend) Message-Id: <200408111628.i7BGSfiT075309@repoman.freebsd.org> From: Marc Fonvieille Date: Wed, 11 Aug 2004 16:28:41 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/multimedia chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:28:41 -0000 blackend 2004-08-11 16:28:41 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/multimedia chapter.sgml Log: s/I/We Revision Changes Path 1.90 +1 -1 doc/en_US.ISO8859-1/books/handbook/multimedia/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:31:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D9F7716A4CE; Wed, 11 Aug 2004 16:31:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9BAE43D53; Wed, 11 Aug 2004 16:31:49 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGVn5K075468; Wed, 11 Aug 2004 16:31:49 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGVnMx075467; Wed, 11 Aug 2004 16:31:49 GMT (envelope-from skv) Message-Id: <200408111631.i7BGVnMx075467@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 11 Aug 2004 16:31:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Devel-DProf Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:31:50 -0000 skv 2004-08-11 16:31:49 UTC FreeBSD ports repository Modified files: devel/p5-Devel-DProf Makefile pkg-descr Log: Update port: * mark as IGNORE if perl >= 5.6.0 (already included) * clean pkg-descr * change MAINTAINER to perl@FreeBSD.org Revision Changes Path 1.18 +8 -3 ports/devel/p5-Devel-DProf/Makefile 1.2 +8 -8 ports/devel/p5-Devel-DProf/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:32:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4EB016A4CF; Wed, 11 Aug 2004 16:32:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E71443D46; Wed, 11 Aug 2004 16:32:34 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGWYG7075499; Wed, 11 Aug 2004 16:32:34 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGWYYb075498; Wed, 11 Aug 2004 16:32:34 GMT (envelope-from jkoshy) Message-Id: <200408111632.i7BGWYYb075498@repoman.freebsd.org> From: Joseph Koshy Date: Wed, 11 Aug 2004 16:32:34 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/news press.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:32:35 -0000 jkoshy 2004-08-11 16:32:34 UTC FreeBSD doc repository Modified files: en/news press.xml Log: ServerWatch article contrasting the BSD OSes. Revision Changes Path 1.149 +12 -1 www/en/news/press.xml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:34:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49F1C16A4CE; Wed, 11 Aug 2004 16:34:35 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id E959143D3F; Wed, 11 Aug 2004 16:34:34 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-13.local ([172.16.0.13] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1Buw3b-0001t4-Ny; Wed, 11 Aug 2004 18:34:34 +0200 Date: Wed, 11 Aug 2004 18:36:08 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Joe Marcus Clarke From: Oliver Eikemeier In-Reply-To: <1092240804.731.11.camel@gyros> Message-Id: <8C6EA0DC-EBB4-11D8-887A-00039312D914@fillmore-labs.com> Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: cvs-ports@FreeBSD.org cc: Maxim Sobolev cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: CVSROOT modules ports/shells Makefile ports/shells/bash3 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/shells/bash3/files patch-ac patch-af patch-bashline.c patch-builtins_shopt.def patch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:34:35 -0000 Joe Marcus Clarke wrote: >> When you think repocopying bash3 -> bash is >> a good idea, just do it. > [...] > Just file the PR, and the copy will be done. Difficult to decide: I believe we have a valid reason to have openldap21 and openldap22 in the tree, like bash2 and bash3 or apache13 and apache2. I already took care of deleting openldap1 and openldap20, and we could do the same with bash1 (and probably security/cyrus-sasl (which is an old 1.5 version, used only by very few ports)). Do we have an rationale which port should be in what directory? E.g. `no number -> current release', `number -> development or old version' or some other scheme? And how do we fit libxml/libxml2 into the pattern? -Oliver From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:38:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4864816A4CE; Wed, 11 Aug 2004 16:38:21 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10CF343D5D; Wed, 11 Aug 2004 16:38:21 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.0.34] (adsl-67-127-84-57.dsl.snfc21.pacbell.net [67.127.84.57]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i7BGcK8U028751; Wed, 11 Aug 2004 09:38:20 -0700 Message-ID: <411A4B4F.6070007@root.org> Date: Wed, 11 Aug 2004 09:37:35 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7 (X11/20040702) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Don Lewis References: <200408100832.i7A8WmG4013169@gw.catspoiler.org> In-Reply-To: <200408100832.i7A8WmG4013169@gw.catspoiler.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c vfs_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:38:21 -0000 Don Lewis wrote: > On 10 Aug, Nate Lawson wrote: > >>njl 2004-08-10 01:32:05 UTC >> >> FreeBSD src repository >> >> Modified files: >> sys/kern kern_shutdown.c vfs_subr.c >> Log: >> Skip the syncing disks loop if there are no dirty buffers. Remove a >> variable used to flag the initial printf. >> >> Submitted by: truckman (earlier version) >> >> Revision Changes Path >> 1.162 +13 -5 src/sys/kern/kern_shutdown.c >> 1.519 +1 -1 src/sys/kern/vfs_subr.c > > > BDE had a number of objections to this patch. This is the alternative > that I came up with: Feel free to rework/commit it. I think your patch is a little rough still but generally think it's a good idea to reuse the check for nbufs. -Nate From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:39:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B60616A4CE; Wed, 11 Aug 2004 16:39:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A85043D58; Wed, 11 Aug 2004 16:39:49 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGdnva075790; Wed, 11 Aug 2004 16:39:49 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGdnJG075789; Wed, 11 Aug 2004 16:39:49 GMT (envelope-from skv) Message-Id: <200408111639.i7BGdnJG075789@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 11 Aug 2004 16:39:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www Makefile ports/www/p5-Apache-Profiler Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:39:49 -0000 skv 2004-08-11 16:39:49 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/p5-Apache-Profiler Makefile distinfo pkg-descr pkg-plist Log: Add p5-Apache-Profiler 0.01, profiles time seconds needed for every request. Revision Changes Path 1.961 +1 -0 ports/www/Makefile 1.1 +22 -0 ports/www/p5-Apache-Profiler/Makefile (new) 1.1 +2 -0 ports/www/p5-Apache-Profiler/distinfo (new) 1.1 +6 -0 ports/www/p5-Apache-Profiler/pkg-descr (new) 1.1 +5 -0 ports/www/p5-Apache-Profiler/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:39:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D3FED16A4CE; Wed, 11 Aug 2004 16:39:59 +0000 (GMT) Received: from creme-brulee.marcuscom.com (rrcs-midsouth-24-172-16-118.biz.rr.com [24.172.16.118]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6241943D39; Wed, 11 Aug 2004 16:39:59 +0000 (GMT) (envelope-from marcus@marcuscom.com) Received: from [10.2.1.4] (vpn-client-4.marcuscom.com [10.2.1.4]) i7BGZnTV056054; Wed, 11 Aug 2004 12:35:50 -0400 (EDT) (envelope-from marcus@marcuscom.com) From: Joe Marcus Clarke To: Oliver Eikemeier In-Reply-To: <8C6EA0DC-EBB4-11D8-887A-00039312D914@fillmore-labs.com> References: <8C6EA0DC-EBB4-11D8-887A-00039312D914@fillmore-labs.com> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-pJ4QuQkD0LjOQDC8Bd9j" Organization: MarcusCom, Inc. Message-Id: <1092242317.731.26.camel@gyros> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Wed, 11 Aug 2004 12:38:37 -0400 X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on creme-brulee.marcuscom.com cc: cvs-ports@FreeBSD.org cc: Maxim Sobolev cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: CVSROOT modules ports/shells Makefilepkg-install patch-bashline.c patch-builtins_shopt.def patch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:40:00 -0000 --=-pJ4QuQkD0LjOQDC8Bd9j Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2004-08-11 at 12:36, Oliver Eikemeier wrote: > Joe Marcus Clarke wrote: >=20 > >> When you think repocopying bash3 -> bash is > >> a good idea, just do it. > > [...] > > Just file the PR, and the copy will be done. >=20 > Difficult to decide: >=20 > I believe we have a valid reason to have openldap21 and openldap22 in=20 > the tree, like bash2 and bash3 or apache13 and apache2. I already took=20 > care of deleting openldap1 and openldap20, and we could do the same with=20 > bash1 (and probably security/cyrus-sasl (which is an old 1.5 version,=20 > used only by very few ports)). >=20 > Do we have an rationale which port should be in what directory? E.g. `no=20 > number -> current release', `number -> development or old version' or=20 > some other scheme? And how do we fit libxml/libxml2 into the pattern? The libxml/libxml2 thing was purely module name-related. Libxml was the beginning, and when they needed a new API, they released a libxml2 module. Honestly, I don't know why we have a bash1 as opposed to just bash, but there was another instance with gimp1. Since then, though, gimp1 was canned, and now we just have gimp. That said, I prefer the non-versioned base port. Joe >=20 > -Oliver --=20 PGP Key : http://www.marcuscom.com/pgp.asc --=-pJ4QuQkD0LjOQDC8Bd9j Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBGkuNb2iPiv4Uz4cRAjlPAJ9Rsoe7tbRlLEg0EBEo3bUhBARl5wCeO4qU ZYpiTmhF8NuWJW4yVUIsQGo= =DUHQ -----END PGP SIGNATURE----- --=-pJ4QuQkD0LjOQDC8Bd9j-- From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:40:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5772816A4D7; Wed, 11 Aug 2004 16:40:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A64143D39; Wed, 11 Aug 2004 16:40:01 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGe1vv075854; Wed, 11 Aug 2004 16:40:01 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGe0Yf075853; Wed, 11 Aug 2004 16:40:00 GMT (envelope-from skv) Message-Id: <200408111640.i7BGe0Yf075853@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 11 Aug 2004 16:40:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:40:01 -0000 skv 2004-08-11 16:40:00 UTC FreeBSD ports repository Modified files: . modules Log: p5-Apache-Profiler --> ports/www/p5-Apache-Profiler Revision Changes Path 1.10872 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:41:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FF7916A4CE; Wed, 11 Aug 2004 16:41:54 +0000 (GMT) Received: from toxic.magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77C5F43D58; Wed, 11 Aug 2004 16:41:54 +0000 (GMT) (envelope-from adamw@magnesium.net) Received: by toxic.magnesium.net (Postfix, from userid 1252) id 469A4DA871; Wed, 11 Aug 2004 09:41:54 -0700 (PDT) Date: Wed, 11 Aug 2004 12:41:54 -0400 From: Adam Weinberger To: Oliver Eikemeier Message-ID: <20040811164154.GA96458@toxic.magnesium.net> Mail-Followup-To: Adam Weinberger , Oliver Eikemeier , Joe Marcus Clarke , Maxim Sobolev , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <1092240804.731.11.camel@gyros> <8C6EA0DC-EBB4-11D8-887A-00039312D914@fillmore-labs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <8C6EA0DC-EBB4-11D8-887A-00039312D914@fillmore-labs.com> X-Editor: Vim 6.2 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-URL: http://www.vectors.cx X-ASL: 6/m/behind you User-Agent: Mutt/1.5.4i cc: Joe Marcus Clarke cc: cvs-ports@FreeBSD.org cc: Maxim Sobolev cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: CVSROOT modules ports/shells Makefile ports/shells/bash3 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/shells/bash3/files patch-ac patch-af patch-bashline.c patch-builtins_shopt.def patch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:41:54 -0000 >> (08.11.2004 @ 1236 PST): Oliver Eikemeier said, in 0.7K: << > Joe Marcus Clarke wrote: > > >> When you think repocopying bash3 -> bash is > >>a good idea, just do it. > >[...] > >Just file the PR, and the copy will be done. > > Difficult to decide: > > I believe we have a valid reason to have openldap21 and openldap22 in > the tree, like bash2 and bash3 or apache13 and apache2. I already took > care of deleting openldap1 and openldap20, and we could do the same with > bash1 (and probably security/cyrus-sasl (which is an old 1.5 version, > used only by very few ports)). > > Do we have an rationale which port should be in what directory? E.g. `no > number -> current release', `number -> development or old version' or > some other scheme? And how do we fit libxml/libxml2 into the pattern? >> end of "Re: cvs commit: CVSROOT modules ports/shells Makefile ports/shells/bash3 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/shells/bash3/files patch-ac patch-af patch-bashline.c patch-builtins_shopt.def patch-config-bot.h ... I think that when somebody goes to shells/bash, they'll expect to be installing the latest "stable" version of bash. I think that if somebody wants specifically to install an older version of bash, they can specify shells/bash2. I think that "NAME == current release; NAMEx == devel or old version" is definitely what people will be expecting with version numbers. The libxml/libxml2 split is a slightly different story. First of all, a number of apps for GNOME 2 were officially named NAME2; libxml2 was one of those. However, here maintaining the separation between GNOME 1 and GNOME 2 was highly important, and it made more sense to clearly differentiate versions and let people specifically install the gnome2 desktop. kde3 is the same concept, as is INDEX-5. That being said, the FreeBSD/GNOME team is well aware that we should be rolling things into NAME, not NAME2 ports. We would like to throw stuff back, but the havoc it will cause makes the manoeuvre of questionable value. Perhaps we will wait until GNOME 3, and put that into x11/gnome, and let x11/gnome2 de-orbit inplace. # Adam -- Adam Weinberger adamw@magnesium.net || adamw@FreeBSD.org adamw@vectors.cx || adamw@gnome.org http://www.vectors.cx From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:42:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A04C16A4CE for ; Wed, 11 Aug 2004 16:42:37 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1B1443D2D for ; Wed, 11 Aug 2004 16:42:36 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-13.local ([172.16.0.13] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1BuwBI-000Je4-B3; Wed, 11 Aug 2004 18:42:35 +0200 Date: Wed, 11 Aug 2004 18:44:05 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Ceri Davies From: Oliver Eikemeier In-Reply-To: <20040811162405.GV87690@submonkey.net> Message-Id: Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:42:37 -0000 Ceri Davies wrote: > On Wed, Aug 11, 2004 at 04:16:24PM +0000, Oliver Eikemeier wrote: >> eik 2004-08-11 16:16:24 UTC >> >> >> - replace the perl version of pkg_version(1) by its C equivalent, >> which means that `pkg_version -c' does no longer work > > I don't think that this should have gone into RELENG_4, in this case. Maybe. I don't know whether I should have asked re@ first, the MFC was announced in the commit log and `pkg_version -c' is stupid anyway, so I doubt anyone uses it. When you insist I can provide a shell script providing the same functionality or add it to the C version. The problem with the package tools is that they are strongly tied with the ports tree, which is the same on -CURRENT and -STABLE, and the new features are really worth the MFC. And the C version is much faster than the perl one. Anyway, how do you think we should proceed from here? -Oliver From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:43:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E49A16A4CE; Wed, 11 Aug 2004 16:43:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F39343D3F; Wed, 11 Aug 2004 16:43:42 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGhgYb075989; Wed, 11 Aug 2004 16:43:42 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGhgwG075988; Wed, 11 Aug 2004 16:43:42 GMT (envelope-from vs) Message-Id: <200408111643.i7BGhgwG075988@repoman.freebsd.org> From: Volker Stolz Date: Wed, 11 Aug 2004 16:43:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/opencyc Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:43:42 -0000 vs 2004-08-11 16:43:42 UTC FreeBSD ports repository Modified files: misc/opencyc Makefile pkg-plist Log: Fix packaging & unbreak Closes PR: ports/69301 Submitted by: Andrej Zverev Approved by: maintainer timeout Revision Changes Path 1.4 +4 -6 ports/misc/opencyc/Makefile 1.2 +1379 -1294 ports/misc/opencyc/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:45:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4068E16A4CE; Wed, 11 Aug 2004 16:45:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 215D843D31; Wed, 11 Aug 2004 16:45:21 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGjKaV076087; Wed, 11 Aug 2004 16:45:21 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGjKvd076086; Wed, 11 Aug 2004 16:45:20 GMT (envelope-from harti) Message-Id: <200408111645.i7BGjKvd076086@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 16:45:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:45:21 -0000 harti 2004-08-11 16:45:20 UTC FreeBSD src repository Modified files: . Makefile.inc1 Log: Ensure that a new gensnmptree is built. This should fix the problems with the snmp_atm module. Revision Changes Path 1.437 +1 -1 src/Makefile.inc1 From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:45:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DDEA216A4F8; Wed, 11 Aug 2004 16:45:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDFA543D1D; Wed, 11 Aug 2004 16:45:25 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGjPgk076127; Wed, 11 Aug 2004 16:45:25 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGjPJd076126; Wed, 11 Aug 2004 16:45:25 GMT (envelope-from vanilla) Message-Id: <200408111645.i7BGjPJd076126@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Wed, 11 Aug 2004 16:45:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-PerlIO-via-symlink Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:45:26 -0000 vanilla 2004-08-11 16:45:25 UTC FreeBSD ports repository Modified files: devel/p5-PerlIO-via-symlink Makefile distinfo Log: - Update to 0.02 - Support reading symlink. (from CHANGES) PR: ports/70299 Submitted by: maintainer Revision Changes Path 1.2 +1 -1 ports/devel/p5-PerlIO-via-symlink/Makefile 1.2 +2 -2 ports/devel/p5-PerlIO-via-symlink/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:47:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB7B216A4CE; Wed, 11 Aug 2004 16:47:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C6DC43D1D; Wed, 11 Aug 2004 16:47:12 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGlCej076206; Wed, 11 Aug 2004 16:47:12 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGlC39076205; Wed, 11 Aug 2004 16:47:12 GMT (envelope-from harti) Message-Id: <200408111647.i7BGlC39076205@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 11 Aug 2004 16:47:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp/modules Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:47:12 -0000 harti 2004-08-11 16:47:12 UTC FreeBSD src repository Modified files: lib/libbsnmp/modules Makefile Log: Link to the build again. The problem was that we need a new gensnmptree for the .def file to parse. This was fixed in Makefile.inc1. Revision Changes Path 1.6 +3 -3 src/lib/libbsnmp/modules/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 16:47:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC14116A4D3; Wed, 11 Aug 2004 16:47:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BCCE43D39; Wed, 11 Aug 2004 16:47:26 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BGlQlQ076239; Wed, 11 Aug 2004 16:47:26 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BGlQo4076238; Wed, 11 Aug 2004 16:47:26 GMT (envelope-from vanilla) Message-Id: <200408111647.i7BGlQo4076238@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Wed, 11 Aug 2004 16:47:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-SVN-Web Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 16:47:27 -0000 vanilla 2004-08-11 16:47:26 UTC FreeBSD ports repository Modified files: devel/p5-SVN-Web Makefile distinfo pkg-plist Log: - Update to 0.37, unbreak it - Take maintainership PR: ports/70302 Submitted by: Rong-En Fan Approved by: maintainer. Revision Changes Path 1.3 +5 -5 ports/devel/p5-SVN-Web/Makefile 1.2 +2 -1 ports/devel/p5-SVN-Web/distinfo 1.3 +15 -4 ports/devel/p5-SVN-Web/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:07:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98A7516A4CE; Wed, 11 Aug 2004 17:07:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7831943D48; Wed, 11 Aug 2004 17:07:40 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BH7eKs076950; Wed, 11 Aug 2004 17:07:40 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BH7e1r076949; Wed, 11 Aug 2004 17:07:40 GMT (envelope-from blackend) Message-Id: <200408111707.i7BH7e1r076949@repoman.freebsd.org> From: Marc Fonvieille Date: Wed, 11 Aug 2004 17:07:40 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/vinum chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:07:40 -0000 blackend 2004-08-11 17:07:40 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/vinum chapter.sgml Log: - Various markup fixes: for example, should be used instead of , and instead of - tags are not inline elements, so they should not be used inside of - s/4.x/4.X and some punctuation fixes - Some device names fixes I missed in my previous commit Revision Changes Path 1.32 +19 -26 doc/en_US.ISO8859-1/books/handbook/vinum/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:08:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C27A16A4CE; Wed, 11 Aug 2004 17:08:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 33CB043D2F; Wed, 11 Aug 2004 17:08:32 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BH8WYZ076998; Wed, 11 Aug 2004 17:08:32 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BH8Wur076997; Wed, 11 Aug 2004 17:08:32 GMT (envelope-from andre) Message-Id: <200408111708.i7BH8Wur076997@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 17:08:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_divert.c raw_ip.c tcp_hostcache.c tcp_subr.c tcp_syncache.c udp_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:08:32 -0000 andre 2004-08-11 17:08:32 UTC FreeBSD src repository Modified files: sys/netinet ip_divert.c raw_ip.c tcp_hostcache.c tcp_subr.c tcp_syncache.c udp_usrreq.c Log: Remove the UMA_ZONE_NOFREE flag to all uma_zcreate() calls in the IP and TCP code. This flag would have prevented giving back excessive free slabs to the global pool after a transient peak usage. Revision Changes Path 1.96 +1 -1 src/sys/netinet/ip_divert.c 1.138 +1 -1 src/sys/netinet/raw_ip.c 1.6 +1 -1 src/sys/netinet/tcp_hostcache.c 1.198 +4 -4 src/sys/netinet/tcp_subr.c 1.63 +1 -1 src/sys/netinet/tcp_syncache.c 1.159 +1 -1 src/sys/netinet/udp_usrreq.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:11:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF1EB16A4CE; Wed, 11 Aug 2004 17:11:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A67C343D48; Wed, 11 Aug 2004 17:11:32 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHBWbp078199; Wed, 11 Aug 2004 17:11:32 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHBWCP078198; Wed, 11 Aug 2004 17:11:32 GMT (envelope-from lofi) Message-Id: <200408111711.i7BHBWCP078198@repoman.freebsd.org> From: Michael Nottebrock Date: Wed, 11 Aug 2004 17:11:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/uptimed Makefile distinfo pkg-plist ports/sysutils/uptimed/files patch-configure uptimed.sh.sample X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:11:32 -0000 lofi 2004-08-11 17:11:32 UTC FreeBSD ports repository Modified files: sysutils/uptimed Makefile distinfo pkg-plist sysutils/uptimed/files uptimed.sh.sample Added files: sysutils/uptimed/files patch-configure Log: Update to 0.3.3 Submitted by: Andy Fawcett Revision Changes Path 1.7 +3 -5 ports/sysutils/uptimed/Makefile 1.5 +2 -2 ports/sysutils/uptimed/distinfo 1.1 +14 -0 ports/sysutils/uptimed/files/patch-configure (new) 1.2 +0 -1 ports/sysutils/uptimed/files/uptimed.sh.sample 1.4 +0 -1 ports/sysutils/uptimed/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:20:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 332DA16A4CE; Wed, 11 Aug 2004 17:20:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 297F643D31; Wed, 11 Aug 2004 17:20:39 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHKdu6078574; Wed, 11 Aug 2004 17:20:39 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHKdng078573; Wed, 11 Aug 2004 17:20:39 GMT (envelope-from eik) Message-Id: <200408111720.i7BHKdng078573@repoman.freebsd.org> From: Oliver Eikemeier Date: Wed, 11 Aug 2004 17:20:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules ports MOVED ports/shells Makefile ports/shells/bash3 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/shells/bash3/files patch-arrayfunc.c patch-braces.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:20:39 -0000 eik 2004-08-11 17:20:39 UTC FreeBSD ports repository Modified files: . modules . MOVED shells Makefile Removed files: shells/bash3 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist shells/bash3/files patch-arrayfunc.c patch-braces.c Log: move shells/bash3 -> shells/bash Revision Changes Path 1.10873 +2 -2 CVSROOT/modules 1.497 +2 -1 ports/MOVED 1.49 +1 -1 ports/shells/Makefile 1.73 +0 -78 ports/shells/bash3/Makefile (dead) 1.26 +0 -2 ports/shells/bash3/distinfo (dead) 1.2 +0 -16 ports/shells/bash3/files/patch-arrayfunc.c (dead) 1.2 +0 -15 ports/shells/bash3/files/patch-braces.c (dead) 1.2 +0 -17 ports/shells/bash3/pkg-deinstall (dead) 1.7 +0 -7 ports/shells/bash3/pkg-descr (dead) 1.2 +0 -16 ports/shells/bash3/pkg-install (dead) 1.20 +0 -80 ports/shells/bash3/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:22:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6007616A4CE; Wed, 11 Aug 2004 17:22:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41CB243D46; Wed, 11 Aug 2004 17:22:38 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHMcn6078643; Wed, 11 Aug 2004 17:22:38 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHMcSS078642; Wed, 11 Aug 2004 17:22:38 GMT (envelope-from imp) Message-Id: <200408111722.i7BHMcSS078642@repoman.freebsd.org> From: Warner Losh Date: Wed, 11 Aug 2004 17:22:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:22:38 -0000 imp 2004-08-11 17:22:38 UTC FreeBSD src repository Modified files: sys/conf NOTES Log: Remove references to pcic for newcard from NOTES. Revision Changes Path 1.1256 +0 -3 src/sys/conf/NOTES From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:23:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8E0516A4CE; Wed, 11 Aug 2004 17:23:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B96FA43D31; Wed, 11 Aug 2004 17:23:32 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHNWFS078698; Wed, 11 Aug 2004 17:23:32 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHNWUs078697; Wed, 11 Aug 2004 17:23:32 GMT (envelope-from imp) Message-Id: <200408111723.i7BHNWUs078697@repoman.freebsd.org> From: Warner Losh Date: Wed, 11 Aug 2004 17:23:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:23:33 -0000 imp 2004-08-11 17:23:32 UTC FreeBSD src repository Modified files: sys/conf files Log: Remove pcic for NEWCARD Revision Changes Path 1.937 +0 -2 src/sys/conf/files From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:24:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B64916A4CE; Wed, 11 Aug 2004 17:24:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B70643D54; Wed, 11 Aug 2004 17:24:42 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHOgJF078757; Wed, 11 Aug 2004 17:24:42 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHOgxY078756; Wed, 11 Aug 2004 17:24:42 GMT (envelope-from imp) Message-Id: <200408111724.i7BHOgxY078756@repoman.freebsd.org> From: Warner Losh Date: Wed, 11 Aug 2004 17:24:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pcic i82365.c i82365_isa.c i82365reg.h i82365var.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:24:42 -0000 imp 2004-08-11 17:24:42 UTC FreeBSD src repository Removed files: sys/dev/pcic i82365.c i82365_isa.c i82365reg.h i82365var.h Log: Remove badly broken pcic driver for NEWCARD Revision Changes Path 1.41 +0 -1522 src/sys/dev/pcic/i82365.c (dead) 1.27 +0 -406 src/sys/dev/pcic/i82365_isa.c (dead) 1.11 +0 -365 src/sys/dev/pcic/i82365reg.h (dead) 1.27 +0 -168 src/sys/dev/pcic/i82365var.h (dead) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:25:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72B2016A4CE; Wed, 11 Aug 2004 17:25:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52D0B43D53; Wed, 11 Aug 2004 17:25:04 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHP4sR078812; Wed, 11 Aug 2004 17:25:04 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHP4cF078811; Wed, 11 Aug 2004 17:25:04 GMT (envelope-from roam) Message-Id: <200408111725.i7BHP4cF078811@repoman.freebsd.org> From: Peter Pentchev Date: Wed, 11 Aug 2004 17:25:04 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/releng article.sgml doc/en_US.ISO8859-1/books/arch-handbook/scsi chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:25:04 -0000 roam 2004-08-11 17:25:04 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/releng article.sgml en_US.ISO8859-1/books/arch-handbook/scsi chapter.sgml Log: Lowercase a couple more element and attribute names. Revision Changes Path 1.61 +1 -1 doc/en_US.ISO8859-1/articles/releng/article.sgml 1.14 +23 -23 doc/en_US.ISO8859-1/books/arch-handbook/scsi/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:26:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B3F9D16A4CE; Wed, 11 Aug 2004 17:26:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94F2343D46; Wed, 11 Aug 2004 17:26:56 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHQuja078940; Wed, 11 Aug 2004 17:26:56 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHQuPC078939; Wed, 11 Aug 2004 17:26:56 GMT (envelope-from andre) Message-Id: <200408111726.i7BHQuPC078939@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 17:26:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net route.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:26:56 -0000 andre 2004-08-11 17:26:56 UTC FreeBSD src repository Modified files: sys/net route.c Log: Convert the routing table to use an UMA zone for rtentries. The zone is called "rtentry". This saves a considerable amount of kernel memory. R_Zmalloc previously used 256 byte blocks (plus kmalloc overhead) whereas UMA only needs 132 bytes. Idea from: OpenBSD Revision Changes Path 1.106 +10 -4 src/sys/net/route.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:31:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 44B6216A4CE for ; Wed, 11 Aug 2004 17:31:47 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9E1043D49 for ; Wed, 11 Aug 2004 17:31:46 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 92224 invoked from network); 11 Aug 2004 17:25:42 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 11 Aug 2004 17:25:42 -0000 Message-ID: <411A5805.215C72FB@freebsd.org> Date: Wed, 11 Aug 2004 19:31:49 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200408111726.i7BHQuPC078939@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/net route.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:31:47 -0000 Andre Oppermann wrote: > > andre 2004-08-11 17:26:56 UTC > > FreeBSD src repository > > Modified files: > sys/net route.c > Log: > Convert the routing table to use an UMA zone for rtentries. The zone is > called "rtentry". > > This saves a considerable amount of kernel memory. R_Zmalloc previously > used 256 byte blocks (plus kmalloc overhead) whereas UMA only needs 132 > bytes. > > Idea from: OpenBSD > > Revision Changes Path > 1.106 +10 -4 src/sys/net/route.c With this I was able to dump approx. 1.2 million routes into the kernel until I ran out of kmap_mem space. Pretty neat ;-) -- Andre From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:35:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8AA1016A4CE; Wed, 11 Aug 2004 17:35:24 +0000 (GMT) Received: from lakermmtao05.cox.net (lakermmtao05.cox.net [68.230.240.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id E474843D31; Wed, 11 Aug 2004 17:35:23 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from mezz ([68.103.32.140]) by lakermmtao05.cox.net (InterMail vM.6.01.03.02.01 201-2131-111-104-103-20040709) with ESMTP id <20040811173517.NCGW28993.lakermmtao05.cox.net@mezz>; Wed, 11 Aug 2004 13:35:17 -0400 Date: Wed, 11 Aug 2004 12:35:14 -0500 To: "Roman Bogorodskiy" References: <200408091253.i79CrT8k058076@repoman.freebsd.org> <20040811104830.GA709@lame.novel.ru> From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: In-Reply-To: <20040811104830.GA709@lame.novel.ru> User-Agent: Opera M2/7.54 (Linux, build 751) cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/x11-wm/fluxbox Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:35:24 -0000 On Wed, 11 Aug 2004 14:48:30 +0400, Roman Bogorodskiy wrote: > Jeremy wrote: > >> mezz 2004-08-09 12:53:29 UTC >> >> FreeBSD ports repository >> >> Modified files: >> x11-wm/fluxbox Makefile >> Log: >> fluxbox-devel will merging into fluxbox sometime later when 1.0 is >> released, >> so I shall take the maintainership. > > I think that fluxbox 0.1 should be kept in ports tree when 1.0 will be > released, becouse I know really many people who don't like the way in > which fluxbox-devel is developing, or maybe like the old style tabs, > etc. So, I think when 0.1 will be released, it should be handled in a > such way: > > fluxbox -> fluxbox01 > fluxbox-devel -> fluxbox I don't care, I am not going to keep the old Fluxbox. Whomever want to stick with the old Fluxbox, then he/she will _have_ to agree to maintain this port and submit it to PR for the repo copy request. I see no point to keep the old, because it's very unmaintain by the developers. The old style tab will be back in as optional that can be switch to new and old style by user's choice. This is what I have heard few weeks ago, but I don't know if it will happen for real. BTW: Please don't drop the CC, I rather to see this dicsuss to be open to everyone. Cheers, Mezz > -Roman Bogorodskiy -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:37:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12BB316A4CE; Wed, 11 Aug 2004 17:37:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E760743D3F; Wed, 11 Aug 2004 17:37:26 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHbQTY079293; Wed, 11 Aug 2004 17:37:26 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHbQHQ079292; Wed, 11 Aug 2004 17:37:26 GMT (envelope-from eik) Message-Id: <200408111737.i7BHbQHQ079292@repoman.freebsd.org> From: Oliver Eikemeier Date: Wed, 11 Aug 2004 17:37:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/shells/bash1 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:37:27 -0000 eik 2004-08-11 17:37:26 UTC FreeBSD ports repository Modified files: shells/bash1 Makefile Log: mark bash1 DEPRECATED, with EXPIRATION_DATE 2004-08-25 Revision Changes Path 1.51 +3 -0 ports/shells/bash1/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:40:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A1C816A4CE; Wed, 11 Aug 2004 17:40:47 +0000 (GMT) Received: from smtp-vbr13.xs4all.nl (smtp-vbr13.xs4all.nl [194.109.24.33]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB15B43D41; Wed, 11 Aug 2004 17:40:46 +0000 (GMT) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) i7BHejAG087532; Wed, 11 Aug 2004 19:40:45 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i7BHejY3075009; Wed, 11 Aug 2004 19:40:45 +0200 (CEST) (envelope-from wb@freebie.xs4all.nl) Received: (from wb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i7BHej8T075008; Wed, 11 Aug 2004 19:40:45 +0200 (CEST) (envelope-from wb) Date: Wed, 11 Aug 2004 19:40:45 +0200 From: Wilko Bulte To: Andre Oppermann Message-ID: <20040811174045.GA74993@freebie.xs4all.nl> References: <200408111726.i7BHQuPC078939@repoman.freebsd.org> <411A5805.215C72FB@freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <411A5805.215C72FB@freebsd.org> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.10-STABLE X-PGP: finger wilko@freebsd.org X-Virus-Scanned: by XS4ALL Virus Scanner cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/net route.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:40:47 -0000 On Wed, Aug 11, 2004 at 07:31:49PM +0200, Andre Oppermann wrote.. > Andre Oppermann wrote: > > > > andre 2004-08-11 17:26:56 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/net route.c > > Log: > > Convert the routing table to use an UMA zone for rtentries. The zone is > > called "rtentry". > > > > This saves a considerable amount of kernel memory. R_Zmalloc previously > > used 256 byte blocks (plus kmalloc overhead) whereas UMA only needs 132 > > bytes. > > > > Idea from: OpenBSD > > > > Revision Changes Path > > 1.106 +10 -4 src/sys/net/route.c > > With this I was able to dump approx. 1.2 million routes into the kernel > until I ran out of kmap_mem space. Pretty neat ;-) 1.2 million... ;-) -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:50:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 149AC16A4CE; Wed, 11 Aug 2004 17:50:53 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B34F43D46; Wed, 11 Aug 2004 17:50:53 +0000 (GMT) (envelope-from bmilekic@FreeBSD.org) Received: from freefall.freebsd.org (bmilekic@localhost [127.0.0.1]) i7BHoqli037287; Wed, 11 Aug 2004 17:50:52 GMT (envelope-from bmilekic@freefall.freebsd.org) Received: (from bmilekic@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7BHoqqp037286; Wed, 11 Aug 2004 17:50:52 GMT (envelope-from bmilekic) Date: Wed, 11 Aug 2004 17:50:52 +0000 From: Bosko Milekic To: Andre Oppermann , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040811175052.GA37093@freefall.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.1i Subject: Re: cvs commit: src/sys/netinet ip_divert.c raw_ip.c tcp_hostcache.c tcp_subr.c tcp_syncache.c udp_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:50:53 -0000 Please be careful here. The reason they were NOFREE before was because the original zone code was implicitly nofree. If these structures need to be type stable, then you just broke them with this commit. So are you sure that they absolutely do not need to be type stable? -Bosko andre 2004-08-11 17:08:32 UTC FreeBSD src repository Modified files: sys/netinet ip_divert.c raw_ip.c tcp_hostcache.c tcp_subr.c tcp_syncache.c udp_usrreq.c Log: Remove the UMA_ZONE_NOFREE flag to all uma_zcreate() calls in the IP and TCP code. This flag would have prevented giving back excessive free slabs to the global pool after a transient peak usage. From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:51:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9F2216A4CE; Wed, 11 Aug 2004 17:51:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AED243D45; Wed, 11 Aug 2004 17:51:34 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHpY8d079693; Wed, 11 Aug 2004 17:51:34 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHpYg3079692; Wed, 11 Aug 2004 17:51:34 GMT (envelope-from sem) Message-Id: <200408111751.i7BHpYg3079692@repoman.freebsd.org> From: Sergey Matveychuk Date: Wed, 11 Aug 2004 17:51:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/netwib Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:51:34 -0000 sem 2004-08-11 17:51:33 UTC FreeBSD ports repository Modified files: net/netwib Makefile distinfo pkg-plist Log: * update to 5.21.0 * make pkg-plist more flexible PR: ports/70303 Submitted by: maintainer Revision Changes Path 1.9 +3 -1 ports/net/netwib/Makefile 1.6 +4 -4 ports/net/netwib/distinfo 1.4 +130 -130 ports/net/netwib/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:54:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55D5016A4CF; Wed, 11 Aug 2004 17:54:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3740A43D4C; Wed, 11 Aug 2004 17:54:24 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHsOxG079761; Wed, 11 Aug 2004 17:54:24 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHsO7l079760; Wed, 11 Aug 2004 17:54:24 GMT (envelope-from ume) Message-Id: <200408111754.i7BHsO7l079760@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Wed, 11 Aug 2004 17:54:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/etc hosts.allow X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:54:24 -0000 ume 2004-08-11 17:54:24 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) etc hosts.allow Log: MFC 1.18: allow ::1 explicitly. Revision Changes Path 1.8.2.8 +2 -2 src/etc/hosts.allow From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:55:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 99D5D16A4D0 for ; Wed, 11 Aug 2004 17:55:05 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id C40D143D54 for ; Wed, 11 Aug 2004 17:55:04 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 92400 invoked from network); 11 Aug 2004 17:49:00 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 11 Aug 2004 17:49:00 -0000 Message-ID: <411A5D7B.4756CA0B@freebsd.org> Date: Wed, 11 Aug 2004 19:55:07 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Wilko Bulte References: <200408111726.i7BHQuPC078939@repoman.freebsd.org> <411A5805.215C72FB@freebsd.org> <20040811174045.GA74993@freebie.xs4all.nl> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/net route.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:55:05 -0000 Wilko Bulte wrote: > > On Wed, Aug 11, 2004 at 07:31:49PM +0200, Andre Oppermann wrote.. > > Andre Oppermann wrote: > > > > > > andre 2004-08-11 17:26:56 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/net route.c > > > Log: > > > Convert the routing table to use an UMA zone for rtentries. The zone is > > > called "rtentry". > > > > > > This saves a considerable amount of kernel memory. R_Zmalloc previously > > > used 256 byte blocks (plus kmalloc overhead) whereas UMA only needs 132 > > > bytes. > > > > > > Idea from: OpenBSD > > > > > > Revision Changes Path > > > 1.106 +10 -4 src/sys/net/route.c > > > > With this I was able to dump approx. 1.2 million routes into the kernel > > until I ran out of kmap_mem space. Pretty neat ;-) > > 1.2 million... > > ;-) With only 209M kmem_size! 8-) -- Andre From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:56:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4EBC816A4CE; Wed, 11 Aug 2004 17:56:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FB3443D45; Wed, 11 Aug 2004 17:56:54 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHusxp079909; Wed, 11 Aug 2004 17:56:54 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHusWm079908; Wed, 11 Aug 2004 17:56:54 GMT (envelope-from ume) Message-Id: <200408111756.i7BHusWm079908@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Wed, 11 Aug 2004 17:56:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/etc hosts.allow rc.firewall6 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:56:54 -0000 ume 2004-08-11 17:56:54 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) etc hosts.allow rc.firewall6 Log: MFC: Use RFC 3849 address for examples. etc/hosts.allow: 1.19 etc/rc.firewall6: 1.15 Revision Changes Path 1.8.2.9 +2 -2 src/etc/hosts.allow 1.1.2.13 +6 -6 src/etc/rc.firewall6 From owner-cvs-all@FreeBSD.ORG Wed Aug 11 17:58:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED20D16A4CE; Wed, 11 Aug 2004 17:58:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE3D043D54; Wed, 11 Aug 2004 17:58:45 +0000 (GMT) (envelope-from pb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BHwjFN079954; Wed, 11 Aug 2004 17:58:45 GMT (envelope-from pb@repoman.freebsd.org) Received: (from pb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BHwjPm079953; Wed, 11 Aug 2004 17:58:45 GMT (envelope-from pb) Message-Id: <200408111758.i7BHwjPm079953@repoman.freebsd.org> From: Pierre Beyssac Date: Wed, 11 Aug 2004 17:58:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/dvdauthor/files patch-dvdvob.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 17:58:46 -0000 pb 2004-08-11 17:58:45 UTC FreeBSD ports repository Added files: multimedia/dvdauthor/files patch-dvdvob.c Log: Unbreak build under -current due to that charming no-label-at-end-of-block gcc 3.4.2. Submitted by: Paul Mather Revision Changes Path 1.1 +11 -0 ports/multimedia/dvdauthor/files/patch-dvdvob.c (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 18:03:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10EFD16A4CE; Wed, 11 Aug 2004 18:03:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E643B43D4C; Wed, 11 Aug 2004 18:03:54 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BI3svS080164; Wed, 11 Aug 2004 18:03:54 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BI3s3g080163; Wed, 11 Aug 2004 18:03:54 GMT (envelope-from skv) Message-Id: <200408111803.i7BI3s3g080163@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 11 Aug 2004 18:03:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel Makefile ports/devel/p5-Devel-SmallProf Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 18:03:55 -0000 skv 2004-08-11 18:03:54 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/p5-Devel-SmallProf Makefile distinfo pkg-descr pkg-plist Log: Add p5-Devel-SmallProf 2.00, per-line Perl profiler. Revision Changes Path 1.1670 +1 -0 ports/devel/Makefile 1.1 +32 -0 ports/devel/p5-Devel-SmallProf/Makefile (new) 1.1 +2 -0 ports/devel/p5-Devel-SmallProf/distinfo (new) 1.1 +6 -0 ports/devel/p5-Devel-SmallProf/pkg-descr (new) 1.1 +5 -0 ports/devel/p5-Devel-SmallProf/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 18:04:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 373D216A4CE; Wed, 11 Aug 2004 18:04:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1951C43D54; Wed, 11 Aug 2004 18:04:07 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BI47xC080214; Wed, 11 Aug 2004 18:04:07 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BI46QA080213; Wed, 11 Aug 2004 18:04:06 GMT (envelope-from skv) Message-Id: <200408111804.i7BI46QA080213@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 11 Aug 2004 18:04:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 18:04:07 -0000 skv 2004-08-11 18:04:06 UTC FreeBSD ports repository Modified files: . modules Log: p5-Devel-SmallProf --> ports/devel/p5-Devel-SmallProf Revision Changes Path 1.10874 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 11 18:05:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A017E16A4CF; Wed, 11 Aug 2004 18:05:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8045343D4C; Wed, 11 Aug 2004 18:05:35 +0000 (GMT) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BI5ZW5080309; Wed, 11 Aug 2004 18:05:35 GMT (envelope-from jeh@repoman.freebsd.org) Received: (from jeh@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BI5Ztm080308; Wed, 11 Aug 2004 18:05:35 GMT (envelope-from jeh) Message-Id: <200408111805.i7BI5Ztm080308@repoman.freebsd.org> From: "James E. Housley" Date: Wed, 11 Aug 2004 18:05:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/uvscan-dat Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 18:05:35 -0000 jeh 2004-08-11 18:05:35 UTC FreeBSD ports repository Modified files: security/uvscan-dat Makefile distinfo Log: Update to DAT 4385 Revision Changes Path 1.259 +1 -1 ports/security/uvscan-dat/Makefile 1.257 +2 -2 ports/security/uvscan-dat/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 11 18:07:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EF2916A4CE; Wed, 11 Aug 2004 18:07:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84A9043D2D; Wed, 11 Aug 2004 18:07:36 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BI7aKi080512; Wed, 11 Aug 2004 18:07:36 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BI7ase080511; Wed, 11 Aug 2004 18:07:36 GMT (envelope-from sem) Message-Id: <200408111807.i7BI7ase080511@repoman.freebsd.org> From: Sergey Matveychuk Date: Wed, 11 Aug 2004 18:07:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/archivers Makefile ports/archivers/p7zip Makefile distinfo pkg-descr pkg-plist ports/archivers/p7zip/files 7z patch-aa patch-ab patch-ac patch-ba X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 18:07:36 -0000 sem 2004-08-11 18:07:36 UTC FreeBSD ports repository Modified files: archivers Makefile Added files: archivers/p7zip Makefile distinfo pkg-descr pkg-plist archivers/p7zip/files 7z patch-aa patch-ab patch-ac patch-ba Log: file archiver with highest compression ratio PR: ports/69248 Submitted by: Juergen Lock Revision Changes Path 1.109 +1 -0 ports/archivers/Makefile 1.1 +44 -0 ports/archivers/p7zip/Makefile (new) 1.1 +2 -0 ports/archivers/p7zip/distinfo (new) 1.1 +4 -0 ports/archivers/p7zip/files/7z (new) 1.1 +12 -0 ports/archivers/p7zip/files/patch-aa (new) 1.1 +18 -0 ports/archivers/p7zip/files/patch-ab (new) 1.1 +20 -0 ports/archivers/p7zip/files/patch-ac (new) 1.1 +19 -0 ports/archivers/p7zip/files/patch-ba (new) 1.1 +14 -0 ports/archivers/p7zip/pkg-descr (new) 1.1 +54 -0 ports/archivers/p7zip/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 18:07:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2609816A4CE; Wed, 11 Aug 2004 18:07:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07A8C43D2F; Wed, 11 Aug 2004 18:07:47 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BI7kwg080558; Wed, 11 Aug 2004 18:07:46 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BI7kXo080557; Wed, 11 Aug 2004 18:07:46 GMT (envelope-from sem) Message-Id: <200408111807.i7BI7kXo080557@repoman.freebsd.org> From: Sergey Matveychuk Date: Wed, 11 Aug 2004 18:07:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 18:07:47 -0000 sem 2004-08-11 18:07:46 UTC FreeBSD ports repository Modified files: . modules Log: p7zip --> ports/archivers/p7zip Revision Changes Path 1.10875 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 11 18:09:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C83D016A4CF for ; Wed, 11 Aug 2004 18:09:22 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDA0143D2D for ; Wed, 11 Aug 2004 18:09:21 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 92496 invoked from network); 11 Aug 2004 18:03:17 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 11 Aug 2004 18:03:17 -0000 Message-ID: <411A60D4.7C25D34E@freebsd.org> Date: Wed, 11 Aug 2004 20:09:24 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Bosko Milekic References: <20040811175052.GA37093@freefall.freebsd.org> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_divert.c raw_ip.ctcp_hostcache.c tcp_subr.c tcp_syncache.c udp_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 18:09:23 -0000 Bosko Milekic wrote: > > Please be careful here. The reason they were NOFREE before was because > the original zone code was implicitly nofree. If these structures need > to be type stable, then you just broke them with this commit. So are > you sure that they absolutely do not need to be type stable? In all cases the zone is used as kmalloc replacement. It always initializes a newly allocated object. It always unlinks the object from any lists before it uma_zfree's it. All such operations are covered by mutexes, no concurrent access should happen. If there is any use-after-free then it is a bug that needs to be fixed. I hope/guess that this sufficiently non-type-stable wrt UMA to remove NOFREE. -- Andre > -Bosko > > andre 2004-08-11 17:08:32 UTC > > FreeBSD src repository > > Modified files: > sys/netinet ip_divert.c raw_ip.c tcp_hostcache.c > tcp_subr.c tcp_syncache.c udp_usrreq.c > Log: > Remove the UMA_ZONE_NOFREE flag to all uma_zcreate() calls in the IP and > TCP code. This flag would have prevented giving back excessive free slabs > to the global pool after a transient peak usage. From owner-cvs-all@FreeBSD.ORG Wed Aug 11 18:12:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A79D16A4CE; Wed, 11 Aug 2004 18:12:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3959243D2D; Wed, 11 Aug 2004 18:12:02 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BIC2FZ080765; Wed, 11 Aug 2004 18:12:02 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BIC259080764; Wed, 11 Aug 2004 18:12:02 GMT (envelope-from skv) Message-Id: <200408111812.i7BIC259080764@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 11 Aug 2004 18:12:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www Makefile ports/www/p5-Apache-DB Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 18:12:02 -0000 skv 2004-08-11 18:12:02 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/p5-Apache-DB Makefile distinfo pkg-descr pkg-plist Log: Add p5-Apache-DB 0.09, debugging and profiling tools for mod_perl. Revision Changes Path 1.962 +1 -0 ports/www/Makefile 1.1 +29 -0 ports/www/p5-Apache-DB/Makefile (new) 1.1 +2 -0 ports/www/p5-Apache-DB/distinfo (new) 1.1 +7 -0 ports/www/p5-Apache-DB/pkg-descr (new) 1.1 +10 -0 ports/www/p5-Apache-DB/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 18:12:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2156216A4CE; Wed, 11 Aug 2004 18:12:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0351943D39; Wed, 11 Aug 2004 18:12:14 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BICDFR080811; Wed, 11 Aug 2004 18:12:13 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BICDr5080810; Wed, 11 Aug 2004 18:12:13 GMT (envelope-from skv) Message-Id: <200408111812.i7BICDr5080810@repoman.freebsd.org> From: Sergey Skvortsov Date: Wed, 11 Aug 2004 18:12:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 18:12:14 -0000 skv 2004-08-11 18:12:13 UTC FreeBSD ports repository Modified files: . modules Log: p5-Apache-DB --> ports/www/p5-Apache-DB Revision Changes Path 1.10876 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 11 18:23:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D45816A4CE for ; Wed, 11 Aug 2004 18:23:33 +0000 (GMT) Received: from shrike.submonkey.net (cpc2-cdif3-6-0-cust204.cdif.cable.ntl.com [81.103.67.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF71243D49 for ; Wed, 11 Aug 2004 18:23:32 +0000 (GMT) (envelope-from setantae@submonkey.net) Received: from setantae by shrike.submonkey.net with local (Exim 4.41 (FreeBSD)) id 1Buxl5-000NhP-Ks; Wed, 11 Aug 2004 19:23:31 +0100 Date: Wed, 11 Aug 2004 19:23:31 +0100 From: Ceri Davies To: Oliver Eikemeier Message-ID: <20040811182331.GW87690@submonkey.net> Mail-Followup-To: Ceri Davies , Oliver Eikemeier , cvs-all@FreeBSD.org References: <20040811162405.GV87690@submonkey.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="sV6E+871crhbObqU" Content-Disposition: inline In-Reply-To: X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.6i Sender: Ceri Davies cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 18:23:33 -0000 --sV6E+871crhbObqU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 11, 2004 at 06:44:05PM +0200, Oliver Eikemeier wrote: > Ceri Davies wrote: >=20 > >On Wed, Aug 11, 2004 at 04:16:24PM +0000, Oliver Eikemeier wrote: > >>eik 2004-08-11 16:16:24 UTC > >> > >> > >> - replace the perl version of pkg_version(1) by its C equivalent, > >> which means that `pkg_version -c' does no longer work > > > >I don't think that this should have gone into RELENG_4, in this case. >=20 > Maybe. I don't know whether I should have asked re@ first, the MFC was=20 > announced in the commit log and `pkg_version -c' is stupid anyway, so I= =20 > doubt anyone uses it. When you insist I can provide a shell script=20 > providing the same functionality or add it to the C version. I agree that it's stupid; I'm just not sure that removing an option is a good thing at this stage in RELENG_4's life. > The problem with the package tools is that they are strongly tied with=20 > the ports tree, which is the same on -CURRENT and -STABLE, and the new=20 > features are really worth the MFC. And the C version is much faster than= =20 > the perl one. >=20 > Anyway, how do you think we should proceed from here? I'd imagine it's a call for re@ - personally I have no attachment to `pkg_version -c', but wanted to note that this is possibly a bad thing. Cheers, Ceri --=20 It is not tinfoil, it is my new skin. I am a robot. --sV6E+871crhbObqU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBGmQjocfcwTS3JF8RAmeyAJ9K8bNhxxF7RZlIcEa7PIAspBhjogCgg5ap tCPRiq38tdiMXAxxS7UiwCI= =2PAM -----END PGP SIGNATURE----- --sV6E+871crhbObqU-- From owner-cvs-all@FreeBSD.ORG Wed Aug 11 18:44:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3221116A4CE; Wed, 11 Aug 2004 18:44:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1396D43D45; Wed, 11 Aug 2004 18:44:33 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BIiW9n081568; Wed, 11 Aug 2004 18:44:32 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BIiWDc081567; Wed, 11 Aug 2004 18:44:32 GMT (envelope-from vs) Message-Id: <200408111844.i7BIiWDc081567@repoman.freebsd.org> From: Volker Stolz Date: Wed, 11 Aug 2004 18:44:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/y4mscaler Makefile distinfo ports/multimedia/y4mscaler/files patch-gcc34 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 18:44:33 -0000 vs 2004-08-11 18:44:32 UTC FreeBSD ports repository Modified files: multimedia/y4mscaler Makefile distinfo Removed files: multimedia/y4mscaler/files patch-gcc34 Log: Update to 0.6.2 PR: ports/70043 Submitted by: Michael Johnson (maintainer) Revision Changes Path 1.4 +1 -1 ports/multimedia/y4mscaler/Makefile 1.2 +2 -2 ports/multimedia/y4mscaler/distinfo 1.2 +0 -158 ports/multimedia/y4mscaler/files/patch-gcc34 (dead) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 18:44:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D461B16A4CE; Wed, 11 Aug 2004 18:44:55 +0000 (GMT) Received: from plouf.absolight.net (plouf.absolight.net [212.43.217.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AFE543D46; Wed, 11 Aug 2004 18:44:55 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by plouf.absolight.net (Postfix) with ESMTP id 729B54029; Wed, 11 Aug 2004 20:44:54 +0200 (CEST) X-Original-To: skv@FreeBSD.org X-Original-To: ports-committers@FreeBSD.org X-Original-To: cvs-ports@FreeBSD.org X-Original-To: cvs-all@FreeBSD.org Received: from [192.168.1.51] (l15v-8-120.d2.club-internet.fr [62.34.135.120]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id 8E5A74010; Wed, 11 Aug 2004 20:44:48 +0200 (CEST) Date: Wed, 11 Aug 2004 20:44:43 +0200 From: Mathieu Arnold To: Sergey Skvortsov Message-ID: In-Reply-To: <20040811163152.DD20916A4CF@hub.freebsd.org> References: <20040811163152.DD20916A4CF@hub.freebsd.org> X-Mailer: Mulberry/3.1.6 (Win32) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========57F8986037C09ED62D09==========" X-Spam-Checker-Version: SpamAssassin 2.64-abso_2004012301 (2004-01-11) on plouf.absolight.net by root@absolight.fr X-Virus-Scanned: by amavisd-new at plouf.absolight.net X-Spam-Status: No, hits=-3.425 tagged_above=-10 required=5 tests=AWL, BAYES_00, RCVD_IN_NJABL_DUL X-Spam-Level: cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/devel/p5-Devel-DProf Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 18:44:56 -0000 --==========57F8986037C09ED62D09========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +-Le 11/08/2004 16:31 +0000, Sergey Skvortsov a dit : | skv 2004-08-11 16:31:49 UTC | | FreeBSD ports repository | | Modified files: | devel/p5-Devel-DProf Makefile pkg-descr | Log: | Update port: | * change MAINTAINER to perl@FreeBSD.org I'm not sure what you want to achieve with this, but perl@ is not supposed to become the ports@ (aka maintainer for unmaintained ports) of perl ports. -- Mathieu Arnold --==========57F8986037C09ED62D09========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (MingW32) iQEVAwUBQRppH1vROjYJ63c1AQLyLQf+Io7Tp5zbQeLbH+0UdO7bpGVql0eHVeQN bBnsxRd5/2pR5nSa/BCEP7P4gLXdX7u4jO2xHtPGfn7SpF3qSTWaGXu42E61ybIH BjhDvUUTV0wDyKv3vnumIrS5Zo373Um+J7ru6oA2wMwuCpV4dYX0ebscdcO3HnVx JO+Ju5HRb582+KIKQ/O5HZSuDKToYNbJujgyDskiaTzsTzHi9kzJGDjkudFXjz5p /AQ4vLVxHjYAc61E+Ff+VAXMhIAgT6VpbfPcX6WwINn5Q1rUvPtQZOP+GTIgl7BP kuuSuYtr9/OsNVUVvwTZMqXrB01F+BdhJFcA6TO3gUvplRy4EZgDwg== =oy3N -----END PGP SIGNATURE----- --==========57F8986037C09ED62D09==========-- From owner-cvs-all@FreeBSD.ORG Wed Aug 11 18:56:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E58F16A4CE; Wed, 11 Aug 2004 18:56:04 +0000 (GMT) Received: from plouf.absolight.net (plouf.absolight.net [212.43.217.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id D09E643D53; Wed, 11 Aug 2004 18:56:03 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by plouf.absolight.net (Postfix) with ESMTP id 00B24403C; Wed, 11 Aug 2004 20:56:03 +0200 (CEST) X-Original-To: src-committers@FreeBSD.org X-Original-To: cvs-src@FreeBSD.org X-Original-To: cvs-all@FreeBSD.org X-Original-To: andre@freebsd.org Received: from [192.168.1.51] (l15v-8-120.d2.club-internet.fr [62.34.135.120]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id 97D7B402C; Wed, 11 Aug 2004 20:55:58 +0200 (CEST) Date: Wed, 11 Aug 2004 20:55:50 +0200 From: Mathieu Arnold To: Andre Oppermann , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: In-Reply-To: <411A5805.215C72FB@freebsd.org> References: <200408111726.i7BHQuPC078939@repoman.freebsd.org> <411A5805.215C72FB@freebsd.org> X-Mailer: Mulberry/3.1.6 (Win32) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========F239D07F80CD438A9825==========" X-Spam-Checker-Version: SpamAssassin 2.64-abso_2004012301 (2004-01-11) on plouf.absolight.net by root@absolight.fr X-Virus-Scanned: by amavisd-new at plouf.absolight.net X-Spam-Status: No, hits=-3.405 tagged_above=-10 required=5 tests=AWL, BAYES_00, RCVD_IN_NJABL_DUL X-Spam-Level: Subject: Re: cvs commit: src/sys/net route.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 18:56:04 -0000 --==========F239D07F80CD438A9825========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +-Le 11/08/2004 19:31 +0200, Andre Oppermann a dit : | Andre Oppermann wrote: |> |> andre 2004-08-11 17:26:56 UTC |> |> FreeBSD src repository |> |> Modified files: |> sys/net route.c |> Log: |> Convert the routing table to use an UMA zone for rtentries. The zone |> is called "rtentry". |> |> This saves a considerable amount of kernel memory. R_Zmalloc |> previously used 256 byte blocks (plus kmalloc overhead) whereas UMA |> only needs 132 bytes. |> |> Idea from: OpenBSD |> |> Revision Changes Path |> 1.106 +10 -4 src/sys/net/route.c | | With this I was able to dump approx. 1.2 million routes into the kernel | until I ran out of kmap_mem space. Pretty neat ;-) Looks like border routeurs will have more free ram in the future :-) -- Mathieu Arnold --==========F239D07F80CD438A9825========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (MingW32) iQEVAwUBQRpruFvROjYJ63c1AQK8LQf9GT+sGbt6thYBs2pZbboS9YIFR75lnrjm TttcKRDMHRZAzxmwNyJS/prnw4hZk79GUfv8f5P7+zu39a7pSAhlJqAKpxm4cm8E J1t4k8pAsdSPnavqJjZoLpk7sgJATQkr66h2h7O3/xRqnCXxDwmaBcESByZVDJg1 zBpcO10bKFyJjRqJOYrAG7/qajEH6dYV0OKv3xdeU5/CcqoagRjhGxxsq39p8CB2 ZMbZ747stQYxS0jGFgRWLJteMBZjMiuhrehaRduE4uNB3p2t6+H9Siggqs4k6p+v kcbpeOowEcM4UPi0OOSNUph6cG2JqgrN0emSvOURI21N2Ar/XHgzlA== =JlhF -----END PGP SIGNATURE----- --==========F239D07F80CD438A9825==========-- From owner-cvs-all@FreeBSD.ORG Wed Aug 11 19:04:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01B1B16A4CE; Wed, 11 Aug 2004 19:04:59 +0000 (GMT) Received: from toxic.magnesium.net (toxic.magnesium.net [207.154.84.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id E09AB43D3F; Wed, 11 Aug 2004 19:04:58 +0000 (GMT) (envelope-from adamw@magnesium.net) Received: by toxic.magnesium.net (Postfix, from userid 1252) id BCFE1DA889; Wed, 11 Aug 2004 12:04:58 -0700 (PDT) Date: Wed, 11 Aug 2004 15:04:58 -0400 From: Adam Weinberger To: Jeremy Messenger Message-ID: <20040811190458.GB96458@toxic.magnesium.net> Mail-Followup-To: Adam Weinberger , Jeremy Messenger , Roman Bogorodskiy , ports-committers@freebsd.org, cvs-ports@freebsd.org, cvs-all@freebsd.org References: <200408091253.i79CrT8k058076@repoman.freebsd.org> <20040811104830.GA709@lame.novel.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: X-Editor: Vim 6.2 http://www.vim.org X-Mailer: Mutt 1.5 http://www.mutt.org X-URL: http://www.vectors.cx X-ASL: 6/m/behind you User-Agent: Mutt/1.5.4i cc: cvs-ports@freebsd.org cc: Roman Bogorodskiy cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/x11-wm/fluxbox Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 19:04:59 -0000 >> (08.11.2004 @ 1335 PST): Jeremy Messenger said, in 1.4K: << > On Wed, 11 Aug 2004 14:48:30 +0400, Roman Bogorodskiy > wrote: > > > Jeremy wrote: > > > >>mezz 2004-08-09 12:53:29 UTC > >> > >> FreeBSD ports repository > >> > >> Modified files: > >> x11-wm/fluxbox Makefile > >> Log: > >> fluxbox-devel will merging into fluxbox sometime later when 1.0 is > >>released, > >> so I shall take the maintainership. > > > >I think that fluxbox 0.1 should be kept in ports tree when 1.0 will be > >released, becouse I know really many people who don't like the way in > >which fluxbox-devel is developing, or maybe like the old style tabs, > >etc. So, I think when 0.1 will be released, it should be handled in a > >such way: > > > > fluxbox -> fluxbox01 > > fluxbox-devel -> fluxbox > > I don't care, I am not going to keep the old Fluxbox. Whomever want to > stick with the old Fluxbox, then he/she will _have_ to agree to maintain > this port and submit it to PR for the repo copy request. I see no point to > keep the old, because it's very unmaintain by the developers. > > The old style tab will be back in as optional that can be switch to new > and old style by user's choice. This is what I have heard few weeks ago, > but I don't know if it will happen for real. > > BTW: Please don't drop the CC, I rather to see this dicsuss to be open to > everyone. >> end of "Re: cvs commit: ports/x11-wm/fluxbox Makefile" from Jeremy Messenger << Anybody who wants the old fluxbox code base can check out the x11-wm/fluxbox code as it (will have) stood the day before it (will have been) was overwritten by x11-wm/fluxbox-devel. There would be many, many, MANY more ports were this type of request honoured more often than it already is. I think that Mezz's proposed solution is the right solution in this situation. And FWIW, seeing as how the old fluxbox will never get another update, I really don't think that x11-wm/fluxbox should be kept in the tree any longer; I think that x11-wm/fluxbox-devel should overwrite x11-wm/fluxbox immediately. # Adam -- Adam Weinberger adamw@magnesium.net || adamw@FreeBSD.org adamw@vectors.cx || adamw@gnome.org http://www.vectors.cx From owner-cvs-all@FreeBSD.ORG Wed Aug 11 19:09:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 244E716A4CE; Wed, 11 Aug 2004 19:09:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AF8143D41; Wed, 11 Aug 2004 19:09:03 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BJ93W8082247; Wed, 11 Aug 2004 19:09:03 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BJ92fP082246; Wed, 11 Aug 2004 19:09:02 GMT (envelope-from vs) Message-Id: <200408111909.i7BJ92fP082246@repoman.freebsd.org> From: Volker Stolz Date: Wed, 11 Aug 2004 19:09:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/quake2forge Makefile distinfo pkg-plist ports/games/quake2forge/files patch-configure patch-configure.in patch-main.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 19:09:03 -0000 vs 2004-08-11 19:09:02 UTC FreeBSD ports repository Modified files: games/quake2forge Makefile distinfo pkg-plist Added files: games/quake2forge/files patch-configure.in Removed files: games/quake2forge/files patch-configure patch-main.c Log: Update to 0.3 PR: ports/70029 Submitted by: Ulrich Spoerlein (maintainer) Revision Changes Path 1.11 +30 -11 ports/games/quake2forge/Makefile 1.4 +2 -2 ports/games/quake2forge/distinfo 1.2 +0 -10 ports/games/quake2forge/files/patch-configure (dead) 1.1 +18 -0 ports/games/quake2forge/files/patch-configure.in (new) 1.4 +0 -42 ports/games/quake2forge/files/patch-main.c (dead) 1.5 +4 -2 ports/games/quake2forge/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 19:18:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC50E16A4CE; Wed, 11 Aug 2004 19:18:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADC4C43D3F; Wed, 11 Aug 2004 19:18:07 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BJI7il082498; Wed, 11 Aug 2004 19:18:07 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BJI75e082497; Wed, 11 Aug 2004 19:18:07 GMT (envelope-from krion) Message-Id: <200408111918.i7BJI75e082497@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 11 Aug 2004 19:18:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/squid distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 19:18:08 -0000 krion 2004-08-11 19:18:07 UTC FreeBSD ports repository Modified files: www/squid distinfo Log: The ldap_helpers patch has been updated again; see squid bug #1032 for details. PR: ports/70312 Submitted by: maintainer Revision Changes Path 1.99 +2 -2 ports/www/squid/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 11 19:19:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E39116A4CE; Wed, 11 Aug 2004 19:19:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 002B343D1F; Wed, 11 Aug 2004 19:19:26 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BJJQ97082546; Wed, 11 Aug 2004 19:19:26 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BJJQGx082545; Wed, 11 Aug 2004 19:19:26 GMT (envelope-from obrien) Message-Id: <200408111919.i7BJJQGx082545@repoman.freebsd.org> From: "David E. O'Brien" Date: Wed, 11 Aug 2004 19:19:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/mk bsd.libnames.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 19:19:27 -0000 obrien 2004-08-11 19:19:26 UTC FreeBSD src repository Modified files: share/mk bsd.libnames.mk Log: The last commit had one too many libs. Revision Changes Path 1.85 +0 -1 src/share/mk/bsd.libnames.mk From owner-cvs-all@FreeBSD.ORG Wed Aug 11 19:21:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2621F16A4CE; Wed, 11 Aug 2004 19:21:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 079CB43D53; Wed, 11 Aug 2004 19:21:36 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BJLZbF082686; Wed, 11 Aug 2004 19:21:35 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BJLZGf082685; Wed, 11 Aug 2004 19:21:35 GMT (envelope-from krion) Message-Id: <200408111921.i7BJLZGf082685@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 11 Aug 2004 19:21:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/qdbm Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 19:21:36 -0000 krion 2004-08-11 19:21:35 UTC FreeBSD ports repository Modified files: databases/qdbm Makefile distinfo pkg-plist Log: Update to 1.8.15 PR: ports/70294 Submitted by: maintainer Revision Changes Path 1.27 +1 -1 ports/databases/qdbm/Makefile 1.27 +2 -2 ports/databases/qdbm/distinfo 1.8 +2 -2 ports/databases/qdbm/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 19:22:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AAB616A4CE; Wed, 11 Aug 2004 19:22:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CF3C43D54; Wed, 11 Aug 2004 19:22:08 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BJM8P6082724; Wed, 11 Aug 2004 19:22:08 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BJM8av082723; Wed, 11 Aug 2004 19:22:08 GMT (envelope-from krion) Message-Id: <200408111922.i7BJM8av082723@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 11 Aug 2004 19:22:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/bogofilter-qdbm Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 19:22:08 -0000 krion 2004-08-11 19:22:08 UTC FreeBSD ports repository Modified files: mail/bogofilter-qdbm Makefile Log: Chase libraries for new databases/qdbm version. Revision Changes Path 1.4 +2 -2 ports/mail/bogofilter-qdbm/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 19:30:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D245416A4DB; Wed, 11 Aug 2004 19:30:26 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6171E43D66; Wed, 11 Aug 2004 19:30:26 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i7BJSotd026443; Wed, 11 Aug 2004 15:28:50 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i7BJSo8h026440; Wed, 11 Aug 2004 15:28:50 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Wed, 11 Aug 2004 15:28:49 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Bosko Milekic In-Reply-To: <20040811175052.GA37093@freefall.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Andre Oppermann cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_divert.c raw_ip.c tcp_hostcache.c tcp_subr.c tcp_syncache.c udp_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 19:30:27 -0000 On Wed, 11 Aug 2004, Bosko Milekic wrote: > Please be careful here. The reason they were NOFREE before was because > the original zone code was implicitly nofree. If these structures need > to be type stable, then you just broke them with this commit. So are > you sure that they absolutely do not need to be type stable? Often, zones with the old zone allocator being type-stable allowed low cost monitoring using generation numbers (see the UNIX domain socket code as an example). As a result, monitoring code will assume it can walk the global list of sockets even after the sockets are free'd, and detect it with the generation number. This may or may not apply to the pcbs (don't have source in front of me), but the caution definitely applies. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-all@FreeBSD.ORG Wed Aug 11 19:32:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5725B16A4CE; Wed, 11 Aug 2004 19:32:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 397B643D2F; Wed, 11 Aug 2004 19:32:38 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BJWcF5083004; Wed, 11 Aug 2004 19:32:38 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BJWc5U083003; Wed, 11 Aug 2004 19:32:38 GMT (envelope-from obrien) Message-Id: <200408111932.i7BJWc5U083003@repoman.freebsd.org> From: "David E. O'Brien" Date: Wed, 11 Aug 2004 19:32:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/mopd Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 19:32:38 -0000 obrien 2004-08-11 19:32:38 UTC FreeBSD ports repository Modified files: net/mopd Makefile Log: Require GCC 3.3 or earlier; and don't use perl. Revision Changes Path 1.10 +8 -4 ports/net/mopd/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 19:45:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 295FB16A4CE; Wed, 11 Aug 2004 19:45:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0971443D46; Wed, 11 Aug 2004 19:45:04 +0000 (GMT) (envelope-from anholt@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BJj3Ag083320; Wed, 11 Aug 2004 19:45:03 GMT (envelope-from anholt@repoman.freebsd.org) Received: (from anholt@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BJj3Gx083319; Wed, 11 Aug 2004 19:45:03 GMT (envelope-from anholt) Message-Id: <200408111945.i7BJj3Gx083319@repoman.freebsd.org> From: Eric Anholt Date: Wed, 11 Aug 2004 19:45:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/dri Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 19:45:04 -0000 anholt 2004-08-11 19:45:03 UTC FreeBSD ports repository Modified files: graphics/dri Makefile Log: Add missing dependency on libX11, to fix package build. Revision Changes Path 1.5 +2 -0 ports/graphics/dri/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:01:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FC6A16A4CE; Wed, 11 Aug 2004 20:01:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 717E543D1F; Wed, 11 Aug 2004 20:01:35 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BK1Z2C083806; Wed, 11 Aug 2004 20:01:35 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BK1Zok083805; Wed, 11 Aug 2004 20:01:35 GMT (envelope-from blackend) Message-Id: <200408112001.i7BK1Zok083805@repoman.freebsd.org> From: Marc Fonvieille Date: Wed, 11 Aug 2004 20:01:35 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/fdp-primer/sgml-markup chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:01:35 -0000 blackend 2004-08-11 20:01:35 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/fdp-primer/sgml-markup chapter.sgml Log: Punctuation fix. Revision Changes Path 1.66 +1 -1 doc/en_US.ISO8859-1/books/fdp-primer/sgml-markup/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:03:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 152D316A4CE; Wed, 11 Aug 2004 20:03:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB75A43D2F; Wed, 11 Aug 2004 20:03:02 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BK32Q8083881; Wed, 11 Aug 2004 20:03:02 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BK32mL083880; Wed, 11 Aug 2004 20:03:02 GMT (envelope-from thierry) Message-Id: <200408112003.i7BK32mL083880@repoman.freebsd.org> From: Thierry Thomas Date: Wed, 11 Aug 2004 20:03:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/pear-HTTP_Upload Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:03:03 -0000 thierry 2004-08-11 20:03:02 UTC FreeBSD ports repository Modified files: www/pear-HTTP_Upload Makefile distinfo Log: Upgrade to 0.9.1. Revision Changes Path 1.5 +1 -1 ports/www/pear-HTTP_Upload/Makefile 1.4 +2 -2 ports/www/pear-HTTP_Upload/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:19:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01EE116A4CE; Wed, 11 Aug 2004 20:19:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D60B843D3F; Wed, 11 Aug 2004 20:19:40 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BKJe1S085198; Wed, 11 Aug 2004 20:19:40 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BKJeuj085197; Wed, 11 Aug 2004 20:19:40 GMT (envelope-from blackend) Message-Id: <200408112019.i7BKJeuj085197@repoman.freebsd.org> From: Marc Fonvieille Date: Wed, 11 Aug 2004 20:19:40 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:19:41 -0000 blackend 2004-08-11 20:19:40 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml Log: NetBSD is not an application. Revision Changes Path 1.166 +1 -1 doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:26:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B818716A4CE; Wed, 11 Aug 2004 20:26:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9801043D3F; Wed, 11 Aug 2004 20:26:42 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BKQge6085427; Wed, 11 Aug 2004 20:26:42 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BKQgpA085426; Wed, 11 Aug 2004 20:26:42 GMT (envelope-from marck) Message-Id: <200408112026.i7BKQgpA085426@repoman.freebsd.org> From: Dmitry Morozovsky Date: Wed, 11 Aug 2004 20:26:42 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:26:42 -0000 marck 2004-08-11 20:26:42 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml Log: Put my CVS key in proper place (this chapter is sorted by last name!). Accidentally, den did not check this well, but all shames should go to me, not him. Approved by: den (mentor) (implicit) Pointy hat to: marck (the first instance) Revision Changes Path 1.237 +5 -5 doc/en_US.ISO8859-1/books/handbook/pgpkeys/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:30:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B30616A4CE; Wed, 11 Aug 2004 20:30:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 925D443D31; Wed, 11 Aug 2004 20:30:08 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BKU8NM085511; Wed, 11 Aug 2004 20:30:08 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BKU8oa085510; Wed, 11 Aug 2004 20:30:08 GMT (envelope-from andre) Message-Id: <200408112030.i7BKU8oa085510@repoman.freebsd.org> From: Andre Oppermann Date: Wed, 11 Aug 2004 20:30:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_divert.c raw_ip.c tcp_subr.c tcp_syncache.c udp_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:30:08 -0000 andre 2004-08-11 20:30:08 UTC FreeBSD src repository Modified files: sys/netinet ip_divert.c raw_ip.c tcp_subr.c tcp_syncache.c udp_usrreq.c Log: Backout removal of UMA_ZONE_NOFREE flag for all zones which are established for structures with timers in them. It might be that a timer might fire even when the associated structure has already been free'd. Having type- stable storage in this case is beneficial for graceful failure handling and debugging. Discussed with: bosko, tegge, rwatson Revision Changes Path 1.97 +1 -1 src/sys/netinet/ip_divert.c 1.139 +1 -1 src/sys/netinet/raw_ip.c 1.199 +4 -4 src/sys/netinet/tcp_subr.c 1.64 +1 -1 src/sys/netinet/tcp_syncache.c 1.160 +1 -1 src/sys/netinet/udp_usrreq.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:34:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B139A16A4CF for ; Wed, 11 Aug 2004 20:34:42 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE4F743D5A for ; Wed, 11 Aug 2004 20:34:41 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 93407 invoked from network); 11 Aug 2004 20:28:36 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 11 Aug 2004 20:28:36 -0000 Message-ID: <411A82E0.A7B181C@freebsd.org> Date: Wed, 11 Aug 2004 22:34:41 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Robert Watson References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Bosko Milekic cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_divert.c raw_ip.ctcp_hostcache.c tcp_subr.c tcp_syncache.c udp_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:34:42 -0000 Robert Watson wrote: > > On Wed, 11 Aug 2004, Bosko Milekic wrote: > > > Please be careful here. The reason they were NOFREE before was because > > the original zone code was implicitly nofree. If these structures need > > to be type stable, then you just broke them with this commit. So are > > you sure that they absolutely do not need to be type stable? > > Often, zones with the old zone allocator being type-stable allowed low > cost monitoring using generation numbers (see the UNIX domain socket code > as an example). As a result, monitoring code will assume it can walk the > global list of sockets even after the sockets are free'd, and detect it > with the generation number. This may or may not apply to the pcbs (don't > have source in front of me), but the caution definitely applies. I have made a backout for all those zones which have timers in their structures. Tor Egge provided a very convincing argument for this in private email. TCP hostcache and rtentry's do not need type-stable storage and remain without NOFREE. Thanks for all comments urging caution! -- Andre From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:35:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A5B6816A4CE; Wed, 11 Aug 2004 20:35:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85FF643D46; Wed, 11 Aug 2004 20:35:55 +0000 (GMT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BKZtVG085765; Wed, 11 Aug 2004 20:35:55 GMT (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BKZtij085764; Wed, 11 Aug 2004 20:35:55 GMT (envelope-from gibbs) Message-Id: <200408112035.i7BKZtij085764@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Wed, 11 Aug 2004 20:35:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/vx if_vx_eisa.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:35:55 -0000 gibbs 2004-08-11 20:35:55 UTC FreeBSD src repository Modified files: sys/dev/vx if_vx_eisa.c Log: Correctly export the size of our softc to newbus in our EISA attachement. This avoids a panic upon first softc field reference. Revision Changes Path 1.22 +1 -1 src/sys/dev/vx/if_vx_eisa.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:37:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 013BB16A4CE; Wed, 11 Aug 2004 20:37:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D676043D39; Wed, 11 Aug 2004 20:37:24 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BKbO1t085887; Wed, 11 Aug 2004 20:37:24 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BKbOjN085886; Wed, 11 Aug 2004 20:37:24 GMT (envelope-from njl) Message-Id: <200408112037.i7BKbOjN085886@repoman.freebsd.org> From: Nate Lawson Date: Wed, 11 Aug 2004 20:37:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci_link.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:37:25 -0000 njl 2004-08-11 20:37:24 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci_link.c Log: Add some more verbose warning/error messages to help with users reporting problems with irq routing. Revision Changes Path 1.20 +12 -17 src/sys/dev/acpica/acpi_pci_link.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:37:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 18CD816A4CE; Wed, 11 Aug 2004 20:37:37 +0000 (GMT) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39E8E43D48; Wed, 11 Aug 2004 20:37:36 +0000 (GMT) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.12.11/8.12.11) with ESMTP id i7BKbY4S067590; Thu, 12 Aug 2004 00:37:34 +0400 (MSD) (envelope-from marck@rinet.ru) Date: Thu, 12 Aug 2004 00:37:34 +0400 (MSD) From: Dmitry Morozovsky To: Dmitry Morozovsky In-Reply-To: <200408112026.i7BKQgpA085426@repoman.freebsd.org> Message-ID: <20040812003657.Q63177@woozle.rinet.ru> References: <200408112026.i7BKQgpA085426@repoman.freebsd.org> X-NCC-RegID: ru.rinet MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: doc-committers@freebsd.org cc: cvs-doc@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:37:37 -0000 On Wed, 11 Aug 2004, Dmitry Morozovsky wrote: DM> Put my CVS key in proper place (this chapter is sorted by last name!). s,CVS,GPG, Time to go to bed, definitely ;-) Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:38:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA9A916A4CE; Wed, 11 Aug 2004 20:38:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C057243D1D; Wed, 11 Aug 2004 20:38:53 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BKcr9E085971; Wed, 11 Aug 2004 20:38:53 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BKcrsR085970; Wed, 11 Aug 2004 20:38:53 GMT (envelope-from marius) Message-Id: <200408112038.i7BKcrsR085970@repoman.freebsd.org> From: Marius Strobl Date: Wed, 11 Aug 2004 20:38:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/cdrtools-devel Makefile distinfo patch-cdda2wav::interface.c patch-libparanoia::paranoia.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:38:54 -0000 marius 2004-08-11 20:38:53 UTC FreeBSD ports repository (src committer) Modified files: sysutils/cdrtools-devel Makefile distinfo sysutils/cdrtools-devel/files patch-cdda2wav::interface.c Added files: sysutils/cdrtools-devel/files patch-libparanoia::paranoia.c Removed files: sysutils/cdrtools-devel/files patch-RULES::rules.cnf Log: Update to 2.01a36 which replaces the workaround of the FreeBSD port for non page aligned transfers in libparanoia with a better one that adaptes to the pagesize. For other changes since 2.01a34 see: ftp://ftp.berlios.de/pub/cdrecord/alpha/AN-2.01a35 and ftp://ftp.berlios.de/pub/cdrecord/alpha/AN-2.01a36 Approved by: netchild Revision Changes Path 1.67 +1 -1 ports/sysutils/cdrtools-devel/Makefile 1.44 +2 -2 ports/sysutils/cdrtools-devel/distinfo 1.2 +0 -12 ports/sysutils/cdrtools-devel/files/patch-RULES::rules.cnf (dead) 1.3 +0 -44 ports/sysutils/cdrtools-devel/files/patch-cdda2wav::interface.c 1.1 +11 -0 ports/sysutils/cdrtools-devel/files/patch-libparanoia::paranoia.c (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:45:51 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A6FE16A4CE; Wed, 11 Aug 2004 20:45:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7975443D49; Wed, 11 Aug 2004 20:45:51 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BKjp9M086240; Wed, 11 Aug 2004 20:45:51 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BKjpdp086239; Wed, 11 Aug 2004 20:45:51 GMT (envelope-from sem) Message-Id: <200408112045.i7BKjpdp086239@repoman.freebsd.org> From: Sergey Matveychuk Date: Wed, 11 Aug 2004 20:45:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/nagios-plugins Makefile ports/net-mgmt/nagios-plugins/files patch-check_ircd.pl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:45:51 -0000 sem 2004-08-11 20:45:51 UTC FreeBSD ports repository Modified files: net-mgmt/nagios-plugins Makefile Added files: net-mgmt/nagios-plugins/files patch-check_ircd.pl Log: Fix check_ircd which fails due to perl taint checks if you have CDPATH set in your environment. PR: ports/70320 Submitted by: Martin Tsachev Approved by: maintainer Revision Changes Path 1.30 +1 -1 ports/net-mgmt/nagios-plugins/Makefile 1.1 +10 -0 ports/net-mgmt/nagios-plugins/files/patch-check_ircd.pl (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:47:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E81216A4CE; Wed, 11 Aug 2004 20:47:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91E4E43D48; Wed, 11 Aug 2004 20:47:39 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BKldTx086336; Wed, 11 Aug 2004 20:47:39 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BKldqR086335; Wed, 11 Aug 2004 20:47:39 GMT (envelope-from marius) Message-Id: <200408112047.i7BKldqR086335@repoman.freebsd.org> From: Marius Strobl Date: Wed, 11 Aug 2004 20:47:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/yacas Makefile ports/math/yacas/files patch-plugins:filescanner::plugin.cc patch-scripts::compile.rep::compilecpp.yspatch-src::gmpnumbers.cpp patch-src::obmalloc.cpp ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:47:39 -0000 marius 2004-08-11 20:47:39 UTC FreeBSD ports repository (src committer) Modified files: math/yacas Makefile Added files: math/yacas/files patch-plugins::pcre::plugin.cc patch-plugins:filescanner::plugin.cc patch-scripts::compile.rep::compilecpp.ys patch-scripts::cstubgen.rep::code.ys patch-src::cyacas.h patch-src::gmpnumbers.cpp patch-src::grower.inl patch-src::mathcommands.h patch-src::obmalloc.cpp patch-src::stdfileio.cpp Log: - Fix compilation with GCC 3.4.2. - Fix WITH_GMP on FreeBSD >= 500035 - Add a test target to the Makefile of the port. Approved by: netchild Revision Changes Path 1.22 +4 -3 ports/math/yacas/Makefile 1.1 +11 -0 ports/math/yacas/files/patch-plugins::pcre::plugin.cc (new) 1.1 +11 -0 ports/math/yacas/files/patch-plugins:filescanner::plugin.cc (new) 1.1 +11 -0 ports/math/yacas/files/patch-scripts::compile.rep::compilecpp.ys (new) 1.1 +11 -0 ports/math/yacas/files/patch-scripts::cstubgen.rep::code.ys (new) 1.1 +11 -0 ports/math/yacas/files/patch-src::cyacas.h (new) 1.1 +63 -0 ports/math/yacas/files/patch-src::gmpnumbers.cpp (new) 1.1 +15 -0 ports/math/yacas/files/patch-src::grower.inl (new) 1.1 +15 -0 ports/math/yacas/files/patch-src::mathcommands.h (new) 1.1 +11 -0 ports/math/yacas/files/patch-src::obmalloc.cpp (new) 1.1 +20 -0 ports/math/yacas/files/patch-src::stdfileio.cpp (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:51:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 754B016A4CE; Wed, 11 Aug 2004 20:51:32 +0000 (GMT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4417D43D31; Wed, 11 Aug 2004 20:51:32 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.13.1/8.12.11) with ESMTP id i7BKo56w055137; Wed, 11 Aug 2004 13:50:05 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.13.1/8.13.1/Submit) id i7BKo26I055132; Wed, 11 Aug 2004 13:50:02 -0700 (PDT) (envelope-from obrien) Date: Wed, 11 Aug 2004 13:50:02 -0700 From: "David O'Brien" To: Joe Marcus Clarke Message-ID: <20040811205002.GD44709@dragon.nuxi.com> References: <411A0898.3020605@portaone.com> <411A0B41.9070607@portaone.com> <1092239490.731.0.camel@gyros> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1092239490.731.0.camel@gyros> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.2-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 cc: cvs-ports@FreeBSD.org cc: Maxim Sobolev cc: ports-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Oliver Eikemeier Subject: Re: cvs commit: CVSROOT modules ports/shells Makefile ports/shells/bash3 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/shells/bash3/files patch-ac patch-af patch-bashline.c patch-builtins_shopt.def patch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:51:32 -0000 On Wed, Aug 11, 2004 at 11:51:30AM -0400, Joe Marcus Clarke wrote: > On Wed, 2004-08-11 at 08:04, Maxim Sobolev wrote: > > P.S. My recommendation is to kill both bash1 and bash2, repo-copy bash3 > > into just bash and remove bash3 as well. > > Actually, we can't do that. In order to preserve all histories, we > should delete bash2 and bash3, and update bash to 3.0....that is, if > that's what all the maintainers agree to. I'm not sure we can kill the 'bash1' port. When I tried to do that before, I got many unhappy emails. The jurry is still out on if 'bash2' needs to exist for a while. We should probably have a plain 'bash' port that is the latest version. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:54:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C45F016A4CE; Wed, 11 Aug 2004 20:54:00 +0000 (GMT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id A835D43D1F; Wed, 11 Aug 2004 20:54:00 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.13.1/8.12.11) with ESMTP id i7BKqYbf055723; Wed, 11 Aug 2004 13:52:34 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.13.1/8.13.1/Submit) id i7BKqTT4055688; Wed, 11 Aug 2004 13:52:29 -0700 (PDT) (envelope-from obrien) Date: Wed, 11 Aug 2004 13:52:29 -0700 From: "David O'Brien" To: Joe Marcus Clarke Message-ID: <20040811205229.GE44709@dragon.nuxi.com> References: <8C6EA0DC-EBB4-11D8-887A-00039312D914@fillmore-labs.com> <1092242317.731.26.camel@gyros> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1092242317.731.26.camel@gyros> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.2-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 cc: cvs-ports@FreeBSD.org cc: Maxim Sobolev cc: ports-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Oliver Eikemeier Subject: Re: cvs commit: CVSROOT modules ports/shells Makefile ports/shells/bash3 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/shells/bash3/files patch-ac patch-af patch-bashline.c patch-builtins_shopt.def patch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:54:00 -0000 On Wed, Aug 11, 2004 at 12:38:37PM -0400, Joe Marcus Clarke wrote: > Honestly, I don't know why we have a bash1 as opposed to just > bash, but there was another instance with gimp1. It was historical -- Chet Ramey (bash author) requested we handle it that way. From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:54:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 692B116A4CE; Wed, 11 Aug 2004 20:54:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BC7D43D4C; Wed, 11 Aug 2004 20:54:17 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BKsHIO087137; Wed, 11 Aug 2004 20:54:17 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BKsHS6087136; Wed, 11 Aug 2004 20:54:17 GMT (envelope-from pav) Message-Id: <200408112054.i7BKsHS6087136@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 11 Aug 2004 20:54:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio Makefile ports/audio/marlin Makefile distinfo pkg-descr pkg-plist ports/audio/marlin/files patch-src-libegg-egg-toolbar-editor.c patch-src_marlin-cdda-record.c patch-src_marlin-window-menu.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:54:17 -0000 pav 2004-08-11 20:54:17 UTC FreeBSD ports repository Modified files: audio Makefile Added files: audio/marlin Makefile distinfo pkg-descr pkg-plist audio/marlin/files patch-marlin-marlin-channel.h patch-marlin-marlin-sample-view.c patch-src-libegg-egg-toolbar-editor.c patch-src_marlin-cdda-record.c patch-src_marlin-window-menu.c Log: Add marlin, an audio editor similar to Audacity, with Gstreamer backend. It can open files, record from microphone and rip from AudioCD. Revision Changes Path 1.546 +1 -0 ports/audio/Makefile 1.1 +27 -0 ports/audio/marlin/Makefile (new) 1.1 +2 -0 ports/audio/marlin/distinfo (new) 1.1 +10 -0 ports/audio/marlin/files/patch-marlin-marlin-channel.h (new) 1.1 +12 -0 ports/audio/marlin/files/patch-marlin-marlin-sample-view.c (new) 1.1 +18 -0 ports/audio/marlin/files/patch-src-libegg-egg-toolbar-editor.c (new) 1.1 +11 -0 ports/audio/marlin/files/patch-src_marlin-cdda-record.c (new) 1.1 +12 -0 ports/audio/marlin/files/patch-src_marlin-window-menu.c (new) 1.1 +5 -0 ports/audio/marlin/pkg-descr (new) 1.1 +113 -0 ports/audio/marlin/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:54:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C3DF16A4CE; Wed, 11 Aug 2004 20:54:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D2E043D4C; Wed, 11 Aug 2004 20:54:48 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BKsmVQ087174; Wed, 11 Aug 2004 20:54:48 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BKsmPo087173; Wed, 11 Aug 2004 20:54:48 GMT (envelope-from julian) Message-Id: <200408112054.i7BKsmPo087173@repoman.freebsd.org> From: Julian Elischer Date: Wed, 11 Aug 2004 20:54:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sched_4bsd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:54:48 -0000 julian 2004-08-11 20:54:48 UTC FreeBSD src repository Modified files: sys/kern sched_4bsd.c Log: Properly keep track of how many kses are on the system run queue(s). Revision Changes Path 1.49 +3 -2 src/sys/kern/sched_4bsd.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 20:55:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C201016A4CF; Wed, 11 Aug 2004 20:55:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A184143D2D; Wed, 11 Aug 2004 20:55:41 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BKtfcm087284; Wed, 11 Aug 2004 20:55:41 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BKtfBe087283; Wed, 11 Aug 2004 20:55:41 GMT (envelope-from pav) Message-Id: <200408112055.i7BKtfBe087283@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 11 Aug 2004 20:55:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 20:55:41 -0000 pav 2004-08-11 20:55:41 UTC FreeBSD ports repository Modified files: . modules Log: marlin --> ports/audio/marlin Revision Changes Path 1.10877 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 11 21:01:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B645116A4CE; Wed, 11 Aug 2004 21:01:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95EBB43D45; Wed, 11 Aug 2004 21:01:42 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BL1gYT087492; Wed, 11 Aug 2004 21:01:42 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BL1gpC087491; Wed, 11 Aug 2004 21:01:42 GMT (envelope-from blackend) Message-Id: <200408112101.i7BL1gpC087491@repoman.freebsd.org> From: Marc Fonvieille Date: Wed, 11 Aug 2004 21:01:42 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/config chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:01:42 -0000 blackend 2004-08-11 21:01:42 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml Log: In Virtual Hosts section: - Use of hostid tags for netmasks - Add missing literal tags Revision Changes Path 1.167 +4 -4 doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 21:03:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 55E4116A4CE; Wed, 11 Aug 2004 21:03:29 +0000 (GMT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DB7143D53; Wed, 11 Aug 2004 21:03:29 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.13.1/8.12.11) with ESMTP id i7BL3RPN056517; Wed, 11 Aug 2004 14:03:28 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.13.1/8.13.1/Submit) id i7BL3Ros056516; Wed, 11 Aug 2004 14:03:27 -0700 (PDT) (envelope-from obrien) Date: Wed, 11 Aug 2004 14:03:27 -0700 From: "David O'Brien" To: Oliver Eikemeier Message-ID: <20040811210327.GF44709@dragon.nuxi.com> References: <200408111720.i7BHKdng078573@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408111720.i7BHKdng078573@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.2-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 cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: CVSROOT modules ports MOVED ports/shells Makefile ports/shells/bash3 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/shells/bash3/files patch-arrayfunc.c patch-braces.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: obrien@FreeBSD.org List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:03:29 -0000 On Wed, Aug 11, 2004 at 05:20:39PM +0000, Oliver Eikemeier wrote: > eik 2004-08-11 17:20:39 UTC > > FreeBSD ports repository > > Modified files: > . modules > . MOVED > shells Makefile > Removed files: > shells/bash3 Makefile distinfo pkg-deinstall pkg-descr > pkg-install pkg-plist > shells/bash3/files patch-arrayfunc.c patch-braces.c > Log: > move shells/bash3 -> shells/bash Once again you're making bash-related commits with contacting me. By chance did you miss this? On Wed, Aug 11, 2004 at 11:51:30AM -0400, Joe Marcus Clarke wrote: > On Wed, 2004-08-11 at 08:04, Maxim Sobolev wrote: > > P.S. My recommendation is to kill both bash1 and bash2, repo-copy > > bash3 > > into just bash and remove bash3 as well. > > Actually, we can't do that. In order to preserve all histories, we > should delete bash2 and bash3, and update bash to 3.0....that is, if > that's what all the maintainers agree to. $ grep MAINTAINER /usr/ports/shells/bash2/Makefile MAINTAINER= obrien@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Wed Aug 11 21:04:10 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 186B016A4CE; Wed, 11 Aug 2004 21:04:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDC6E43D2D; Wed, 11 Aug 2004 21:04:09 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BL49db087581; Wed, 11 Aug 2004 21:04:09 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BL49CG087580; Wed, 11 Aug 2004 21:04:09 GMT (envelope-from ceri) Message-Id: <200408112104.i7BL49CG087580@repoman.freebsd.org> From: Ceri Davies Date: Wed, 11 Aug 2004 21:04:09 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/explaining-bsd article.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:04:10 -0000 ceri 2004-08-11 21:04:09 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/explaining-bsd article.sgml Log: Reword a contentious sentence. Tossed around on: doc Revision Changes Path 1.13 +5 -3 doc/en_US.ISO8859-1/articles/explaining-bsd/article.sgml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 21:09:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5339216A4CE; Wed, 11 Aug 2004 21:09:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4852443D2D; Wed, 11 Aug 2004 21:09:40 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BL9e8f087846; Wed, 11 Aug 2004 21:09:40 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BL9eri087845; Wed, 11 Aug 2004 21:09:40 GMT (envelope-from marius) Message-Id: <200408112109.i7BL9eri087845@repoman.freebsd.org> From: Marius Strobl Date: Wed, 11 Aug 2004 21:09:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/powerpc/powermac grackle.c hrowpic.c macio.c openpic_macio.c uninorth.c src/sys/powerpc/powerpc openpic.c src/sys/powerpc/psim iobus.c openpic_iobus.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:09:40 -0000 marius 2004-08-11 21:09:40 UTC FreeBSD src repository Modified files: sys/powerpc/powermac grackle.c hrowpic.c macio.c openpic_macio.c uninorth.c sys/powerpc/powerpc openpic.c sys/powerpc/psim iobus.c openpic_iobus.c Log: - Use the rman_get_* functions instead of reaching into struct resource. - Remove __RMAN_RESORUCE_VISIBLE again. It's no longer required either because of the above change or because struct rman is no longer hidden. Reviewed by: grehan Tested by: cross-compile on i386 Revision Changes Path 1.6 +0 -1 src/sys/powerpc/powermac/grackle.c 1.7 +8 -7 src/sys/powerpc/powermac/hrowpic.c 1.15 +0 -1 src/sys/powerpc/powermac/macio.c 1.7 +0 -1 src/sys/powerpc/powermac/openpic_macio.c 1.8 +0 -1 src/sys/powerpc/powermac/uninorth.c 1.12 +8 -7 src/sys/powerpc/powerpc/openpic.c 1.7 +0 -1 src/sys/powerpc/psim/iobus.c 1.5 +0 -1 src/sys/powerpc/psim/openpic_iobus.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 21:19:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E12716A4CE; Wed, 11 Aug 2004 21:19:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E12B643D31; Wed, 11 Aug 2004 21:19:31 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BLJViM088140; Wed, 11 Aug 2004 21:19:31 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BLJVQK088139; Wed, 11 Aug 2004 21:19:31 GMT (envelope-from marius) Message-Id: <200408112119.i7BLJVQK088139@repoman.freebsd.org> From: Marius Strobl Date: Wed, 11 Aug 2004 21:19:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pcf envctrl.c pcf_ebus.c pcf_isa.c pcfvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:19:32 -0000 marius 2004-08-11 21:19:31 UTC FreeBSD src repository Modified files: sys/dev/pcf envctrl.c pcf_ebus.c pcf_isa.c pcfvar.h Log: Unbreak after struct resource was hidden. Tested with EBus front-end on Sun AXe board. Revision Changes Path 1.3 +2 -0 src/sys/dev/pcf/envctrl.c 1.2 +2 -0 src/sys/dev/pcf/pcf_ebus.c 1.5 +2 -0 src/sys/dev/pcf/pcf_isa.c 1.3 +13 -15 src/sys/dev/pcf/pcfvar.h From owner-cvs-all@FreeBSD.ORG Wed Aug 11 21:21:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 966A616A4CE; Wed, 11 Aug 2004 21:21:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75AF843D39; Wed, 11 Aug 2004 21:21:12 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BLLCrg088291; Wed, 11 Aug 2004 21:21:12 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BLLC4l088290; Wed, 11 Aug 2004 21:21:12 GMT (envelope-from pav) Message-Id: <200408112121.i7BLLC4l088290@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 11 Aug 2004 21:21:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/allegrogl Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:21:12 -0000 pav 2004-08-11 21:21:12 UTC FreeBSD ports repository Modified files: graphics/allegrogl Makefile distinfo Log: - Update to 0.2.4 PR: ports/70259 Submitted by: Igor Pokrovsky (maintainer) Revision Changes Path 1.5 +1 -1 ports/graphics/allegrogl/Makefile 1.3 +2 -2 ports/graphics/allegrogl/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 11 21:23:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E285C16A4CE; Wed, 11 Aug 2004 21:23:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C160743D31; Wed, 11 Aug 2004 21:23:42 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BLNgeu088354; Wed, 11 Aug 2004 21:23:42 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BLNg00088353; Wed, 11 Aug 2004 21:23:42 GMT (envelope-from ru) Message-Id: <200408112123.i7BLNg00088353@repoman.freebsd.org> From: Ruslan Ermilov Date: Wed, 11 Aug 2004 21:23:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:23:43 -0000 ru 2004-08-11 21:23:42 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Fix the country of birth. Requested by: dima Revision Changes Path 1.135 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Wed Aug 11 21:32:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33A6D16A4CE; Wed, 11 Aug 2004 21:32:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11CC243D48; Wed, 11 Aug 2004 21:32:04 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BLW3cc088634; Wed, 11 Aug 2004 21:32:03 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BLW3N3088633; Wed, 11 Aug 2004 21:32:03 GMT (envelope-from pav) Message-Id: <200408112132.i7BLW3N3088633@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 11 Aug 2004 21:32:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/userneu Makefileports/sysutils/userneu-devel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:32:04 -0000 pav 2004-08-11 21:32:03 UTC FreeBSD ports repository Modified files: sysutils/userneu Makefile sysutils/userneu-devel Makefile Log: - USE_PERL5 -> USE_PERL5_RUN - Fix CONFLICTS PR: ports/70314 (based on) Submitted by: Andreas Fehlner (maintainer) Revision Changes Path 1.7 +2 -2 ports/sysutils/userneu-devel/Makefile 1.7 +2 -2 ports/sysutils/userneu/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 21:41:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5088316A4CF; Wed, 11 Aug 2004 21:41:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 249C443D3F; Wed, 11 Aug 2004 21:41:26 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BLfQ74088935; Wed, 11 Aug 2004 21:41:26 GMT (envelope-from truckman@repoman.freebsd.org) Received: (from truckman@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BLfQmE088934; Wed, 11 Aug 2004 21:41:26 GMT (envelope-from truckman) Message-Id: <200408112141.i7BLfQmE088934@repoman.freebsd.org> From: Don Lewis Date: Wed, 11 Aug 2004 21:41:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fxp if_fxp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:41:26 -0000 truckman 2004-08-11 21:41:26 UTC FreeBSD src repository Modified files: sys/dev/fxp if_fxp.c Log: Deorbit the fxp tuning hint (hint.fxp.UNIT_NUMBER.ipcbxmit_disable) introduced in if_fxp.c revision 1.180. The bug fix committed in revision 1.180 fixed the packet truncation problem. Revision Changes Path 1.217 +2 -24 src/sys/dev/fxp/if_fxp.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 21:42:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6028C16A4CE; Wed, 11 Aug 2004 21:42:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F52343D41; Wed, 11 Aug 2004 21:42:22 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BLgMm1088985; Wed, 11 Aug 2004 21:42:22 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BLgMdm088984; Wed, 11 Aug 2004 21:42:22 GMT (envelope-from pav) Message-Id: <200408112142.i7BLgMdm088984@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 11 Aug 2004 21:42:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/bricolage Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:42:22 -0000 pav 2004-08-11 21:42:22 UTC FreeBSD ports repository Modified files: www/bricolage Makefile Log: - Remove dependency on p5-File-Temp, it can't be installed with perl-5.8 PR: ports/70282 Submitted by: Rod Taylor (maintainer) Revision Changes Path 1.3 +0 -1 ports/www/bricolage/Makefile From owner-cvs-all@FreeBSD.ORG Wed Aug 11 21:51:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63C2016A4CE; Wed, 11 Aug 2004 21:51:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41AE543D54; Wed, 11 Aug 2004 21:51:27 +0000 (GMT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BLpRBN089275; Wed, 11 Aug 2004 21:51:27 GMT (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BLpRso089274; Wed, 11 Aug 2004 21:51:27 GMT (envelope-from obrien) Message-Id: <200408112151.i7BLpRso089274@repoman.freebsd.org> From: "David E. O'Brien" Date: Wed, 11 Aug 2004 21:51:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/mk bsd.cpu.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:51:27 -0000 obrien 2004-08-11 21:51:27 UTC FreeBSD src repository Modified files: share/mk bsd.cpu.mk Log: Add more aliases for common CPUTYPE spellings Revision Changes Path 1.40 +9 -1 src/share/mk/bsd.cpu.mk From owner-cvs-all@FreeBSD.ORG Wed Aug 11 21:52:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A19C516A4CE; Wed, 11 Aug 2004 21:52:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8193043D48; Wed, 11 Aug 2004 21:52:31 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BLqVVn089347; Wed, 11 Aug 2004 21:52:31 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BLqVc4089346; Wed, 11 Aug 2004 21:52:31 GMT (envelope-from imp) Message-Id: <200408112152.i7BLqVc4089346@repoman.freebsd.org> From: Warner Losh Date: Wed, 11 Aug 2004 21:52:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man9 DEVICE_PROBE.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 21:52:31 -0000 imp 2004-08-11 21:52:31 UTC FreeBSD src repository Modified files: share/man/man9 DEVICE_PROBE.9 Log: Be explicit that a driver may assume softc is preserved when returning 0 Revision Changes Path 1.19 +2 -0 src/share/man/man9/DEVICE_PROBE.9 From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:01:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9188416A4CF; Wed, 11 Aug 2004 22:01:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79E7243D2F; Wed, 11 Aug 2004 22:01:59 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BM1x4J090523; Wed, 11 Aug 2004 22:01:59 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BM1xKL090522; Wed, 11 Aug 2004 22:01:59 GMT (envelope-from pav) Message-Id: <200408112201.i7BM1xKL090522@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 11 Aug 2004 22:01:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-themes/gnome-icons bsd.gnome-icons.mk ports/x11-themes/gnome-icons-aqua-fusion Makefile pkg-plist ports/x11-themes/gnome-icons-cool-gorilla Makefile pkg-plist ports/x11-themes/gnome-icons-crystal Makefile pkg-plist ports/x11-themes/gnome-icons-gentoo-test Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:01:59 -0000 pav 2004-08-11 22:01:59 UTC FreeBSD ports repository Modified files: x11-themes/gnome-icons bsd.gnome-icons.mk x11-themes/gnome-icons-aqua-fusion Makefile x11-themes/gnome-icons-cool-gorilla Makefile x11-themes/gnome-icons-crystal Makefile x11-themes/gnome-icons-gentoo-test Makefile x11-themes/gnome-icons-iris Makefile x11-themes/gnome-icons-noia-full Makefile x11-themes/gnome-icons-noia-warm Makefile x11-themes/gnome-icons-refined Makefile x11-themes/gnome-icons-slick Makefile x11-themes/gnome-icons-snow-apple Makefile x11-themes/gnome-icons-stylish Makefile x11-themes/gnome-icons-ximian-south Makefile Removed files: x11-themes/gnome-icons-aqua-fusion pkg-plist x11-themes/gnome-icons-cool-gorilla pkg-plist x11-themes/gnome-icons-crystal pkg-plist x11-themes/gnome-icons-gentoo-test pkg-plist x11-themes/gnome-icons-iris pkg-plist x11-themes/gnome-icons-noia-full pkg-plist x11-themes/gnome-icons-noia-warm pkg-plist x11-themes/gnome-icons-refined pkg-plist x11-themes/gnome-icons-slick pkg-plist x11-themes/gnome-icons-snow-apple pkg-plist x11-themes/gnome-icons-stylish pkg-plist x11-themes/gnome-icons-ximian-south pkg-plist Log: - move MASTER_SITES to standalone ports - autogenerate plists - tweak install a bit PR: ports/70285 Submitted by: Tom McLaughlin (maintainer) Revision Changes Path 1.3 +3 -0 ports/x11-themes/gnome-icons-aqua-fusion/Makefile 1.2 +0 -913 ports/x11-themes/gnome-icons-aqua-fusion/pkg-plist (dead) 1.3 +3 -0 ports/x11-themes/gnome-icons-cool-gorilla/Makefile 1.2 +0 -105 ports/x11-themes/gnome-icons-cool-gorilla/pkg-plist (dead) 1.3 +2 -0 ports/x11-themes/gnome-icons-crystal/Makefile 1.2 +0 -5548 ports/x11-themes/gnome-icons-crystal/pkg-plist (dead) 1.3 +3 -0 ports/x11-themes/gnome-icons-gentoo-test/Makefile 1.2 +0 -496 ports/x11-themes/gnome-icons-gentoo-test/pkg-plist (dead) 1.3 +3 -0 ports/x11-themes/gnome-icons-iris/Makefile 1.2 +0 -144 ports/x11-themes/gnome-icons-iris/pkg-plist (dead) 1.3 +3 -0 ports/x11-themes/gnome-icons-noia-full/Makefile 1.2 +0 -2009 ports/x11-themes/gnome-icons-noia-full/pkg-plist (dead) 1.3 +3 -0 ports/x11-themes/gnome-icons-noia-warm/Makefile 1.2 +0 -1169 ports/x11-themes/gnome-icons-noia-warm/pkg-plist (dead) 1.3 +3 -0 ports/x11-themes/gnome-icons-refined/Makefile 1.2 +0 -488 ports/x11-themes/gnome-icons-refined/pkg-plist (dead) 1.3 +3 -0 ports/x11-themes/gnome-icons-slick/Makefile 1.2 +0 -396 ports/x11-themes/gnome-icons-slick/pkg-plist (dead) 1.3 +3 -0 ports/x11-themes/gnome-icons-snow-apple/Makefile 1.2 +0 -167 ports/x11-themes/gnome-icons-snow-apple/pkg-plist (dead) 1.3 +2 -0 ports/x11-themes/gnome-icons-stylish/Makefile 1.2 +0 -30 ports/x11-themes/gnome-icons-stylish/pkg-plist (dead) 1.3 +3 -0 ports/x11-themes/gnome-icons-ximian-south/Makefile 1.2 +0 -230 ports/x11-themes/gnome-icons-ximian-south/pkg-plist (dead) 1.2 +18 -9 ports/x11-themes/gnome-icons/bsd.gnome-icons.mk From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:03:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BF1316A4CF; Wed, 11 Aug 2004 22:03:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD27943D1D; Wed, 11 Aug 2004 22:02:59 +0000 (GMT) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BM2xI6090592; Wed, 11 Aug 2004 22:02:59 GMT (envelope-from osa@repoman.freebsd.org) Received: (from osa@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BM2xls090591; Wed, 11 Aug 2004 22:02:59 GMT (envelope-from osa) Message-Id: <200408112202.i7BM2xls090591@repoman.freebsd.org> From: "Sergey A. Osokin" Date: Wed, 11 Aug 2004 22:02:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/gigabase Makefile distinfo ports/databases/gigabase/files patch-localcli.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:03:00 -0000 osa 2004-08-11 22:02:59 UTC FreeBSD ports repository Modified files: databases/gigabase Makefile distinfo Added files: databases/gigabase/files patch-localcli.h Log: Update to 3.25 [1] Add temporary fix for build with gcc-3.4.x [2] [2] Notice from: kris Revision Changes Path 1.82 +1 -1 ports/databases/gigabase/Makefile 1.78 +2 -2 ports/databases/gigabase/distinfo 1.1 +43 -0 ports/databases/gigabase/files/patch-localcli.h (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:08:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 265EB16A4CE; Wed, 11 Aug 2004 22:08:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03F9643D1F; Wed, 11 Aug 2004 22:08:27 +0000 (GMT) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BM8QJa090813; Wed, 11 Aug 2004 22:08:26 GMT (envelope-from osa@repoman.freebsd.org) Received: (from osa@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BM8Q4U090812; Wed, 11 Aug 2004 22:08:26 GMT (envelope-from osa) Message-Id: <200408112208.i7BM8Q4U090812@repoman.freebsd.org> From: "Sergey A. Osokin" Date: Wed, 11 Aug 2004 22:08:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/fastdb Makefile distinfo ports/databases/fastdb/files patch-cleanupsem.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:08:27 -0000 osa 2004-08-11 22:08:26 UTC FreeBSD ports repository Modified files: databases/fastdb Makefile distinfo Added files: databases/fastdb/files patch-cleanupsem.cpp Log: Update to 3.03. Revision Changes Path 1.47 +1 -1 ports/databases/fastdb/Makefile 1.44 +2 -2 ports/databases/fastdb/distinfo 1.1 +10 -0 ports/databases/fastdb/files/patch-cleanupsem.cpp (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:09:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13FB316A4CE; Wed, 11 Aug 2004 22:09:57 +0000 (GMT) Received: from pd5mo2so.prod.shaw.ca (shawidc-mo1.cg.shawcable.net [24.71.223.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 804D843D39; Wed, 11 Aug 2004 22:09:56 +0000 (GMT) (envelope-from colin.percival@wadham.ox.ac.uk) Received: from pd2mr3so.prod.shaw.ca (pd2mr3so-ser.prod.shaw.ca [10.0.141.108])2003)) with ESMTP id <0I2A00743YJ654@l-daemon>; Wed, 11 Aug 2004 16:01:54 -0600 (MDT) Received: from pn2ml3so.prod.shaw.ca ([10.0.121.147]) by pd2mr3so.prod.shaw.ca (Sun ONE Messaging Server 6.0 HotFix 1.01 (built Mar 15 2004)) with ESMTP id <0I2A003NMYJ6DQA0@pd2mr3so.prod.shaw.ca>; Wed, 11 Aug 2004 16:01:54 -0600 (MDT) Received: from piii600.wadham.ox.ac.uk ([24.87.233.42])2003)) with ESMTP id <0I2A0067XYJ5SR@l-daemon>; Wed, 11 Aug 2004 16:01:54 -0600 (MDT) Date: Wed, 11 Aug 2004 15:01:46 -0700 From: Colin Percival In-reply-to: <200408112030.i7BKU8oa085510@repoman.freebsd.org> X-Sender: cperciva@popserver.sfu.ca (Unverified) To: Andre Oppermann Message-id: <6.1.0.6.1.20040811145749.03f62170@popserver.sfu.ca> MIME-version: 1.0 X-Mailer: QUALCOMM Windows Eudora Version 6.1.0.6 Content-type: text/plain; charset=us-ascii References: <200408112030.i7BKU8oa085510@repoman.freebsd.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/netinet ip_divert.c raw_ip.c tcp_subr.c tcp_syncache.c udp_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:09:57 -0000 At 13:30 11/08/2004, Andre Oppermann wrote: > Backout removal of UMA_ZONE_NOFREE flag for all zones which are established > for structures with timers in them. It might be that a timer might fire > even when the associated structure has already been free'd. Have you considered converting the callout_stop calls to callout_drain calls? (I don't know if it's possible here, since callout_drain sometimes picks up a sleep mutex. But killing callouts before freeing data structures is exactly the problem for which callout_drain was created.) Colin Percival From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:10:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C08716A4CE; Wed, 11 Aug 2004 22:10:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F1DB43D31; Wed, 11 Aug 2004 22:10:50 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BMAnSx090967; Wed, 11 Aug 2004 22:10:49 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BMAn12090966; Wed, 11 Aug 2004 22:10:49 GMT (envelope-from thierry) Message-Id: <200408112210.i7BMAn12090966@repoman.freebsd.org> From: Thierry Thomas Date: Wed, 11 Aug 2004 22:10:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/aspell Makefile distinfo pkg-plist.en X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:10:50 -0000 thierry 2004-08-11 22:10:49 UTC FreeBSD ports repository Modified files: textproc/aspell Makefile distinfo pkg-plist.en Log: Aspell English Dictionary Updated. Changes from version 0.51: - Updated to SCOWL 6 which avoided using the original Ispell dictionaries as they were a source of too many errors, among other changes. - Added en_GB-ize dictionary (British with "ize" spelling). - Added en-variant_* auxiliary dictionaries. The version number of this dictionary is 6.0 to correspond to the SCOWL version. Aspell-6.0 is coming soon. Revision Changes Path 1.61 +15 -9 ports/textproc/aspell/Makefile 1.32 +2 -2 ports/textproc/aspell/distinfo 1.2 +46 -10 ports/textproc/aspell/pkg-plist.en From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:10:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 517FB16A4CF; Wed, 11 Aug 2004 22:10:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C6A943D54; Wed, 11 Aug 2004 22:10:51 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BMAoFG090998; Wed, 11 Aug 2004 22:10:50 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BMAoYg090997; Wed, 11 Aug 2004 22:10:50 GMT (envelope-from pav) Message-Id: <200408112210.i7BMAoYg090997@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 11 Aug 2004 22:10:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/john Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:10:53 -0000 pav 2004-08-11 22:10:50 UTC FreeBSD ports repository Modified files: security/john Makefile pkg-plist Log: - Install additional documentation - Portlint PR: ports/69627 Submitted by: Radim Kolar Approved by: maintainer timeout (14 days) Revision Changes Path 1.31 +5 -2 ports/security/john/Makefile 1.8 +0 -5 ports/security/john/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:12:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71B7416A4CE; Wed, 11 Aug 2004 22:12:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FDDD43D53; Wed, 11 Aug 2004 22:12:44 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BMCilN091067; Wed, 11 Aug 2004 22:12:44 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BMCiqJ091066; Wed, 11 Aug 2004 22:12:44 GMT (envelope-from pjd) Message-Id: <200408112212.i7BMCiqJ091066@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 11 Aug 2004 22:12:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/mirror g_mirror.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:12:44 -0000 pjd 2004-08-11 22:12:44 UTC FreeBSD src repository Modified files: sys/geom/mirror g_mirror.h Log: - Fix typo. - Dump HARDCODED flag. Revision Changes Path 1.6 +3 -1 src/sys/geom/mirror/g_mirror.h From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:16:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4CDDF16A4CE; Wed, 11 Aug 2004 22:16:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29A5043D41; Wed, 11 Aug 2004 22:16:43 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BMGh7Q091590; Wed, 11 Aug 2004 22:16:43 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BMGhJh091589; Wed, 11 Aug 2004 22:16:43 GMT (envelope-from pjd) Message-Id: <200408112216.i7BMGhJh091589@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 11 Aug 2004 22:16:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/mirror g_mirror.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:16:43 -0000 pjd 2004-08-11 22:16:43 UTC FreeBSD src repository Modified files: sys/geom/mirror g_mirror.h Log: Actually, HARDCODED flag isn't stored in metadata, so don't bother dumping it. Revision Changes Path 1.7 +0 -2 src/sys/geom/mirror/g_mirror.h From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:19:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3ED2A16A4CE; Wed, 11 Aug 2004 22:19:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3231743D41; Wed, 11 Aug 2004 22:19:25 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BMJP5H092919; Wed, 11 Aug 2004 22:19:25 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BMJP31092918; Wed, 11 Aug 2004 22:19:25 GMT (envelope-from dougb) Message-Id: <200408112219.i7BMJP31092918@repoman.freebsd.org> From: Doug Barton Date: Wed, 11 Aug 2004 22:19:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/dns Makefile ports/dns/bind93 Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:19:25 -0000 dougb 2004-08-11 22:19:25 UTC FreeBSD ports repository Modified files: dns Makefile Added files: dns/bind93 Makefile distinfo pkg-descr pkg-message pkg-plist Log: Add a port for BIND 9.3.x. This code base is different from BIND 9.2.x in several important ways, including new DNSSEC support and reportedly better performance. It is anticipated that when this code base settles down that the bind9 port could be removed. Revision Changes Path 1.24 +1 -0 ports/dns/Makefile 1.1 +106 -0 ports/dns/bind93/Makefile (new) 1.1 +2 -0 ports/dns/bind93/distinfo (new) 1.1 +24 -0 ports/dns/bind93/pkg-descr (new) 1.1 +22 -0 ports/dns/bind93/pkg-message (new) 1.1 +226 -0 ports/dns/bind93/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:19:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C2D616A4CE; Wed, 11 Aug 2004 22:19:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5913443D2D; Wed, 11 Aug 2004 22:19:34 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BMJYL8092965; Wed, 11 Aug 2004 22:19:34 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BMJY3k092964; Wed, 11 Aug 2004 22:19:34 GMT (envelope-from dougb) Message-Id: <200408112219.i7BMJY3k092964@repoman.freebsd.org> From: Doug Barton Date: Wed, 11 Aug 2004 22:19:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:19:34 -0000 dougb 2004-08-11 22:19:34 UTC FreeBSD ports repository Modified files: . modules Log: bind93 --> ports/dns/bind93 Revision Changes Path 1.10878 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:23:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAC2016A4CE; Wed, 11 Aug 2004 22:23:59 +0000 (GMT) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [128.30.28.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79B4243D58; Wed, 11 Aug 2004 22:23:59 +0000 (GMT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: from khavrinen.lcs.mit.edu (localhost [IPv6:::1]) by khavrinen.lcs.mit.edu (8.12.9/8.12.9) with ESMTP id i7BMMQ8g077160 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK CN=khavrinen.lcs.mit.edu issuer=SSL+20Client+20CA); Wed, 11 Aug 2004 18:22:26 -0400 (EDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.12.9/8.12.9/Submit) id i7BMMPPc077157; Wed, 11 Aug 2004 18:22:25 -0400 (EDT) (envelope-from wollman) Date: Wed, 11 Aug 2004 18:22:25 -0400 (EDT) From: Garrett Wollman Message-Id: <200408112222.i7BMMPPc077157@khavrinen.lcs.mit.edu> To: Oliver Eikemeier In-Reply-To: <282D8E76-EBB1-11D8-887A-00039312D914@fillmore-labs.com> References: <1092239490.731.0.camel@gyros> <282D8E76-EBB1-11D8-887A-00039312D914@fillmore-labs.com> X-Spam-Score: -19.8 () IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES X-Scanned-By: MIMEDefang 2.37 cc: cvs-ports@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: ports-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT modules ports/shells Makefile ports/shells/bash3 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/shells/bash3/files patch-ac patch-af patch-bashline.c patch-builtins_shopt.def patch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:23:59 -0000 < said: > a good idea, just do it. I'm fine with deleting bash1, but I think we > should keep bash2 around a little longer, unfortunately the bugs in the > .0 release seem not to be purely hypothetical I would miss bash1. (Not that I'm volunteering to maintain it or anything.) -GAWollman From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:30:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6849C16A4CE; Wed, 11 Aug 2004 22:30:31 +0000 (GMT) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [128.30.28.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AE5C43D45; Wed, 11 Aug 2004 22:30:31 +0000 (GMT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: from khavrinen.lcs.mit.edu (localhost [IPv6:::1]) by khavrinen.lcs.mit.edu (8.12.9/8.12.9) with ESMTP id i7BMUT8g077255 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK CN=khavrinen.lcs.mit.edu issuer=SSL+20Client+20CA); Wed, 11 Aug 2004 18:30:30 -0400 (EDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.12.9/8.12.9/Submit) id i7BMUTfr077252; Wed, 11 Aug 2004 18:30:29 -0400 (EDT) (envelope-from wollman) Date: Wed, 11 Aug 2004 18:30:29 -0400 (EDT) From: Garrett Wollman Message-Id: <200408112230.i7BMUTfr077252@khavrinen.lcs.mit.edu> To: Andre Oppermann In-Reply-To: <411A60D4.7C25D34E@freebsd.org> References: <20040811175052.GA37093@freefall.freebsd.org> <411A60D4.7C25D34E@freebsd.org> X-Spam-Score: -19.8 () IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES X-Scanned-By: MIMEDefang 2.37 cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/netinet ip_divert.c raw_ip.ctcp_hostcache.c tcp_subr.c tcp_syncache.c udp_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:30:31 -0000 < said: > In all cases the zone is used as kmalloc replacement. It always > initializes a newly allocated object. It always unlinks the object > from any lists before it uma_zfree's it. All such operations are > covered by mutexes, no concurrent access should happen. If there > is any use-after-free then it is a bug that needs to be fixed. No, it is an intentional design choice, not a bug. Lock-free synchronization is good, particularly when you're copying out a giant wodge of PCBs to userland (or doing anything else that might take a really long time). Locks should not be held during this process. -GAWollman From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:32:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2087D16A4CE; Wed, 11 Aug 2004 22:32:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F169F43D1F; Wed, 11 Aug 2004 22:32:08 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BMW8Ff093342; Wed, 11 Aug 2004 22:32:08 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BMW8OD093341; Wed, 11 Aug 2004 22:32:08 GMT (envelope-from pav) Message-Id: <200408112232.i7BMW8OD093341@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 11 Aug 2004 22:32:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/sagasu Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:32:09 -0000 pav 2004-08-11 22:32:08 UTC FreeBSD ports repository Modified files: textproc/sagasu Makefile distinfo Log: - Update to 2.0.6 PR: ports/69518 Submitted by: Tom McLaughlin Approved by: maintainer timeout (19 days) Revision Changes Path 1.6 +1 -5 ports/textproc/sagasu/Makefile 1.4 +2 -2 ports/textproc/sagasu/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:32:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EDBA16A4CF; Wed, 11 Aug 2004 22:32:18 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 455C443D5E; Wed, 11 Aug 2004 22:32:18 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-8.local ([172.16.0.8] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1Bv1dn-0003CN-4p; Thu, 12 Aug 2004 00:32:17 +0200 Date: Thu, 12 Aug 2004 00:33:52 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Garrett Wollman From: Oliver Eikemeier In-Reply-To: <200408112222.i7BMMPPc077157@khavrinen.lcs.mit.edu> Message-Id: <85B47D61-EBE6-11D8-887A-00039312D914@fillmore-labs.com> Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: cvs-ports@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: ports-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT modules ports/shells Makefile ports/shells/bash3 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/shells/bash3/files patch-ac patch-af patch-bashline.c patch-builtins_shopt.def patch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:32:18 -0000 Garrett Wollman wrote: > < said: > >> a good idea, just do it. I'm fine with deleting bash1, but I think we >> should keep bash2 around a little longer, unfortunately the bugs in the >> .0 release seem not to be purely hypothetical > > I would miss bash1. (Not that I'm volunteering to maintain it or > anything.) Any reasons for that? Which means, do you actually use it? It conflicts with the other bash ports, and the last release was 1996. -Oliver From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:32:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3A1716A4CE; Wed, 11 Aug 2004 22:32:43 +0000 (GMT) Received: from ylpvm15.prodigy.net (ylpvm15-ext.prodigy.net [207.115.57.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D7F643D1F; Wed, 11 Aug 2004 22:32:43 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (adsl-67-115-74-195.dsl.lsan03.pacbell.net [67.115.74.195]) i7BMWkjx004398; Wed, 11 Aug 2004 18:32:47 -0400 Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 355A65138A; Wed, 11 Aug 2004 15:32:41 -0700 (PDT) Date: Wed, 11 Aug 2004 15:32:41 -0700 From: Kris Kennaway To: "David E. O'Brien" Message-ID: <20040811223241.GA46767@xor.obsecurity.org> References: <200408112151.i7BLpRso089274@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="PNTmBPCT7hxwcZjr" Content-Disposition: inline In-Reply-To: <200408112151.i7BLpRso089274@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/mk bsd.cpu.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:32:44 -0000 --PNTmBPCT7hxwcZjr Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 11, 2004 at 09:51:27PM +0000, David E. O'Brien wrote: > obrien 2004-08-11 21:51:27 UTC >=20 > FreeBSD src repository >=20 > Modified files: > share/mk bsd.cpu.mk=20 > Log: > Add more aliases for common CPUTYPE spellings Thanks! Kris --PNTmBPCT7hxwcZjr Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBGp3qWry0BWjoQKURAiBuAJ9zGE8BQyStBij3xWgyd7BqvFuSvwCeMLIx PQOrkMakYtKg/w9rkInmBH4= =V/Z+ -----END PGP SIGNATURE----- --PNTmBPCT7hxwcZjr-- From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:43:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F2A716A4D0; Wed, 11 Aug 2004 22:43:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A0F943D1F; Wed, 11 Aug 2004 22:43:06 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BMh6PK093723; Wed, 11 Aug 2004 22:43:06 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BMh6E8093722; Wed, 11 Aug 2004 22:43:06 GMT (envelope-from pav) Message-Id: <200408112243.i7BMh6E8093722@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 11 Aug 2004 22:43:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/ripmime Makefile distinfo ports/mail/ripmime/files patch-ripOLE_Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:43:06 -0000 pav 2004-08-11 22:43:06 UTC FreeBSD ports repository Modified files: mail/ripmime Makefile distinfo Added files: mail/ripmime/files patch-ripOLE_Makefile Log: - Update to 1.3.2.2 PR: ports/69513 Submitted by: Tom McLaughlin Approved by: maintainer timeout (18 days) Revision Changes Path 1.14 +2 -2 ports/mail/ripmime/Makefile 1.12 +2 -2 ports/mail/ripmime/distinfo 1.1 +11 -0 ports/mail/ripmime/files/patch-ripOLE_Makefile (new) From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:45:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0648016A4CE; Wed, 11 Aug 2004 22:45:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB20043D55; Wed, 11 Aug 2004 22:45:57 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BMjvG9093870; Wed, 11 Aug 2004 22:45:57 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BMjvqj093869; Wed, 11 Aug 2004 22:45:57 GMT (envelope-from sem) Message-Id: <200408112245.i7BMjvqj093869@repoman.freebsd.org> From: Sergey Matveychuk Date: Wed, 11 Aug 2004 22:45:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/amavisd-new Makefile pkg-plist ports/security/amavisd-new/files INSTALL.tmpl MESSAGE.tmpl patch-amavisd.conf perlwarning.tmpl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:45:58 -0000 sem 2004-08-11 22:45:57 UTC FreeBSD ports repository Modified files: security/amavisd-new Makefile pkg-plist security/amavisd-new/files INSTALL.tmpl MESSAGE.tmpl patch-amavisd.conf Removed files: security/amavisd-new/files perlwarning.tmpl Log: - Don't pretend we support anything older than perl 5.8.2. Support for 5.00503 was severly broken and amavisd-new author officially only supports 5.8.2 and up. As an added bonus, this simplifies the makefile very much. - Install a usable amavisd.conf if none exists - On installation, remove amavisd.conf if it is equal to default one - On installation, create /var/amavis/tmp, because the new amavisd.conf uses this directory to store temporary files - Remove address extension options from the example configuration file. Neither sendmail nor postfix support address extensions on FreeBSD by default. PR: ports/70306 Submitted by: maintainer Revision Changes Path 1.18 +8 -17 ports/security/amavisd-new/Makefile 1.4 +3 -1 ports/security/amavisd-new/files/INSTALL.tmpl 1.5 +1 -2 ports/security/amavisd-new/files/MESSAGE.tmpl 1.9 +16 -1 ports/security/amavisd-new/files/patch-amavisd.conf 1.2 +0 -10 ports/security/amavisd-new/files/perlwarning.tmpl (dead) 1.12 +2 -0 ports/security/amavisd-new/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:49:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A46916A4CE; Wed, 11 Aug 2004 22:49:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4574A43D1D; Wed, 11 Aug 2004 22:49:53 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BMnrLa093969; Wed, 11 Aug 2004 22:49:53 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BMnrfc093968; Wed, 11 Aug 2004 22:49:53 GMT (envelope-from pav) Message-Id: <200408112249.i7BMnrfc093968@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 11 Aug 2004 22:49:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/matrix-kmod Makefile pkg-plist ports/misc/matrix-kmod/files matrix_saver.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:49:54 -0000 pav 2004-08-11 22:49:53 UTC FreeBSD ports repository Modified files: misc/matrix-kmod Makefile pkg-plist Added files: misc/matrix-kmod/files matrix_saver.sh Log: - update DESTDIR / PREFIX / pkg-plist and unbreak this port PR: ports/69516 Submitted by: Yen-Ming Lee Approved by: maintainer timeout (18 days) Revision Changes Path 1.5 +7 -8 ports/misc/matrix-kmod/Makefile 1.1 +22 -0 ports/misc/matrix-kmod/files/matrix_saver.sh (new) 1.2 +3 -3 ports/misc/matrix-kmod/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:52:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEB6516A4CE; Wed, 11 Aug 2004 22:52:23 +0000 (GMT) Received: from gw.catspoiler.org (217-ip-163.nccn.net [209.79.217.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B4B443D54; Wed, 11 Aug 2004 22:52:23 +0000 (GMT) (envelope-from truckman@FreeBSD.org) Received: from FreeBSD.org (mousie.catspoiler.org [192.168.101.2]) by gw.catspoiler.org (8.12.11/8.12.11) with ESMTP id i7BMqELT018444; Wed, 11 Aug 2004 15:52:18 -0700 (PDT) (envelope-from truckman@FreeBSD.org) Message-Id: <200408112252.i7BMqELT018444@gw.catspoiler.org> Date: Wed, 11 Aug 2004 15:52:14 -0700 (PDT) From: Don Lewis To: nate@root.org In-Reply-To: <411A4B4F.6070007@root.org> MIME-Version: 1.0 Content-Type: TEXT/plain; charset=us-ascii cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_shutdown.c vfs_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:52:23 -0000 On 11 Aug, Nate Lawson wrote: > Don Lewis wrote: >> On 10 Aug, Nate Lawson wrote: >> >>>njl 2004-08-10 01:32:05 UTC >>> >>> FreeBSD src repository >>> >>> Modified files: >>> sys/kern kern_shutdown.c vfs_subr.c >>> Log: >>> Skip the syncing disks loop if there are no dirty buffers. Remove a >>> variable used to flag the initial printf. >>> >>> Submitted by: truckman (earlier version) >>> >>> Revision Changes Path >>> 1.162 +13 -5 src/sys/kern/kern_shutdown.c >>> 1.519 +1 -1 src/sys/kern/vfs_subr.c >> >> >> BDE had a number of objections to this patch. This is the alternative >> that I came up with: > > Feel free to rework/commit it. I think your patch is a little rough > still but generally think it's a good idea to reuse the check for nbufs. I wasn't terribly happy with three slightly different copies of the code to compute nbufs and neither was BDE. He also wanted sync() to be called even if no buffers were initially busy, because sync() itself can dirty some buffers. BDE also claimed that kernel printf() messages should not be sentences and should not begin with a capital letter. This doesn't seem to be documented anywhere, and we're hardly consistent in terms of the latter, but I changed this anyway. I tossed in the printf("\n") because I used VT2xx terminals as serial consoles for many years, and they always seemed to get set to line-wrapping disabled mode. I didn't want the "giving up" or "final sync complete" messages to get lost because the outer loop went through an arbitrarily large number of iterations. I just now noticed that the "normal" case is a bit too verbose, so I just tossed a if (!first_buf_printf) before the printf("final sync complete\n"); I'm open to any reasonable suggestions on how to decorate this particular bikeshed before I do the commit. From owner-cvs-all@FreeBSD.ORG Wed Aug 11 22:57:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3003116A4CE; Wed, 11 Aug 2004 22:57:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BE2B43D41; Wed, 11 Aug 2004 22:57:52 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BMvpno094266; Wed, 11 Aug 2004 22:57:51 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BMvp3S094265; Wed, 11 Aug 2004 22:57:51 GMT (envelope-from eik) Message-Id: <200408112257.i7BMvp3S094265@repoman.freebsd.org> From: Oliver Eikemeier Date: Wed, 11 Aug 2004 22:57:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/portaudit-db/database portaudit.txt portaudit.xml ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 22:57:52 -0000 eik 2004-08-11 22:57:51 UTC FreeBSD ports repository Modified files: security/portaudit-db/database portaudit.txt portaudit.xml security/vuxml vuln.xml Log: f72ccf7c-e607-11d8-9b0a-000347a4fa7d is a duplicate of 6f955451-ba54-11d8-b88c-000d610a3b12, move references Revision Changes Path 1.83 +4 -5 ports/security/portaudit-db/database/portaudit.txt 1.6 +5 -1 ports/security/portaudit-db/database/portaudit.xml 1.164 +7 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Wed Aug 11 23:00:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24FDE16A4CF; Wed, 11 Aug 2004 23:00:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82BC143D1D; Wed, 11 Aug 2004 23:00:18 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BN0Dvt094345; Wed, 11 Aug 2004 23:00:13 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BN0CSu094344; Wed, 11 Aug 2004 23:00:12 GMT (envelope-from pav) Message-Id: <200408112300.i7BN0CSu094344@repoman.freebsd.org> From: Pav Lucistnik Date: Wed, 11 Aug 2004 23:00:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/samhain Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 23:00:36 -0000 pav 2004-08-11 23:00:12 UTC FreeBSD ports repository Modified files: security/samhain Makefile distinfo Log: - Update to 1.8.10b PR: ports/69387 Submitted by: David Thiel (maintainer) Revision Changes Path 1.17 +37 -47 ports/security/samhain/Makefile 1.18 +2 -2 ports/security/samhain/distinfo From owner-cvs-all@FreeBSD.ORG Wed Aug 11 23:02:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 65B6F16A4CE; Wed, 11 Aug 2004 23:02:00 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24F6443D53; Wed, 11 Aug 2004 23:02:00 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-8.local ([172.16.0.8] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1Bv26X-0003I5-45; Thu, 12 Aug 2004 01:01:59 +0200 Date: Thu, 12 Aug 2004 01:03:35 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Doug Barton From: Oliver Eikemeier In-Reply-To: <200408112219.i7BMJP31092918@repoman.freebsd.org> Message-Id: Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/dns Makefile ports/dns/bind93 Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 23:02:00 -0000 Doug Barton wrote: > dougb 2004-08-11 22:19:25 UTC > > FreeBSD ports repository > > Modified files: > dns Makefile > Added files: > dns/bind93 Makefile distinfo pkg-descr pkg-message > pkg-plist > Log: > Add a port for BIND 9.3.x. This code base is different from BIND > 9.2.x in several important ways, including new DNSSEC support > and reportedly better performance. > > It is anticipated that when this code base settles down that the > bind9 port could be removed. > > Revision Changes Path > 1.24 +1 -0 ports/dns/Makefile > 1.1 +106 -0 ports/dns/bind93/Makefile (new) > 1.1 +2 -0 ports/dns/bind93/distinfo (new) > 1.1 +24 -0 ports/dns/bind93/pkg-descr (new) > 1.1 +22 -0 ports/dns/bind93/pkg-message (new) > 1.1 +226 -0 ports/dns/bind93/pkg-plist (new) Shouldn't this have been a repocopy from dns/bind9? -Oliver From owner-cvs-all@FreeBSD.ORG Wed Aug 11 23:06:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2990716A4CE; Wed, 11 Aug 2004 23:06:27 +0000 (GMT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82EBE43D4C; Wed, 11 Aug 2004 23:06:21 +0000 (GMT) (envelope-from DougB@dougbarton.net) Received: from [192.168.0.5] (c-24-130-110-32.we.client2.attbi.com[24.130.110.32]) by comcast.net (sccrmhc13) with ESMTP id <2004081123062001600qsbbde> (Authid: domain_name_tsar); Wed, 11 Aug 2004 23:06:20 +0000 Message-ID: <411AA66A.8020908@DougBarton.net> Date: Wed, 11 Aug 2004 16:06:18 -0700 From: Doug Barton User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7.2) Gecko/20040811 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Oliver Eikemeier References: In-Reply-To: X-Enigmail-Version: 0.84.2.0 X-Enigmail-Supports: pgp-inline, pgp-mime Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/dns Makefile ports/dns/bind93 Makefiledistinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 23:06:27 -0000 Oliver Eikemeier wrote: > Shouldn't this have been a repocopy from dns/bind9? No. -- If you're never wrong, you're not trying hard enough From owner-cvs-all@FreeBSD.ORG Wed Aug 11 23:18:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D2A6C16A4CE; Wed, 11 Aug 2004 23:18:03 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id B838343D31; Wed, 11 Aug 2004 23:18:03 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id B28475C8CF; Wed, 11 Aug 2004 16:18:03 -0700 (PDT) Date: Wed, 11 Aug 2004 16:18:03 -0700 From: Alfred Perlstein To: Ceri Davies , Oliver Eikemeier , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040811231803.GE57908@elvis.mu.org> References: <200408111616.i7BGGOYZ074677@repoman.freebsd.org> <20040811162405.GV87690@submonkey.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040811162405.GV87690@submonkey.net> User-Agent: Mutt/1.4.2.1i Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 23:18:04 -0000 * Ceri Davies [040811 09:24] wrote: > On Wed, Aug 11, 2004 at 04:16:24PM +0000, Oliver Eikemeier wrote: > > eik 2004-08-11 16:16:24 UTC > > > > > > - replace the perl version of pkg_version(1) by its C equivalent, > > which means that `pkg_version -c' does no longer work > > I don't think that this should have gone into RELENG_4, in this case. Agreed. We don't break things that used to work in 4.x unless there is dire need. -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-all@FreeBSD.ORG Wed Aug 11 23:19:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E99E316A4CE; Wed, 11 Aug 2004 23:19:24 +0000 (GMT) Received: from mailout2.barnet.com.au (mailout2.barnet.com.au [218.185.88.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9ECC043D58; Wed, 11 Aug 2004 23:19:24 +0000 (GMT) (envelope-from edwin@mavetju.org) Received: by mailout2.barnet.com.au (Postfix, from userid 27) id 0D74370746F; Thu, 12 Aug 2004 09:19:23 +1000 (EST) X-Viruscan-Id: <411AA97A000076E5F868C8@BarNet> Received: from mail2-auth.barnet.com.au (localhost.barnet.com.au [127.0.0.1]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Authority" (verified OK)) by mail2.barnet.com.au (Postfix) with ESMTP id B9A6070746C; Thu, 12 Aug 2004 09:19:22 +1000 (EST) Received: from k7.mavetju (edwin-3.int.barnet.com.au [10.10.12.2]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) Certificate Authority" (verified OK)) by mail2-auth.barnet.com.au (Postfix) with ESMTP id 41B18707467; Thu, 12 Aug 2004 09:19:21 +1000 (EST) Received: by k7.mavetju (Postfix, from userid 1001) id B3AC361B5; Thu, 12 Aug 2004 09:19:15 +1000 (EST) Date: Thu, 12 Aug 2004 09:19:15 +1000 From: Edwin Groothuis To: Doug Barton Message-ID: <20040811231915.GA1827@k7.mavetju> References: <411AA66A.8020908@DougBarton.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <411AA66A.8020908@DougBarton.net> User-Agent: Mutt/1.5.6i cc: cvs-ports@FreeBSD.org cc: ports-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Oliver Eikemeier Subject: Re: cvs commit: ports/dns Makefile ports/dns/bind93 Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 23:19:25 -0000 On Wed, Aug 11, 2004 at 04:06:18PM -0700, Doug Barton wrote: > Oliver Eikemeier wrote: > > > Shouldn't this have been a repocopy from dns/bind9? > > No. If he had asked it with a portmgr hat on, would you have given an answer of more than two letters? Edwin -- Edwin Groothuis | Personal website: http://www.mavetju.org edwin@mavetju.org | Weblog: http://weblog.barnet.com.au/edwin/ From owner-cvs-all@FreeBSD.ORG Wed Aug 11 23:23:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DF4B16A4E4; Wed, 11 Aug 2004 23:23:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BB1143D31; Wed, 11 Aug 2004 23:23:05 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BNN5bp094959; Wed, 11 Aug 2004 23:23:05 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BNN53S094958; Wed, 11 Aug 2004 23:23:05 GMT (envelope-from davidxu) Message-Id: <200408112323.i7BNN53S094958@repoman.freebsd.org> From: David Xu Date: Wed, 11 Aug 2004 23:23:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 vm_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 23:23:05 -0000 davidxu 2004-08-11 23:23:05 UTC FreeBSD src repository Modified files: sys/amd64/amd64 vm_machdep.c Log: Mark end of frames. Revision Changes Path 1.236 +1 -0 src/sys/amd64/amd64/vm_machdep.c From owner-cvs-all@FreeBSD.ORG Wed Aug 11 23:38:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D272C16A4CE; Wed, 11 Aug 2004 23:38:58 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9725B43D1D; Wed, 11 Aug 2004 23:38:58 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-8.local ([172.16.0.8] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1Bv2gJ-0003MI-M3; Thu, 12 Aug 2004 01:38:58 +0200 Date: Thu, 12 Aug 2004 01:40:33 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Alfred Perlstein From: Oliver Eikemeier In-Reply-To: <20040811231803.GE57908@elvis.mu.org> Message-Id: Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: Ceri Davies cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 23:38:58 -0000 Am Donnerstag den, 12. August 2004, um 01:18, schrieb Alfred Perlstein: > * Ceri Davies [040811 09:24] wrote: >> On Wed, Aug 11, 2004 at 04:16:24PM +0000, Oliver Eikemeier wrote: >>> eik 2004-08-11 16:16:24 UTC >>> >>> - replace the perl version of pkg_version(1) by its C equivalent, >>> which means that `pkg_version -c' does no longer work >> >> I don't think that this should have gone into RELENG_4, in this case. > > Agreed. We don't break things that used to work in 4.x unless there > is dire need. You are right, but I saw the -c option only at the last moment (when comparing the changes in the man pages). If anyone misses the option, I can re-add it in the C version. Do you think this is worth the effort? -Oliver From owner-cvs-all@FreeBSD.ORG Wed Aug 11 23:41:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FBB416A4CE; Wed, 11 Aug 2004 23:41:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8299343D53; Wed, 11 Aug 2004 23:41:53 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BNfrps095533; Wed, 11 Aug 2004 23:41:53 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BNfrL0095532; Wed, 11 Aug 2004 23:41:53 GMT (envelope-from pjd) Message-Id: <200408112341.i7BNfrL0095532@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Wed, 11 Aug 2004 23:41:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/mirror g_mirror.c g_mirror.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 11 Aug 2004 23:41:53 -0000 pjd 2004-08-11 23:41:53 UTC FreeBSD src repository Modified files: sys/geom/mirror g_mirror.c g_mirror.h Log: MFp4: Simplify code a bit: - Remove kern.geom.mirror.sync_block_size sysctl. It is quite obvious that we want to use the biggest size possible. - Do not use UMA zone for sync data allocations. There could be only one synchronization request per synchronized disk at a time, so allocate memory for one request on whole synchronization process related to one disk. Tested by synchronizing one component (out of three) and by synchronizing two components (out of three) in parallel. Revision Changes Path 1.18 +6 -14 src/sys/geom/mirror/g_mirror.c 1.8 +6 -6 src/sys/geom/mirror/g_mirror.h From owner-cvs-all@FreeBSD.ORG Thu Aug 12 00:00:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 60A8B16A4CE; Thu, 12 Aug 2004 00:00:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E59A43D39; Thu, 12 Aug 2004 00:00:16 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C00GbC096052; Thu, 12 Aug 2004 00:00:16 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C00FJb096051; Thu, 12 Aug 2004 00:00:15 GMT (envelope-from jmg) Message-Id: <200408120000.i7C00FJb096051@repoman.freebsd.org> From: John-Mark Gurney Date: Thu, 12 Aug 2004 00:00:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 00:00:16 -0000 jmg 2004-08-12 00:00:15 UTC FreeBSD src repository Modified files: . UPDATING Log: add comment about needing to upgrade loader.rc on i386 systems that have problems loading modules... Solution by: ru Revision Changes Path 1.339 +9 -0 src/UPDATING From owner-cvs-all@FreeBSD.ORG Thu Aug 12 00:04:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DEC8516A4CE; Thu, 12 Aug 2004 00:04:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB00343D1F; Thu, 12 Aug 2004 00:04:44 +0000 (GMT) (envelope-from dougb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C04io6096197; Thu, 12 Aug 2004 00:04:44 GMT (envelope-from dougb@repoman.freebsd.org) Received: (from dougb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C04i6B096196; Thu, 12 Aug 2004 00:04:44 GMT (envelope-from dougb) Message-Id: <200408120004.i7C04i6B096196@repoman.freebsd.org> From: Doug Barton Date: Thu, 12 Aug 2004 00:04:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/pine4/files patch-pine_screen.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 00:04:45 -0000 dougb 2004-08-12 00:04:44 UTC FreeBSD ports repository Added files: mail/pine4/files patch-pine_screen.c Log: This patch allows Pine to display color in a cons25 terminal without inappropriate scrolling. The problem is related to the behavior of cons25 when something is written to the lower right corner. This will cause a "blank" square in that position for some terminals, but the effect is harmless. Pointed out by: Lars Eighner URL: http://www.washington.edu/pine/pine-info/2002.01/msg00038.html Revision Changes Path 1.1 +15 -0 ports/mail/pine4/files/patch-pine_screen.c (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 00:08:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5281F16A4CE; Thu, 12 Aug 2004 00:08:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 304D243D31; Thu, 12 Aug 2004 00:08:06 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C086lR096368; Thu, 12 Aug 2004 00:08:06 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C0862A096367; Thu, 12 Aug 2004 00:08:06 GMT (envelope-from eik) Message-Id: <200408120008.i7C0862A096367@repoman.freebsd.org> From: Oliver Eikemeier Date: Thu, 12 Aug 2004 00:08:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/portaudit-db/database portaudit.txt portaudit.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 00:08:06 -0000 eik 2004-08-12 00:08:06 UTC FreeBSD ports repository Modified files: security/portaudit-db/database portaudit.txt portaudit.xml Log: 9fb5bb32-d6fa-11d8-b479-02e0185c0b53 is a duplicate of 40800696-c3b0-11d8-864c-02e0185c0b53 Revision Changes Path 1.84 +2 -3 ports/security/portaudit-db/database/portaudit.txt 1.7 +5 -1 ports/security/portaudit-db/database/portaudit.xml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 00:09:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DC5BC16A4CE; Thu, 12 Aug 2004 00:09:03 +0000 (GMT) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [128.30.28.20]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FD5A43D41; Thu, 12 Aug 2004 00:09:03 +0000 (GMT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: from khavrinen.lcs.mit.edu (localhost [IPv6:::1]) by khavrinen.lcs.mit.edu (8.12.9/8.12.9) with ESMTP id i7C07U8g078081 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK CN=khavrinen.lcs.mit.edu issuer=SSL+20Client+20CA); Wed, 11 Aug 2004 20:07:31 -0400 (EDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.12.9/8.12.9/Submit) id i7C07U8r078078; Wed, 11 Aug 2004 20:07:30 -0400 (EDT) (envelope-from wollman) Date: Wed, 11 Aug 2004 20:07:30 -0400 (EDT) From: Garrett Wollman Message-Id: <200408120007.i7C07U8r078078@khavrinen.lcs.mit.edu> To: Oliver Eikemeier In-Reply-To: <85B47D61-EBE6-11D8-887A-00039312D914@fillmore-labs.com> References: <200408112222.i7BMMPPc077157@khavrinen.lcs.mit.edu> <85B47D61-EBE6-11D8-887A-00039312D914@fillmore-labs.com> X-Spam-Score: -19.8 () IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES,REPLY_WITH_QUOTES X-Scanned-By: MIMEDefang 2.37 cc: cvs-ports@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: ports-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT modules ports/shells Makefile ports/shells/bash3 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/shells/bash3/files patch-ac patch-af patch-bashline.c patch-builtins_shopt.def patch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 00:09:04 -0000 < said: > Any reasons for that? Which means, do you actually use it? It conflicts > with the other bash ports, and the last release was 1996. Um, yes, I thought that was obvious. All of my shell universe is bash1-based. -GAWollman From owner-cvs-all@FreeBSD.ORG Thu Aug 12 00:11:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7F5FA16A4CE; Thu, 12 Aug 2004 00:11:52 +0000 (GMT) Received: from rwcrmhc13.comcast.net (rwcrmhc13.comcast.net [204.127.198.39]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AE1D43D39; Thu, 12 Aug 2004 00:11:52 +0000 (GMT) (envelope-from DougB@freebsd.org) Received: from lap (c-24-130-110-32.we.client2.attbi.com[24.130.110.32]) by comcast.net (rwcrmhc13) with SMTP id <20040812001146015008s427e>; Thu, 12 Aug 2004 00:11:52 +0000 Date: Wed, 11 Aug 2004 17:11:46 -0700 (PDT) From: Doug Barton To: Edwin Groothuis In-Reply-To: <20040811231915.GA1827@k7.mavetju> Message-ID: <20040811171010.Q54010@ync.qbhto.arg> References: <411AA66A.8020908@DougBarton.net> <20040811231915.GA1827@k7.mavetju> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: "cvs-ports@FreeBSD.org" cc: "ports-committers@FreeBSD.org" cc: "cvs-all@FreeBSD.org" cc: Oliver Eikemeier Subject: Re: cvs commit: ports/dns Makefile ports/dns/bind93 Makefiledistinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 00:11:52 -0000 On Thu, 12 Aug 2004, Edwin Groothuis wrote: > On Wed, Aug 11, 2004 at 04:06:18PM -0700, Doug Barton wrote: >> Oliver Eikemeier wrote: >> >>> Shouldn't this have been a repocopy from dns/bind9? >> >> No. > > If he had asked it with a portmgr hat on, would you have given an > answer of more than two letters? If he had asked a question that required something other than a yes or no answer, I would have given him one. :) -- This .signature sanitized for your protection From owner-cvs-all@FreeBSD.ORG Thu Aug 12 00:13:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 74E1916A4CE; Thu, 12 Aug 2004 00:13:34 +0000 (GMT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7D9543D2D; Thu, 12 Aug 2004 00:13:33 +0000 (GMT) (envelope-from DougB@freebsd.org) Received: from lap (c-24-130-110-32.we.client2.attbi.com[24.130.110.32]) by comcast.net (sccrmhc13) with SMTP id <2004081200133201600qtidke>; Thu, 12 Aug 2004 00:13:33 +0000 Date: Wed, 11 Aug 2004 17:13:31 -0700 (PDT) From: Doug Barton To: Alfred Perlstein In-Reply-To: <20040811231803.GE57908@elvis.mu.org> Message-ID: <20040811171300.N54010@ync.qbhto.arg> References: <200408111616.i7BGGOYZ074677@repoman.freebsd.org> <20040811162405.GV87690@submonkey.net> <20040811231803.GE57908@elvis.mu.org> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: "cvs-src@FreeBSD.org" cc: Ceri Davies cc: "cvs-all@FreeBSD.org" cc: "src-committers@FreeBSD.org" cc: Oliver Eikemeier Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.hextract.c Makefilesrc/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 00:13:34 -0000 On Wed, 11 Aug 2004, Alfred Perlstein wrote: > * Ceri Davies [040811 09:24] wrote: >> On Wed, Aug 11, 2004 at 04:16:24PM +0000, Oliver Eikemeier wrote: >>> eik 2004-08-11 16:16:24 UTC >>> >>> >>> - replace the perl version of pkg_version(1) by its C equivalent, >>> which means that `pkg_version -c' does no longer work >> >> I don't think that this should have gone into RELENG_4, in this case. > > Agreed. We don't break things that used to work in 4.x unless there > is dire need. Also agreed. This should not have happened, and I'd like to see it backed out. Doug -- This .signature sanitized for your protection From owner-cvs-all@FreeBSD.ORG Thu Aug 12 00:21:51 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 629B516A4CE; Thu, 12 Aug 2004 00:21:51 +0000 (GMT) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [216.148.227.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43DAD43D49; Thu, 12 Aug 2004 00:21:51 +0000 (GMT) (envelope-from DougB@freebsd.org) Received: from lap (c-24-130-110-32.we.client2.attbi.com[24.130.110.32]) by comcast.net (rwcrmhc12) with SMTP id <2004081200214901400r4rrde>; Thu, 12 Aug 2004 00:21:50 +0000 Date: Wed, 11 Aug 2004 17:21:49 -0700 (PDT) From: Doug Barton To: David O'Brien In-Reply-To: <20040811205002.GD44709@dragon.nuxi.com> Message-ID: <20040811171403.A54010@ync.qbhto.arg> References: <411A0898.3020605@portaone.com> <411A0B41.9070607@portaone.com> <1092239490.731.0.camel@gyros> <20040811205002.GD44709@dragon.nuxi.com> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: Maxim Sobolev cc: "cvs-all@FreeBSD.org" cc: "ports-committers@FreeBSD.org" cc: Joe Marcus Clarke cc: "cvs-ports@FreeBSD.org" cc: Oliver Eikemeier Subject: Re: cvs commit: CVSROOT modules ports/shells Makefileports/shells/bash3 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist patch-builtins_shopt.def patch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 00:21:51 -0000 On Wed, 11 Aug 2004, David O'Brien wrote: > On Wed, Aug 11, 2004 at 11:51:30AM -0400, Joe Marcus Clarke wrote: >> On Wed, 2004-08-11 at 08:04, Maxim Sobolev wrote: >>> P.S. My recommendation is to kill both bash1 and bash2, repo-copy bash3 >>> into just bash and remove bash3 as well. >> >> Actually, we can't do that. In order to preserve all histories, we >> should delete bash2 and bash3, and update bash to 3.0....that is, if >> that's what all the maintainers agree to. > > I'm not sure we can kill the 'bash1' port. When I tried to do that > before, I got many unhappy emails. Well, I'd like to cast my vote (again) for removing bash1. Leaving it around served a purpose way back when, but 8 years is long enough for people to upgrade, and there is plenty of ickiness in bash 1.x that we should not run the risk of subjecting our users to accidentally. Anyone who really needs bash 1.x can figure out how to do it themselves. > The jurry is still out on if 'bash2' > needs to exist for a while. We should probably have a plain 'bash' port > that is the latest version. I disagree with this, and I share David's frustration that this action was rushed into without proper discussion. As we see more and more versioning in software as projects grow and diverge I think that we need to develop a little more flexibility in our naming. Not having a "bash" port hasn't been a problem for the project since, oh, day 1, so I don't see why we need to rush to fix this "problem" immediately. Finally, as a devoted bash2 user, I don't plan to switch to bash3 until it's proven stable. I'm also sure that there are numerous FreeBSD sites who will continue to need a bash2 port for the forseeable future. Leaving bash 3.x as "bash" and leaving the bash2 port unmolested is the way to handle this for now, IMO. Doug -- This .signature sanitized for your protection From owner-cvs-all@FreeBSD.ORG Thu Aug 12 00:25:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D2B016A4CE; Thu, 12 Aug 2004 00:25:00 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id D24DA43D31; Thu, 12 Aug 2004 00:24:59 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-8.local ([172.16.0.8] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1Bv3Oq-000PgX-TJ; Thu, 12 Aug 2004 02:24:59 +0200 Date: Thu, 12 Aug 2004 02:26:34 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Doug Barton From: Oliver Eikemeier In-Reply-To: <20040811171010.Q54010@ync.qbhto.arg> Message-Id: <441CD44F-EBF6-11D8-887A-00039312D914@fillmore-labs.com> Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: cvs-ports@FreeBSD.org cc: Edwin Groothuis cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/dns Makefile ports/dns/bind93 Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 00:25:00 -0000 Doug Barton wrote: > On Thu, 12 Aug 2004, Edwin Groothuis wrote: > >> On Wed, Aug 11, 2004 at 04:06:18PM -0700, Doug Barton wrote: >>> Oliver Eikemeier wrote: >>> >>>> Shouldn't this have been a repocopy from dns/bind9? >>> >>> No. >> >> If he had asked it with a portmgr hat on, would you have given an >> answer of more than two letters? > > If he had asked a question that required something other than a yes or > no answer, I would have given him one. :) Ok, could you just outline to me why does not apply, why dns/bind93 is not related to dns/bind9 and why there is no history to preserve, especially given that you mean to remove dns/bind9. -Oliver From owner-cvs-all@FreeBSD.ORG Thu Aug 12 00:33:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 272E416A4CE; Thu, 12 Aug 2004 00:33:59 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id C5CCC43D45; Thu, 12 Aug 2004 00:33:58 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-8.local ([172.16.0.8] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1Bv3XX-000Phj-FX; Thu, 12 Aug 2004 02:33:57 +0200 Date: Thu, 12 Aug 2004 02:35:33 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Doug Barton , re@FreeBSD.org From: Oliver Eikemeier In-Reply-To: <20040811171300.N54010@ync.qbhto.arg> Message-Id: <8576C147-EBF7-11D8-887A-00039312D914@fillmore-labs.com> Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: Ceri Davies cc: cvs-src@FreeBSD.org cc: Alfred Perlstein cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 00:33:59 -0000 Doug Barton wrote: > On Wed, 11 Aug 2004, Alfred Perlstein wrote: > >> * Ceri Davies [040811 09:24] wrote: >>> On Wed, Aug 11, 2004 at 04:16:24PM +0000, Oliver Eikemeier wrote: >>>> eik 2004-08-11 16:16:24 UTC >>>> >>>> >>>> - replace the perl version of pkg_version(1) by its C equivalent, >>>> which means that `pkg_version -c' does no longer work >>> >>> I don't think that this should have gone into RELENG_4, in this case. >> >> Agreed. We don't break things that used to work in 4.x unless there >> is dire need. > > Also agreed. This should not have happened, and I'd like to see it > backed out. Before I get a million replies to this commit: When anyone from re@ thinks it is worth the effort, I will add an -c option to the C pkg_version code ASAP. I believe backing this out won't be beneficial for -STABLE users, since they'll loose a lot of features (and speed). Has anyone on this thread *ever* used that option? -Oliver From owner-cvs-all@FreeBSD.ORG Thu Aug 12 00:57:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C42416A4CE; Thu, 12 Aug 2004 00:57:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 482A043D1D; Thu, 12 Aug 2004 00:57:49 +0000 (GMT) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C0vnAt097587; Thu, 12 Aug 2004 00:57:49 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C0vn7Y097586; Thu, 12 Aug 2004 00:57:49 GMT (envelope-from leeym) Message-Id: <200408120057.i7C0vn7Y097586@repoman.freebsd.org> From: Yen-Ming Lee Date: Thu, 12 Aug 2004 00:57:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/openwebmail Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 00:57:49 -0000 leeym 2004-08-12 00:57:49 UTC FreeBSD ports repository Modified files: mail/openwebmail Makefile Log: OpenWebmail needs to depend on the new name of SpeedyCGI. Submitted by: Lars Thegler Revision Changes Path 1.45 +5 -3 ports/mail/openwebmail/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 01:05:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 40B0C16A4CE; Thu, 12 Aug 2004 01:05:38 +0000 (GMT) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id C530C43D1F; Thu, 12 Aug 2004 01:05:37 +0000 (GMT) (envelope-from DougB@freebsd.org) Received: from lap (c-24-130-110-32.we.client2.attbi.com[24.130.110.32]) by comcast.net (sccrmhc11) with SMTP id <20040812010525011004tab4e>; Thu, 12 Aug 2004 01:05:36 +0000 Date: Wed, 11 Aug 2004 18:05:24 -0700 (PDT) From: Doug Barton To: Oliver Eikemeier In-Reply-To: <441CD44F-EBF6-11D8-887A-00039312D914@fillmore-labs.com> Message-ID: <20040811175038.M54010@ync.qbhto.arg> References: <441CD44F-EBF6-11D8-887A-00039312D914@fillmore-labs.com> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: "cvs-ports@FreeBSD.org" cc: Edwin Groothuis cc: "cvs-all@FreeBSD.org" cc: "ports-committers@FreeBSD.org" Subject: Re: cvs commit: ports/dns Makefile ports/dns/bind93 Makefiledistinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:05:38 -0000 On Thu, 12 Aug 2004, Oliver Eikemeier wrote: > Ok, could you just outline to me why > > does not apply, why dns/bind93 is not related to dns/bind9 and why there is > no history to preserve, especially given that you mean to remove dns/bind9. Thank you, that is a reasonable question, and deserves a reasonable answer. There are two main reasons why a repo copy isn't needed here. First, when the BIND 9 port was created originally they made the same mistake you are suggesting, namely reop copying the BIND 8 port. This brought in tons of pointless history that wasn't relevant. I want to remedy that problem by creating a new port that doesn't drag along unrelated history. Second, there is quite frankly no significant history _of the BIND 9 port_ to preserve. If you had bothered to check the CVS history instead of simply offering a knee-jerk reaction then you would have already known this. Alternatively, if you did check the history, and there is something there that you think needs to be preserved at all costs, please state your case so that we can discuss it. There is also (I think) a valid question of what is a "related" version here. BIND 9 is a complete rewrite, with a completely different codebase, distribution scheme, etc. BIND 9.3.x is essentially another rewrite, although they do share a common file format for the distribution, etc. If the original bind9 port had been created new rather than repo copied then I could more easily be persuaded that the bind93 port should be repo copied. However, at this point in the process I see no reason to drag all of that useless history into a new port. Doug -- This .signature sanitized for your protection From owner-cvs-all@FreeBSD.ORG Thu Aug 12 01:09:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 178ED16A4CF for ; Thu, 12 Aug 2004 01:09:21 +0000 (GMT) Received: from mail.gmx.net (pop.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 0626343D39 for ; Thu, 12 Aug 2004 01:09:20 +0000 (GMT) (envelope-from tmoestl@gmx.net) Received: (qmail 10666 invoked by uid 65534); 12 Aug 2004 01:09:18 -0000 Received: from p509076EC.dip.t-dialin.net (EHLO timesink.dyndns.org) (80.144.118.236) by mail.gmx.net (mp007) with SMTP; 12 Aug 2004 03:09:18 +0200 X-Authenticated: #5374206 Received: by abel (Postfix, from userid 1001) id B350E56E; Thu, 12 Aug 2004 03:10:10 +0200 (CEST) Date: Thu, 12 Aug 2004 03:10:10 +0200 From: Thomas Moestl To: John-Mark Gurney Message-ID: <20040812011010.GA4799@timesink.dyndns.org> References: <200408111452.i7BEqXg8071621@repoman.freebsd.org> <20040811150458.GU991@funkthat.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="VbJkn9YxBvnuCH5J" Content-Disposition: inline In-Reply-To: <20040811150458.GU991@funkthat.com> User-Agent: Mutt/1.5.6i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man9 bus_dma.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:09:21 -0000 --VbJkn9YxBvnuCH5J Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, 2004/08/11 at 08:04:58 -0700, John-Mark Gurney wrote: > John-Mark Gurney wrote this message on Wed, Aug 11, 2004 at 14:52 +0000: > > jmg 2004-08-11 14:52:33 UTC > > > > FreeBSD src repository > > > > Modified files: > > share/man/man9 bus_dma.9 > > Log: > > fix description of the macros for BUS_DMASYNC opertions. It's from the CPU's > > point of view... Add a reference to a better description of what the ops > > do... > > If you were previously confused (and even if you thought you knew what > they were) on what BUS_DMASYNC_ ops to us, please reread the manpage > and review any drivers written using them. Hmmm. It seems to me that the text the new reference points to is wrong, or at least ambiguous: bus_dmamap_sync() is the method used to ensure that CPU and device DMA access to shared memory is coherent. For example, the CPU might be used to setup the contents of a buffer that is to be DMA'ed into a device. To ensure that the data are visible via the device's mapping of that memory, the buffer must be loaded and a dma sync operation of BUS_DMASYNC_PREREAD must be performed. Additional sync operations must be performed after every CPU write to this memory if additional DMA reads are to be performed. Conversely, for the DMA write case, the buffer must be loaded, and a dma sync operation of BUS_DMASYNC_PREWRITE must be performed. The CPU will only be able to see the results of this DMA write once the DMA has completed and a BUS_DMASYNC_POSTWRITE operation has been performed. When the CPU sets up data to be DMAed into the device from memory, it needs to use a PREWRITE, not POSTREAD, sync before starting the DMA operation. Likewise, after DMAing data out of the device and into memory, a POSTREAD is required. This is quickly evident when looking into the busdma implementations, for example the way the i386 one deals with bounce buffers on syncs. The best way to memorize the flags (and probably their origin) is to imagine a disk controller; a write to disk will need the *WRITE flags (but it reads from memory), and vice versa. NetBSD has a nice clarification: Synchronization operations are expressed from the perspective of the host RAM, e.g., a device -> memory operation is a READ and a memory -> device operation is a WRITE. I think that something of that variety is required, since there are always the two opposite meanings of "reading from" and "reading into". - Thomas -- Thomas Moestl http://www.tu-bs.de/~y0015675/ http://people.FreeBSD.org/~tmm/ OpenPGP fingerprint: 1C97 A604 2BD0 E492 51D0 9C0F 1FE6 4F1D 419C 776C --VbJkn9YxBvnuCH5J Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBGsNxH+ZPHUGcd2wRAjROAJ0bUw+nWaErxnmVu/yKfbt14tNBhACgvgu8 Uk+uVmuLYeTGEXZt2SuTnm0= =gldJ -----END PGP SIGNATURE----- --VbJkn9YxBvnuCH5J-- From owner-cvs-all@FreeBSD.ORG Thu Aug 12 01:12:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BCC1616A4CE; Thu, 12 Aug 2004 01:12:09 +0000 (GMT) Received: from rwcrmhc11.comcast.net (rwcrmhc11.comcast.net [204.127.198.35]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9801343D39; Thu, 12 Aug 2004 01:12:09 +0000 (GMT) (envelope-from DougB@freebsd.org) Received: from lap (c-24-130-110-32.we.client2.attbi.com[24.130.110.32]) by comcast.net (rwcrmhc11) with SMTP id <20040812011208013001cvb6e>; Thu, 12 Aug 2004 01:12:09 +0000 Date: Wed, 11 Aug 2004 18:12:08 -0700 (PDT) From: Doug Barton To: Oliver Eikemeier In-Reply-To: <8576C147-EBF7-11D8-887A-00039312D914@fillmore-labs.com> Message-ID: <20040811180725.E54010@ync.qbhto.arg> References: <8576C147-EBF7-11D8-887A-00039312D914@fillmore-labs.com> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: "src-committers@FreeBSD.org" cc: "re@FreeBSD.org" cc: "cvs-src@FreeBSD.org" cc: Alfred Perlstein cc: "cvs-all@FreeBSD.org" cc: Ceri Davies Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.hextract.c Makefilesrc/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:12:10 -0000 On Thu, 12 Aug 2004, Oliver Eikemeier wrote: > Before I get a million replies to this commit: When anyone from re@ thinks it > is worth the effort, I will add an -c option to the C pkg_version code ASAP. I am happy to let re@ make the decision regarding the proper course of action here. > I believe backing this out won't be beneficial for -STABLE users, since > they'll loose a lot of features (and speed). Has anyone on this thread *ever* > used that option? None of these arguments are relevant, sorry. One of the key principles for a -stable branch is not violating trust with our users that "how things work is how they will always work" without a really good reason. "It's better, stronger, faster!" is not a really good reason. One of the key reasons for the failure of the 3.x branch was that we called it "stable" but we kept messing around with it. This dramatically delayed the uptake of the branch, which caused a lot of problems to stay problems such that a majority of our user base went from 2.x to 4.x instead of using 3.x at all. We were dangerously close to making this same mistake in 5.x, but I think that the current re@ group has done a pretty good job of limiting the number of things that might bite us in the butt down the road. I'd still like to see the change to pkg_version backed out, and the old one restored. Doug -- This .signature sanitized for your protection From owner-cvs-all@FreeBSD.ORG Thu Aug 12 01:28:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C12D116A4D0 for ; Thu, 12 Aug 2004 01:28:58 +0000 (GMT) Received: from mail1.speakeasy.net (mail1.speakeasy.net [216.254.0.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3520243D5C for ; Thu, 12 Aug 2004 01:28:58 +0000 (GMT) (envelope-from jmg@hydrogen.funkthat.com) Received: (qmail 14274 invoked from network); 12 Aug 2004 01:28:57 -0000 Received: from gate.funkthat.com (HELO hydrogen.funkthat.com) ([69.17.45.168]) (envelope-sender ) by mail1.speakeasy.net (qmail-ldap-1.03) with SMTP for ; 12 Aug 2004 01:28:57 -0000 Received: from hydrogen.funkthat.com (nefezk@localhost.funkthat.com [127.0.0.1])i7C1SvuU011980; Wed, 11 Aug 2004 18:28:57 -0700 (PDT) (envelope-from jmg@hydrogen.funkthat.com) Received: (from jmg@localhost) by hydrogen.funkthat.com (8.12.10/8.12.10/Submit) id i7C1Su94011979; Wed, 11 Aug 2004 18:28:56 -0700 (PDT) Date: Wed, 11 Aug 2004 18:28:56 -0700 From: John-Mark Gurney To: Thomas Moestl Message-ID: <20040812012856.GY991@funkthat.com> References: <200408111452.i7BEqXg8071621@repoman.freebsd.org> <20040811150458.GU991@funkthat.com> <20040812011010.GA4799@timesink.dyndns.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040812011010.GA4799@timesink.dyndns.org> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 4.2-RELEASE i386 X-PGP-Fingerprint: B7 EC EF F8 AE ED A7 31 96 7A 22 B3 D8 56 36 F4 X-Files: The truth is out there X-URL: http://resnet.uoregon.edu/~gurney_j/ X-Resume: http://resnet.uoregon.edu/~gurney_j/resume.html cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man9 bus_dma.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: John-Mark Gurney List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:28:59 -0000 Thomas Moestl wrote this message on Thu, Aug 12, 2004 at 03:10 +0200: > On Wed, 2004/08/11 at 08:04:58 -0700, John-Mark Gurney wrote: > Hmmm. It seems to me that the text the new reference points to is > wrong, or at least ambiguous: > > bus_dmamap_sync() is the method used to ensure that CPU and > device DMA access to shared memory is coherent. For example, > the CPU might be used to setup the contents of a buffer that is > to be DMA'ed into a device. To ensure that the data are visible > via the device's mapping of that memory, the buffer must be > loaded and a dma sync operation of BUS_DMASYNC_PREREAD must be > performed. Additional sync operations must be performed after > every CPU write to this memory if additional DMA reads are to be > performed. Conversely, for the DMA write case, the buffer must > be loaded, and a dma sync operation of BUS_DMASYNC_PREWRITE must > be performed. The CPU will only be able to see the results of > this DMA write once the DMA has completed and a > BUS_DMASYNC_POSTWRITE operation has been performed. > > When the CPU sets up data to be DMAed into the device from memory, it > needs to use a PREWRITE, not POSTREAD, sync before starting the DMA We aren't NetBSD... :) it needs to be a _PREREAD since the device is _reading_ from the cpu's memory... check sys/i386/i386/busdma_machdep.c function _bus_dmamap_sync which does bounce buffering... > operation. Likewise, after DMAing data out of the device and into > memory, a POSTREAD is required. This is quickly evident when looking and here the device is _writing_ to the cpu's memory, and hence a _POSTWRITE... > into the busdma implementations, for example the way the i386 one > deals with bounce buffers on syncs. > The best way to memorize the flags (and probably their origin) is to > imagine a disk controller; a write to disk will need the *WRITE flags > (but it reads from memory), and vice versa. > > NetBSD has a nice clarification: > Synchronization operations are expressed from the perspective of > the host RAM, e.g., a device -> memory operation is a READ and a > memory -> device operation is a WRITE. > > I think that something of that variety is required, since there are > always the two opposite meanings of "reading from" and "reading into". Personally, if I am memory, a device _reads_ me, I don't _read_ a device, it's the device that does the work, not me... the memory isn't active in dma... it's a passive receiver of requests... -- John-Mark Gurney Voice: +1 415 225 5579 "All that I will do, has been done, All that I have, has not." From owner-cvs-all@FreeBSD.ORG Thu Aug 12 01:30:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F201516A4CF; Thu, 12 Aug 2004 01:30:41 +0000 (GMT) Received: from electra.cse.Buffalo.EDU (electra.cse.Buffalo.EDU [128.205.32.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80BE143D48; Thu, 12 Aug 2004 01:30:41 +0000 (GMT) (envelope-from kensmith@cse.Buffalo.EDU) Received: from electra.cse.Buffalo.EDU (kensmith@localhost [127.0.0.1]) i7C1T9TH025988; Wed, 11 Aug 2004 21:29:10 -0400 (EDT) Received: (from kensmith@localhost) by electra.cse.Buffalo.EDU (8.12.10/8.12.9/Submit) id i7C1T9c1025987; Wed, 11 Aug 2004 21:29:09 -0400 (EDT) Date: Wed, 11 Aug 2004 21:29:09 -0400 From: Ken Smith To: Oliver Eikemeier Message-ID: <20040812012909.GA25768@electra.cse.Buffalo.EDU> References: <20040811171300.N54010@ync.qbhto.arg> <8576C147-EBF7-11D8-887A-00039312D914@fillmore-labs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <8576C147-EBF7-11D8-887A-00039312D914@fillmore-labs.com> User-Agent: Mutt/1.4.1i cc: Doug Barton cc: re@FreeBSD.org cc: cvs-src@FreeBSD.org cc: Alfred Perlstein cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org cc: Ceri Davies Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:30:42 -0000 nOn Thu, Aug 12, 2004 at 02:35:33AM +0200, Oliver Eikemeier wrote: > Before I get a million replies to this commit: When anyone from re@ > thinks it is worth the effort, I will add an -c option to the C > pkg_version code ASAP. I believe backing this out won't be beneficial > for -STABLE users, since they'll loose a lot of features (and speed). > Has anyone on this thread *ever* used that option? I would like to see the -c added please. I know it seems like busywork but we have historically tried to make sure existing semantics don't change in -stable without a really really really good reason. Additional features (and speed ;-) are always welcome/good as long as existing semantics don't change. If you need any help or want to discuss it let me know. Thanks. -- Ken Smith - From there to here, from here to | kensmith@cse.buffalo.edu there, funny things are everywhere. | - Theodore Geisel | From owner-cvs-all@FreeBSD.ORG Thu Aug 12 01:33:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9E72216A4CE; Thu, 12 Aug 2004 01:33:12 +0000 (GMT) Received: from hotmail.com (bay11-f10.bay11.hotmail.com [64.4.39.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E3D543D1D; Thu, 12 Aug 2004 01:33:12 +0000 (GMT) (envelope-from dsnofe@msn.com) Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC; Wed, 11 Aug 2004 18:33:12 -0700 Received: from 218.80.194.83 by by11fd.bay11.hotmail.msn.com with HTTP; Thu, 12 Aug 2004 01:33:11 GMT X-Originating-IP: [218.80.194.83] X-Originating-Email: [dsnofe@msn.com] X-Sender: dsnofe@msn.com From: "Deng XueFeng" To: obrien@FreeBSD.org, src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Date: Thu, 12 Aug 2004 01:33:11 +0000 Mime-Version: 1.0 Content-Type: text/plain; charset=gb2312; format=flowed Message-ID: X-OriginalArrivalTime: 12 Aug 2004 01:33:12.0261 (UTC) FILETIME=[54B94F50:01C4800C] Subject: RE: cvs commit: src/share/mk bsd.cpu.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:33:12 -0000 Could you also add pentium-m, pentium3-m, pentium4-m support please. laptops need that. :-) >From: "David E. O'Brien" >To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org,cvs-all@FreeBSD.org >Subject: cvs commit: src/share/mk bsd.cpu.mk >Date: Wed, 11 Aug 2004 21:51:27 +0000 (UTC) >Received: from mx2.freebsd.org ([216.136.204.119]) by mc9-f28.hotmail.com with Microsoft SMTPSVC(5.0.2195.6824); Wed, 11 Aug 2004 14:51:43 -0700 >Received: from hub.freebsd.org (hub.freebsd.org [216.136.204.18])by mx2.freebsd.org (Postfix) with ESMTPid 0FCCC581FF; Wed, 11 Aug 2004 21:51:34 +0000 (GMT)(envelope-from owner-cvs-src@freebsd.org) >Received: from hub.freebsd.org (localhost [127.0.0.1])by hub.freebsd.org (Postfix) with ESMTPid A827616A506; Wed, 11 Aug 2004 21:51:29 +0000 (GMT) >Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125])by hub.freebsd.org (Postfix) with ESMTPid 63C2016A4CE; Wed, 11 Aug 2004 21:51:27 +0000 (GMT) >Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115])by mx1.FreeBSD.org (Postfix) with ESMTPid 41AE543D54; Wed, 11 Aug 2004 21:51:27 +0000 (GMT)(envelope-from obrien@FreeBSD.org) >Received: from repoman.freebsd.org (localhost [127.0.0.1])by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7BLpRBN089275;Wed, 11 Aug 2004 21:51:27 GMT(envelope-from obrien@repoman.freebsd.org) >Received: (from obrien@localhost)by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7BLpRso089274;Wed, 11 Aug 2004 21:51:27 GMT(envelope-from obrien) >X-Message-Info: JGTYoYF78jHl+ZEdBQD/8G+rmkvDmXJX >Delivered-To: cvs-src@freebsd.org >Message-Id: <200408112151.i7BLpRso089274@repoman.freebsd.org> >X-FreeBSD-CVS-Branch: HEAD >X-BeenThere: cvs-src@freebsd.org >X-Mailman-Version: 2.1.1 >Precedence: list >List-Id: CVS commit messages for the src tree >List-Unsubscribe: , >List-Archive: >List-Post: >List-Help: >List-Subscribe: , >Errors-To: owner-cvs-src@freebsd.org >Return-Path: owner-cvs-src@freebsd.org >X-OriginalArrivalTime: 11 Aug 2004 21:51:43.0467 (UTC) FILETIME=[63FC43B0:01C47FED] > >obrien 2004-08-11 21:51:27 UTC > > FreeBSD src repository > > Modified files: > share/mk bsd.cpu.mk > Log: > Add more aliases for common CPUTYPE spellings > > Revision Changes Path > 1.40 +9 -1 src/share/mk/bsd.cpu.mk >_______________________________________________ >cvs-src@freebsd.org mailing list >http://lists.freebsd.org/mailman/listinfo/cvs-src >To unsubscribe, send any mail to "cvs-src-unsubscribe@freebsd.org" _________________________________________________________________ Ãâ·ÑÏÂÔØ MSN Explorer: http://explorer.msn.com/lccn/ From owner-cvs-all@FreeBSD.ORG Thu Aug 12 01:34:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8C3A716A4CE; Thu, 12 Aug 2004 01:34:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AF5E43D41; Thu, 12 Aug 2004 01:34:27 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C1YRox098765; Thu, 12 Aug 2004 01:34:27 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C1YRDm098764; Thu, 12 Aug 2004 01:34:27 GMT (envelope-from rwatson) Message-Id: <200408120134.i7C1YRDm098764@repoman.freebsd.org> From: Robert Watson Date: Thu, 12 Aug 2004 01:34:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet udp_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:34:27 -0000 rwatson 2004-08-12 01:34:27 UTC FreeBSD src repository Modified files: sys/netinet udp_usrreq.c Log: When udp_send() fails, make sure to free the control mbufs as well as the data mbuf. This was done in most error cases, but not the case where the inpcb pointer is surprisingly NULL. Revision Changes Path 1.161 +2 -0 src/sys/netinet/udp_usrreq.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 01:39:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 61B8816A4CE; Thu, 12 Aug 2004 01:39:37 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1E1F143D2D; Thu, 12 Aug 2004 01:39:37 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-8.local ([172.16.0.8] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1Bv4Z3-0002WA-Vk; Thu, 12 Aug 2004 03:39:36 +0200 Date: Thu, 12 Aug 2004 03:41:10 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Doug Barton From: Oliver Eikemeier In-Reply-To: <20040811175038.M54010@ync.qbhto.arg> Message-Id: Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: cvs-ports@FreeBSD.org cc: Edwin Groothuis cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/dns Makefile ports/dns/bind93 Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:39:37 -0000 Doug Barton wrote: > On Thu, 12 Aug 2004, Oliver Eikemeier wrote: > >> Ok, could you just outline to me why >> > guide/ports.html#Q12.2.1.> >> does not apply, why dns/bind93 is not related to dns/bind9 and why >> there is no history to preserve, especially given that you mean to >> remove dns/bind9. > > Thank you, that is a reasonable question, and deserves a reasonable > answer. There are two main reasons why a repo copy isn't needed here. > First, when the BIND 9 port was created originally they made the same > mistake you are suggesting, namely reop copying the BIND 8 port. This > brought in tons of pointless history that wasn't relevant. I want to > remedy that problem by creating a new port that doesn't drag along > unrelated history. The commit long from Satoshi Asami says: Temporarily remove bind9, it is a repo-copy from bind8 not updated. The history is safe, so just "cvs add" the files back when bind9 is ready to be committed. So he must thought that the history was relevant. Don't you think preserving the history was intended by him? > Second, there is quite frankly no significant history _of the BIND 9 > port_ to preserve. If you had bothered to check the CVS history instead > of simply offering a knee-jerk reaction then you would have already > known this. Alternatively, if you did check the history, and there is > something there that you think needs to be preserved at all costs, > please state your case so that we can discuss it. Since the upgrade to 9.x we had 40 revisions of the ports Makefile. Doing a diff of dns/bind9 and dns/bind93 I see so much similarities that I believe the bind93 port is an updated version of the bind9 port. You might consider revision history unimportant, but "the FreeBSD Project considers this history very useful": > There is also (I think) a valid question of what is a "related" version > here. BIND 9 is a complete rewrite, with a completely different > codebase, distribution scheme, etc. BIND 9.3.x is essentially another > rewrite, although they do share a common file format for the > distribution, etc. If the original bind9 port had been created new > rather than repo copied then I could more easily be persuaded that the > bind93 port should be repo copied. However, at this point in the > process I see no reason to drag all of that useless history into a new > port. Most of the bind9 port history concerns bind 9.x, and the code base doesn't matter, it is the port that does. The bind9 and bind93 ports seem very similar to me, or did you write the bind93 port from scratch instead of copying end editing the bind9 port? -Oliver From owner-cvs-all@FreeBSD.ORG Thu Aug 12 01:52:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C459716A4D0 for ; Thu, 12 Aug 2004 01:52:24 +0000 (GMT) Received: from mail.gmx.net (mail.gmx.net [213.165.64.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 9930743D46 for ; Thu, 12 Aug 2004 01:52:23 +0000 (GMT) (envelope-from tmoestl@gmx.net) Received: (qmail 30913 invoked by uid 65534); 12 Aug 2004 01:52:22 -0000 Received: from p509076EC.dip.t-dialin.net (EHLO timesink.dyndns.org) (80.144.118.236) by mail.gmx.net (mp001) with SMTP; 12 Aug 2004 03:52:22 +0200 X-Authenticated: #5374206 Received: by abel (Postfix, from userid 1001) id 0F10B56E; Thu, 12 Aug 2004 03:53:16 +0200 (CEST) Date: Thu, 12 Aug 2004 03:53:15 +0200 From: Thomas Moestl To: John-Mark Gurney Message-ID: <20040812015315.GB4799@timesink.dyndns.org> References: <200408111452.i7BEqXg8071621@repoman.freebsd.org> <20040811150458.GU991@funkthat.com> <20040812011010.GA4799@timesink.dyndns.org> <20040812012856.GY991@funkthat.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qcHopEYAB45HaUaB" Content-Disposition: inline In-Reply-To: <20040812012856.GY991@funkthat.com> User-Agent: Mutt/1.5.6i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man9 bus_dma.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:52:24 -0000 --qcHopEYAB45HaUaB Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Wed, 2004/08/11 at 18:28:56 -0700, John-Mark Gurney wrote: > Thomas Moestl wrote this message on Thu, Aug 12, 2004 at 03:10 +0200: > > On Wed, 2004/08/11 at 08:04:58 -0700, John-Mark Gurney wrote: > > Hmmm. It seems to me that the text the new reference points to is > > wrong, or at least ambiguous: > > > > bus_dmamap_sync() is the method used to ensure that CPU and > > device DMA access to shared memory is coherent. For example, > > the CPU might be used to setup the contents of a buffer that is > > to be DMA'ed into a device. To ensure that the data are visible > > via the device's mapping of that memory, the buffer must be > > loaded and a dma sync operation of BUS_DMASYNC_PREREAD must be > > performed. Additional sync operations must be performed after > > every CPU write to this memory if additional DMA reads are to be > > performed. Conversely, for the DMA write case, the buffer must > > be loaded, and a dma sync operation of BUS_DMASYNC_PREWRITE must > > be performed. The CPU will only be able to see the results of > > this DMA write once the DMA has completed and a > > BUS_DMASYNC_POSTWRITE operation has been performed. > > > > When the CPU sets up data to be DMAed into the device from memory, it > > needs to use a PREWRITE, not POSTREAD, sync before starting the DMA Oops, that should have been "PREWRITE, not PREREAD", of course. > We aren't NetBSD... :) We are compatible with NetBSD in that respect, and should remain so, there's enough confusion about that topic already. > it needs to be a _PREREAD since the device > is _reading_ from the cpu's memory... check sys/i386/i386/busdma_machdep.c > function _bus_dmamap_sync which does bounce buffering... I did. It reads: if (op & BUS_DMASYNC_PREWRITE) { while (bpage != NULL) { bcopy((void *)bpage->datavaddr, (void *)bpage->vaddr, bpage->datacount); bpage = STAILQ_NEXT(bpage, links); } } if (op & BUS_DMASYNC_POSTREAD) { while (bpage != NULL) { bcopy((void *)bpage->vaddr, (void *)bpage->datavaddr, bpage->datacount); bpage = STAILQ_NEXT(bpage, links); } } bpage->vaddr is the bounce buffer address, bpage->datavaddr is the address that the CPU uses. PREREAD isn't even implemented, and PREWRITE does exactly the thing that is required in this situation, copying the data into the bounce buffer for the device to read. > > into the busdma implementations, for example the way the i386 one > > deals with bounce buffers on syncs. > > The best way to memorize the flags (and probably their origin) is to > > imagine a disk controller; a write to disk will need the *WRITE flags > > (but it reads from memory), and vice versa. > > > > NetBSD has a nice clarification: > > Synchronization operations are expressed from the perspective of > > the host RAM, e.g., a device -> memory operation is a READ and a > > memory -> device operation is a WRITE. > > > > I think that something of that variety is required, since there are > > always the two opposite meanings of "reading from" and "reading into". > > Personally, if I am memory, a device _reads_ me, I don't _read_ a > device, it's the device that does the work, not me... the memory isn't > active in dma... it's a passive receiver of requests... Well, obviously the NetBSD author thought the other way around, so there is potential for confusion. - Thomas -- Thomas Moestl http://www.tu-bs.de/~y0015675/ http://people.FreeBSD.org/~tmm/ OpenPGP fingerprint: 1C97 A604 2BD0 E492 51D0 9C0F 1FE6 4F1D 419C 776C --qcHopEYAB45HaUaB Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBGs2LH+ZPHUGcd2wRAp4pAJ443Ap5AhfASxJDPxgTZnDDAkb4owCgmSOH ix4PgK8l5ZNI9PO5zdLwygw= =ixBZ -----END PGP SIGNATURE----- --qcHopEYAB45HaUaB-- From owner-cvs-all@FreeBSD.ORG Thu Aug 12 01:57:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6AE4216A4CE; Thu, 12 Aug 2004 01:57:24 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE16243D41; Thu, 12 Aug 2004 01:57:23 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-8.local ([172.16.0.8] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1Bv4qG-0004M9-R7; Thu, 12 Aug 2004 03:57:23 +0200 Date: Thu, 12 Aug 2004 03:58:58 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Ken Smith From: Oliver Eikemeier In-Reply-To: <20040812012909.GA25768@electra.cse.Buffalo.EDU> Message-Id: <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: Doug Barton cc: re@FreeBSD.org cc: cvs-src@FreeBSD.org cc: Alfred Perlstein cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org cc: Ceri Davies Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 01:57:24 -0000 Ken Smith wrote: > nOn Thu, Aug 12, 2004 at 02:35:33AM +0200, Oliver Eikemeier wrote: > >> Before I get a million replies to this commit: When anyone from re@ >> thinks it is worth the effort, I will add an -c option to the C >> pkg_version code ASAP. I believe backing this out won't be beneficial >> for -STABLE users, since they'll loose a lot of features (and speed). >> Has anyone on this thread *ever* used that option? > > I would like to see the -c added please. I know it seems like busywork > but we have historically tried to make sure existing semantics don't > change in -stable without a really really really good reason. > Additional > features (and speed ;-) are always welcome/good as long as existing > semantics don't change. If you need any help or want to discuss it > let me know. Ok, I'll write a patch then. -Oliver From owner-cvs-all@FreeBSD.ORG Thu Aug 12 02:06:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D71E16A4CE; Thu, 12 Aug 2004 02:06:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42EC443D46; Thu, 12 Aug 2004 02:06:19 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C26Jag099664; Thu, 12 Aug 2004 02:06:19 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C26JXP099663; Thu, 12 Aug 2004 02:06:19 GMT (envelope-from njl) Message-Id: <200408120206.i7C26JXP099663@repoman.freebsd.org> From: Nate Lawson Date: Thu, 12 Aug 2004 02:06:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci_link.c acpi_pcib.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 02:06:19 -0000 njl 2004-08-12 02:06:19 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci_link.c acpi_pcib.c Log: Fix the PRT entry code in acpi_pci_link to always add the entry, even if there is no irq link. Since we now use the stored copy of PRT, not the one that used to be passed into acpi_pcib_route_interrupt(), we need it in the list. [1] Fix a bug in acpi_pci_find_prt() where we weren't checking the bus, thus choosing the wrong PRT entry to use for routing the link. Also, add a printf for the case where the PRT entry is not found as this should not happen. Tested by: marcel [1] Revision Changes Path 1.21 +40 -41 src/sys/dev/acpica/acpi_pci_link.c 1.48 +4 -1 src/sys/dev/acpica/acpi_pcib.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 02:15:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA77016A4CE; Thu, 12 Aug 2004 02:15:45 +0000 (GMT) Received: from www.cryptography.com (li-22.members.linode.com [64.5.53.22]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A70C43D1D; Thu, 12 Aug 2004 02:15:45 +0000 (GMT) (envelope-from nate@root.org) Received: from [10.0.5.51] (adsl-64-171-186-94.dsl.snfc21.pacbell.net [64.171.186.94]) by www.cryptography.com (8.12.8/8.12.8) with ESMTP id i7C2Fi8U009039; Wed, 11 Aug 2004 19:15:44 -0700 Message-ID: <411AD2CF.9070608@root.org> Date: Wed, 11 Aug 2004 19:15:43 -0700 From: Nate Lawson User-Agent: Mozilla Thunderbird 0.7.3 (Windows/20040803) X-Accept-Language: en-us, en MIME-Version: 1.0 To: cvs-src@FreeBSD.org, cvs-all@FreeBSD.org, src-committers@FreeBSD.org References: <20040812020625.0BD8616A570@hub.freebsd.org> In-Reply-To: <20040812020625.0BD8616A570@hub.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: cvs commit: src/sys/dev/acpica acpi_pci_link.c acpi_pcib.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 02:15:45 -0000 Nate Lawson wrote: > FreeBSD src repository > > Modified files: > sys/dev/acpica acpi_pci_link.c acpi_pcib.c > Log: > Fix the PRT entry code in acpi_pci_link to always add the entry, even if > there is no irq link. Since we now use the stored copy of PRT, not the > one that used to be passed into acpi_pcib_route_interrupt(), we need it in > the list. [1] > > Fix a bug in acpi_pci_find_prt() where we weren't checking the bus, thus > choosing the wrong PRT entry to use for routing the link. Also, add a > printf for the case where the PRT entry is not found as this should not > happen. > > Tested by: marcel [1] > > Revision Changes Path > 1.21 +40 -41 src/sys/dev/acpica/acpi_pci_link.c > 1.48 +4 -1 src/sys/dev/acpica/acpi_pcib.c These bugs were most apparent on APIC machines, especially those with lots of PCI busses. Hardcoded IRQs should now work correctly. -- Nate From owner-cvs-all@FreeBSD.ORG Thu Aug 12 02:21:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1C9516A4CE; Thu, 12 Aug 2004 02:21:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFE2E43D2F; Thu, 12 Aug 2004 02:21:58 +0000 (GMT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C2LwNN000159; Thu, 12 Aug 2004 02:21:58 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C2LwYi000158; Thu, 12 Aug 2004 02:21:58 GMT (envelope-from kan) Message-Id: <200408120221.i7C2LwYi000158@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 12 Aug 2004 02:21:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: FSF Subject: cvs commit: src/contrib/gcc - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 02:21:59 -0000 kan 2004-08-12 02:21:58 UTC FreeBSD src repository src/contrib/gcc - Imported sources Update of /home/ncvs/src/contrib/gcc In directory repoman.freebsd.org:/tmp/cvs-serv137 Log Message: Import one more file for Gcc 3.4.2 20040728. Status: Vendor Tag: FSF Release Tags: gcc_3_4_2_20040728 N src/contrib/gcc/pex-common.h No conflicts created by this import From owner-cvs-all@FreeBSD.ORG Thu Aug 12 02:23:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3C6516A4CE; Thu, 12 Aug 2004 02:23:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 825C943D3F; Thu, 12 Aug 2004 02:23:24 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C2NO22000210; Thu, 12 Aug 2004 02:23:24 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C2NOwU000209; Thu, 12 Aug 2004 02:23:24 GMT (envelope-from ache) Message-Id: <200408120223.i7C2NOwU000209@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 12 Aug 2004 02:23:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 02:23:24 -0000 ache 2004-08-12 02:23:24 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Back in the USSR (for me) Revision Changes Path 1.136 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Thu Aug 12 02:50:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A81916A4CE; Thu, 12 Aug 2004 02:50:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6900D43D2F; Thu, 12 Aug 2004 02:50:27 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C2oRix000909; Thu, 12 Aug 2004 02:50:27 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C2oRjr000908; Thu, 12 Aug 2004 02:50:27 GMT (envelope-from vanilla) Message-Id: <200408120250.i7C2oRjr000908@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Thu, 12 Aug 2004 02:50:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/lighttpd Makefile distinfo ports/www/lighttpd/files lighttpd.conf.sample lighttpd.sh.tmpl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 02:50:27 -0000 vanilla 2004-08-12 02:50:27 UTC FreeBSD ports repository Modified files: www/lighttpd Makefile distinfo www/lighttpd/files lighttpd.conf.sample lighttpd.sh.tmpl Log: 1: Upgrade to 1.2.5 2: sync lighttpd.conf.sample to current version 3: make rc files workable. Approved by: maintainer Revision Changes Path 1.4 +1 -1 ports/www/lighttpd/Makefile 1.3 +2 -2 ports/www/lighttpd/distinfo 1.2 +63 -10 ports/www/lighttpd/files/lighttpd.conf.sample 1.2 +5 -3 ports/www/lighttpd/files/lighttpd.sh.tmpl From owner-cvs-all@FreeBSD.ORG Thu Aug 12 02:55:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35F1916A4CF; Thu, 12 Aug 2004 02:55:15 +0000 (GMT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8C6943D4C; Thu, 12 Aug 2004 02:55:14 +0000 (GMT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.13.1/8.12.11) with ESMTP id i7C2rhP1081616; Wed, 11 Aug 2004 19:53:43 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.13.1/8.13.1/Submit) id i7C2rgG8081615; Wed, 11 Aug 2004 19:53:42 -0700 (PDT) (envelope-from obrien) Date: Wed, 11 Aug 2004 19:53:42 -0700 From: "David O'Brien" To: Oliver Eikemeier Message-ID: <20040812025342.GA80661@dragon.nuxi.com> References: <200408112222.i7BMMPPc077157@khavrinen.lcs.mit.edu> <85B47D61-EBE6-11D8-887A-00039312D914@fillmore-labs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <85B47D61-EBE6-11D8-887A-00039312D914@fillmore-labs.com> User-Agent: Mutt/1.4.1i X-Operating-System: FreeBSD 5.2-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 cc: cvs-ports@FreeBSD.ORG cc: ports-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: Garrett Wollman Subject: Re: cvs commit: CVSROOT modules ports/shells Makefile ports/shells/bash3 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/shells/bash3/files patch-ac patch-af patch-bashline.c patch-builtins_shopt.def patch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 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: Thu, 12 Aug 2004 02:55:15 -0000 On Thu, Aug 12, 2004 at 12:33:52AM +0200, Oliver Eikemeier wrote: > Garrett Wollman wrote: > > >< > said: > > > >>a good idea, just do it. I'm fine with deleting bash1, but I think we > >>should keep bash2 around a little longer, unfortunately the bugs in the > >>.0 release seem not to be purely hypothetical > > > >I would miss bash1. (Not that I'm volunteering to maintain it or > >anything.) > > Any reasons for that? Which means, do you actually use it? It conflicts > with the other bash ports, and the last release was 1996. What is wrong with keeping it? It seems its existance bothers you. Bash1 complient scripts and dot files are often not usable with bash2. That is why we've kept it around. -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 03:02:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FD4F16A4CF; Thu, 12 Aug 2004 03:02:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4513943D46; Thu, 12 Aug 2004 03:02:17 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C32Hpq001371; Thu, 12 Aug 2004 03:02:17 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C32HYY001370; Thu, 12 Aug 2004 03:02:17 GMT (envelope-from rwatson) Message-Id: <200408120302.i7C32HYY001370@repoman.freebsd.org> From: Robert Watson Date: Thu, 12 Aug 2004 03:02:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/firewire if_fwe.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 03:02:17 -0000 rwatson 2004-08-12 03:02:17 UTC FreeBSD src repository Modified files: sys/dev/firewire if_fwe.c Log: Set IFF_NEEDSGIANT for fwe network interface since the firewire framework isn't yet MPSAFE. Approved by: simokawa Revision Changes Path 1.34 +2 -1 src/sys/dev/firewire/if_fwe.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 03:10:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7124A16A4CE; Thu, 12 Aug 2004 03:10:38 +0000 (GMT) Received: from electra.cse.Buffalo.EDU (electra.cse.Buffalo.EDU [128.205.32.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11D5E43D41; Thu, 12 Aug 2004 03:10:38 +0000 (GMT) (envelope-from kensmith@cse.Buffalo.EDU) Received: from electra.cse.Buffalo.EDU (kensmith@localhost [127.0.0.1]) i7C39DTH027911; Wed, 11 Aug 2004 23:09:13 -0400 (EDT) Received: (from kensmith@localhost) by electra.cse.Buffalo.EDU (8.12.10/8.12.9/Submit) id i7C39D1m027910; Wed, 11 Aug 2004 23:09:13 -0400 (EDT) Date: Wed, 11 Aug 2004 23:09:13 -0400 From: Ken Smith To: Oliver Eikemeier Message-ID: <20040812030913.GD27338@electra.cse.Buffalo.EDU> References: <20040812012909.GA25768@electra.cse.Buffalo.EDU> <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> User-Agent: Mutt/1.4.1i cc: Ken Smith cc: re@FreeBSD.org cc: cvs-src@FreeBSD.org cc: Alfred Perlstein cc: cvs-all@FreeBSD.org cc: Doug Barton cc: src-committers@FreeBSD.org cc: Ceri Davies Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 03:10:38 -0000 On Thu, Aug 12, 2004 at 03:58:58AM +0200, Oliver Eikemeier wrote: > Ok, I'll write a patch then. [ I said some of this to Oliver privately but it's probably worth saying louder... ] First thank you, the effort is appreciated. Second some people had asked that this be backed out. It sounds like Oliver is agreeable to adding -c so I'm OK with his previous commit remaining in RELENG_4 as long as adding -c doesn't take too long. Despite some users who probably shouldn't be tracking RELENG_4, it *is* the -stable *development* branch. Paranoid users should at this point be tracking RELENG_4_10 instead. Having -c disappear from RELENG_4 for a brief time is OK as long as it re-appears in a reasonable amount of time (and way before we start talking 4.11-RELEASE). -- Ken Smith - From there to here, from here to | kensmith@cse.buffalo.edu there, funny things are everywhere. | - Theodore Geisel | From owner-cvs-all@FreeBSD.ORG Thu Aug 12 03:29:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06A4916A4CE; Thu, 12 Aug 2004 03:29:47 +0000 (GMT) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E0AA43D46; Thu, 12 Aug 2004 03:29:46 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from dhcp50.pn.xcllnt.net (dhcp50.pn.xcllnt.net [192.168.4.250]) by ns1.xcllnt.net (8.12.11/8.12.11) with ESMTP id i7C3Tgl0083919; Wed, 11 Aug 2004 20:29:46 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp50.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp50.pn.xcllnt.net (8.13.1/8.13.1) with ESMTP id i7C3TgkH026776; Wed, 11 Aug 2004 20:29:42 -0700 (PDT) (envelope-from marcel@dhcp50.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp50.pn.xcllnt.net (8.13.1/8.13.1/Submit) id i7C3TdUS026775; Wed, 11 Aug 2004 20:29:39 -0700 (PDT) (envelope-from marcel) Date: Wed, 11 Aug 2004 20:29:38 -0700 From: Marcel Moolenaar To: Nate Lawson Message-ID: <20040812032938.GA26731@dhcp50.pn.xcllnt.net> References: <200408120206.i7C26JXP099663@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408120206.i7C26JXP099663@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/acpica acpi_pci_link.c acpi_pcib.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 03:29:47 -0000 On Thu, Aug 12, 2004 at 02:06:19AM +0000, Nate Lawson wrote: > njl 2004-08-12 02:06:19 UTC > > FreeBSD src repository > > Modified files: > sys/dev/acpica acpi_pci_link.c acpi_pcib.c > Log: > Fix the PRT entry code in acpi_pci_link to always add the entry, even if > there is no irq link. Since we now use the stored copy of PRT, not the > one that used to be passed into acpi_pcib_route_interrupt(), we need it in > the list. [1] > > Fix a bug in acpi_pci_find_prt() where we weren't checking the bus, thus > choosing the wrong PRT entry to use for routing the link. Also, add a > printf for the case where the PRT entry is not found as this should not > happen. Thanks for the quick turn-around. We're good on the second part too! -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Thu Aug 12 03:45:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42AC416A4CE; Thu, 12 Aug 2004 03:45:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21FD643D41; Thu, 12 Aug 2004 03:45:40 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C3je4o002641; Thu, 12 Aug 2004 03:45:40 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C3jeB4002640; Thu, 12 Aug 2004 03:45:40 GMT (envelope-from murray) Message-Id: <200408120345.i7C3jeB4002640@repoman.freebsd.org> From: Murray Stokely Date: Thu, 12 Aug 2004 03:45:39 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/share/mk doc.docbook.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 03:45:40 -0000 murray 2004-08-12 03:45:39 UTC FreeBSD doc repository Modified files: share/mk doc.docbook.mk Log: Always use absolute URLs for print output. Revision Changes Path 1.113 +1 -1 doc/share/mk/doc.docbook.mk From owner-cvs-all@FreeBSD.ORG Thu Aug 12 04:47:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1333916A4CE; Thu, 12 Aug 2004 04:47:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5E4C43D5E; Thu, 12 Aug 2004 04:47:32 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C4lWlw004201; Thu, 12 Aug 2004 04:47:32 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C4lWv8004200; Thu, 12 Aug 2004 04:47:32 GMT (envelope-from scottl) Message-Id: <200408120447.i7C4lWv8004200@repoman.freebsd.org> From: Scott Long Date: Thu, 12 Aug 2004 04:47:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aac aac.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 04:47:33 -0000 scottl 2004-08-12 04:47:32 UTC FreeBSD src repository Modified files: sys/dev/aac aac.c Log: Release the sync fib after the controller has been shut down. This also releases the I/O lock instead of just leaking it. Revision Changes Path 1.97 +1 -0 src/sys/dev/aac/aac.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 04:57:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 271E616A4CF; Thu, 12 Aug 2004 04:57:57 +0000 (GMT) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id A45E843D1D; Thu, 12 Aug 2004 04:57:56 +0000 (GMT) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 9FD55653AD; Thu, 12 Aug 2004 05:57:55 +0100 (BST) Received: from arginine.spc.org ([127.0.0.1]) by localhost (arginine.spc.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 03026-07-2; Thu, 12 Aug 2004 05:57:55 +0100 (BST) Received: from empiric.dek.spc.org (adsl-67-124-244-51.dsl.snfc21.pacbell.net [67.124.244.51]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id B7944653AC; Thu, 12 Aug 2004 05:57:53 +0100 (BST) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id A168A62B7; Wed, 11 Aug 2004 21:57:46 -0700 (PDT) Date: Wed, 11 Aug 2004 21:57:46 -0700 From: Bruce M Simpson To: Andre Oppermann Message-ID: <20040812045746.GD781@empiric.icir.org> Mail-Followup-To: Andre Oppermann , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200408111726.i7BHQuPC078939@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408111726.i7BHQuPC078939@repoman.freebsd.org> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net route.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 04:57:57 -0000 On Wed, Aug 11, 2004 at 05:26:56PM +0000, Andre Oppermann wrote: > Log: > Convert the routing table to use an UMA zone for rtentries. The zone is > called "rtentry". > > This saves a considerable amount of kernel memory. R_Zmalloc previously > used 256 byte blocks (plus kmalloc overhead) whereas UMA only needs 132 > bytes. Thank you for doing this. This was on my wishlist for some time. This is a considerable improvement. BMS From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:02:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10DDA16A4CE; Thu, 12 Aug 2004 05:02:19 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7CB743D3F; Thu, 12 Aug 2004 05:02:18 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.41 (FreeBSD)) id 1Bv7jE-000JkD-3X; Thu, 12 Aug 2004 07:02:16 +0200 Date: Thu, 12 Aug 2004 07:02:16 +0200 From: Kirill Ponomarew To: Doug Barton Message-ID: <20040812050216.GA68728@voodoo.oberon.net> References: <411AA66A.8020908@DougBarton.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="FCuugMFkClbJLl1L" Content-Disposition: inline In-Reply-To: <411AA66A.8020908@DougBarton.net> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: cvs-ports@FreeBSD.org cc: ports-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Oliver Eikemeier Subject: Re: cvs commit: ports/dns Makefile ports/dns/bind93 Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:02:19 -0000 --FCuugMFkClbJLl1L Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Wed, Aug 11, 2004 at 04:06:18PM -0700, Doug Barton wrote: > Oliver Eikemeier wrote: >=20 > > Shouldn't this have been a repocopy from dns/bind9? >=20 > No. Please remove this port, create PR with repocopy request and assign it to portmgr. -Kirill --FCuugMFkClbJLl1L Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBGvnYQC1G6a60JuURAkyZAJ46Ja1zePoFO84zFc252J75P7ZvTwCeJOsW 3OllqAfE21aZJP5s9gmpiQQ= =WPWP -----END PGP SIGNATURE----- --FCuugMFkClbJLl1L-- From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:03:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0CA916A4CE; Thu, 12 Aug 2004 05:03:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F81143D1D; Thu, 12 Aug 2004 05:03:42 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C53gQJ004647; Thu, 12 Aug 2004 05:03:42 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C53gQV004646; Thu, 12 Aug 2004 05:03:42 GMT (envelope-from murray) Message-Id: <200408120503.i7C53gQV004646@repoman.freebsd.org> From: Murray Stokely Date: Thu, 12 Aug 2004 05:03:42 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/network-servers chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:03:42 -0000 murray 2004-08-12 05:03:42 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/network-servers chapter.sgml Log: can't live inside a table but outside a row. The backend gets confused and prints '???' for the page number. Move three indexterms to the beginning of the table. Revision Changes Path 1.25 +3 -3 doc/en_US.ISO8859-1/books/handbook/network-servers/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:05:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1016816A4CF; Thu, 12 Aug 2004 05:05:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1ECA43D1F; Thu, 12 Aug 2004 05:05:06 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C556UD004709; Thu, 12 Aug 2004 05:05:06 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C556n4004708; Thu, 12 Aug 2004 05:05:06 GMT (envelope-from scottl) Message-Id: <200408120505.i7C556n4004708@repoman.freebsd.org> From: Scott Long Date: Thu, 12 Aug 2004 05:05:06 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aac aac.c aac_cam.c aac_disk.c aacvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:05:07 -0000 scottl 2004-08-12 05:05:06 UTC FreeBSD src repository Modified files: sys/dev/aac aac.c aac_cam.c aac_disk.c aacvar.h Log: Remove the AAC_LOCK macros. They no longer abstract anything and only obfuscate the code. No functional differences. Revision Changes Path 1.98 +27 -29 src/sys/dev/aac/aac.c 1.17 +5 -5 src/sys/dev/aac/aac_cam.c 1.41 +2 -2 src/sys/dev/aac/aac_disk.c 1.45 +5 -12 src/sys/dev/aac/aacvar.h From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:09:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F21016A4CE; Thu, 12 Aug 2004 05:09:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E4D443D1D; Thu, 12 Aug 2004 05:09:18 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C59Hh6004908; Thu, 12 Aug 2004 05:09:17 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C59HwA004907; Thu, 12 Aug 2004 05:09:17 GMT (envelope-from scottl) Message-Id: <200408120509.i7C59HwA004907@repoman.freebsd.org> From: Scott Long Date: Thu, 12 Aug 2004 05:09:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aac aac.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:09:18 -0000 scottl 2004-08-12 05:09:17 UTC FreeBSD src repository Modified files: sys/dev/aac aac.c Log: Change FREE() to free() Revision Changes Path 1.99 +1 -1 src/sys/dev/aac/aac.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:10:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD1A016A4CE; Thu, 12 Aug 2004 05:10:47 +0000 (GMT) Received: from mx1.mail.ru (mx1.mail.ru [194.67.23.121]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E86743D46; Thu, 12 Aug 2004 05:10:47 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [194.186.150.92] (port=51293 helo=inbox.ru) by mx1.mail.ru with esmtp id 1Bv7rR-00049h-00; Thu, 12 Aug 2004 09:10:45 +0400 Date: Thu, 12 Aug 2004 09:09:32 +0400 From: Roman Bogorodskiy To: Adam Weinberger , Jeremy Messenger , ports-committers@freebsd.org, cvs-ports@freebsd.org, cvs-all@freebsd.org Message-ID: <20040812050932.GC69853@lame.novel.ru> References: <200408091253.i79CrT8k058076@repoman.freebsd.org> <20040811104830.GA709@lame.novel.ru> <20040811190458.GB96458@toxic.magnesium.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="MnLPg7ZWsaic7Fhd" Content-Disposition: inline In-Reply-To: <20040811190458.GB96458@toxic.magnesium.net> X-GPG: http://phptags.sourceforge.net/key User-Agent: Mutt/1.5.6i X-Spam: Probable Spam Subject: Re: cvs commit: ports/x11-wm/fluxbox Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:10:47 -0000 --MnLPg7ZWsaic7Fhd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Adam wrote: > And FWIW, seeing as how the old fluxbox will never get another update, I > really don't think that x11-wm/fluxbox should be kept in the tree any > longer; I think that x11-wm/fluxbox-devel should overwrite > x11-wm/fluxbox immediately. Agreed. Anyway, if many people want to see fluxbox in the ports tree it could be returned, doesn't it?=20 As for fluxbox-devel -> fluxbox repocopy right now I think that it's a good idea, becouse fluxbox-devel seems to be even more stable than fluxbox= =20 and it's supported by developers.=20 PS I don't really want to start a war simular to the shells/bash* one :-) -Roman Bogorodskiy --MnLPg7ZWsaic7Fhd Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iQCVAwUBQRr7jIB0WzgdqspGAQJTsAP7BhNPKbZSGpkntg2HRcaEjmL4OXv/wWZc bw6w8sXkfvvLbM2cvCbbhZsExjVTZapppH35u0+bSmOIyqCTQSj6bIFXNUObum4r qj+94cXP5pR+tAEL3Ok+SzBvQFzQPxGmIeWuu+ZaAf+hYbewCl3NDv4cuiocoHd6 J6pHdL+Twn4= =3ncP -----END PGP SIGNATURE----- --MnLPg7ZWsaic7Fhd-- From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:11:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8FE3116A4CE; Thu, 12 Aug 2004 05:11:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D5ED43D4C; Thu, 12 Aug 2004 05:11:59 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C5BxE6005056; Thu, 12 Aug 2004 05:11:59 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C5BxmJ005055; Thu, 12 Aug 2004 05:11:59 GMT (envelope-from dinoex) Message-Id: <200408120511.i7C5BxmJ005055@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 12 Aug 2004 05:11:59 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gnustep-base Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:11:59 -0000 dinoex 2004-08-12 05:11:59 UTC FreeBSD ports repository Modified files: lang/gnustep-base Makefile Log: - Fix PATH problem with bsd.autotools.mk PR: 64393 Revision Changes Path 1.59 +1 -3 ports/lang/gnustep-base/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:13:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 53EDF16A4CE; Thu, 12 Aug 2004 05:13:53 +0000 (GMT) Received: from smtp.eos.ocn.ne.jp (eos.ocn.ne.jp [222.146.51.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 257D343D54; Thu, 12 Aug 2004 05:13:53 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from delta.allbsd.org (p27072-adsao12honb4-acca.tokyo.ocn.ne.jp [219.161.180.72]) by smtp.eos.ocn.ne.jp (Postfix) with ESMTP id 1A6001B49; Thu, 12 Aug 2004 14:13:52 +0900 (JST) Received: from localhost (alph.allbsd.org [192.168.0.10]) by delta.allbsd.org (8.12.9p2/8.12.9) with ESMTP id i7C5DDA2084978; Thu, 12 Aug 2004 14:13:13 +0900 (JST) (envelope-from hrs@FreeBSD.org) Date: Thu, 12 Aug 2004 14:13:09 +0900 (JST) Message-Id: <20040812.141309.20330691.hrs@eos.ocn.ne.jp> To: murray@FreeBSD.org From: Hiroki Sato In-Reply-To: <200408120345.i7C3jeB4002640@repoman.freebsd.org> References: <200408120345.i7C3jeB4002640@repoman.freebsd.org> X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 4.0.65 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Multipart/Signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="--Security_Multipart(Thu_Aug_12_14_13_09_2004_048)--" Content-Transfer-Encoding: 7bit cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/share/mk doc.docbook.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:13:53 -0000 ----Security_Multipart(Thu_Aug_12_14_13_09_2004_048)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Hi Murray, Murray Stokely wrote in <200408120345.i7C3jeB4002640@repoman.freebsd.org>: murray> murray 2004-08-12 03:45:39 UTC murray> murray> FreeBSD doc repository murray> murray> Modified files: murray> share/mk doc.docbook.mk murray> Log: murray> Always use absolute URLs for print output. -ifreebsd.urls.absolute is already defined in doc.common.mk: |188 # for ascii and printable format, always use URLS_ABSOLUTE. |189 PRINTFLAGS+= -ifreebsd.urls.absolute |190 HTMLTXTFLAGS+= -ifreebsd.urls.absolute |191 OTHERFLAGS+= -ifreebsd.urls.absolute Probably we have to fix to use *FLAGS and *OPTS in more consistent manner throughout doc.*.mk, but are there any reasons that the option is also needed in doc.docbook.mk? hrs@alph % pwd /home/hrs/work/freefall/doc/en_US.ISO8859-1/articles/5-roadmap hrs@alph % make -VPRINTOPTS -ioutput.print -ifreebsd.urls.absolute -d /home/hrs/work/freefall/doc/share/sgml/default.dsl -ifreebsd.urls.absolute -V %generate-article-toc% -- | Hiroki SATO ----Security_Multipart(Thu_Aug_12_14_13_09_2004_048)-- Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBBGvxlTyzT2CeTzy0RAtEHAJ0cS5exFcEpHsuweTk3DrDEQ9GdKQCdGFNx PGVQqba82mkJ1v0ub1Kl2f4= =mvHY -----END PGP SIGNATURE----- ----Security_Multipart(Thu_Aug_12_14_13_09_2004_048)---- From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:24:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D983E16A4CF; Thu, 12 Aug 2004 05:24:20 +0000 (GMT) Received: from sccrmhc11.comcast.net (sccrmhc11.comcast.net [204.127.202.55]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5985A43D39; Thu, 12 Aug 2004 05:24:20 +0000 (GMT) (envelope-from DougB@freebsd.org) Received: from lap (c-24-130-110-32.we.client2.attbi.com[24.130.110.32]) by comcast.net (sccrmhc11) with SMTP id <20040812052418011004l9koe>; Thu, 12 Aug 2004 05:24:19 +0000 Date: Wed, 11 Aug 2004 22:24:17 -0700 (PDT) From: Doug Barton To: Kirill Ponomarew In-Reply-To: <20040812050216.GA68728@voodoo.oberon.net> Message-ID: <20040811221913.M817@ync.qbhto.arg> References: <411AA66A.8020908@DougBarton.net> <20040812050216.GA68728@voodoo.oberon.net> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed cc: "cvs-ports@FreeBSD.org" cc: "ports-committers@FreeBSD.org" cc: "cvs-all@FreeBSD.org" cc: Oliver Eikemeier Subject: Re: cvs commit: ports/dns Makefile ports/dns/bind93 Makefiledistinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:24:21 -0000 On Thu, 12 Aug 2004, Kirill Ponomarew wrote: > Hi, > > On Wed, Aug 11, 2004 at 04:06:18PM -0700, Doug Barton wrote: >> Oliver Eikemeier wrote: >> >>> Shouldn't this have been a repocopy from dns/bind9? >> >> No. > > Please remove this port, create PR with repocopy request and > assign it to portmgr. I've already expressed my opinion on this point pretty clearly, so if you intend this to be an official portmgr action, I'm interested in knowing what the appeals process is. I can't escape the feeling that you're falling back on a hard line here without actually listening to what I'm saying. Rather than continuing to have this discussion publicly, I'm perfectly happy to carry it on quietly if y'all are. Doug -- This .signature sanitized for your protection From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:28:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ACFD616A4CF; Thu, 12 Aug 2004 05:28:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BA3D43D41; Thu, 12 Aug 2004 05:28:42 +0000 (GMT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C5SgFN005440; Thu, 12 Aug 2004 05:28:42 GMT (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C5SgC8005439; Thu, 12 Aug 2004 05:28:42 GMT (envelope-from murray) Message-Id: <200408120528.i7C5SgC8005439@repoman.freebsd.org> From: Murray Stokely Date: Thu, 12 Aug 2004 05:28:42 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/share/mk doc.docbook.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:28:42 -0000 murray 2004-08-12 05:28:42 UTC FreeBSD doc repository Modified files: share/mk doc.docbook.mk Log: Backout last change. It was already included in doc.common.mk. Found by: hrs Revision Changes Path 1.114 +1 -1 doc/share/mk/doc.docbook.mk From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:28:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 815) id 99E9916A4CF; Thu, 12 Aug 2004 05:28:49 +0000 (GMT) Date: Thu, 12 Aug 2004 05:28:49 +0000 From: Murray Stokely To: Hiroki Sato Message-ID: <20040812052849.GB33004@hub.freebsd.org> References: <200408120345.i7C3jeB4002640@repoman.freebsd.org> <20040812.141309.20330691.hrs@eos.ocn.ne.jp> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040812.141309.20330691.hrs@eos.ocn.ne.jp> User-Agent: Mutt/1.4.1i X-GPG-Key-ID: 1024D/0E451F7D X-GPG-Key-Fingerprint: E2CA 411D DD44 53FD BB4B 3CB5 B4D7 10A2 0E45 1F7D cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/share/mk doc.docbook.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:28:49 -0000 On Thu, Aug 12, 2004 at 02:13:09PM +0900, Hiroki Sato wrote: > -ifreebsd.urls.absolute is already defined in doc.common.mk: > > |188 # for ascii and printable format, always use URLS_ABSOLUTE. > |189 PRINTFLAGS+= -ifreebsd.urls.absolute > |190 HTMLTXTFLAGS+= -ifreebsd.urls.absolute > |191 OTHERFLAGS+= -ifreebsd.urls.absolute > > Probably we have to fix to use *FLAGS and *OPTS in more consistent > manner throughout doc.*.mk, but are there any reasons that > the option is also needed in doc.docbook.mk? No, I'll backout the change. Sorry I missed this. - Murray From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:31:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CEEB716A4CE; Thu, 12 Aug 2004 05:31:07 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9E8E43D2D; Thu, 12 Aug 2004 05:31:07 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id A81955C8FE; Wed, 11 Aug 2004 22:31:07 -0700 (PDT) Date: Wed, 11 Aug 2004 22:31:07 -0700 From: Alfred Perlstein To: "Bruce A. Mah" Message-ID: <20040812053107.GK57908@elvis.mu.org> References: <20040812012909.GA25768@electra.cse.Buffalo.EDU> <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> <20040812030913.GD27338@electra.cse.Buffalo.EDU> <1092287083.796.29.camel@tomcat.kitchenlab.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1092287083.796.29.camel@tomcat.kitchenlab.org> User-Agent: Mutt/1.4.2.1i cc: Doug Barton cc: re@freebsd.org cc: cvs-src@freebsd.org cc: cvs-all@freebsd.org cc: src-committers@freebsd.org cc: Ken Smith cc: Ceri Davies cc: Oliver Eikemeier Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:31:08 -0000 * Bruce A. Mah [040811 22:06] wrote: > > I'm not sure if I want to be replying to this thread, but I might have a > thing or two to say about this subject. > > As the original author of pkg_version (the Perl one), I wish I had never > added the -c option. Of the users I have talked to who used this > option, the majority used it wrongly (as a package updating script). In > hindsight, this was basically a foot-shooting device. :-( > > If anyone had asked me about this before jumping all over eik@, I would > have recommended that we lose the option as a service to our users. > Sorry, but that's the way I feel. > > In any case, thanks to eik@ for doing the work, and thanks to everyone > else who believed they were doing The Right Thing (TM). I sent a private mail to eik@ thanking him for being so cool as to fix this. Now that I think about I should also be saying thank you for the MFC itself, which I am thankful for. But wouldn't it suck to be that user that actually does use '-c' correctly, and to have it suddenly gone in the middle of a "stable" release? thanks, -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:31:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 86BBD16A4D2; Thu, 12 Aug 2004 05:31:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65C0543D31; Thu, 12 Aug 2004 05:31:17 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C5VHWK005574; Thu, 12 Aug 2004 05:31:17 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C5VHOs005573; Thu, 12 Aug 2004 05:31:17 GMT (envelope-from scottl) Message-Id: <200408120531.i7C5VHOs005573@repoman.freebsd.org> From: Scott Long Date: Thu, 12 Aug 2004 05:31:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aac aac.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:31:17 -0000 scottl 2004-08-12 05:31:17 UTC FreeBSD src repository Modified files: sys/dev/aac aac.c Log: Destroy mutexes on detach. Revision Changes Path 1.100 +4 -0 src/sys/dev/aac/aac.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:33:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E4F516A4CE; Thu, 12 Aug 2004 05:33:53 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id C70D843D48; Thu, 12 Aug 2004 05:33:52 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.41 (FreeBSD)) id 1Bv8Do-000JsY-DX; Thu, 12 Aug 2004 07:33:52 +0200 Date: Thu, 12 Aug 2004 07:33:52 +0200 From: Kirill Ponomarew To: Doug Barton Message-ID: <20040812053352.GB68728@voodoo.oberon.net> References: <411AA66A.8020908@DougBarton.net> <20040812050216.GA68728@voodoo.oberon.net> <20040811221913.M817@ync.qbhto.arg> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="7iMSBzlTiPOCCT2k" Content-Disposition: inline In-Reply-To: <20040811221913.M817@ync.qbhto.arg> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: "cvs-ports@FreeBSD.org" cc: "ports-committers@FreeBSD.org" cc: "cvs-all@FreeBSD.org" cc: Oliver Eikemeier Subject: Re: cvs commit: ports/dns Makefile ports/dns/bind93 Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:33:53 -0000 --7iMSBzlTiPOCCT2k Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Wed, Aug 11, 2004 at 10:24:17PM -0700, Doug Barton wrote: > I've already expressed my opinion on this point pretty clearly, so if=20 > you intend this to be an official portmgr action, I'm interested in=20 > knowing what the appeals process is. I can't escape the feeling that=20 > you're falling back on a hard line here without actually listening to=20 > what I'm saying. I read what you said. CVS history can't be *useless* history a you said, so the entry in committers-guide is correct. As eik already said, the code difference doesn't matter, we have instructions how to handle such situations, so please don't argue, save your time, remove this port and send PR with repocopy request. -Kirill --7iMSBzlTiPOCCT2k Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBGwFAQC1G6a60JuURAq3HAKCIxpXUKNnwJUZKjoW8AC05lrs/5wCg4hOW VTUF2MqBfEZfQ+W2n0c3eks= =9vs3 -----END PGP SIGNATURE----- --7iMSBzlTiPOCCT2k-- From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:35:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A423816A4CE; Thu, 12 Aug 2004 05:35:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82BA043D3F; Thu, 12 Aug 2004 05:35:59 +0000 (GMT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C5ZxAd005745; Thu, 12 Aug 2004 05:35:59 GMT (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C5ZxMP005744; Thu, 12 Aug 2004 05:35:59 GMT (envelope-from hrs) Message-Id: <200408120535.i7C5ZxMP005744@repoman.freebsd.org> From: Hiroki Sato Date: Thu, 12 Aug 2004 05:35:59 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/5.3R schedule.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:35:59 -0000 hrs 2004-08-12 05:35:59 UTC FreeBSD doc repository Modified files: en/releases/5.3R schedule.sgml Log: Add doc slush/tagging schedule. Revision Changes Path 1.3 +18 -4 www/en/releases/5.3R/schedule.sgml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:37:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CE7E16A4D5; Thu, 12 Aug 2004 05:37:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8CE643D3F; Thu, 12 Aug 2004 05:37:46 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C5bk92005792; Thu, 12 Aug 2004 05:37:46 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C5bkIs005791; Thu, 12 Aug 2004 05:37:46 GMT (envelope-from tjr) Message-Id: <200408120537.i7C5bkIs005791@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 05:37:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: FSF Subject: cvs commit: src/contrib/gnu-sort - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:37:47 -0000 tjr 2004-08-12 05:37:46 UTC FreeBSD src repository src/contrib/gnu-sort - Imported sources Update of /home/ncvs/src/contrib/gnu-sort In directory repoman.freebsd.org:/tmp/cvs-serv5599 Log Message: Import of GNU sort from coreutils CVS (trimmed) Status: Vendor Tag: FSF Release Tags: SORT_20040812 U src/contrib/gnu-sort/ABOUT-NLS U src/contrib/gnu-sort/AUTHORS U src/contrib/gnu-sort/COPYING U src/contrib/gnu-sort/ChangeLog U src/contrib/gnu-sort/INSTALL U src/contrib/gnu-sort/NEWS U src/contrib/gnu-sort/README U src/contrib/gnu-sort/THANKS U src/contrib/gnu-sort/TODO U src/contrib/gnu-sort/lib/__fpending.c U src/contrib/gnu-sort/lib/__fpending.h U src/contrib/gnu-sort/lib/argmatch.c U src/contrib/gnu-sort/lib/argmatch.h U src/contrib/gnu-sort/lib/closeout.c U src/contrib/gnu-sort/lib/closeout.h U src/contrib/gnu-sort/lib/dup-safer.c U src/contrib/gnu-sort/lib/error.c U src/contrib/gnu-sort/lib/error.h U src/contrib/gnu-sort/lib/exit.h U src/contrib/gnu-sort/lib/exitfail.c U src/contrib/gnu-sort/lib/exitfail.h U src/contrib/gnu-sort/lib/fopen-safer.c U src/contrib/gnu-sort/lib/gettext.h C src/contrib/gnu-sort/lib/hard-locale.c U src/contrib/gnu-sort/lib/hard-locale.h U src/contrib/gnu-sort/lib/human.c U src/contrib/gnu-sort/lib/human.h U src/contrib/gnu-sort/lib/inttostr.c U src/contrib/gnu-sort/lib/inttostr.h U src/contrib/gnu-sort/lib/long-options.c U src/contrib/gnu-sort/lib/long-options.h U src/contrib/gnu-sort/lib/memcoll.c U src/contrib/gnu-sort/lib/memcoll.h U src/contrib/gnu-sort/lib/pathmax.h U src/contrib/gnu-sort/lib/physmem.c U src/contrib/gnu-sort/lib/physmem.h U src/contrib/gnu-sort/lib/posixver.c U src/contrib/gnu-sort/lib/posixver.h U src/contrib/gnu-sort/lib/quote.c U src/contrib/gnu-sort/lib/quote.h U src/contrib/gnu-sort/lib/quotearg.c U src/contrib/gnu-sort/lib/quotearg.h N src/contrib/gnu-sort/lib/stat-macros.h U src/contrib/gnu-sort/lib/stdio-safer.h U src/contrib/gnu-sort/lib/strnlen.c U src/contrib/gnu-sort/lib/timespec.h U src/contrib/gnu-sort/lib/umaxtostr.c U src/contrib/gnu-sort/lib/unistd-safer.h C src/contrib/gnu-sort/lib/version-etc.c U src/contrib/gnu-sort/lib/version-etc.h U src/contrib/gnu-sort/lib/xalloc.h U src/contrib/gnu-sort/lib/xmalloc.c U src/contrib/gnu-sort/lib/xmemcoll.c U src/contrib/gnu-sort/lib/xmemcoll.h U src/contrib/gnu-sort/lib/xstrtol.c U src/contrib/gnu-sort/lib/xstrtol.h U src/contrib/gnu-sort/lib/xstrtoul.c U src/contrib/gnu-sort/lib/xstrtoumax.c U src/contrib/gnu-sort/src/system.h C src/contrib/gnu-sort/src/sort.c 3 conflicts created by this import. Use the following command to help the merge: cvs checkout -jFSF:yesterday -jFSF src/contrib/gnu-sort From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:42:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F96116A4D2; Thu, 12 Aug 2004 05:42:17 +0000 (GMT) Received: from lakermmtao09.cox.net (lakermmtao09.cox.net [68.230.240.30]) by mx1.FreeBSD.org (Postfix) with ESMTP id B22D743D39; Thu, 12 Aug 2004 05:42:16 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from mezz ([68.103.32.140]) by lakermmtao09.cox.net (InterMail vM.6.01.03.02.01 201-2131-111-104-103-20040709) with ESMTP id <20040812054213.BNZD20883.lakermmtao09.cox.net@mezz>; Thu, 12 Aug 2004 01:42:13 -0400 Date: Thu, 12 Aug 2004 00:42:14 -0500 To: "Roman Bogorodskiy" References: <200408091253.i79CrT8k058076@repoman.freebsd.org> <20040811104830.GA709@lame.novel.ru> <20040811190458.GB96458@toxic.magnesium.net> <20040812050932.GC69853@lame.novel.ru> From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: In-Reply-To: <20040812050932.GC69853@lame.novel.ru> User-Agent: Opera M2/7.54 (Linux, build 751) cc: cvs-ports@freebsd.org cc: Adam Weinberger cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/x11-wm/fluxbox Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:42:17 -0000 On Thu, 12 Aug 2004 09:09:32 +0400, Roman Bogorodskiy wrote: > Adam wrote: > >> And FWIW, seeing as how the old fluxbox will never get another update, I >> really don't think that x11-wm/fluxbox should be kept in the tree any >> longer; I think that x11-wm/fluxbox-devel should overwrite >> x11-wm/fluxbox immediately. > > Agreed. Anyway, if many people want to see fluxbox in the ports tree it > could be returned, doesn't it? Yes, as long if anyone want to take the maintainership and send it to PR for request the repo copy (fluxbox -> fluxbox-old, fluxbox01 or whatever) just as I said (you stripped out) in my previous email. I will not object on this, but it's up to portmgr too if they approve. > As for fluxbox-devel -> fluxbox repocopy right now I think that it's a > good idea, becouse fluxbox-devel seems to be even more stable than > fluxbox and it's supported by developers. I personal rather to wait until it's offical released by the developers. Styles that come with the tarball are out of date and few other small things could use to fix. I am sure that the developers will update/fix the styles in the final. > PS I don't really want to start a war simular to the shells/bash* one :-) That kind of half war is kind of silly if you ask me ;-), but I only agree about 'foobar' without number should be offical version/stable one unless it's something special like gnome2/kde3/libxml2. Anyway, I doubt we will have another war for fluxbox. Cheers, Mezz > -Roman Bogorodskiy -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:46:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E8A1416A4CE; Thu, 12 Aug 2004 05:46:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C68B243D2F; Thu, 12 Aug 2004 05:46:04 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C5k4hk006114; Thu, 12 Aug 2004 05:46:04 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C5k4WQ006113; Thu, 12 Aug 2004 05:46:04 GMT (envelope-from tjr) Message-Id: <200408120546.i7C5k4WQ006113@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 05:46:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/gnu-sort/lib hard-locale.c version-etc.c src/contrib/gnu-sort/src sort.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:46:05 -0000 tjr 2004-08-12 05:46:04 UTC FreeBSD src repository Modified files: contrib/gnu-sort/lib hard-locale.c version-etc.c contrib/gnu-sort/src sort.c Log: Merge local changes. Revision Changes Path 1.5 +9 -8 src/contrib/gnu-sort/lib/hard-locale.c 1.3 +1 -1 src/contrib/gnu-sort/lib/version-etc.c 1.4 +106 -162 src/contrib/gnu-sort/src/sort.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:46:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E7CC16A4E8; Thu, 12 Aug 2004 05:46:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F331C43D31; Thu, 12 Aug 2004 05:46:05 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C5k57L006176; Thu, 12 Aug 2004 05:46:05 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C5k5hf006175; Thu, 12 Aug 2004 05:46:05 GMT (envelope-from maho) Message-Id: <200408120546.i7C5k5hf006175@repoman.freebsd.org> From: Maho Nakata Date: Thu, 12 Aug 2004 05:46:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-2.0-devel Makefile distinfo patch-config_office+configure.in patch-shell+source+unix+sysshell+recently_used_file_handler.cxx patch-wizards+prj+build.lst patch-wizards+prj+d.lst X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:46:10 -0000 maho 2004-08-12 05:46:05 UTC FreeBSD ports repository Modified files: editors/openoffice-2.0-devel Makefile distinfo editors/openoffice-2.0-devel/files Makefile.localized patch-config_office+configure.in Removed files: editors/openoffice-2.0-devel/files patch-libxml2+prj+build.lst patch-shell+source+unix+sysshell+recently_used_file_handler.cxx patch-wizards+prj+build.lst patch-wizards+prj+d.lst Log: o Update to cws_src680_ooo20040815 checked out at 2004/Aug/12 o Marked as broken again Revision Changes Path 1.124 +131 -158 ports/editors/openoffice-2.0-devel/Makefile 1.36 +6 -2 ports/editors/openoffice-2.0-devel/distinfo 1.2 +221 -11 ports/editors/openoffice-2.0-devel/files/Makefile.localized 1.17 +1 -10 ports/editors/openoffice-2.0-devel/files/patch-config_office+configure.in 1.2 +0 -12 ports/editors/openoffice-2.0-devel/files/patch-libxml2+prj+build.lst (dead) 1.4 +0 -34 ports/editors/openoffice-2.0-devel/files/patch-shell+source+unix+sysshell+recently_used_file_handler.cxx (dead) 1.2 +0 -15 ports/editors/openoffice-2.0-devel/files/patch-wizards+prj+build.lst (dead) 1.2 +0 -16 ports/editors/openoffice-2.0-devel/files/patch-wizards+prj+d.lst (dead) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:46:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39EEB16A4CE; Thu, 12 Aug 2004 05:46:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19E2D43D41; Thu, 12 Aug 2004 05:46:58 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C5kvuv006223; Thu, 12 Aug 2004 05:46:57 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C5kvJ7006222; Thu, 12 Aug 2004 05:46:57 GMT (envelope-from maho) Message-Id: <200408120546.i7C5kvJ7006222@repoman.freebsd.org> From: Maho Nakata Date: Thu, 12 Aug 2004 05:46:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-2.0-devel/files patch-helpcontent+langren.pl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:46:58 -0000 maho 2004-08-12 05:46:57 UTC FreeBSD ports repository Added files: editors/openoffice-2.0-devel/files patch-helpcontent+langren.pl Log: Add temporary fix patch (planned to be deleted in next cws) Revision Changes Path 1.1 +20 -0 ports/editors/openoffice-2.0-devel/files/patch-helpcontent+langren.pl (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:50:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78A4916A4DD; Thu, 12 Aug 2004 05:50:31 +0000 (GMT) Received: from volginfo.ru (ns.volginfo.ru [217.23.84.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4389E43D3F; Thu, 12 Aug 2004 05:50:09 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from FreeBSD.org (llp-13.vistcom.ru [217.23.84.68]) by volginfo.ru (Postfix) with ESMTP id BF85C200F; Thu, 12 Aug 2004 09:50:07 +0400 (MSD) Message-ID: <411B050D.2000309@FreeBSD.org> Date: Thu, 12 Aug 2004 09:50:05 +0400 From: Denis Peplin User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040205 X-Accept-Language: ru, en-us, en MIME-Version: 1.0 To: Dmitry Morozovsky References: <200408112026.i7BKQgpA085426@repoman.freebsd.org> In-Reply-To: <200408112026.i7BKQgpA085426@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:50:32 -0000 Hello! Dmitry Morozovsky wrote: > marck 2004-08-11 20:26:42 UTC > > FreeBSD doc repository > > Modified files: > en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml > Log: > Put my CVS key in proper place (this chapter is sorted by last name!). > > Accidentally, den did not check this well, but all shames should go > to me, not him. > > Approved by: den (mentor) (implicit) > Pointy hat to: marck (the first instance) It was not break anything though. Yet another revision, nothing more :) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:59:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BFF5616A4CE; Thu, 12 Aug 2004 05:59:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F3A843D31; Thu, 12 Aug 2004 05:59:33 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C5xXcD006542; Thu, 12 Aug 2004 05:59:33 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C5xXnM006541; Thu, 12 Aug 2004 05:59:33 GMT (envelope-from tjr) Message-Id: <200408120559.i7C5xXnM006541@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 05:59:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: FSF Subject: cvs commit: src/contrib/gnu-sort - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:59:34 -0000 tjr 2004-08-12 05:59:33 UTC FreeBSD src repository src/contrib/gnu-sort - Imported sources Update of /home/ncvs/src/contrib/gnu-sort In directory repoman.freebsd.org:/tmp/cvs-serv6520 Log Message: Import of GNU sort from coreutils CVS (trimmed) Status: Vendor Tag: FSF Release Tags: SORT_20040812 N src/contrib/gnu-sort/lib/xalloc-die.c No conflicts created by this import From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:02:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFBAF16A4CE; Thu, 12 Aug 2004 06:02:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9023B43D4C; Thu, 12 Aug 2004 06:02:28 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C62Smn006686; Thu, 12 Aug 2004 06:02:28 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C62Srl006685; Thu, 12 Aug 2004 06:02:28 GMT (envelope-from tjr) Message-Id: <200408120602.i7C62Srl006685@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 06:02:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/sort Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:02:28 -0000 tjr 2004-08-12 06:02:28 UTC FreeBSD src repository Modified files: gnu/usr.bin/sort Makefile Log: Hook xalloc-die.c up to the build. Revision Changes Path 1.12 +1 -0 src/gnu/usr.bin/sort/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:10:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 973EE16A4CE; Thu, 12 Aug 2004 06:10:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75A8243D1D; Thu, 12 Aug 2004 06:10:19 +0000 (GMT) (envelope-from andreas@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6AJbj006907; Thu, 12 Aug 2004 06:10:19 GMT (envelope-from andreas@repoman.freebsd.org) Received: (from andreas@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6AJJK006906; Thu, 12 Aug 2004 06:10:19 GMT (envelope-from andreas) Message-Id: <200408120610.i7C6AJJK006906@repoman.freebsd.org> From: Andreas Klemm Date: Thu, 12 Aug 2004 06:10:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/dspam Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:10:19 -0000 andreas 2004-08-12 06:10:19 UTC FreeBSD ports repository Modified files: mail/dspam Makefile Log: Maintainer change from Rob to Ion-Mihai, who already maintains the dspam-devel port. Rob currently doesn't have the time to maintain the port. Many thanks to Rob for his work on the dspam port and to Ion to take over. Approved by: Rob Evers Revision Changes Path 1.20 +1 -1 ports/mail/dspam/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:25:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B60516A4CE; Thu, 12 Aug 2004 06:25:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B2B043D55; Thu, 12 Aug 2004 06:25:06 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6P6IX007269; Thu, 12 Aug 2004 06:25:06 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6P67q007268; Thu, 12 Aug 2004 06:25:06 GMT (envelope-from ru) Message-Id: <200408120625.i7C6P67q007268@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 12 Aug 2004 06:25:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:25:06 -0000 ru 2004-08-12 06:25:05 UTC FreeBSD src repository Modified files: . UPDATING Log: Spell check the 20040806 entry. Revision Changes Path 1.340 +1 -1 src/UPDATING From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:25:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 31B0416A4D8; Thu, 12 Aug 2004 06:25:28 +0000 (GMT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F91C43D48; Thu, 12 Aug 2004 06:25:27 +0000 (GMT) (envelope-from ru@ip.net.ua) Received: from heffalump.ip.net.ua (heffalump.ip.net.ua [82.193.96.213]) by tigra.ip.net.ua (8.12.11/8.12.11) with ESMTP id i7C6PMSi073352 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 12 Aug 2004 09:25:23 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i7C6PP4V053224; Thu, 12 Aug 2004 09:25:25 +0300 (EEST) (envelope-from ru) Date: Thu, 12 Aug 2004 09:25:24 +0300 From: Ruslan Ermilov To: John-Mark Gurney Message-ID: <20040812062524.GC53094@ip.net.ua> References: <200408120000.i7C00FJb096051@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="8X7/QrJGcKSMr1RN" Content-Disposition: inline In-Reply-To: <200408120000.i7C00FJb096051@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:25:28 -0000 --8X7/QrJGcKSMr1RN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 12, 2004 at 12:00:15AM +0000, John-Mark Gurney wrote: > jmg 2004-08-12 00:00:15 UTC >=20 > FreeBSD src repository >=20 > Modified files: > . UPDATING=20 > Log: > add comment about needing to upgrade loader.rc on i386 systems that have > problems loading modules... > =20 > Solution by: ru > =20 > Revision Changes Path > 1.339 +9 -0 src/UPDATING >=20 Thanks a bunch! Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --8X7/QrJGcKSMr1RN Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBGw1UqRfpzJluFF4RAoJ6AKCVBm5mswtNFVdAP2Gh3a/gsOHGngCeI2vH WUHw3PJfDOKflSyYROV8Xtk= =Fa8w -----END PGP SIGNATURE----- --8X7/QrJGcKSMr1RN-- From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:30:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9738B16A4CE; Thu, 12 Aug 2004 06:30:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74B0543D3F; Thu, 12 Aug 2004 06:30:53 +0000 (GMT) (envelope-from marck@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6UrNn007489; Thu, 12 Aug 2004 06:30:53 GMT (envelope-from marck@repoman.freebsd.org) Received: (from marck@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6Urd6007488; Thu, 12 Aug 2004 06:30:53 GMT (envelope-from marck) Message-Id: <200408120630.i7C6Urd6007488@repoman.freebsd.org> From: Dmitry Morozovsky Date: Thu, 12 Aug 2004 06:30:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/astro/xearth/files freebsd.committers.markers X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:30:53 -0000 marck 2004-08-12 06:30:53 UTC FreeBSD ports repository (doc committer) Modified files: astro/xearth/files freebsd.committers.markers Log: Add myself to Moscow committers bush. Approved by: den (mentor) Revision Changes Path 1.154 +1 -1 ports/astro/xearth/files/freebsd.committers.markers From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:33:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62C3E16A4CE; Thu, 12 Aug 2004 06:33:38 +0000 (GMT) Received: from robbins.dropbear.id.au (128.a.005.mel.iprimus.net.au [210.50.40.128]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80CE943D45; Thu, 12 Aug 2004 06:33:37 +0000 (GMT) (envelope-from tim@robbins.dropbear.id.au) Received: by robbins.dropbear.id.au (Postfix, from userid 1000) id 943DB420D; Thu, 12 Aug 2004 16:33:34 +1000 (EST) Date: Thu, 12 Aug 2004 16:33:34 +1000 From: Tim Robbins To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040812063334.GA79720@cat.robbins.dropbear.id.au> References: <200408120537.i7C5bkIs005791@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408120537.i7C5bkIs005791@repoman.freebsd.org> User-Agent: Mutt/1.4.1i Subject: Re: cvs commit: src/contrib/gnu-sort - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:33:38 -0000 On Thu, Aug 12, 2004 at 05:37:46AM +0000, Tim J. Robbins wrote: > tjr 2004-08-12 05:37:46 UTC > > FreeBSD src repository > > src/contrib/gnu-sort - Imported sources > Update of /home/ncvs/src/contrib/gnu-sort > In directory repoman.freebsd.org:/tmp/cvs-serv5599 > > Log Message: > Import of GNU sort from coreutils CVS (trimmed) This brings in a few POSIX conformance fixes that change behaviour significantly enough that we would not want to make them after branching RELENG_5. From the ChangeLog file (excerpted): 2004-08-10 Paul Eggert * src/sort.c (die, xfopen, mergefps, first_same_file, merge): A null file arg means standard output. (main): "-o -" means to write to a file named "-", not to standard output. 2004-04-25 Paul Eggert Fix POSIX-conformance bug: "sort -k 3,3.5b" is supposed to skip leading blanks when computing the location of the field end; it is not supposed to skip trailing blanks. Solaris 8 "sort" does conform to POSIX. Also fix the documentation to clarify this and related issues. The only other significant user-visible change is this performance fix: 2004-05-13 Paul Eggert Improve performance of `sort -m' on large files, at the cost of making some contrived examples unsafe. POSIX allows this optimization. Performance problem reported by Jonathan Baker in . Tim From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:40:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 776B816A4CE; Thu, 12 Aug 2004 06:40:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56BD343D58; Thu, 12 Aug 2004 06:40:31 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6eVNN007841; Thu, 12 Aug 2004 06:40:31 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6eVpq007840; Thu, 12 Aug 2004 06:40:31 GMT (envelope-from tjr) Message-Id: <200408120640.i7C6eVpq007840@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 06:40:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/sort config.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:40:31 -0000 tjr 2004-08-12 06:40:31 UTC FreeBSD src repository Modified files: gnu/usr.bin/sort config.h Log: Update version strings to better reflect reality. Revision Changes Path 1.8 +3 -3 src/gnu/usr.bin/sort/config.h From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:41:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4575716A4CE; Thu, 12 Aug 2004 06:41:15 +0000 (GMT) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7518B43D58; Thu, 12 Aug 2004 06:41:14 +0000 (GMT) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.12.11/8.12.11) with ESMTP id i7C6fDMi095966; Thu, 12 Aug 2004 10:41:13 +0400 (MSD) (envelope-from marck@rinet.ru) Date: Thu, 12 Aug 2004 10:41:13 +0400 (MSD) From: Dmitry Morozovsky To: Denis Peplin In-Reply-To: <411B050D.2000309@FreeBSD.org> Message-ID: <20040812103949.U95471@woozle.rinet.ru> References: <200408112026.i7BKQgpA085426@repoman.freebsd.org> <411B050D.2000309@FreeBSD.org> X-NCC-RegID: ru.rinet MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Dmitry Morozovsky cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/books/handbook/pgpkeys chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:41:15 -0000 On Thu, 12 Aug 2004, Denis Peplin wrote: DP> > Log: DP> > Put my CVS key in proper place (this chapter is sorted by last name!). DP> > DP> > Accidentally, den did not check this well, but all shames should go DP> > to me, not him. DP> > DP> > Approved by: den (mentor) (implicit) DP> > Pointy hat to: marck (the first instance) DP> It was not break anything though. Yet another revision, nothing more :) And that was my only excluse! ;) I did only make-test, but should read rendered versions. Good thing to remember though. Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:45:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 532D316A4CE; Thu, 12 Aug 2004 06:45:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3382B43D55; Thu, 12 Aug 2004 06:45:32 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6jW8c008038; Thu, 12 Aug 2004 06:45:32 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6jW7Z008037; Thu, 12 Aug 2004 06:45:32 GMT (envelope-from tjr) Message-Id: <200408120645.i7C6jW7Z008037@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 06:45:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/grep config.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:45:32 -0000 tjr 2004-08-12 06:45:32 UTC FreeBSD src repository Modified files: gnu/usr.bin/grep config.h Log: Change version string to distinguish our modified version of GNU grep from the original. Revision Changes Path 1.9 +1 -1 src/gnu/usr.bin/grep/config.h From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:45:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A12C16A4CE; Thu, 12 Aug 2004 06:45:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD35643D55; Thu, 12 Aug 2004 06:45:46 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6jkZe008069; Thu, 12 Aug 2004 06:45:46 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6jknB008068; Thu, 12 Aug 2004 06:45:46 GMT (envelope-from vanilla) Message-Id: <200408120645.i7C6jknB008068@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Thu, 12 Aug 2004 06:45:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Spoon Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:45:47 -0000 vanilla 2004-08-12 06:45:46 UTC FreeBSD ports repository Modified files: devel/p5-Spoon Makefile distinfo Log: - Update to 0.18 - require p5-Spiffy 0.20 (ports/70347), p5-IO-All 0.31(ports/70348?) - copy & paste from Changes: - Use Spiffy::new for constructor instead of special Spoon::Base one. - unicode fixes - reset MAINTAINER to ports@. PR: ports/70349 Submitted by: Cheng-Lung Sung Revision Changes Path 1.3 +2 -2 ports/devel/p5-Spoon/Makefile 1.3 +2 -2 ports/devel/p5-Spoon/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:47:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8230C16A4CE; Thu, 12 Aug 2004 06:47:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62BB943D53; Thu, 12 Aug 2004 06:47:35 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6lZLP008145; Thu, 12 Aug 2004 06:47:35 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6lZhW008144; Thu, 12 Aug 2004 06:47:35 GMT (envelope-from vanilla) Message-Id: <200408120647.i7C6lZhW008144@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Thu, 12 Aug 2004 06:47:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Spiffy Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:47:35 -0000 vanilla 2004-08-12 06:47:35 UTC FreeBSD ports repository Modified files: devel/p5-Spiffy Makefile distinfo Log: - Update to 0.20 - copy & paste from Changes - call super from eval - -XXX implies :XXX - reset MAINTAINER to ports@ PR: ports/70347 Submitted by: Cheng-Lung Sung Revision Changes Path 1.4 +2 -2 ports/devel/p5-Spiffy/Makefile 1.3 +2 -2 ports/devel/p5-Spiffy/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:49:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0EF516A4CE; Thu, 12 Aug 2004 06:49:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1DCF43D4C; Thu, 12 Aug 2004 06:49:01 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6n1vm008200; Thu, 12 Aug 2004 06:49:01 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6n1m4008199; Thu, 12 Aug 2004 06:49:01 GMT (envelope-from vanilla) Message-Id: <200408120649.i7C6n1m4008199@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Thu, 12 Aug 2004 06:49:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-IO-All Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:49:01 -0000 vanilla 2004-08-12 06:49:01 UTC FreeBSD ports repository Modified files: devel/p5-IO-All Makefile distinfo Log: - Update to 0.31 - copy & paste from Changes: - added readdir - let exists work on non-existant filename - absolute, relative, pathname - chdir - stat on unopened file/dir PR: ports/70348 Submitted by: Cheng-Lung Sung Revision Changes Path 1.4 +2 -2 ports/devel/p5-IO-All/Makefile 1.3 +2 -2 ports/devel/p5-IO-All/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:50:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 79FAD16A4CE; Thu, 12 Aug 2004 06:50:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59C1043D4C; Thu, 12 Aug 2004 06:50:29 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6oTNc008316; Thu, 12 Aug 2004 06:50:29 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6oTF3008315; Thu, 12 Aug 2004 06:50:29 GMT (envelope-from imp) Message-Id: <200408120650.i7C6oTF3008315@repoman.freebsd.org> From: Warner Losh Date: Thu, 12 Aug 2004 06:50:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files src/sys/dev/pccbb pccbb.c pccbb_isa.c pccbb_pci.c pccbbvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:50:29 -0000 imp 2004-08-12 06:50:29 UTC FreeBSD src repository Modified files: sys/conf files sys/dev/pccbb pccbb.c pccbbvar.h Added files: sys/dev/pccbb pccbb_isa.c pccbb_pci.c Log: Move towards isa attachment for pccbb. This is a work in progress, but works well with the pci attachment. Revision Changes Path 1.938 +2 -0 src/sys/conf/files 1.117 +135 -688 src/sys/dev/pccbb/pccbb.c 1.1 +221 -0 src/sys/dev/pccbb/pccbb_isa.c (new) 1.1 +655 -0 src/sys/dev/pccbb/pccbb_pci.c (new) 1.21 +75 -2 src/sys/dev/pccbb/pccbbvar.h From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:50:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAD3116A4CE; Thu, 12 Aug 2004 06:50:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB35043D46; Thu, 12 Aug 2004 06:50:44 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6oitQ008412; Thu, 12 Aug 2004 06:50:44 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6oiDk008411; Thu, 12 Aug 2004 06:50:44 GMT (envelope-from ru) Message-Id: <200408120650.i7C6oiDk008411@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 12 Aug 2004 06:50:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:50:45 -0000 ru 2004-08-12 06:50:44 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Join the Russian committers, and only use one true country of birth. Sorry for the churn. ;) Revision Changes Path 1.137 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:53:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA56B16A4CE; Thu, 12 Aug 2004 06:53:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BF9343D46; Thu, 12 Aug 2004 06:53:04 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6r4Zn008502; Thu, 12 Aug 2004 06:53:04 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6r4KE008501; Thu, 12 Aug 2004 06:53:04 GMT (envelope-from vanilla) Message-Id: <200408120653.i7C6r4KE008501@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Thu, 12 Aug 2004 06:53:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/archivers/p5-Archive-Tar Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:53:04 -0000 vanilla 2004-08-12 06:53:04 UTC FreeBSD ports repository Modified files: archivers/p5-Archive-Tar Makefile distinfo Log: - Update to 1.10 - add dependency of Test-Simple PR: ports/69411 Submitted by: Cheng-Lung Sung Timeout by: maintainer (2 weeks) Revision Changes Path 1.15 +3 -2 ports/archivers/p5-Archive-Tar/Makefile 1.10 +2 -2 ports/archivers/p5-Archive-Tar/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:54:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D5EDB16A4CE; Thu, 12 Aug 2004 06:54:19 +0000 (GMT) Received: from plouf.absolight.net (plouf.absolight.net [212.43.217.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F60A43D3F; Thu, 12 Aug 2004 06:54:19 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by plouf.absolight.net (Postfix) with ESMTP id 867513FC7; Thu, 12 Aug 2004 08:54:18 +0200 (CEST) X-Original-To: vanilla@FreeBSD.org X-Original-To: ports-committers@FreeBSD.org X-Original-To: cvs-ports@FreeBSD.org X-Original-To: cvs-all@FreeBSD.org Received: from [192.168.1.51] (l15v-8-120.d2.club-internet.fr [62.34.135.120]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id 3F7613FB5; Thu, 12 Aug 2004 08:54:13 +0200 (CEST) Date: Thu, 12 Aug 2004 08:54:05 +0200 From: Mathieu Arnold To: "Vanilla I. Shu" Message-ID: In-Reply-To: <20040812064738.5AB4416A4CE@hub.freebsd.org> References: <20040812064738.5AB4416A4CE@hub.freebsd.org> X-Mailer: Mulberry/3.1.6 (Win32) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========D70ABECFB12D48288E9E==========" X-Spam-Checker-Version: SpamAssassin 2.64-abso_2004012301 (2004-01-11) on plouf.absolight.net by root@absolight.fr X-Virus-Scanned: by amavisd-new at plouf.absolight.net X-Spam-Status: No, hits=-3.389 tagged_above=-10 required=5 tests=AWL, BAYES_00, RCVD_IN_NJABL_DUL X-Spam-Level: cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/devel/p5-Spiffy Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:54:20 -0000 --==========D70ABECFB12D48288E9E========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +-Le 12/08/2004 06:47 +0000, Vanilla I. Shu a dit : | vanilla 2004-08-12 06:47:35 UTC | | FreeBSD ports repository | | Modified files: | devel/p5-Spiffy Makefile distinfo | Log: | - reset MAINTAINER to ports@ perl@ was the maintainer, why not let it there ? I'm using Spiffy, I'm a perl@ one, and I'm keeping an eye on it. -- Mathieu Arnold --==========D70ABECFB12D48288E9E========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (MingW32) iQEVAwUBQRsUEVvROjYJ63c1AQKeywf/QBPZYMFi7eUdAgSNPtMGS6NLv8xMxiQ7 uArhHcYHWNe/4HdxMlzwG7Ce+gFIWCZXVr+Z4pF58by0SG1pWNdkJpEGXoHvzJaT d+2fJIyKV1zKNcD1qt4PC/FdXEL31Rd7mZ9bPZWUTN8t6JtXUg7aptBBYAgev8pQ ZnzLEAqRQ57OLOYgZ71BRJ1NeB8Xa3q1DgRpTbezIW0Zg7G29nEAhlsaSLim8z10 4dBqWFcGKFghp6cPYUU7IBh4jifaNKB2BSY51aeJ8B2gxlDrPI9DZtpbPhmQ2UK9 jNONgjHJsibwCejs0eigWfikDJH53LCO9sSC7UvYHTZYInDSzIAWXw== =GtLu -----END PGP SIGNATURE----- --==========D70ABECFB12D48288E9E==========-- From owner-cvs-all@FreeBSD.ORG Thu Aug 12 06:54:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2AE3716A4CE; Thu, 12 Aug 2004 06:54:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A69843D3F; Thu, 12 Aug 2004 06:54:50 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C6snBV008556; Thu, 12 Aug 2004 06:54:49 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C6snHF008555; Thu, 12 Aug 2004 06:54:49 GMT (envelope-from vanilla) Message-Id: <200408120654.i7C6snHF008555@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Thu, 12 Aug 2004 06:54:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/p5-Net-SCP Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 06:54:50 -0000 vanilla 2004-08-12 06:54:49 UTC FreeBSD ports repository Modified files: net/p5-Net-SCP Makefile distinfo Log: - Update to 0.07 - Copy from Changes - get and put methods use OO-style scp to avoid clobbering errstr, thanks to paguerlais@airfrance.fr - remove extraneous warn PR: ports/69416 Submitted by: Cheng-Lung Sung Timeout by: maintainer (2 weeks) Revision Changes Path 1.4 +1 -1 ports/net/p5-Net-SCP/Makefile 1.3 +2 -2 ports/net/p5-Net-SCP/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 12 07:07:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 616E816A4CE; Thu, 12 Aug 2004 07:07:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4157E43D48; Thu, 12 Aug 2004 07:07:40 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C77eHZ009902; Thu, 12 Aug 2004 07:07:40 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C77euu009901; Thu, 12 Aug 2004 07:07:40 GMT (envelope-from ache) Message-Id: <200408120707.i7C77euu009901@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 12 Aug 2004 07:07:39 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www Makefile ports/www/ljsm Makefile distinfo pkg-descr ports/www/ljsm/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 07:07:40 -0000 ache 2004-08-12 07:07:39 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/ljsm Makefile distinfo pkg-descr www/ljsm/files patch-aa Log: Livejournal.com postings recusive copy utility Revision Changes Path 1.963 +1 -0 ports/www/Makefile 1.1 +38 -0 ports/www/ljsm/Makefile (new) 1.1 +2 -0 ports/www/ljsm/distinfo (new) 1.1 +31 -0 ports/www/ljsm/files/patch-aa (new) 1.1 +4 -0 ports/www/ljsm/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 07:07:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 80CEA16A4CE; Thu, 12 Aug 2004 07:07:56 +0000 (GMT) Received: from mail.fatpipi.com (fatpipi.cirx.org [211.23.144.137]) by mx1.FreeBSD.org (Postfix) with ESMTP id B150243D46; Thu, 12 Aug 2004 07:07:55 +0000 (GMT) (envelope-from vanilla@fatpipi.com) Received: from localhost (localhost.cirx.org [127.0.0.1]) by mail.fatpipi.com (Postfix) with ESMTP id 97848F; Thu, 12 Aug 2004 15:07:54 +0800 (CST) Received: from mail.fatpipi.com ([127.0.0.1]) by localhost (fatpipi.cirx.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 56690-03; Thu, 12 Aug 2004 15:07:53 +0800 (CST) Received: by mail.fatpipi.com (Postfix, from userid 1002) id CD489BB; Thu, 12 Aug 2004 15:07:53 +0800 (CST) Date: Thu, 12 Aug 2004 15:07:53 +0800 From: "Vanilla I. Shu" To: Mathieu Arnold Message-ID: <20040812070753.GA56764@fatpipi.cirx.org> References: <20040812064738.5AB4416A4CE@hub.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=big5 Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new at cirx.org cc: cvs-ports@FreeBSD.org cc: ports-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "Vanilla I. Shu" Subject: Re: cvs commit: ports/devel/p5-Spiffy Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 07:07:56 -0000 On Thu, Aug 12, 2004 at 08:54:05AM +0200, Mathieu Arnold wrote: > perl@ was the maintainer, why not let it there ? > I'm using Spiffy, I'm a perl@ one, and I'm keeping an eye on it. when I import this ports, submitter have no too much time to maintain, so I set MAINTAINER to perl@, and now I thank ports@ will be better then perl@. should I set it back to perl@? -- I'm a perl@ one too. From owner-cvs-all@FreeBSD.ORG Thu Aug 12 07:13:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8148516A4CE; Thu, 12 Aug 2004 07:13:46 +0000 (GMT) Received: from plouf.absolight.net (plouf.absolight.net [212.43.217.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47CEA43D4C; Thu, 12 Aug 2004 07:13:46 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by plouf.absolight.net (Postfix) with ESMTP id 674B74007; Thu, 12 Aug 2004 09:13:45 +0200 (CEST) X-Original-To: vanilla@FreeBSD.org X-Original-To: ports-committers@FreeBSD.org X-Original-To: cvs-ports@FreeBSD.org X-Original-To: cvs-all@FreeBSD.org X-Original-To: vanilla@fatpipi.cirx.org Received: from [192.168.1.51] (l15v-8-120.d2.club-internet.fr [62.34.135.120]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id C5CDC3FC7; Thu, 12 Aug 2004 09:13:41 +0200 (CEST) Date: Thu, 12 Aug 2004 09:13:35 +0200 From: Mathieu Arnold To: "Vanilla I. Shu" Message-ID: <86B2A25A9489238D3735139B@[192.168.1.51]> In-Reply-To: <20040812070753.GA56764@fatpipi.cirx.org> References: <20040812064738.5AB4416A4CE@hub.freebsd.org> <20040812070753.GA56764@fatpipi.cirx.org> X-Mailer: Mulberry/3.1.6 (Win32) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========CE3456CC2AC146607A76==========" X-Spam-Checker-Version: SpamAssassin 2.64-abso_2004012301 (2004-01-11) on plouf.absolight.net by root@absolight.fr X-Virus-Scanned: by amavisd-new at plouf.absolight.net X-Spam-Status: No, hits=-3.375 tagged_above=-10 required=5 tests=AWL, BAYES_00, RCVD_IN_NJABL_DUL X-Spam-Level: cc: cvs-ports@FreeBSD.org cc: ports-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: "Vanilla I. Shu" Subject: Re: cvs commit: ports/devel/p5-Spiffy Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 07:13:46 -0000 --==========CE3456CC2AC146607A76========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +-Le 12/08/2004 15:07 +0800, Vanilla I. Shu a dit : | On Thu, Aug 12, 2004 at 08:54:05AM +0200, Mathieu Arnold wrote: |> perl@ was the maintainer, why not let it there ? |> I'm using Spiffy, I'm a perl@ one, and I'm keeping an eye on it. | when I import this ports, submitter have no too much time to maintain, | | so I set MAINTAINER to perl@, and now I thank ports@ will be better then | perl@. | | should I set it back to perl@? Well, perl@ was a good thing, I feel it's an important port, and as I'm using it, having it on perl@ I had the feeling that it would need some approval before changes, and that it would be cared a bit more about. | -- | I'm a perl@ one too. I know, I did not mean to be hard with you :-) -- Mathieu Arnold --==========CE3456CC2AC146607A76========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (MingW32) iQEVAwUBQRsYolvROjYJ63c1AQLJDQf/Q/llwvjWqaog+hh43G9pfZ0bhx/dGAv2 4llB0Q5wHTZlsCO765sLH1VZKl1xz51qax0U5Z+sc8zK+NmkGZF6jWAYCIn5TBsM wz2iUG8TRN6u7aIJ3lcqXsqU1GUtc7DLDFGT58I6In7keVuiQHsMXKFejGMtdBQV sYRQmgkWsGRzjHqj7xBOBWMgiZEn10aAomyfXxd5qTIW3OR7GLg2jWatSptxhCRT HHbE/HuglxbJNXzVr7mnpG/fUpCGyvqy0YRTDi8dD/r2uPl/qbwWX8y46mducZuk aSl3NNvIafr/qBArqU3SIFdRgeu5Y9TmsPC0kDfC2jQqG0Vyg1JO5w== =14zc -----END PGP SIGNATURE----- --==========CE3456CC2AC146607A76==========-- From owner-cvs-all@FreeBSD.ORG Thu Aug 12 07:14:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB4C316A4CE; Thu, 12 Aug 2004 07:14:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D43043D46; Thu, 12 Aug 2004 07:14:44 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C7Eiwu010294; Thu, 12 Aug 2004 07:14:44 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C7Ei1X010293; Thu, 12 Aug 2004 07:14:44 GMT (envelope-from vanilla) Message-Id: <200408120714.i7C7Ei1X010293@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Thu, 12 Aug 2004 07:14:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/scim-tables Makefileports/korean/scim-tables Makefile ports/textproc/scim Makefile pkg-plist ports/textproc/scim/files extra-patch-4-stable ports/textproc/skim Makefile ports/chinese/scim-chinese Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 07:14:44 -0000 vanilla 2004-08-12 07:14:44 UTC FreeBSD ports repository Modified files: japanese/scim-tables Makefile korean/scim-tables Makefile textproc/scim Makefile pkg-plist textproc/skim Makefile chinese/scim-chinese Makefile chinese/scim-tables Makefile Added files: textproc/scim/files extra-patch-4-stable Log: 1: Make scim buildable on 4-X. 2: Add sf.net to MASTER_SITE. 3: make other ports BROKEN on 4-X. PR: ports/70326 Submitted by: maintainer Revision Changes Path 1.3 +20 -6 ports/chinese/scim-chinese/Makefile 1.2 +10 -2 ports/chinese/scim-tables/Makefile 1.2 +10 -2 ports/japanese/scim-tables/Makefile 1.2 +10 -2 ports/korean/scim-tables/Makefile 1.4 +15 -7 ports/textproc/scim/Makefile 1.1 +95 -0 ports/textproc/scim/files/extra-patch-4-stable (new) 1.4 +1 -1 ports/textproc/scim/pkg-plist 1.5 +15 -3 ports/textproc/skim/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 07:17:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 810D716A4CE; Thu, 12 Aug 2004 07:17:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63FD043D31; Thu, 12 Aug 2004 07:17:21 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C7HLsb010430; Thu, 12 Aug 2004 07:17:21 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C7HLC5010429; Thu, 12 Aug 2004 07:17:21 GMT (envelope-from ache) Message-Id: <200408120717.i7C7HLC5010429@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 12 Aug 2004 07:17:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 07:17:21 -0000 ache 2004-08-12 07:17:21 UTC FreeBSD ports repository Modified files: . modules Log: Add ljsm Revision Changes Path 1.10879 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 12 07:19:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 614AE16A4E7; Thu, 12 Aug 2004 07:19:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41D2143D31; Thu, 12 Aug 2004 07:19:37 +0000 (GMT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C7JbSs010570; Thu, 12 Aug 2004 07:19:37 GMT (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C7Jbp1010569; Thu, 12 Aug 2004 07:19:37 GMT (envelope-from vanilla) Message-Id: <200408120719.i7C7Jbp1010569@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Thu, 12 Aug 2004 07:19:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-IO-All Makefile ports/devel/p5-Spiffy Makefile ports/devel/p5-Spoon Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 07:19:37 -0000 vanilla 2004-08-12 07:19:36 UTC FreeBSD ports repository Modified files: devel/p5-IO-All Makefile devel/p5-Spiffy Makefile devel/p5-Spoon Makefile Log: Set MAINTAINER to perl@ back. Requested by: mat@ Revision Changes Path 1.5 +1 -1 ports/devel/p5-IO-All/Makefile 1.5 +1 -1 ports/devel/p5-Spiffy/Makefile 1.4 +1 -1 ports/devel/p5-Spoon/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 07:21:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E653B16A4CE; Thu, 12 Aug 2004 07:21:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE5CA43D2F; Thu, 12 Aug 2004 07:21:29 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C7LTtr010725; Thu, 12 Aug 2004 07:21:29 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C7LTJv010724; Thu, 12 Aug 2004 07:21:29 GMT (envelope-from krion) Message-Id: <200408120721.i7C7LTJv010724@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 12 Aug 2004 07:21:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules ports/dns Makefile ports/dns/bind93 Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 07:21:30 -0000 krion 2004-08-12 07:21:29 UTC FreeBSD ports repository Modified files: . modules dns Makefile Removed files: dns/bind93 Makefile distinfo pkg-descr pkg-message pkg-plist Log: Remove dns/bind93, repocopy should be done first. Revision Changes Path 1.10880 +0 -1 CVSROOT/modules 1.25 +0 -1 ports/dns/Makefile 1.2 +0 -106 ports/dns/bind93/Makefile (dead) 1.2 +0 -2 ports/dns/bind93/distinfo (dead) 1.2 +0 -24 ports/dns/bind93/pkg-descr (dead) 1.2 +0 -22 ports/dns/bind93/pkg-message (dead) 1.2 +0 -226 ports/dns/bind93/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 07:24:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D983416A4CE; Thu, 12 Aug 2004 07:24:57 +0000 (GMT) Received: from plouf.absolight.net (plouf.absolight.net [212.43.217.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1D9943D1D; Thu, 12 Aug 2004 07:24:57 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by plouf.absolight.net (Postfix) with ESMTP id C82324002; Thu, 12 Aug 2004 09:24:56 +0200 (CEST) X-Original-To: vanilla@FreeBSD.org X-Original-To: ports-committers@FreeBSD.org X-Original-To: cvs-ports@FreeBSD.org X-Original-To: cvs-all@FreeBSD.org Received: from [192.168.1.51] (l15v-8-120.d2.club-internet.fr [62.34.135.120]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id 3390C3FC3; Thu, 12 Aug 2004 09:24:52 +0200 (CEST) Date: Thu, 12 Aug 2004 09:24:47 +0200 From: Mathieu Arnold To: "Vanilla I. Shu" Message-ID: In-Reply-To: <20040812071942.2FB2616A4DA@hub.freebsd.org> References: <20040812071942.2FB2616A4DA@hub.freebsd.org> X-Mailer: Mulberry/3.1.6 (Win32) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========B33BBBDE9A733232D758==========" X-Spam-Checker-Version: SpamAssassin 2.64-abso_2004012301 (2004-01-11) on plouf.absolight.net by root@absolight.fr X-Virus-Scanned: by amavisd-new at plouf.absolight.net X-Spam-Status: No, hits=-1.313 tagged_above=-10 required=5 tests=AWL, BAYES_00, RCVD_IN_NJABL_DUL, SUBJ_HAS_SPACES X-Spam-Level: cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/devel/p5-IO-All Makefile ports/devel/p5-Spiffy Makefile ports/devel/p5-Spoon Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 07:24:58 -0000 --==========B33BBBDE9A733232D758========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +-Le 12/08/2004 07:19 +0000, Vanilla I. Shu a dit : | vanilla 2004-08-12 07:19:36 UTC | | FreeBSD ports repository | | Modified files: | devel/p5-IO-All Makefile | devel/p5-Spiffy Makefile | devel/p5-Spoon Makefile | Log: | Set MAINTAINER to perl@ back. | | Requested by: mat@ Thanks :-) -- Mathieu Arnold --==========B33BBBDE9A733232D758========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (MingW32) iQEVAwUBQRsbQlvROjYJ63c1AQJG3QgAm2jhEKim84bapLBbX5S+bpIqg8JCaptC lmjODG1rYhP2X3oeuMpDAJ/8TY84wx3HFovOF5x5URtPKU7vXfcCpqjYeThkL66/ Mw1jtpgGxcYYSFWAE52xg7FYC/jPWx6YhP+msRjtKB+JafSxIaWSsbsAI7dCHGLp +BsVQetQnpuksOyvmPueSwBJQd08RNq9hqP9nby121CSBvGKh4UNLz0iOHN68nPe EyzL+oCkzTsEtBB64/ym3iEkh/R0665CgvGDhBN+kHk7UcngM+ASBehOnBBzJwiN Y+3e2idhXTw2zupO63aT1eKc+PRjEWSWJ/styW4OwAvmlXqSrVzxcQ== =c364 -----END PGP SIGNATURE----- --==========B33BBBDE9A733232D758==========-- From owner-cvs-all@FreeBSD.ORG Thu Aug 12 07:34:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E206916A4CE; Thu, 12 Aug 2004 07:34:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C24A143D2D; Thu, 12 Aug 2004 07:34:41 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C7YT9X011113; Thu, 12 Aug 2004 07:34:29 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C7YTXq011112; Thu, 12 Aug 2004 07:34:29 GMT (envelope-from pav) Message-Id: <200408120734.i7C7YTXq011112@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 12 Aug 2004 07:34:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/p5-DBD-mysql/files patch-mysql.xs X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 07:34:42 -0000 pav 2004-08-12 07:34:29 UTC FreeBSD ports repository Removed files: databases/p5-DBD-mysql/files patch-mysql.xs Log: - Remove patch file which was included upstream, thus unbreak build PR: ports/70321, ports/70329, ports/70340 Submitted by: Christian Lackas , Renato Botelho , Cheng-Lung Sung Revision Changes Path 1.2 +0 -14 ports/databases/p5-DBD-mysql/files/patch-mysql.xs (dead) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 07:56:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B258816A4CE; Thu, 12 Aug 2004 07:56:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9514843D54; Thu, 12 Aug 2004 07:56:33 +0000 (GMT) (envelope-from jeff@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C7uXg0011744; Thu, 12 Aug 2004 07:56:33 GMT (envelope-from jeff@repoman.freebsd.org) Received: (from jeff@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C7uXOQ011743; Thu, 12 Aug 2004 07:56:33 GMT (envelope-from jeff) Message-Id: <200408120756.i7C7uXOQ011743@repoman.freebsd.org> From: Jeff Roberson Date: Thu, 12 Aug 2004 07:56:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 07:56:33 -0000 jeff 2004-08-12 07:56:33 UTC FreeBSD src repository Modified files: sys/kern sched_ule.c Log: - Introduce a new flag KEF_HOLD that prevents sched_add() from doing a migration. Use this in sched_prio() and sched_switch() to stop us from migrating threads that are in short term sleeps or are runnable. These extra migrations were added in the patches to support KSE. - Only set NEEDRESCHED if the thread we're adding in sched_add() is a lower priority and is being placed on the current queue. - Fix some minor whitespace problems. Revision Changes Path 1.121 +19 -7 src/sys/kern/sched_ule.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 07:58:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FB1D16A4CE; Thu, 12 Aug 2004 07:58:18 +0000 (GMT) Received: from mail.chesapeake.net (chesapeake.net [208.142.252.6]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAB7C43D41; Thu, 12 Aug 2004 07:58:17 +0000 (GMT) (envelope-from jroberson@chesapeake.net) Received: from mail.chesapeake.net (localhost [127.0.0.1]) by mail.chesapeake.net (8.12.10/8.12.10) with ESMTP id i7C7wHLu036126; Thu, 12 Aug 2004 03:58:17 -0400 (EDT) (envelope-from jroberson@chesapeake.net) Received: from localhost (jroberson@localhost)i7C7wHUs036120; Thu, 12 Aug 2004 03:58:17 -0400 (EDT) (envelope-from jroberson@chesapeake.net) X-Authentication-Warning: mail.chesapeake.net: jroberson owned process doing -bs Date: Thu, 12 Aug 2004 03:58:16 -0400 (EDT) From: Jeff Roberson To: Jeff Roberson In-Reply-To: <200408120756.i7C7uXOQ011743@repoman.freebsd.org> Message-ID: <20040812035656.S7322@mail.chesapeake.net> References: <200408120756.i7C7uXOQ011743@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 07:58:18 -0000 On Thu, 12 Aug 2004, Jeff Roberson wrote: > jeff 2004-08-12 07:56:33 UTC > > FreeBSD src repository > > Modified files: > sys/kern sched_ule.c > Log: > - Introduce a new flag KEF_HOLD that prevents sched_add() from doing a > migration. Use this in sched_prio() and sched_switch() to stop us from > migrating threads that are in short term sleeps or are runnable. These > extra migrations were added in the patches to support KSE. This patch brings my 'super-smack' performance in ULE above that of 4BSD. worldstone seems unaffected. I would be interested in hearing about what other performance changes there are as a result of this patch. I would also be interested in hearing about cases where ULE is slower than 4BSD. > - Only set NEEDRESCHED if the thread we're adding in sched_add() is a > lower priority and is being placed on the current queue. > - Fix some minor whitespace problems. > > Revision Changes Path > 1.121 +19 -7 src/sys/kern/sched_ule.c > From owner-cvs-all@FreeBSD.ORG Thu Aug 12 08:20:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 71ADF16A4CE; Thu, 12 Aug 2004 08:20:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54B0943D53; Thu, 12 Aug 2004 08:20:37 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C8KbX5012430; Thu, 12 Aug 2004 08:20:37 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C8Kb8c012429; Thu, 12 Aug 2004 08:20:37 GMT (envelope-from sos) Message-Id: <200408120820.i7C8Kb8c012429@repoman.freebsd.org> From: Søren Schmidt Date: Thu, 12 Aug 2004 08:20:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-all.c ata-chipset.c ata-dma.c ata-pci.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 08:20:37 -0000 sos 2004-08-12 08:20:37 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-chipset.c ata-dma.c ata-pci.c Log: Change the order of ata_dmainit/ata_allocate in preparation of supporting new chipsets where this is needed. Revision Changes Path 1.221 +14 -17 src/sys/dev/ata/ata-all.c 1.79 +2 -4 src/sys/dev/ata/ata-chipset.c 1.128 +1 -1 src/sys/dev/ata/ata-dma.c 1.87 +40 -26 src/sys/dev/ata/ata-pci.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 08:21:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C03A116A4D0 for ; Thu, 12 Aug 2004 08:21:39 +0000 (GMT) Received: from c00l3r.networx.ch (c00l3r.networx.ch [62.48.2.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE77943D4C for ; Thu, 12 Aug 2004 08:21:38 +0000 (GMT) (envelope-from andre@freebsd.org) Received: (qmail 97193 invoked from network); 12 Aug 2004 08:15:28 -0000 Received: from unknown (HELO freebsd.org) ([62.48.0.53]) (envelope-sender ) by c00l3r.networx.ch (qmail-ldap-1.03) with SMTP for ; 12 Aug 2004 08:15:28 -0000 Message-ID: <411B2892.B39C83E0@freebsd.org> Date: Thu, 12 Aug 2004 10:21:38 +0200 From: Andre Oppermann X-Mailer: Mozilla 4.8 [en] (Windows NT 5.0; U) X-Accept-Language: en MIME-Version: 1.0 To: Jeff Roberson References: <200408120756.i7C7uXOQ011743@repoman.freebsd.org> <20040812035656.S7322@mail.chesapeake.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 08:21:40 -0000 Jeff Roberson wrote: > > On Thu, 12 Aug 2004, Jeff Roberson wrote: > > > jeff 2004-08-12 07:56:33 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/kern sched_ule.c > > Log: > > - Introduce a new flag KEF_HOLD that prevents sched_add() from doing a > > migration. Use this in sched_prio() and sched_switch() to stop us from > > migrating threads that are in short term sleeps or are runnable. These > > extra migrations were added in the patches to support KSE. > > This patch brings my 'super-smack' performance in ULE above that of 4BSD. > worldstone seems unaffected. I would be interested in hearing about what > other performance changes there are as a result of this patch. I would > also be interested in hearing about cases where ULE is slower than 4BSD. See -current list of yesterday. Martin Blapp was reporting problems with some 500 sendmail/milter etc. processes where it get slower and slower compared to 4BSD. -- Andre From owner-cvs-all@FreeBSD.ORG Thu Aug 12 08:25:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6955316A4CE; Thu, 12 Aug 2004 08:25:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E08C43D1F; Thu, 12 Aug 2004 08:25:01 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C8P1hw012896; Thu, 12 Aug 2004 08:25:01 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C8P1Ax012895; Thu, 12 Aug 2004 08:25:01 GMT (envelope-from pav) Message-Id: <200408120825.i7C8P1Ax012895@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 12 Aug 2004 08:25:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/baudline Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 08:25:01 -0000 pav 2004-08-12 08:25:01 UTC FreeBSD ports repository Modified files: audio/baudline Makefile distinfo Log: - Update to 0.98 and unbreak PR: ports/69071 Submitted by: Jean-Yves Lefort Approved by: maintainer timeout (1 month) Revision Changes Path 1.13 +13 -8 ports/audio/baudline/Makefile 1.9 +2 -2 ports/audio/baudline/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 12 08:37:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B08ED16A4CE; Thu, 12 Aug 2004 08:37:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9461843D3F; Thu, 12 Aug 2004 08:37:42 +0000 (GMT) (envelope-from andre@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C8bgRl013291; Thu, 12 Aug 2004 08:37:42 GMT (envelope-from andre@repoman.freebsd.org) Received: (from andre@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C8bgbO013290; Thu, 12 Aug 2004 08:37:42 GMT (envelope-from andre) Message-Id: <200408120837.i7C8bgbO013290@repoman.freebsd.org> From: Andre Oppermann Date: Thu, 12 Aug 2004 08:37:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_input.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 08:37:42 -0000 andre 2004-08-12 08:37:42 UTC FreeBSD src repository Modified files: sys/netinet ip_input.c Log: Fix two cases of incorrect IPQ_UNLOCK'ing in the merged ip_reass() function. The first one was going to 'dropfrag', which unlocks the IPQ, before the lock was aquired; The second one doing a unlock and then a 'goto dropfrag' which led to a double-unlock. Tripped over by: des Revision Changes Path 1.281 +2 -2 src/sys/netinet/ip_input.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 08:44:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 24AD116A4CE; Thu, 12 Aug 2004 08:44:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DDEE43D31; Thu, 12 Aug 2004 08:44:53 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C8iqYt013923; Thu, 12 Aug 2004 08:44:52 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C8iqx5013922; Thu, 12 Aug 2004 08:44:52 GMT (envelope-from den) Message-Id: <200408120844.i7C8iqx5013922@repoman.freebsd.org> From: Denis Peplin Date: Thu, 12 Aug 2004 08:44:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/ru_RU.KOI8-R/early-adopter article.sgml src/release/doc/ru_RU.KOI8-R/hardware/alphaarticle.sgml src/release/doc/ru_RU.KOI8-R/hardware/ia64article.sgml ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 08:44:53 -0000 den 2004-08-12 08:44:52 UTC FreeBSD src repository (doc committer) Modified files: release/doc/ru_RU.KOI8-R/early-adopter article.sgml release/doc/ru_RU.KOI8-R/hardware/alpha article.sgml release/doc/ru_RU.KOI8-R/hardware/amd64 article.sgml release/doc/ru_RU.KOI8-R/hardware/i386 article.sgml release/doc/ru_RU.KOI8-R/hardware/ia64 article.sgml release/doc/ru_RU.KOI8-R/hardware/pc98 article.sgml release/doc/ru_RU.KOI8-R/hardware/sparc64 article.sgml release/doc/ru_RU.KOI8-R/installation/alpha article.sgml release/doc/ru_RU.KOI8-R/installation/amd64 article.sgml release/doc/ru_RU.KOI8-R/installation/i386 article.sgml release/doc/ru_RU.KOI8-R/installation/ia64 article.sgml release/doc/ru_RU.KOI8-R/installation/pc98 article.sgml release/doc/ru_RU.KOI8-R/installation/sparc64 article.sgml release/doc/ru_RU.KOI8-R/readme article.sgml release/doc/ru_RU.KOI8-R/relnotes/alpha article.sgml release/doc/ru_RU.KOI8-R/relnotes/amd64 article.sgml release/doc/ru_RU.KOI8-R/relnotes/i386 article.sgml release/doc/ru_RU.KOI8-R/relnotes/ia64 article.sgml release/doc/ru_RU.KOI8-R/relnotes/pc98 article.sgml release/doc/ru_RU.KOI8-R/relnotes/sparc64 article.sgml Log: Change RU for articles.ent and books.ent back to EN for consistency This modification was not really needed. Noticed by: hrs Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/early-adopter/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/hardware/alpha/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/hardware/amd64/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/hardware/i386/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/hardware/ia64/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/hardware/pc98/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/hardware/sparc64/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/installation/alpha/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/installation/amd64/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/installation/i386/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/installation/ia64/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/installation/pc98/article.sgml 1.4 +2 -2 src/release/doc/ru_RU.KOI8-R/installation/sparc64/article.sgml 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/readme/article.sgml 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/relnotes/alpha/article.sgml 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/relnotes/amd64/article.sgml 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/relnotes/i386/article.sgml 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/relnotes/ia64/article.sgml 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/relnotes/pc98/article.sgml 1.5 +2 -2 src/release/doc/ru_RU.KOI8-R/relnotes/sparc64/article.sgml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 08:47:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4ED6A16A4CF; Thu, 12 Aug 2004 08:47:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48CFF43D53; Thu, 12 Aug 2004 08:47:33 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C8lXWC014096; Thu, 12 Aug 2004 08:47:33 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C8lXnp014095; Thu, 12 Aug 2004 08:47:33 GMT (envelope-from den) Message-Id: <200408120847.i7C8lXnp014095@repoman.freebsd.org> From: Denis Peplin Date: Thu, 12 Aug 2004 08:47:33 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ru_RU.KOI8-R/articles/diskless-x article.sgml doc/ru_RU.KOI8-R/articles/releng article.sgml doc/ru_RU.KOI8-R/books/handbook book.sgml doc/ru_RU.KOI8-R/share/sgml catalog X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 08:47:33 -0000 den 2004-08-12 08:47:33 UTC FreeBSD doc repository Modified files: ru_RU.KOI8-R/articles/diskless-x article.sgml ru_RU.KOI8-R/articles/releng article.sgml ru_RU.KOI8-R/books/handbook book.sgml ru_RU.KOI8-R/share/sgml catalog Log: Change RU for articles.ent and books.ent back to EN for consistency This modification was not really needed. Noticed by: hrs Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.5 +2 -2 doc/ru_RU.KOI8-R/articles/diskless-x/article.sgml 1.6 +2 -2 doc/ru_RU.KOI8-R/articles/releng/article.sgml 1.19 +2 -2 doc/ru_RU.KOI8-R/books/handbook/book.sgml 1.9 +3 -3 doc/ru_RU.KOI8-R/share/sgml/catalog From owner-cvs-all@FreeBSD.ORG Thu Aug 12 08:54:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EF3416A4CE; Thu, 12 Aug 2004 08:54:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 127CB43D2D; Thu, 12 Aug 2004 08:54:07 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C8s6jc014291; Thu, 12 Aug 2004 08:54:06 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C8s6TX014290; Thu, 12 Aug 2004 08:54:06 GMT (envelope-from sem) Message-Id: <200408120854.i7C8s6TX014290@repoman.freebsd.org> From: Sergey Matveychuk Date: Thu, 12 Aug 2004 08:54:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/netwox Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 08:54:07 -0000 sem 2004-08-12 08:54:06 UTC FreeBSD ports repository Modified files: net-mgmt/netwox Makefile distinfo pkg-plist Log: Update to 5.21.0 PR: ports/70304 Submitted by: maintainer Revision Changes Path 1.10 +7 -4 ports/net-mgmt/netwox/Makefile 1.6 +4 -4 ports/net-mgmt/netwox/distinfo 1.4 +1 -1 ports/net-mgmt/netwox/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 08:57:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A5D216A4CE; Thu, 12 Aug 2004 08:57:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14D7843D48; Thu, 12 Aug 2004 08:57:53 +0000 (GMT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C8vqVX014475; Thu, 12 Aug 2004 08:57:52 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C8vqUW014474; Thu, 12 Aug 2004 08:57:52 GMT (envelope-from knu) Message-Id: <200408120857.i7C8vqUW014474@repoman.freebsd.org> From: Akinori MUSHA Date: Thu, 12 Aug 2004 08:57:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.ruby.mk ports/lang/ruby18 Makefile distinfo pkg-plist ports/lang/ruby18/files patch-mkmf.rb ports/x11-toolkits/ruby-tk pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 08:57:53 -0000 knu 2004-08-12 08:57:52 UTC FreeBSD ports repository Modified files: Mk bsd.ruby.mk lang/ruby18 Makefile distinfo pkg-plist x11-toolkits/ruby-tk pkg-plist Removed files: lang/ruby18/files patch-mkmf.rb Log: Update lang/ruby18 to 1.8.2-preview2. Revision Changes Path 1.138 +6 -6 ports/Mk/bsd.ruby.mk 1.76 +3 -2 ports/lang/ruby18/Makefile 1.56 +2 -2 ports/lang/ruby18/distinfo 1.4 +0 -21 ports/lang/ruby18/files/patch-mkmf.rb (dead) 1.45 +2131 -0 ports/lang/ruby18/pkg-plist 1.12 +414 -0 ports/x11-toolkits/ruby-tk/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 09:12:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 35A2C16A4CF; Thu, 12 Aug 2004 09:12:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1975343D1F; Thu, 12 Aug 2004 09:12:13 +0000 (GMT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C9CDe9014928; Thu, 12 Aug 2004 09:12:13 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C9CC0t014927; Thu, 12 Aug 2004 09:12:12 GMT (envelope-from knu) Message-Id: <200408120912.i7C9CC0t014927@repoman.freebsd.org> From: Akinori MUSHA Date: Thu, 12 Aug 2004 09:12:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ruby-ncurses Makefile distinfo ports/devel/ruby-ncurses/files patch-form_wrap.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 09:12:13 -0000 knu 2004-08-12 09:12:12 UTC FreeBSD ports repository Modified files: devel/ruby-ncurses Makefile distinfo Added files: devel/ruby-ncurses/files patch-form_wrap.h Log: Update to 0.9.1. Unbreak on FreeBSD 4.x/gcc 2.95. Revision Changes Path 1.12 +2 -8 ports/devel/ruby-ncurses/Makefile 1.10 +2 -2 ports/devel/ruby-ncurses/distinfo 1.1 +14 -0 ports/devel/ruby-ncurses/files/patch-form_wrap.h (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 09:16:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 252EF16A4CF; Thu, 12 Aug 2004 09:16:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09B6543D3F; Thu, 12 Aug 2004 09:16:17 +0000 (GMT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C9GG7D015118; Thu, 12 Aug 2004 09:16:16 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C9GGK6015117; Thu, 12 Aug 2004 09:16:16 GMT (envelope-from knu) Message-Id: <200408120916.i7C9GGK6015117@repoman.freebsd.org> From: Akinori MUSHA Date: Thu, 12 Aug 2004 09:16:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/pdumpfs Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 09:16:17 -0000 knu 2004-08-12 09:16:16 UTC FreeBSD ports repository Modified files: sysutils/pdumpfs Makefile distinfo Log: Update to 1.2. Revision Changes Path 1.9 +1 -1 ports/sysutils/pdumpfs/Makefile 1.9 +2 -2 ports/sysutils/pdumpfs/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 12 09:21:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B027116A4CE; Thu, 12 Aug 2004 09:21:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94AE443D5F; Thu, 12 Aug 2004 09:21:34 +0000 (GMT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C9LYmi015266; Thu, 12 Aug 2004 09:21:34 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C9LYE3015265; Thu, 12 Aug 2004 09:21:34 GMT (envelope-from knu) Message-Id: <200408120921.i7C9LYE3015265@repoman.freebsd.org> From: Akinori MUSHA Date: Thu, 12 Aug 2004 09:21:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/ruby-gsl Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 09:21:34 -0000 knu 2004-08-12 09:21:34 UTC FreeBSD ports repository Modified files: math/ruby-gsl Makefile distinfo pkg-plist Log: Update to 1.5.0. Revision Changes Path 1.16 +2 -2 ports/math/ruby-gsl/Makefile 1.8 +2 -2 ports/math/ruby-gsl/distinfo 1.9 +22 -4 ports/math/ruby-gsl/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 09:31:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F290216A4CE; Thu, 12 Aug 2004 09:31:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D82C943D49; Thu, 12 Aug 2004 09:31:51 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C9Vpbv015571; Thu, 12 Aug 2004 09:31:51 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C9VpvB015570; Thu, 12 Aug 2004 09:31:51 GMT (envelope-from vs) Message-Id: <200408120931.i7C9VpvB015570@repoman.freebsd.org> From: Volker Stolz Date: Thu, 12 Aug 2004 09:31:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/suphp Makefile pkg-plist ports/www/suphp/files patch-src::Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 09:31:52 -0000 vs 2004-08-12 09:31:51 UTC FreeBSD ports repository Modified files: www/suphp Makefile pkg-plist www/suphp/files patch-src::Makefile.in Log: - Fix "make -C"-issues - Unregister from Apache through apxs on deinstall - Cleanup PR: ports/70345 Submitted by: Jeremy Chadwick (maintainer) Revision Changes Path 1.18 +10 -19 ports/www/suphp/Makefile 1.3 +34 -7 ports/www/suphp/files/patch-src::Makefile.in 1.4 +1 -1 ports/www/suphp/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 09:33:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FBFE16A4CE; Thu, 12 Aug 2004 09:33:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44A9743D2F; Thu, 12 Aug 2004 09:33:47 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C9XlGh015622; Thu, 12 Aug 2004 09:33:47 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C9Xl52015621; Thu, 12 Aug 2004 09:33:47 GMT (envelope-from tjr) Message-Id: <200408120933.i7C9Xl52015621@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 09:33:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include Makefile _ctype.h ctype.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 09:33:47 -0000 tjr 2004-08-12 09:33:47 UTC FreeBSD src repository Modified files: include Makefile _ctype.h ctype.h Log: Move some internal macros and inlines from ctype.h to a new file, _ctype.h, which has been repo-copied from ctype.h. This will allow us to remove namespace pollution from and to make wcwidth() an inline function without introducing more pollution. Revision Changes Path 1.220 +2 -1 src/include/Makefile 1.28 +6 -88 src/include/_ctype.h 1.28 +1 -89 src/include/ctype.h From owner-cvs-all@FreeBSD.ORG Thu Aug 12 09:45:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A41B16A4CE; Thu, 12 Aug 2004 09:45:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E6FA43D5A; Thu, 12 Aug 2004 09:45:00 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C9j0CL016028; Thu, 12 Aug 2004 09:45:00 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C9j0KI016026; Thu, 12 Aug 2004 09:45:00 GMT (envelope-from vs) Message-Id: <200408120945.i7C9j0KI016026@repoman.freebsd.org> From: Volker Stolz Date: Thu, 12 Aug 2004 09:45:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/xtla Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 09:45:00 -0000 vs 2004-08-12 09:45:00 UTC FreeBSD ports repository Modified files: devel/xtla Makefile distinfo Log: Update to 20040809 PR: ports/70334 Submitted by: Dryice Liu (maintainer) Revision Changes Path 1.5 +1 -2 ports/devel/xtla/Makefile 1.4 +2 -2 ports/devel/xtla/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 12 09:45:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7C16116A4CE; Thu, 12 Aug 2004 09:45:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FB5F43D2F; Thu, 12 Aug 2004 09:45:09 +0000 (GMT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C9j9qX016068; Thu, 12 Aug 2004 09:45:09 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C9j9be016067; Thu, 12 Aug 2004 09:45:09 GMT (envelope-from knu) Message-Id: <200408120945.i7C9j9be016067@repoman.freebsd.org> From: Akinori MUSHA Date: Thu, 12 Aug 2004 09:45:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.ruby.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 09:45:09 -0000 knu 2004-08-12 09:45:09 UTC FreeBSD ports repository Modified files: Mk bsd.ruby.mk Log: Define RUBY_RIDIR and RUBY_SITERIDIR. Revision Changes Path 1.139 +7 -1 ports/Mk/bsd.ruby.mk From owner-cvs-all@FreeBSD.ORG Thu Aug 12 09:46:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B09AB16A4CF; Thu, 12 Aug 2004 09:46:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9653743D48; Thu, 12 Aug 2004 09:46:42 +0000 (GMT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C9kgfY016166; Thu, 12 Aug 2004 09:46:42 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C9kgOF016165; Thu, 12 Aug 2004 09:46:42 GMT (envelope-from knu) Message-Id: <200408120946.i7C9kgOF016165@repoman.freebsd.org> From: Akinori MUSHA Date: Thu, 12 Aug 2004 09:46:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/ruby18 Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 09:46:42 -0000 knu 2004-08-12 09:46:42 UTC FreeBSD ports repository Modified files: lang/ruby18 Makefile pkg-plist Log: Handle ri document directories properly. Revision Changes Path 1.77 +5 -0 ports/lang/ruby18/Makefile 1.46 +2042 -2036 ports/lang/ruby18/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 09:50:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89DDC16A4CE; Thu, 12 Aug 2004 09:50:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E06143D2F; Thu, 12 Aug 2004 09:50:28 +0000 (GMT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C9oSTu016283; Thu, 12 Aug 2004 09:50:28 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C9oSDY016282; Thu, 12 Aug 2004 09:50:28 GMT (envelope-from knu) Message-Id: <200408120950.i7C9oSDY016282@repoman.freebsd.org> From: Akinori MUSHA Date: Thu, 12 Aug 2004 09:50:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/ruby-bdb Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 09:50:28 -0000 knu 2004-08-12 09:50:28 UTC FreeBSD ports repository Modified files: databases/ruby-bdb Makefile distinfo pkg-plist Log: Update to 0.5.1. Build ri documents. Revision Changes Path 1.43 +7 -2 ports/databases/ruby-bdb/Makefile 1.34 +2 -2 ports/databases/ruby-bdb/distinfo 1.16 +439 -188 ports/databases/ruby-bdb/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 09:54:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12AA216A4CE; Thu, 12 Aug 2004 09:54:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA78243D60; Thu, 12 Aug 2004 09:54:54 +0000 (GMT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7C9sspT016417; Thu, 12 Aug 2004 09:54:54 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7C9ssIV016416; Thu, 12 Aug 2004 09:54:54 GMT (envelope-from knu) Message-Id: <200408120954.i7C9ssIV016416@repoman.freebsd.org> From: Akinori MUSHA Date: Thu, 12 Aug 2004 09:54:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ruby-sdl Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 09:54:55 -0000 knu 2004-08-12 09:54:54 UTC FreeBSD ports repository Modified files: devel/ruby-sdl Makefile distinfo pkg-plist Log: Update to 0.9.3. Revision Changes Path 1.31 +1 -1 ports/devel/ruby-sdl/Makefile 1.14 +2 -2 ports/devel/ruby-sdl/distinfo 1.12 +4 -0 ports/devel/ruby-sdl/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 10:01:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EC76C16A4CE; Thu, 12 Aug 2004 10:01:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF45B43D45; Thu, 12 Aug 2004 10:01:03 +0000 (GMT) (envelope-from ache@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CA13aB016633; Thu, 12 Aug 2004 10:01:03 GMT (envelope-from ache@repoman.freebsd.org) Received: (from ache@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CA13UN016632; Thu, 12 Aug 2004 10:01:03 GMT (envelope-from ache) Message-Id: <200408121001.i7CA13UN016632@repoman.freebsd.org> From: "Andrey A. Chernov" Date: Thu, 12 Aug 2004 10:01:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/ljsm/files patch-aa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 10:01:04 -0000 ache 2004-08-12 10:01:03 UTC FreeBSD ports repository Modified files: www/ljsm/files patch-aa Log: Delete part of patch which does nothing Revision Changes Path 1.2 +0 -20 ports/www/ljsm/files/patch-aa From owner-cvs-all@FreeBSD.ORG Thu Aug 12 10:02:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D5AE16A4CE; Thu, 12 Aug 2004 10:02:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F413A43D5A; Thu, 12 Aug 2004 10:02:02 +0000 (GMT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CA22ig016703; Thu, 12 Aug 2004 10:02:02 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CA22ci016702; Thu, 12 Aug 2004 10:02:02 GMT (envelope-from knu) Message-Id: <200408121002.i7CA22ci016702@repoman.freebsd.org> From: Akinori MUSHA Date: Thu, 12 Aug 2004 10:02:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ruby-gettext Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 10:02:03 -0000 knu 2004-08-12 10:02:02 UTC FreeBSD ports repository Modified files: devel/ruby-gettext Makefile distinfo pkg-plist Log: Update to 0.6.1. Revision Changes Path 1.21 +2 -4 ports/devel/ruby-gettext/Makefile 1.14 +2 -2 ports/devel/ruby-gettext/distinfo 1.12 +10 -9 ports/devel/ruby-gettext/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 10:29:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DE8416A4CE; Thu, 12 Aug 2004 10:29:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0269E43D39; Thu, 12 Aug 2004 10:29:15 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CATEoN017325; Thu, 12 Aug 2004 10:29:14 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CATEob017324; Thu, 12 Aug 2004 10:29:14 GMT (envelope-from tjr) Message-Id: <200408121029.i7CATEob017324@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 10:29:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include wctype.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 10:29:15 -0000 tjr 2004-08-12 10:29:14 UTC FreeBSD src repository Modified files: include wctype.h Log: Include _ctype.h instead of ctype.h to avoid namespace pollution. Revision Changes Path 1.13 +1 -1 src/include/wctype.h From owner-cvs-all@FreeBSD.ORG Thu Aug 12 10:45:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1A8716A4CF; Thu, 12 Aug 2004 10:45:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B935943D4C; Thu, 12 Aug 2004 10:45:27 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CAjRHe017829; Thu, 12 Aug 2004 10:45:27 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CAjRbc017828; Thu, 12 Aug 2004 10:45:27 GMT (envelope-from eik) Message-Id: <200408121045.i7CAjRbc017828@repoman.freebsd.org> From: Oliver Eikemeier Date: Thu, 12 Aug 2004 10:45:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/portaudit-db/database portaudit.txt ports/net/rsync Makefile ports/net/rsync/files patch-backup.c patch-flist.c patch-generator.c patch-util.c rsyncd.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 10:45:27 -0000 eik 2004-08-12 10:45:27 UTC FreeBSD ports repository Modified files: security/portaudit-db/database portaudit.txt net/rsync Makefile net/rsync/files patch-flist.c rsyncd.sh Added files: net/rsync/files patch-backup.c patch-generator.c patch-util.c Log: fix security hole in non-chroot rsync daemon. Revision Changes Path 1.94 +15 -12 ports/net/rsync/Makefile 1.1 +48 -0 ports/net/rsync/files/patch-backup.c (new) 1.4 +0 -1 ports/net/rsync/files/patch-flist.c 1.1 +23 -0 ports/net/rsync/files/patch-generator.c (new) 1.1 +15 -0 ports/net/rsync/files/patch-util.c (new) 1.2 +15 -16 ports/net/rsync/files/rsyncd.sh 1.85 +2 -1 ports/security/portaudit-db/database/portaudit.txt From owner-cvs-all@FreeBSD.ORG Thu Aug 12 10:52:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E084B16A4CE; Thu, 12 Aug 2004 10:52:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8E2443D1F; Thu, 12 Aug 2004 10:52:22 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CAqMxu018057; Thu, 12 Aug 2004 10:52:22 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CAqMpP018056; Thu, 12 Aug 2004 10:52:22 GMT (envelope-from lofi) Message-Id: <200408121052.i7CAqMpP018056@repoman.freebsd.org> From: Michael Nottebrock Date: Thu, 12 Aug 2004 10:52:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/konqueror-nsplugins Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 10:52:23 -0000 lofi 2004-08-12 10:52:22 UTC FreeBSD ports repository Modified files: www/konqueror-nsplugins Makefile Log: Disable malfunctioning configure check for java (which isn't used for any- thing anyway). Revision Changes Path 1.2 +2 -0 ports/www/konqueror-nsplugins/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 11:05:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 10A2F16A4D0; Thu, 12 Aug 2004 11:05:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6C3643D55; Thu, 12 Aug 2004 11:05:27 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CB5Rhe018395; Thu, 12 Aug 2004 11:05:27 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CB5RMA018394; Thu, 12 Aug 2004 11:05:27 GMT (envelope-from lofi) Message-Id: <200408121105.i7CB5RMA018394@repoman.freebsd.org> From: Michael Nottebrock Date: Thu, 12 Aug 2004 11:05:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/kdebase3/files kdm.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 11:05:28 -0000 lofi 2004-08-12 11:05:27 UTC FreeBSD ports repository Modified files: x11/kdebase3/files kdm.sh Log: Tell genkdmconf to ignore existing bits of xdm/kdm configuration, if it finds them and just create defaults as intended. Revision Changes Path 1.2 +1 -2 ports/x11/kdebase3/files/kdm.sh From owner-cvs-all@FreeBSD.ORG Thu Aug 12 11:29:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32EE516A4CE; Thu, 12 Aug 2004 11:29:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0803243D45; Thu, 12 Aug 2004 11:29:21 +0000 (GMT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CBTKxf019028; Thu, 12 Aug 2004 11:29:20 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CBTK9M019027; Thu, 12 Aug 2004 11:29:20 GMT (envelope-from knu) Message-Id: <200408121129.i7CBTK9M019027@repoman.freebsd.org> From: Akinori MUSHA Date: Thu, 12 Aug 2004 11:29:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/ruby-fcgi Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 11:29:21 -0000 knu 2004-08-12 11:29:20 UTC FreeBSD ports repository Modified files: www/ruby-fcgi Makefile pkg-plist Log: Install fcgi.rb too. Revision Changes Path 1.6 +4 -6 ports/www/ruby-fcgi/Makefile 1.3 +1 -0 ports/www/ruby-fcgi/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 11:34:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 270CD16A4CE; Thu, 12 Aug 2004 11:34:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 093D543D31; Thu, 12 Aug 2004 11:34:35 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CBYYOx019177; Thu, 12 Aug 2004 11:34:34 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CBYYpa019176; Thu, 12 Aug 2004 11:34:34 GMT (envelope-from tjr) Message-Id: <200408121134.i7CBYYpa019176@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 11:34:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/lam lam.1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 11:34:35 -0000 tjr 2004-08-12 11:34:34 UTC FreeBSD src repository Modified files: usr.bin/lam lam.1 Log: Document incorrect handling of multibyte characters. Revision Changes Path 1.13 +5 -1 src/usr.bin/lam/lam.1 From owner-cvs-all@FreeBSD.ORG Thu Aug 12 05:06:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3C4DA16A4CE; Thu, 12 Aug 2004 05:06:21 +0000 (GMT) Received: from b.mail.sonic.net (b.mail.sonic.net [64.142.19.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19F8B43D46; Thu, 12 Aug 2004 05:06:21 +0000 (GMT) (envelope-from bmah@freebsd.org) Received: from tomcat.kitchenlab.org (adsl-64-142-31-107.sonic.net [64.142.31.107]) by b.mail.sonic.net (8.12.11/8.12.11) with ESMTP id i7C54icH021924 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Wed, 11 Aug 2004 22:04:44 -0700 Received: from tomcat.kitchenlab.org (localhost.kitchenlab.org [127.0.0.1]) by tomcat.kitchenlab.org (8.13.1/8.13.1) with ESMTP id i7C54iYK000966; Wed, 11 Aug 2004 22:04:44 -0700 (PDT) (envelope-from bmah@freebsd.org) Received: (from bmah@localhost) by tomcat.kitchenlab.org (8.13.1/8.13.1/Submit) id i7C54hEd000965; Wed, 11 Aug 2004 22:04:43 -0700 (PDT) (envelope-from bmah@freebsd.org) X-Authentication-Warning: tomcat.kitchenlab.org: bmah set sender to bmah@freebsd.org using -f From: "Bruce A. Mah" To: Ken Smith In-Reply-To: <20040812030913.GD27338@electra.cse.Buffalo.EDU> References: <20040812012909.GA25768@electra.cse.Buffalo.EDU> <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> <20040812030913.GD27338@electra.cse.Buffalo.EDU> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-1eF8rEa6/BAC98Hh2EKs" Message-Id: <1092287083.796.29.camel@tomcat.kitchenlab.org> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Wed, 11 Aug 2004 22:04:43 -0700 X-Mailman-Approved-At: Thu, 12 Aug 2004 11:42:26 +0000 cc: "Bruce A. Mah" cc: Doug Barton cc: re@freebsd.org cc: cvs-src@freebsd.org cc: Alfred Perlstein cc: cvs-all@freebsd.org cc: src-committers@freebsd.org cc: Ceri Davies cc: Oliver Eikemeier Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 05:06:21 -0000 --=-1eF8rEa6/BAC98Hh2EKs Content-Type: text/plain Content-Transfer-Encoding: quoted-printable On Wed, 2004-08-11 at 20:09, Ken Smith wrote: > On Thu, Aug 12, 2004 at 03:58:58AM +0200, Oliver Eikemeier wrote: >=20 > > Ok, I'll write a patch then. >=20 > [ I said some of this to Oliver privately but it's probably worth > saying louder... ] >=20 > First thank you, the effort is appreciated. >=20 > Second some people had asked that this be backed out. It sounds like > Oliver is agreeable to adding -c so I'm OK with his previous commit > remaining in RELENG_4 as long as adding -c doesn't take too long. > Despite some users who probably shouldn't be tracking RELENG_4, it > *is* the -stable *development* branch. Paranoid users should at this > point be tracking RELENG_4_10 instead. Having -c disappear from > RELENG_4 for a brief time is OK as long as it re-appears in a reasonable > amount of time (and way before we start talking 4.11-RELEASE). I'm not sure if I want to be replying to this thread, but I might have a thing or two to say about this subject. As the original author of pkg_version (the Perl one), I wish I had never added the -c option. Of the users I have talked to who used this option, the majority used it wrongly (as a package updating script). In hindsight, this was basically a foot-shooting device. :-( If anyone had asked me about this before jumping all over eik@, I would have recommended that we lose the option as a service to our users.=20 Sorry, but that's the way I feel. In any case, thanks to eik@ for doing the work, and thanks to everyone else who believed they were doing The Right Thing (TM). Peace, Bruce. --=-1eF8rEa6/BAC98Hh2EKs Content-Type: application/pgp-signature; name=signature.asc Content-Description: This is a digitally signed message part -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBBGvpr2MoxcVugUsMRAl1NAJ9BDvRFyq5Cfqa4lcA9asntkWhN3gCdHc4o 1IG1lixsA4g2IxTarv1zJfU= =Gtf+ -----END PGP SIGNATURE----- --=-1eF8rEa6/BAC98Hh2EKs-- From owner-cvs-all@FreeBSD.ORG Thu Aug 12 11:49:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D266C16A4CE; Thu, 12 Aug 2004 11:49:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B26A243D2F; Thu, 12 Aug 2004 11:49:55 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CBntOU019597; Thu, 12 Aug 2004 11:49:55 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CBntEm019596; Thu, 12 Aug 2004 11:49:55 GMT (envelope-from harti) Message-Id: <200408121149.i7CBntEm019596@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 12 Aug 2004 11:49:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/make Makefile main.c nonints.h var.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 11:49:56 -0000 harti 2004-08-12 11:49:55 UTC FreeBSD src repository Modified files: usr.bin/make Makefile main.c nonints.h var.c Log: Put variable assignments on .MAKEFLAGS and .MFLAGS targets into the .MAKEFLAGS variable so that these are also passed to sub-makes. This makes the handling of variables in the command environment more consistent. PR: bin/68853 Submitted by: Martin Kamerhofer Revision Changes Path 1.33 +1 -1 src/usr.bin/make/Makefile 1.91 +7 -6 src/usr.bin/make/main.c 1.23 +1 -1 src/usr.bin/make/nonints.h 1.48 +4 -44 src/usr.bin/make/var.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 11:51:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5A4D16A4CE; Thu, 12 Aug 2004 11:51:28 +0000 (GMT) Received: from mx1.imp.ch (mx1.imp.ch [157.161.9.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F74443D54; Thu, 12 Aug 2004 11:51:28 +0000 (GMT) (envelope-from mb@imp.ch) Received: from mx1.imp.ch (mx.imp.ch [157.161.9.64]) by mx1.imp.ch (8.12.11/8.12.11) with ESMTP id i7CBpL1f050883; Thu, 12 Aug 2004 13:51:22 +0200 (CEST) (envelope-from mb@imp.ch) Received: from mx1.imp.ch (localhost [127.0.0.1]) by mx1.imp.ch (8.12.11/8.12.11/Submit) with ESMTP id i7CBpJVu050842; Thu, 12 Aug 2004 13:51:19 +0200 (CEST) (envelope-from mb@imp.ch) Received: (from clamav@localhost) by mx1.imp.ch (8.12.11/8.12.11/Submit) id i7CBpJW0050830; Thu, 12 Aug 2004 13:51:19 +0200 (CEST) (envelope-from mb@imp.ch) Received: from cvs.imp.ch (cvs.imp.ch [157.161.4.9]) by ns1.imp.ch (MIMEDefang) with ESMTP id i7CBpEpq029201; Thu, 12 Aug 2004 13:51:18 +0200 (CEST) Date: Thu, 12 Aug 2004 13:51:14 +0200 (CEST) From: Martin Blapp To: Jeff Roberson In-Reply-To: <20040812035656.S7322@mail.chesapeake.net> Message-ID: <20040812135054.D31181@cvs.imp.ch> References: <200408120756.i7C7uXOQ011743@repoman.freebsd.org> <20040812035656.S7322@mail.chesapeake.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Resent: Yes X-Spam-Checksum: 43131200bccd5a68d3ab8373770abd90 X-Virus-Message-Status: No X-Virus-Status: No, scantime="0.0013 seconds" X-Spam-Status: No, hits=-4.897 required=5 scantime="1.4241 seconds" tests=BAYES_00, FORGED_RCVD_HELO X-Scanned-By: MIMEDefang 2.44 cc: cvs-src@FreeBSD.org cc: Jeff Roberson cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 11:51:29 -0000 Hi, > This patch brings my 'super-smack' performance in ULE above that of 4BSD. > worldstone seems unaffected. I would be interested in hearing about what > other performance changes there are as a result of this patch. I would > also be interested in hearing about cases where ULE is slower than 4BSD. I'll redo my tests then. Martin From owner-cvs-all@FreeBSD.ORG Thu Aug 12 11:58:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECBE416A4CE; Thu, 12 Aug 2004 11:58:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEB1043D4C; Thu, 12 Aug 2004 11:58:18 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CBwIxl019870; Thu, 12 Aug 2004 11:58:18 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CBwI7Q019869; Thu, 12 Aug 2004 11:58:18 GMT (envelope-from eik) Message-Id: <200408121158.i7CBwI7Q019869@repoman.freebsd.org> From: Oliver Eikemeier Date: Thu, 12 Aug 2004 11:58:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 11:58:19 -0000 eik 2004-08-12 11:58:18 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: give the ImageMagick png vulnerability an own entry Revision Changes Path 1.165 +29 -7 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 12:12:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E18016A4CE; Thu, 12 Aug 2004 12:12:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 448A043D1F; Thu, 12 Aug 2004 12:12:13 +0000 (GMT) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCCDqH020281; Thu, 12 Aug 2004 12:12:13 GMT (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCCDjx020280; Thu, 12 Aug 2004 12:12:13 GMT (envelope-from deischen) Message-Id: <200408121212.i7CCCDjx020280@repoman.freebsd.org> From: Daniel Eischen Date: Thu, 12 Aug 2004 12:12:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libpthread/thread thr_create.c thr_exit.c thr_init.c thr_kern.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:12:13 -0000 deischen 2004-08-12 12:12:13 UTC FreeBSD src repository Modified files: lib/libpthread/thread thr_create.c thr_exit.c thr_init.c thr_kern.c Log: As long as we have a knob to force system scope threads, why not have a knob to force process scope threads. If the environment variable LIBPTHREAD_PROCESS_SCOPE is set, force all threads to be process scope threads regardless of how the application creates them. If LIBPTHREAD_SYSTEM_SCOPE is set (forcing system scope threads), it overrides LIBPTHREAD_PROCESS_SCOPE. $ # To force system scope threads $ LIBPTHREAD_SYSTEM_SCOPE=anything threaded_app $ # To force process scope threads $ LIBPTHREAD_PROCESS_SCOPE=anything threaded_app Revision Changes Path 1.57 +4 -1 src/lib/libpthread/thread/thr_create.c 1.38 +2 -2 src/lib/libpthread/thread/thr_exit.c 1.65 +3 -1 src/lib/libpthread/thread/thr_init.c 1.111 +4 -4 src/lib/libpthread/thread/thr_kern.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 12:18:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C24AF16A4CE; Thu, 12 Aug 2004 12:18:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A274C43D31; Thu, 12 Aug 2004 12:18:09 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCI9Gd020524; Thu, 12 Aug 2004 12:18:09 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCI9PM020523; Thu, 12 Aug 2004 12:18:09 GMT (envelope-from arved) Message-Id: <200408121218.i7CCI9PM020523@repoman.freebsd.org> From: Tilman Linneweh Date: Thu, 12 Aug 2004 12:18:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt Makefile ports/net-mgmt/p5-SNMP-Info Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:18:09 -0000 arved 2004-08-12 12:18:09 UTC FreeBSD ports repository Modified files: net-mgmt Makefile Added files: net-mgmt/p5-SNMP-Info Makefile distinfo pkg-descr pkg-plist Log: Add SNMP::Info, an object oriented perl5 interface to Network devices and various common MIBs Revision Changes Path 1.25 +1 -0 ports/net-mgmt/Makefile 1.1 +33 -0 ports/net-mgmt/p5-SNMP-Info/Makefile (new) 1.1 +2 -0 ports/net-mgmt/p5-SNMP-Info/distinfo (new) 1.1 +14 -0 ports/net-mgmt/p5-SNMP-Info/pkg-descr (new) 1.1 +32 -0 ports/net-mgmt/p5-SNMP-Info/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 12:18:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 036BE16A4CE; Thu, 12 Aug 2004 12:18:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8FB343D46; Thu, 12 Aug 2004 12:18:28 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCISKY020575; Thu, 12 Aug 2004 12:18:28 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCISTA020574; Thu, 12 Aug 2004 12:18:28 GMT (envelope-from vs) Message-Id: <200408121218.i7CCISTA020574@repoman.freebsd.org> From: Volker Stolz Date: Thu, 12 Aug 2004 12:18:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/imgseek Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:18:29 -0000 vs 2004-08-12 12:18:28 UTC FreeBSD ports repository Modified files: graphics/imgseek Makefile distinfo pkg-plist Log: Updated to 0.8.3 PR: ports/70276 Submitted by: Joseph Ben Haga (maintainer) Revision Changes Path 1.4 +3 -2 ports/graphics/imgseek/Makefile 1.3 +2 -2 ports/graphics/imgseek/distinfo 1.3 +3 -0 ports/graphics/imgseek/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 12:19:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5233E16A4CE; Thu, 12 Aug 2004 12:19:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FB6143D45; Thu, 12 Aug 2004 12:19:11 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCJBAL020633; Thu, 12 Aug 2004 12:19:11 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCJB0B020632; Thu, 12 Aug 2004 12:19:11 GMT (envelope-from tjr) Message-Id: <200408121219.i7CCJB0B020632@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 12:19:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include _ctype.h wchar.h src/lib/libc/locale wcwidth.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:19:11 -0000 tjr 2004-08-12 12:19:11 UTC FreeBSD src repository Modified files: include _ctype.h wchar.h lib/libc/locale wcwidth.c Log: Implement wcwidth() as an inline function. Revision Changes Path 1.29 +16 -0 src/include/_ctype.h 1.45 +2 -0 src/include/wchar.h 1.7 +2 -11 src/lib/libc/locale/wcwidth.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 12:20:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 62CA216A4D1; Thu, 12 Aug 2004 12:20:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4146E43D1F; Thu, 12 Aug 2004 12:20:00 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCK0mA020680; Thu, 12 Aug 2004 12:20:00 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCK0Ce020679; Thu, 12 Aug 2004 12:20:00 GMT (envelope-from arved) Message-Id: <200408121220.i7CCK0Ce020679@repoman.freebsd.org> From: Tilman Linneweh Date: Thu, 12 Aug 2004 12:20:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:20:00 -0000 arved 2004-08-12 12:20:00 UTC FreeBSD ports repository Modified files: . modules Log: Add p5-SNMP-Info Revision Changes Path 1.10881 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 12 12:31:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CC5716A4CE; Thu, 12 Aug 2004 12:31:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0195043D4C; Thu, 12 Aug 2004 12:31:44 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCVhSJ021080; Thu, 12 Aug 2004 12:31:43 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCVhLd021079; Thu, 12 Aug 2004 12:31:43 GMT (envelope-from harti) Message-Id: <200408121231.i7CCVhLd021079@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 12 Aug 2004 12:31:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/atm/atmconfig Makefile atm_oid.list atmconfig.h atmconfig.help atmconfig_device.c atmconfig_device.h atmconfig_device.help main.c private.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:31:44 -0000 harti 2004-08-12 12:31:43 UTC FreeBSD src repository Modified files: sbin/atm/atmconfig Makefile atmconfig.h atmconfig.help main.c private.h Added files: sbin/atm/atmconfig atm_oid.list atmconfig_device.c atmconfig_device.h atmconfig_device.help Log: Add support for the examination and modification of the devices. This is implemented through SNMP and requires the ilmi daemon to run on the system. To prevent bloat in rescue the atmconfig for rescue is compiled without this stuff. Revision Changes Path 1.6 +26 -2 src/sbin/atm/atmconfig/Makefile 1.1 +20 -0 src/sbin/atm/atmconfig/atm_oid.list (new) 1.2 +10 -4 src/sbin/atm/atmconfig/atmconfig.h 1.5 +30 -0 src/sbin/atm/atmconfig/atmconfig.help 1.1 +444 -0 src/sbin/atm/atmconfig/atmconfig_device.c (new) 1.1 +75 -0 src/sbin/atm/atmconfig/atmconfig_device.h (new) 1.1 +62 -0 src/sbin/atm/atmconfig/atmconfig_device.help (new) 1.4 +147 -2 src/sbin/atm/atmconfig/main.c 1.3 +3 -0 src/sbin/atm/atmconfig/private.h From owner-cvs-all@FreeBSD.ORG Thu Aug 12 12:32:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A38016A4CE; Thu, 12 Aug 2004 12:32:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BDB043D31; Thu, 12 Aug 2004 12:32:14 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCWEjC021118; Thu, 12 Aug 2004 12:32:14 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCWEKn021117; Thu, 12 Aug 2004 12:32:14 GMT (envelope-from tjr) Message-Id: <200408121232.i7CCWEKn021117@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 12:32:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/locale wcwidth.3 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:32:14 -0000 tjr 2004-08-12 12:32:14 UTC FreeBSD src repository Modified files: lib/libc/locale wcwidth.3 Log: Fix example. Revision Changes Path 1.4 +5 -4 src/lib/libc/locale/wcwidth.3 From owner-cvs-all@FreeBSD.ORG Thu Aug 12 12:36:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 973D416A4CE; Thu, 12 Aug 2004 12:36:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7711F43D46; Thu, 12 Aug 2004 12:36:04 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCa4QP021339; Thu, 12 Aug 2004 12:36:04 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCa4br021338; Thu, 12 Aug 2004 12:36:04 GMT (envelope-from tjr) Message-Id: <200408121236.i7CCa4br021338@repoman.freebsd.org> From: "Tim J. Robbins" Date: Thu, 12 Aug 2004 12:36:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:36:04 -0000 tjr 2004-08-12 12:36:04 UTC FreeBSD src repository Modified files: include Makefile Log: Sort in dictionary order. Suggested by: ru Revision Changes Path 1.221 +1 -1 src/include/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 12:39:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 583E516A4CE; Thu, 12 Aug 2004 12:39:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36B5743D1D; Thu, 12 Aug 2004 12:39:34 +0000 (GMT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCdY1u021452; Thu, 12 Aug 2004 12:39:34 GMT (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCdYrd021451; Thu, 12 Aug 2004 12:39:34 GMT (envelope-from markus) Message-Id: <200408121239.i7CCdYrd021451@repoman.freebsd.org> From: Markus Brueffer Date: Thu, 12 Aug 2004 12:39:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/kdirstat/files patch-kdirstatapp.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:39:34 -0000 markus 2004-08-12 12:39:34 UTC FreeBSD ports repository Added files: sysutils/kdirstat/files patch-kdirstatapp.h Log: Fix build with gcc 3.4.2 PR: ports/70077 Submitted by: Christian Hiris <4711@chello.at> Revision Changes Path 1.1 +10 -0 ports/sysutils/kdirstat/files/patch-kdirstatapp.h (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 12:39:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 357AC16A4CE; Thu, 12 Aug 2004 12:39:47 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB97243D41; Thu, 12 Aug 2004 12:39:46 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-13.local ([172.16.0.13] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1BvErv-000EIp-U6; Thu, 12 Aug 2004 14:39:46 +0200 Date: Thu, 12 Aug 2004 14:41:22 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Garrett Wollman From: Oliver Eikemeier In-Reply-To: <200408120007.i7C07U8r078078@khavrinen.lcs.mit.edu> Message-Id: Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: cvs-ports@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: ports-committers@FreeBSD.ORG Subject: Re: cvs commit: CVSROOT modules ports/shells Makefile ports/shells/bash3 Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/shells/bash3/files patch-ac patch-af patch-bashline.c patch-builtins_shopt.def patch-config-bot.h ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:39:47 -0000 Garrett Wollman wrote: > < said: > >> Any reasons for that? Which means, do you actually use it? It conflicts >> with the other bash ports, and the last release was 1996. > > Um, yes, I thought that was obvious. All of my shell universe is > bash1-based. I did a quick survey: - OpenBSD removed bash1 ~ one year ago ("It smells funny.") - NetBSD never had a bash 1.x port - gentoo portage never had a bash 1.x port (I didn't bother to check other OS distributions, although this might be interesting) This means all of your shell universe is FreeBSD-based, which is not bad by itself :). I am aware of but we have to have some procedure to get ride of old, unmaintained ports. It is already marked broken on ia64, and there seem to be no public security review any longer. The point is: Is the bash1 port of public interest? Nothing hinders you to copy the port to /usr/ports/local and keep using it, even when it is deleted from CVS. Or better yet, assume maintainership and save it from being deleted. -Oliver From owner-cvs-all@FreeBSD.ORG Thu Aug 12 12:41:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FFFE16A4D5; Thu, 12 Aug 2004 12:41:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D067343D41; Thu, 12 Aug 2004 12:41:48 +0000 (GMT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCfmuR021599; Thu, 12 Aug 2004 12:41:48 GMT (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCfm3p021598; Thu, 12 Aug 2004 12:41:48 GMT (envelope-from markus) Message-Id: <200408121241.i7CCfm3p021598@repoman.freebsd.org> From: Markus Brueffer Date: Thu, 12 Aug 2004 12:41:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/kkeyled/files patch-ledcfgdia.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:41:49 -0000 markus 2004-08-12 12:41:48 UTC FreeBSD ports repository Added files: sysutils/kkeyled/files patch-ledcfgdia.h Log: Fix build with gcc 3.4.2 PR: ports/70071 Submitted by: Christian Hiris <4711@chello.at> Revision Changes Path 1.1 +13 -0 ports/sysutils/kkeyled/files/patch-ledcfgdia.h (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 12:42:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9D17716A4D0; Thu, 12 Aug 2004 12:42:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D54B43D1D; Thu, 12 Aug 2004 12:42:03 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCg34T021633; Thu, 12 Aug 2004 12:42:03 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCg3Wc021632; Thu, 12 Aug 2004 12:42:03 GMT (envelope-from wilko) Message-Id: <200408121242.i7CCg3Wc021632@repoman.freebsd.org> From: Wilko Bulte Date: Thu, 12 Aug 2004 12:42:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:42:03 -0000 wilko 2004-08-12 12:42:03 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: clarify that both ECC and non-ECC DIMMS work on 164SX. Suggested by: ru Revision Changes Path 1.69 +4 -2 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 12:45:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81E8D16A4CE; Thu, 12 Aug 2004 12:45:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6251F43D2F; Thu, 12 Aug 2004 12:45:56 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCjusT021783; Thu, 12 Aug 2004 12:45:56 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCjuSR021782; Thu, 12 Aug 2004 12:45:56 GMT (envelope-from wilko) Message-Id: <200408121245.i7CCjuSR021782@repoman.freebsd.org> From: Wilko Bulte Date: Thu, 12 Aug 2004 12:45:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:45:56 -0000 wilko 2004-08-12 12:45:56 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/hardware/alpha proc-alpha.sgml Log: Clarify that both ECC and non-ECC DIMMS work on 164SX. Suggested by: ru Revision Changes Path 1.13.2.43 +4 -2 src/release/doc/en_US.ISO8859-1/hardware/alpha/proc-alpha.sgml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 12:48:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD77F16A4CE; Thu, 12 Aug 2004 12:48:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A477B43D31; Thu, 12 Aug 2004 12:48:01 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCm1c1022416; Thu, 12 Aug 2004 12:48:01 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCm1jY022415; Thu, 12 Aug 2004 12:48:01 GMT (envelope-from mat) Message-Id: <200408121248.i7CCm1jY022415@repoman.freebsd.org> From: Mathieu Arnold Date: Thu, 12 Aug 2004 12:48:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/biology/p5-bioperl Makefileports/databases/p5-Class-DBI Makefile ports/devel/cvsmonitor Makefile ports/devel/p5-Data-TemporaryBag Makefile ports/devel/p5-File-Flat Makefile ports/devel/p5-File-Modified Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:48:01 -0000 mat 2004-08-12 12:48:01 UTC FreeBSD ports repository Modified files: biology/p5-bioperl Makefile databases/p5-Class-DBI Makefile devel/cvsmonitor Makefile devel/p5-Data-TemporaryBag Makefile devel/p5-File-Flat Makefile devel/p5-File-Modified Makefile devel/p5-Log-Dispatch-Config Makefile devel/p5-PAR Makefile devel/p5-PatchReader Makefile devel/p5-Test-Reporter Makefile devel/p5-VCP Makefile graphics/netpbm Makefile mail/mailscanner Makefile mail/mailscanner-devel Makefile mail/p5-Mail-GnuPG Makefile misc/mc Makefile net/rude Makefile print/muttprint Makefile textproc/p5-PerlPoint-Package Makefile textproc/p5-XML-SAX Makefile www/dtse Makefile www/p5-Bundle-Sledge Makefile www/p5-Template-Toolkit Makefile www/p5-WWW-Mechanize Makefile www/reportmagic Makefile www/rt2 Makefile www/rt3 Makefile Log: After devel/p5-File-Temp has gained an IGNORE for PERL_LEVEL > 500800, all these ports were broken because they always depended on it. I've rearranged all the dependencies to fit the new scheme. Revision Changes Path 1.12 +3 -1 ports/biology/p5-bioperl/Makefile 1.12 +3 -1 ports/databases/p5-Class-DBI/Makefile 1.6 +7 -2 ports/devel/cvsmonitor/Makefile 1.7 +4 -3 ports/devel/p5-Data-TemporaryBag/Makefile 1.5 +8 -3 ports/devel/p5-File-Flat/Makefile 1.2 +5 -2 ports/devel/p5-File-Modified/Makefile 1.4 +7 -2 ports/devel/p5-Log-Dispatch-Config/Makefile 1.8 +4 -2 ports/devel/p5-PAR/Makefile 1.4 +3 -3 ports/devel/p5-PatchReader/Makefile 1.3 +5 -2 ports/devel/p5-Test-Reporter/Makefile 1.4 +3 -1 ports/devel/p5-VCP/Makefile 1.91 +1 -1 ports/graphics/netpbm/Makefile 1.20 +3 -1 ports/mail/mailscanner-devel/Makefile 1.22 +3 -1 ports/mail/mailscanner/Makefile 1.6 +3 -1 ports/mail/p5-Mail-GnuPG/Makefile 1.99 +1 -1 ports/misc/mc/Makefile 1.2 +8 -3 ports/net/rude/Makefile 1.26 +2 -2 ports/print/muttprint/Makefile 1.5 +3 -3 ports/textproc/p5-PerlPoint-Package/Makefile 1.7 +8 -3 ports/textproc/p5-XML-SAX/Makefile 1.4 +1 -1 ports/www/dtse/Makefile 1.6 +3 -1 ports/www/p5-Bundle-Sledge/Makefile 1.15 +4 -2 ports/www/p5-Template-Toolkit/Makefile 1.9 +3 -1 ports/www/p5-WWW-Mechanize/Makefile 1.10 +8 -3 ports/www/reportmagic/Makefile 1.15 +4 -3 ports/www/rt2/Makefile 1.39 +3 -1 ports/www/rt3/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 12:54:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4813516A4CE; Thu, 12 Aug 2004 12:54:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B98443D31; Thu, 12 Aug 2004 12:54:54 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CCssVo022688; Thu, 12 Aug 2004 12:54:54 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CCssnt022687; Thu, 12 Aug 2004 12:54:54 GMT (envelope-from pav) Message-Id: <200408121254.i7CCssnt022687@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 12 Aug 2004 12:54:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/root Makefile distinfo pkg-plist patch-config::Makefile.freebsd5 patch-config::root-config.in patch-configure patch-gcc34 patch-test::Makefile.arch X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 12:54:54 -0000 pav 2004-08-12 12:54:54 UTC FreeBSD ports repository Modified files: devel/root Makefile distinfo pkg-plist devel/root/files patch-config::Makefile.freebsd4 patch-configure patch-test::Makefile.arch Added files: devel/root/files patch-config::Makefile.freebsd5 patch-config::root-config.in patch-gcc34 Log: - Update to 4.00.06 PR: ports/69274 Submitted by: Simon Lang (maintainer) Revision Changes Path 1.3 +143 -63 ports/devel/root/Makefile 1.2 +2 -2 ports/devel/root/distinfo 1.2 +82 -55 ports/devel/root/files/patch-config::Makefile.freebsd4 1.1 +90 -0 ports/devel/root/files/patch-config::Makefile.freebsd5 (new) 1.1 +28 -0 ports/devel/root/files/patch-config::root-config.in (new) 1.2 +35 -11 ports/devel/root/files/patch-configure 1.1 +51 -0 ports/devel/root/files/patch-gcc34 (new) 1.2 +40 -25 ports/devel/root/files/patch-test::Makefile.arch 1.2 +198 -75 ports/devel/root/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 13:12:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 115D716A4CE; Thu, 12 Aug 2004 13:12:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E346143D39; Thu, 12 Aug 2004 13:12:04 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CDC450023266; Thu, 12 Aug 2004 13:12:04 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CDC4ri023265; Thu, 12 Aug 2004 13:12:04 GMT (envelope-from arved) Message-Id: <200408121312.i7CDC4ri023265@repoman.freebsd.org> From: Tilman Linneweh Date: Thu, 12 Aug 2004 13:12:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/p5-SNMP-Info Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 13:12:05 -0000 arved 2004-08-12 13:12:04 UTC FreeBSD ports repository Modified files: net-mgmt/p5-SNMP-Info Makefile Log: *Oops* forgot PKGNAMEPREFIX Revision Changes Path 1.2 +1 -0 ports/net-mgmt/p5-SNMP-Info/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 13:15:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9B6516A4DE; Thu, 12 Aug 2004 13:15:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 867FC43D46; Thu, 12 Aug 2004 13:15:52 +0000 (GMT) (envelope-from pjd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CDFq85023389; Thu, 12 Aug 2004 13:15:52 GMT (envelope-from pjd@repoman.freebsd.org) Received: (from pjd@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CDFqBn023388; Thu, 12 Aug 2004 13:15:52 GMT (envelope-from pjd) Message-Id: <200408121315.i7CDFqBn023388@repoman.freebsd.org> From: Pawel Jakub Dawidek Date: Thu, 12 Aug 2004 13:15:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/geom/core Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 13:15:53 -0000 pjd 2004-08-12 13:15:52 UTC FreeBSD src repository Modified files: sbin/geom/core Makefile Log: The geom(8) utility needs dynamic linker functionality to work, so it can't be staticaly linked. This fixes problems on systems compiled with NO_DYNAMICROOT. Revision Changes Path 1.9 +2 -0 src/sbin/geom/core/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 13:18:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C04DD16A4CE; Thu, 12 Aug 2004 13:18:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E9FB43D2F; Thu, 12 Aug 2004 13:18:53 +0000 (GMT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CDIrI1023471; Thu, 12 Aug 2004 13:18:53 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CDIroc023470; Thu, 12 Aug 2004 13:18:53 GMT (envelope-from knu) Message-Id: <200408121318.i7CDIroc023470@repoman.freebsd.org> From: Akinori MUSHA Date: Thu, 12 Aug 2004 13:18:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/cvsweb Makefile ports/devel/cvsweb/files patch-cvsweb.conf X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 13:18:53 -0000 knu 2004-08-12 13:18:53 UTC FreeBSD ports repository Modified files: devel/cvsweb Makefile devel/cvsweb/files patch-cvsweb.conf Log: Remove -l from the default cvs(1) options. PR: ports/69854 Submitted by: Marco Trentini Suggested by: scop Replace a hardcoded /usr/local with $PREFIX. Revision Changes Path 1.72 +1 -1 ports/devel/cvsweb/Makefile 1.9 +20 -7 ports/devel/cvsweb/files/patch-cvsweb.conf From owner-cvs-all@FreeBSD.ORG Thu Aug 12 13:38:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E0C716A4CE; Thu, 12 Aug 2004 13:38:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C8EB43D4C; Thu, 12 Aug 2004 13:38:26 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CDcQ81023973; Thu, 12 Aug 2004 13:38:26 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CDcQiv023972; Thu, 12 Aug 2004 13:38:26 GMT (envelope-from vs) Message-Id: <200408121338.i7CDcQiv023972@repoman.freebsd.org> From: Volker Stolz Date: Thu, 12 Aug 2004 13:38:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/cups-base Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 13:38:26 -0000 vs 2004-08-12 13:38:26 UTC FreeBSD ports repository Modified files: print/cups-base Makefile pkg-plist Log: Also keep backups of mime.{convs,types} on upgrades. PR: ports/70195 Requested by: John Merryweather Cooper Patched by: Sergey Akifyev (maintainer) Revision Changes Path 1.39 +1 -4 ports/print/cups-base/Makefile 1.20 +6 -2 ports/print/cups-base/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 13:46:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECD6D16A4CE; Thu, 12 Aug 2004 13:46:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E027643D1F; Thu, 12 Aug 2004 13:46:22 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CDkMlX024204; Thu, 12 Aug 2004 13:46:22 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CDkM8M024203; Thu, 12 Aug 2004 13:46:22 GMT (envelope-from mlaier) Message-Id: <200408121346.i7CDkM8M024203@repoman.freebsd.org> From: Max Laier Date: Thu, 12 Aug 2004 13:46:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: OPENBSD Subject: cvs commit: src/sys/contrib/pf - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 13:46:23 -0000 mlaier 2004-08-12 13:46:22 UTC FreeBSD src repository src/sys/contrib/pf - Imported sources Update of /home/ncvs/src/sys/contrib/pf In directory repoman.freebsd.org:/tmp/cvs-serv24103 Log Message: Import a couple of fixes from OpenBSD-current, which did not make -stable in OpenBSD for various reasons. Discussed with: yongari Status: Vendor Tag: OPENBSD Release Tags: pf_openbsd_3_5_003 U src/sys/contrib/pf/net/if_pflog.c U src/sys/contrib/pf/net/if_pflog.h U src/sys/contrib/pf/net/if_pfsync.c U src/sys/contrib/pf/net/if_pfsync.h C src/sys/contrib/pf/net/pf.c C src/sys/contrib/pf/net/pf_if.c U src/sys/contrib/pf/net/pf_ioctl.c C src/sys/contrib/pf/net/pf_norm.c U src/sys/contrib/pf/net/pf_osfp.c U src/sys/contrib/pf/net/pf_table.c C src/sys/contrib/pf/net/pfvar.h U src/sys/contrib/pf/netinet/in4_cksum.c 4 conflicts created by this import. Use the following command to help the merge: cvs checkout -jOPENBSD:yesterday -jOPENBSD src/sys/contrib/pf From owner-cvs-all@FreeBSD.ORG Thu Aug 12 13:50:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36D4516A4CE; Thu, 12 Aug 2004 13:50:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10A4543D58; Thu, 12 Aug 2004 13:50:03 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CDo28E024322; Thu, 12 Aug 2004 13:50:02 GMT (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CDo2dH024321; Thu, 12 Aug 2004 13:50:02 GMT (envelope-from adamw) Message-Id: <200408121350.i7CDo2dH024321@repoman.freebsd.org> From: Adam Weinberger Date: Thu, 12 Aug 2004 13:50:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/deskutils/logjam/files patch-src::network-libxml.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 13:50:03 -0000 adamw 2004-08-12 13:50:02 UTC FreeBSD ports repository Added files: deskutils/logjam/files patch-src::network-libxml.c Log: Fix build with gcc 3.4. Revision Changes Path 1.1 +11 -0 ports/deskutils/logjam/files/patch-src::network-libxml.c (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 13:51:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E927616A4CE for ; Thu, 12 Aug 2004 13:51:01 +0000 (GMT) Received: from mail1.speakeasy.net (mail1.speakeasy.net [216.254.0.201]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9804843D58 for ; Thu, 12 Aug 2004 13:51:01 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 29518 invoked from network); 12 Aug 2004 13:51:01 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 12 Aug 2004 13:51:00 -0000 Received: from [10.50.41.91] (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i7CDop22099923; Thu, 12 Aug 2004 09:50:57 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Jeff Roberson Date: Thu, 12 Aug 2004 09:50:08 -0400 User-Agent: KMail/1.6.2 References: <200408100752.i7A7qMYI000506@repoman.freebsd.org> <200408100918.45387.jhb@FreeBSD.org> In-Reply-To: <200408100918.45387.jhb@FreeBSD.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408120950.08724.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 13:51:02 -0000 On Tuesday 10 August 2004 09:18 am, John Baldwin wrote: > On Tuesday 10 August 2004 03:52 am, Jeff Roberson wrote: > > jeff 2004-08-10 07:52:22 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/kern sched_ule.c > > Log: > > - Use a new flag, KEF_XFERABLE, to record with certainty that this kse > > had contributed to the transferable load count. This prevents any > > potential problems with sched_pin() being used around calls to > > setrunqueue(). - Change the sched_add() load balancing algorithm to try > > to migrate on wakeup. This attempts to place threads that communicate > > with each other on the same CPU. > > - Don't clear the idle counts in kseq_transfer(), let the cpus do that > > when they call sched_add() from kseq_assign(). > > - Correct a few out of date comments. > > - Make sure the ke_cpu field is correct when we preempt. > > - Call kseq_assign() from sched_clock() to catch any assignments that > > were done without IPI. Presently all assignments are done with an IPI, > > but I'm trying a patch that limits that. > > - Don't migrate a thread if it is still runnable in sched_add(). > > Previously, this could only happen for KSE threads, but due to changes to > > sched_switch() all threads went through this path. > > - Remove some code that was added with preemption but is not > > necessary. > > Couple of comments: > > 1) TDF_NEEDRESCHED is still needed as that is what manages user-level > preemptions. Kernel preemption does not normally preempt threads at > user-level priorities (see the code in maybe_preempt() for a comment with > more detailed info). > > 2) Can a thread bound to CPU B ever be put on the runqueue via > setrunqueue() by a thread on CPU A? If so, you need to keep the > SMP-specific migration check before the call to maybe_preempt() so that you > don't end up running the new thread on CPU A even though it is supposed to > run on CPU B. I'm pretty sure 2) can happen during say, a sleepq_broadcast() or sleepq_signal() operation. Also for turnstile wakeups which can wakeup arbitrary threads on arbitrary CPUs. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-all@FreeBSD.ORG Thu Aug 12 13:54:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AECF416A4CE; Thu, 12 Aug 2004 13:54:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8CFE543D5C; Thu, 12 Aug 2004 13:54:50 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CDsoIq024499; Thu, 12 Aug 2004 13:54:50 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CDsom7024498; Thu, 12 Aug 2004 13:54:50 GMT (envelope-from mlaier) Message-Id: <200408121354.i7CDsom7024498@repoman.freebsd.org> From: Max Laier Date: Thu, 12 Aug 2004 13:54:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/contrib/pf/net pf_if.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 13:54:50 -0000 mlaier 2004-08-12 13:54:50 UTC FreeBSD src repository Modified files: sys/contrib/pf/net pf_if.c Log: Loopback fix from Henning Brauer: skip over interface addresses without IFA_ROUTE, fixes some issue with pppd PR: misc/69954 Revision Changes Path 1.4 +4 -0 src/sys/contrib/pf/net/pf_if.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 13:59:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 810F516A4CE; Thu, 12 Aug 2004 13:59:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5C7F743D1D; Thu, 12 Aug 2004 13:59:44 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CDxiIa024667; Thu, 12 Aug 2004 13:59:44 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CDxiHD024666; Thu, 12 Aug 2004 13:59:44 GMT (envelope-from mlaier) Message-Id: <200408121359.i7CDxiHD024666@repoman.freebsd.org> From: Max Laier Date: Thu, 12 Aug 2004 13:59:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/contrib/pf/net pf.c pf_norm.c pfvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 13:59:44 -0000 mlaier 2004-08-12 13:59:44 UTC FreeBSD src repository Modified files: sys/contrib/pf/net pf.c pf_norm.c pfvar.h Log: Loopback fix from Daniel Hartmeier: pf_cksum_fixup() was called without last argument from normalization, also fixup checksum when random-id modifies ip_id. This would previously lead to incorrect checksums for packets modified by scrub random-id. (Originally) Submitted by: yongari Revision Changes Path 1.18 +1 -2 src/sys/contrib/pf/net/pf.c 1.9 +9 -5 src/sys/contrib/pf/net/pf_norm.c 1.8 +3 -0 src/sys/contrib/pf/net/pfvar.h From owner-cvs-all@FreeBSD.ORG Thu Aug 12 14:02:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9BAAB16A4CE; Thu, 12 Aug 2004 14:02:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74EA243D54; Thu, 12 Aug 2004 14:02:41 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CE2fZn024827; Thu, 12 Aug 2004 14:02:41 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CE2fZ7024826; Thu, 12 Aug 2004 14:02:41 GMT (envelope-from mat) Message-Id: <200408121402.i7CE2fZ7024826@repoman.freebsd.org> From: Mathieu Arnold Date: Thu, 12 Aug 2004 14:02:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Log-Dispatch Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 14:02:41 -0000 mat 2004-08-12 14:02:41 UTC FreeBSD ports repository Modified files: devel/p5-Log-Dispatch Makefile Log: Is not interactive when BATCH is on Needed because of: pav's supplications ;-) Revision Changes Path 1.13 +2 -0 ports/devel/p5-Log-Dispatch/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 14:10:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E395F16A4CE; Thu, 12 Aug 2004 14:10:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D65AD43D31; Thu, 12 Aug 2004 14:10:08 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CEA8As025023; Thu, 12 Aug 2004 14:10:08 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CEA8VG025022; Thu, 12 Aug 2004 14:10:08 GMT (envelope-from mlaier) Message-Id: <200408121410.i7CEA8VG025022@repoman.freebsd.org> From: Max Laier Date: Thu, 12 Aug 2004 14:10:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: OPENBSD Subject: cvs commit: src/sys/contrib/pf - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 14:10:09 -0000 mlaier 2004-08-12 14:10:08 UTC FreeBSD src repository src/sys/contrib/pf - Imported sources Update of /home/ncvs/src/sys/contrib/pf In directory repoman.freebsd.org:/tmp/cvs-serv24980 Log Message: Import a fix from the OpenBSD-stable branch, that slipped by my previous import. Sorry. Status: Vendor Tag: OPENBSD Release Tags: pf_openbsd_3_5_004 U src/sys/contrib/pf/net/if_pflog.c U src/sys/contrib/pf/net/if_pflog.h U src/sys/contrib/pf/net/if_pfsync.c U src/sys/contrib/pf/net/if_pfsync.h U src/sys/contrib/pf/net/pf.c U src/sys/contrib/pf/net/pf_if.c C src/sys/contrib/pf/net/pf_ioctl.c U src/sys/contrib/pf/net/pf_norm.c U src/sys/contrib/pf/net/pf_osfp.c U src/sys/contrib/pf/net/pf_table.c U src/sys/contrib/pf/net/pfvar.h U src/sys/contrib/pf/netinet/in4_cksum.c 1 conflicts created by this import. Use the following command to help the merge: cvs checkout -jOPENBSD:yesterday -jOPENBSD src/sys/contrib/pf From owner-cvs-all@FreeBSD.ORG Thu Aug 12 14:15:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C76D116A4CE; Thu, 12 Aug 2004 14:15:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2E3943D58; Thu, 12 Aug 2004 14:15:36 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CEFaUM025280; Thu, 12 Aug 2004 14:15:36 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CEFaWh025279; Thu, 12 Aug 2004 14:15:36 GMT (envelope-from vs) Message-Id: <200408121415.i7CEFaWh025279@repoman.freebsd.org> From: Volker Stolz Date: Thu, 12 Aug 2004 14:15:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/hs-happy Makefile distinfo pkg-plist ports/devel/hs-happy/files patch-happy::src::Parser.hs X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 14:15:36 -0000 vs 2004-08-12 14:15:36 UTC FreeBSD ports repository Modified files: devel/hs-happy Makefile distinfo pkg-plist Removed files: devel/hs-happy/files patch-happy::src::Parser.hs Log: Update to 1.14 Revision Changes Path 1.14 +1 -2 ports/devel/hs-happy/Makefile 1.6 +2 -2 ports/devel/hs-happy/distinfo 1.2 +0 -710 ports/devel/hs-happy/files/patch-happy::src::Parser.hs (dead) 1.5 +9 -10 ports/devel/hs-happy/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 14:15:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E1CCA16A4CF; Thu, 12 Aug 2004 14:15:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBF4643D5C; Thu, 12 Aug 2004 14:15:42 +0000 (GMT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CEFggG025313; Thu, 12 Aug 2004 14:15:42 GMT (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CEFgac025312; Thu, 12 Aug 2004 14:15:42 GMT (envelope-from mlaier) Message-Id: <200408121415.i7CEFgac025312@repoman.freebsd.org> From: Max Laier Date: Thu, 12 Aug 2004 14:15:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/contrib/pf/net pf_ioctl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 14:15:43 -0000 mlaier 2004-08-12 14:15:42 UTC FreeBSD src repository Modified files: sys/contrib/pf/net pf_ioctl.c Log: Loopback fix from Mathieu Sauve-Frankel: Add missing check for NULL in DIOCCHANGERULE. This prevents a crash in certain rare cases. Revision Changes Path 1.12 +3 -2 src/sys/contrib/pf/net/pf_ioctl.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 14:17:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F383B16A4CE; Thu, 12 Aug 2004 14:17:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D19AB43D60; Thu, 12 Aug 2004 14:17:13 +0000 (GMT) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CEHDIW025410; Thu, 12 Aug 2004 14:17:13 GMT (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CEHDJ4025409; Thu, 12 Aug 2004 14:17:13 GMT (envelope-from gerald) Message-Id: <200408121417.i7CEHDJ4025409@repoman.freebsd.org> From: Gerald Pfeifer Date: Thu, 12 Aug 2004 14:17:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc34 Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 14:17:14 -0000 gerald 2004-08-12 14:17:13 UTC FreeBSD ports repository Modified files: lang/gcc34 Makefile distinfo Log: Update to the 20040806 snapshot off GCC 3.4. Revision Changes Path 1.176 +1 -1 ports/lang/gcc34/Makefile 1.88 +12 -12 ports/lang/gcc34/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 12 14:16:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07C8116A4CE; Thu, 12 Aug 2004 14:16:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8B9743D55; Thu, 12 Aug 2004 14:16:01 +0000 (GMT) (envelope-from adamw@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CEG177025356; Thu, 12 Aug 2004 14:16:01 GMT (envelope-from adamw@repoman.freebsd.org) Received: (from adamw@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CEG1Pk025355; Thu, 12 Aug 2004 14:16:01 GMT (envelope-from adamw) Message-Id: <200408121416.i7CEG1Pk025355@repoman.freebsd.org> From: Adam Weinberger Date: Thu, 12 Aug 2004 14:16:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/screem/files patch-libegg::toolbar::eggtoolbar.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 14:16:02 -0000 adamw 2004-08-12 14:16:01 UTC FreeBSD ports repository Added files: www/screem/files patch-libegg::toolbar::eggtoolbar.c Log: Fix build with gcc 3.4. Revision Changes Path 1.1 +20 -0 ports/www/screem/files/patch-libegg::toolbar::eggtoolbar.c (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 14:22:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9126516A4CE; Thu, 12 Aug 2004 14:22:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D77743D49; Thu, 12 Aug 2004 14:22:00 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CEM0wu025645; Thu, 12 Aug 2004 14:22:00 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CEM0cu025644; Thu, 12 Aug 2004 14:22:00 GMT (envelope-from harti) Message-Id: <200408121422.i7CEM0cu025644@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 12 Aug 2004 14:22:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph/atm ng_ccatm.hsrc/sys/netgraph/atm/ccatm ng_ccatm.c ng_ccatm_cust.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 14:22:00 -0000 harti 2004-08-12 14:22:00 UTC FreeBSD src repository Added files: sys/netgraph/atm ng_ccatm.h sys/netgraph/atm/ccatm ng_ccatm.c ng_ccatm_cust.h Log: This is the netgraph node framework for the user side call control node for ATM. This node implements the API to the signalling services. Revision Changes Path 1.1 +1198 -0 src/sys/netgraph/atm/ccatm/ng_ccatm.c (new) 1.1 +54 -0 src/sys/netgraph/atm/ccatm/ng_ccatm_cust.h (new) 1.1 +170 -0 src/sys/netgraph/atm/ng_ccatm.h (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 14:24:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 59BE216A4CE; Thu, 12 Aug 2004 14:24:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 357E943D4C; Thu, 12 Aug 2004 14:24:33 +0000 (GMT) (envelope-from clive@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CEOXkp025701; Thu, 12 Aug 2004 14:24:33 GMT (envelope-from clive@repoman.freebsd.org) Received: (from clive@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CEOXEN025700; Thu, 12 Aug 2004 14:24:33 GMT (envelope-from clive) Message-Id: <200408121424.i7CEOXEN025700@repoman.freebsd.org> From: Clive Lin Date: Thu, 12 Aug 2004 14:24:33 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/l10n chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 14:24:33 -0000 clive 2004-08-12 14:24:33 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/books/handbook/l10n chapter.sgml Log: * Replace ancient zh-L10N-tut with a modern successor: * FreeBSD Chinese HOWTO serves us for quite a while. * Document maintainer changed as well. * Remove cvsup resources no more available: * outta-port * zh-L10N-tut * zh-doc * Correct statue's (editor of FreeBSD Chinese HOWTO) email. Revision Changes Path 1.99 +7 -40 doc/en_US.ISO8859-1/books/handbook/l10n/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 14:28:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5261516A4CF; Thu, 12 Aug 2004 14:28:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D73943D58; Thu, 12 Aug 2004 14:28:05 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CES4BD025855; Thu, 12 Aug 2004 14:28:04 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CES4kJ025854; Thu, 12 Aug 2004 14:28:04 GMT (envelope-from mat) Message-Id: <200408121428.i7CES4kJ025854@repoman.freebsd.org> From: Mathieu Arnold Date: Thu, 12 Aug 2004 14:28:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Test-Reporter Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 14:28:05 -0000 mat 2004-08-12 14:28:04 UTC FreeBSD ports repository Modified files: devel/p5-Test-Reporter Makefile Log: Fix index Pointy hat to: me Revision Changes Path 1.4 +0 -1 ports/devel/p5-Test-Reporter/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 14:58:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4833116A4CE; Thu, 12 Aug 2004 14:58:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 24D1343D1F; Thu, 12 Aug 2004 14:58:47 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CEwl7e027260; Thu, 12 Aug 2004 14:58:47 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CEwlYu027259; Thu, 12 Aug 2004 14:58:47 GMT (envelope-from harti) Message-Id: <200408121458.i7CEwlYu027259@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 12 Aug 2004 14:58:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/netgraph/atm Makefile src/sys/modules/netgraph/atm/ccatm Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 14:58:47 -0000 harti 2004-08-12 14:58:47 UTC FreeBSD src repository Modified files: sys/modules/netgraph/atm Makefile Added files: sys/modules/netgraph/atm/ccatm Makefile Log: Add the module build stuff for the ATM call control module. Revision Changes Path 1.5 +1 -0 src/sys/modules/netgraph/atm/Makefile 1.1 +17 -0 src/sys/modules/netgraph/atm/ccatm/Makefile (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 15:00:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A987A16A4CE; Thu, 12 Aug 2004 15:00:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85D8943D2F; Thu, 12 Aug 2004 15:00:12 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CF0ChS027315; Thu, 12 Aug 2004 15:00:12 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CF0CuC027314; Thu, 12 Aug 2004 15:00:12 GMT (envelope-from blackend) Message-Id: <200408121500.i7CF0CuC027314@repoman.freebsd.org> From: Marc Fonvieille Date: Thu, 12 Aug 2004 15:00:12 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/share/sgml freebsd.dsl X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 15:00:12 -0000 blackend 2004-08-12 15:00:12 UTC FreeBSD doc repository Modified files: share/sgml freebsd.dsl Log: Add output.rtf.images entry. This will be used with the rtf backend to specify the image extension (png) and force callouts text markers. The callout markers from 1 to 9 are not correctly rendered under OpenOffice (I don't know about other rtf viewers). I don't have a solution for this problem for the moment. Revision Changes Path 1.81 +13 -0 doc/share/sgml/freebsd.dsl From owner-cvs-all@FreeBSD.ORG Thu Aug 12 15:02:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 339EE16A4CE; Thu, 12 Aug 2004 15:02:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 117E543D45; Thu, 12 Aug 2004 15:02:00 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CF1xjg027479; Thu, 12 Aug 2004 15:01:59 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CF1xiB027478; Thu, 12 Aug 2004 15:01:59 GMT (envelope-from harti) Message-Id: <200408121501.i7CF1xiB027478@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 12 Aug 2004 15:01:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES files options X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 15:02:00 -0000 harti 2004-08-12 15:01:59 UTC FreeBSD src repository Modified files: sys/conf NOTES files options Log: Allow the ATM call control module to be built into the kernel. Revision Changes Path 1.1257 +1 -0 src/sys/conf/NOTES 1.939 +8 -0 src/sys/conf/files 1.471 +1 -0 src/sys/conf/options From owner-cvs-all@FreeBSD.ORG Thu Aug 12 15:09:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3CA7616A4CE; Thu, 12 Aug 2004 15:09:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A81743D5D; Thu, 12 Aug 2004 15:09:06 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CF96Vd027718; Thu, 12 Aug 2004 15:09:06 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CF95AH027717; Thu, 12 Aug 2004 15:09:05 GMT (envelope-from blackend) Message-Id: <200408121509.i7CF95AH027717@repoman.freebsd.org> From: Marc Fonvieille Date: Thu, 12 Aug 2004 15:09:05 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/share/mk doc.docbook.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 15:09:06 -0000 blackend 2004-08-12 15:09:05 UTC FreeBSD doc repository Modified files: share/mk doc.docbook.mk Log: Fix the RTF build: Jade is not able to embed images but links them instead, so images have to be installed with the .rtf document (it's similar to the HTML case). I added a new format: rtf.tar which is a better solution than using rtf since the images are not embedded. make FORMATS=rtf.tar is your friend :) Revision Changes Path 1.115 +22 -2 doc/share/mk/doc.docbook.mk From owner-cvs-all@FreeBSD.ORG Thu Aug 12 15:15:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 06AC116A4CE; Thu, 12 Aug 2004 15:15:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D945143D39; Thu, 12 Aug 2004 15:15:05 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CFF5sd027884; Thu, 12 Aug 2004 15:15:05 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CFF59K027883; Thu, 12 Aug 2004 15:15:05 GMT (envelope-from netchild) Message-Id: <200408121515.i7CFF59K027883@repoman.freebsd.org> From: Alexander Leidinger Date: Thu, 12 Aug 2004 15:15:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/modlogan Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 15:15:06 -0000 netchild 2004-08-12 15:15:05 UTC FreeBSD ports repository Modified files: textproc/modlogan Makefile distinfo Log: Update to 0.8.12: - memory usage decreased - %D support for input_clf Revision Changes Path 1.34 +2 -2 ports/textproc/modlogan/Makefile 1.18 +2 -2 ports/textproc/modlogan/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 12 15:31:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 336F616A4CF; Thu, 12 Aug 2004 15:31:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDE7343D31; Thu, 12 Aug 2004 15:31:01 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CFV1DW028335; Thu, 12 Aug 2004 15:31:01 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CFV1t1028334; Thu, 12 Aug 2004 15:31:01 GMT (envelope-from arved) Message-Id: <200408121531.i7CFV1t1028334@repoman.freebsd.org> From: Tilman Linneweh Date: Thu, 12 Aug 2004 15:31:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/libsocket++/files patch-sig.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 15:31:02 -0000 arved 2004-08-12 15:31:01 UTC FreeBSD ports repository Added files: net/libsocket++/files patch-sig.cpp Log: Fix build with gcc3.4 Obtained from: author Revision Changes Path 1.1 +11 -0 ports/net/libsocket++/files/patch-sig.cpp (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 15:33:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2A84A16A4D0 for ; Thu, 12 Aug 2004 15:33:07 +0000 (GMT) Received: from mail4.speakeasy.net (mail4.speakeasy.net [216.254.0.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDF5D43D31 for ; Thu, 12 Aug 2004 15:33:06 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: (qmail 17971 invoked from network); 12 Aug 2004 15:33:06 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 12 Aug 2004 15:33:05 -0000 Received: from [10.50.41.91] (gw1.twc.weather.com [216.133.140.1]) (authenticated bits=0) by server.baldwin.cx (8.12.11/8.12.11) with ESMTP id i7CFX2OG000524; Thu, 12 Aug 2004 11:33:02 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Jeff Roberson Date: Thu, 12 Aug 2004 10:04:20 -0400 User-Agent: KMail/1.6.2 References: <200408100752.i7A7qMYI000506@repoman.freebsd.org> <200408100918.45387.jhb@FreeBSD.org> <200408120950.08724.jhb@FreeBSD.org> In-Reply-To: <200408120950.08724.jhb@FreeBSD.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408121004.20078.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern sched_ule.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 15:33:07 -0000 On Thursday 12 August 2004 09:50 am, John Baldwin wrote: > On Tuesday 10 August 2004 09:18 am, John Baldwin wrote: > > On Tuesday 10 August 2004 03:52 am, Jeff Roberson wrote: > > > jeff 2004-08-10 07:52:22 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/kern sched_ule.c > > > Log: > > > - Use a new flag, KEF_XFERABLE, to record with certainty that this > > > kse had contributed to the transferable load count. This prevents any > > > potential problems with sched_pin() being used around calls to > > > setrunqueue(). - Change the sched_add() load balancing algorithm to try > > > to migrate on wakeup. This attempts to place threads that communicate > > > with each other on the same CPU. > > > - Don't clear the idle counts in kseq_transfer(), let the cpus do > > > that when they call sched_add() from kseq_assign(). > > > - Correct a few out of date comments. > > > - Make sure the ke_cpu field is correct when we preempt. > > > - Call kseq_assign() from sched_clock() to catch any assignments > > > that were done without IPI. Presently all assignments are done with an > > > IPI, but I'm trying a patch that limits that. > > > - Don't migrate a thread if it is still runnable in sched_add(). > > > Previously, this could only happen for KSE threads, but due to changes > > > to sched_switch() all threads went through this path. > > > - Remove some code that was added with preemption but is not > > > necessary. > > > > Couple of comments: > > > > 1) TDF_NEEDRESCHED is still needed as that is what manages user-level > > preemptions. Kernel preemption does not normally preempt threads at > > user-level priorities (see the code in maybe_preempt() for a comment with > > more detailed info). > > > > 2) Can a thread bound to CPU B ever be put on the runqueue via > > setrunqueue() by a thread on CPU A? If so, you need to keep the > > SMP-specific migration check before the call to maybe_preempt() so that > > you don't end up running the new thread on CPU A even though it is > > supposed to run on CPU B. > > I'm pretty sure 2) can happen during say, a sleepq_broadcast() or > sleepq_signal() operation. Also for turnstile wakeups which can wakeup > arbitrary threads on arbitrary CPUs. Nevermind, have been educated off-list. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ From owner-cvs-all@FreeBSD.ORG Thu Aug 12 15:46:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC38F16A4CE; Thu, 12 Aug 2004 15:46:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99C2C43D1F; Thu, 12 Aug 2004 15:46:05 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CFk5n4028769; Thu, 12 Aug 2004 15:46:05 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CFk5S1028768; Thu, 12 Aug 2004 15:46:05 GMT (envelope-from pav) Message-Id: <200408121546.i7CFk5S1028768@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 12 Aug 2004 15:46:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/rt3 Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 15:46:05 -0000 pav 2004-08-12 15:46:05 UTC FreeBSD ports repository Modified files: www/rt3 Makefile pkg-plist Log: - Fix plist PR: ports/68980 Submitted by: Palle Girgensohn Approved by: maintainer timeout (3 weeks) Revision Changes Path 1.40 +1 -0 ports/www/rt3/Makefile 1.10 +14 -0 ports/www/rt3/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 15:56:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04EAF16A4CE; Thu, 12 Aug 2004 15:56:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D697A43D48; Thu, 12 Aug 2004 15:56:04 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CFu47P029076; Thu, 12 Aug 2004 15:56:04 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CFu4wu029075; Thu, 12 Aug 2004 15:56:04 GMT (envelope-from nork) Message-Id: <200408121556.i7CFu4wu029075@repoman.freebsd.org> From: Norikatsu Shigemura Date: Thu, 12 Aug 2004 15:56:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/libsidplay Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 15:56:05 -0000 nork 2004-08-12 15:56:04 UTC FreeBSD ports repository Modified files: audio/libsidplay Makefile distinfo Log: Update to 1.36.58. PR: ports/69917 Submitted by: Paul Seniura Approved by: Stefan `Sec` Zehl (maintainer) Revision Changes Path 1.28 +1 -1 ports/audio/libsidplay/Makefile 1.16 +2 -2 ports/audio/libsidplay/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 12 16:01:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9842116A597; Thu, 12 Aug 2004 16:01:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6B0643D62; Thu, 12 Aug 2004 16:00:47 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CG0lN6029211; Thu, 12 Aug 2004 16:00:47 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CG0l0e029210; Thu, 12 Aug 2004 16:00:47 GMT (envelope-from arved) Message-Id: <200408121600.i7CG0l0e029210@repoman.freebsd.org> From: Tilman Linneweh Date: Thu, 12 Aug 2004 16:00:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics Makefileports/graphics/p5-Graph-ReadWrite Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:01:08 -0000 arved 2004-08-12 16:00:47 UTC FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/p5-Graph-ReadWrite Makefile distinfo pkg-descr pkg-plist Log: Add p5-Graph-ReadWrite, reads and writes various graph formats Revision Changes Path 1.721 +1 -0 ports/graphics/Makefile 1.1 +29 -0 ports/graphics/p5-Graph-ReadWrite/Makefile (new) 1.1 +2 -0 ports/graphics/p5-Graph-ReadWrite/distinfo (new) 1.1 +6 -0 ports/graphics/p5-Graph-ReadWrite/pkg-descr (new) 1.1 +14 -0 ports/graphics/p5-Graph-ReadWrite/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 16:02:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9550916A4CE; Thu, 12 Aug 2004 16:02:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72A3943D1D; Thu, 12 Aug 2004 16:02:25 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CG2PhA029333; Thu, 12 Aug 2004 16:02:25 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CG2POx029332; Thu, 12 Aug 2004 16:02:25 GMT (envelope-from sem) Message-Id: <200408121602.i7CG2POx029332@repoman.freebsd.org> From: Sergey Matveychuk Date: Thu, 12 Aug 2004 16:02:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/archivers/p7zip Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:02:25 -0000 sem 2004-08-12 16:02:25 UTC FreeBSD ports repository Modified files: archivers/p7zip Makefile Log: Add quotes to BROKEN Submitted by: maintainer Noticed by: lioux Revision Changes Path 1.2 +1 -1 ports/archivers/p7zip/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 16:06:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD93116A4CE; Thu, 12 Aug 2004 16:06:17 +0000 (GMT) Received: from sirius.firepipe.net (sirius.firepipe.net [69.13.116.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCCDE43D39; Thu, 12 Aug 2004 16:06:17 +0000 (GMT) (envelope-from will@csociety.org) Received: by sirius.firepipe.net (Postfix, from userid 1000) id 6D98C18100; Thu, 12 Aug 2004 11:06:17 -0500 (EST) Date: Thu, 12 Aug 2004 11:06:17 -0500 From: Will Andrews To: Doug Barton Message-ID: <20040812160617.GK32036@sirius.firepipe.net> Mail-Followup-To: Doug Barton , Oliver Eikemeier , Edwin Groothuis , "ports-committers@FreeBSD.org" , "cvs-ports@FreeBSD.org" , "cvs-all@FreeBSD.org" References: <441CD44F-EBF6-11D8-887A-00039312D914@fillmore-labs.com> <20040811175038.M54010@ync.qbhto.arg> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="OX2aLCKeO1apYW07" Content-Disposition: inline In-Reply-To: <20040811175038.M54010@ync.qbhto.arg> User-Agent: Mutt/1.5.6i cc: "cvs-ports@FreeBSD.org" cc: Edwin Groothuis cc: "ports-committers@FreeBSD.org" cc: "cvs-all@FreeBSD.org" cc: Oliver Eikemeier Subject: Re: cvs commit: ports/dns Makefile ports/dns/bind93 Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:06:18 -0000 --OX2aLCKeO1apYW07 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 11, 2004 at 06:05:24PM -0700, Doug Barton wrote: > Second, there is quite frankly no significant history _of the BIND 9=20 > port_ to preserve. If you had bothered to check the CVS history instead= =20 > of simply offering a knee-jerk reaction then you would have already=20 > known this. Alternatively, if you did check the history, and there is=20 > something there that you think needs to be preserved at all costs,=20 > please state your case so that we can discuss it. What you've done is irreversible (thanks to cvsup), so there's no point in discussing this further. Regards, --=20 wca --OX2aLCKeO1apYW07 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFBG5V4F47idPgWcsURAknNAKCEwZswmCyzxfQppHfIUsgnXi8TDACdGBVO L1hNxsFwHkbyvotdJmOir78= =Lci1 -----END PGP SIGNATURE----- --OX2aLCKeO1apYW07-- From owner-cvs-all@FreeBSD.ORG Thu Aug 12 16:07:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 81FBA16A4CE; Thu, 12 Aug 2004 16:07:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 614AA43D41; Thu, 12 Aug 2004 16:07:17 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CG7Hx8029553; Thu, 12 Aug 2004 16:07:17 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CG7Hlc029552; Thu, 12 Aug 2004 16:07:17 GMT (envelope-from arved) Message-Id: <200408121607.i7CG7Hlc029552@repoman.freebsd.org> From: Tilman Linneweh Date: Thu, 12 Aug 2004 16:07:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:07:17 -0000 arved 2004-08-12 16:07:17 UTC FreeBSD ports repository Modified files: . modules Log: Add p5-Graph-ReadWrite Revision Changes Path 1.10882 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 12 16:13:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4ABB116A4CE; Thu, 12 Aug 2004 16:13:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26EF743D1D; Thu, 12 Aug 2004 16:13:11 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CGDBKo029772; Thu, 12 Aug 2004 16:13:11 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CGDBs6029771; Thu, 12 Aug 2004 16:13:11 GMT (envelope-from sem) Message-Id: <200408121613.i7CGDBs6029771@repoman.freebsd.org> From: Sergey Matveychuk Date: Thu, 12 Aug 2004 16:13:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/gatling Makefile pkg-descr ports/www/gatling/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:13:11 -0000 sem 2004-08-12 16:13:11 UTC FreeBSD ports repository Modified files: www/gatling Makefile pkg-descr www/gatling/files patch-Makefile Log: Fix a manpage install Fix build on 4.x PR: ports/70111 Submitted by: maintainer Revision Changes Path 1.5 +7 -2 ports/www/gatling/Makefile 1.3 +10 -3 ports/www/gatling/files/patch-Makefile 1.2 +1 -1 ports/www/gatling/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Aug 12 16:21:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32FA916A4E5; Thu, 12 Aug 2004 16:21:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1185C43D3F; Thu, 12 Aug 2004 16:21:54 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CGLrCe030069; Thu, 12 Aug 2004 16:21:53 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CGLrFq030068; Thu, 12 Aug 2004 16:21:53 GMT (envelope-from lofi) Message-Id: <200408121621.i7CGLrFq030068@repoman.freebsd.org> From: Michael Nottebrock Date: Thu, 12 Aug 2004 16:21:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/kde3 Makefile.kde X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:21:54 -0000 lofi 2004-08-12 16:21:53 UTC FreeBSD ports repository Modified files: x11/kde3 Makefile.kde Log: Forgot to commit this bit, without it the koffice-i18n ports break. Revision Changes Path 1.27 +2 -2 ports/x11/kde3/Makefile.kde From owner-cvs-all@FreeBSD.ORG Thu Aug 12 16:35:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8B1D416A4CE; Thu, 12 Aug 2004 16:35:57 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1865243D3F; Thu, 12 Aug 2004 16:35:57 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-13.local ([172.16.0.13] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1BvIYT-0008tS-WE; Thu, 12 Aug 2004 18:35:56 +0200 Date: Thu, 12 Aug 2004 18:37:31 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Will Andrews From: Oliver Eikemeier In-Reply-To: <20040812160617.GK32036@sirius.firepipe.net> Message-Id: Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: cvs-ports@FreeBSD.org cc: Edwin Groothuis cc: Doug Barton cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/dns Makefile ports/dns/bind93 Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:35:57 -0000 Will Andrews wrote: > On Wed, Aug 11, 2004 at 06:05:24PM -0700, Doug Barton wrote: >> Second, there is quite frankly no significant history _of the BIND 9 >> port_ to preserve. If you had bothered to check the CVS history instead >> of simply offering a knee-jerk reaction then you would have already >> known this. Alternatively, if you did check the history, and there is >> something there that you think needs to be preserved at all costs, >> please state your case so that we can discuss it. > > What you've done is irreversible (thanks to cvsup), so there's no > point in discussing this further. FWIIW, we could repocopy bind9 to bind92 and upgrade the bind9 port to 9.3 when the 9.3 branch is stable. -Oliver From owner-cvs-all@FreeBSD.ORG Thu Aug 12 16:36:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 581CD16A4CE; Thu, 12 Aug 2004 16:36:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35FCC43D1F; Thu, 12 Aug 2004 16:36:52 +0000 (GMT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CGaqAM030477; Thu, 12 Aug 2004 16:36:52 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CGaqjk030476; Thu, 12 Aug 2004 16:36:52 GMT (envelope-from kan) Message-Id: <200408121636.i7CGaqjk030476@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 12 Aug 2004 16:36:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/cc/cc_int Makefilesrc/gnu/usr.bin/cc/cc_tools Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:36:52 -0000 kan 2004-08-12 16:36:52 UTC FreeBSD src repository Modified files: gnu/usr.bin/cc/cc_int Makefile gnu/usr.bin/cc/cc_tools Makefile Log: Consolidate libiberty files in one place and avoid listing some of them in several places. Noticed by: bsdimp Revision Changes Path 1.44 +3 -4 src/gnu/usr.bin/cc/cc_int/Makefile 1.79 +9 -11 src/gnu/usr.bin/cc/cc_tools/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 16:40:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 239E516A4CE; Thu, 12 Aug 2004 16:40:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0217F43D53; Thu, 12 Aug 2004 16:40:27 +0000 (GMT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CGeQ36031775; Thu, 12 Aug 2004 16:40:26 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CGeQgo031774; Thu, 12 Aug 2004 16:40:26 GMT (envelope-from kan) Message-Id: <200408121640.i7CGeQgo031774@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 12 Aug 2004 16:40:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: FSF Subject: cvs commit: src/contrib/gcc .brik .cvsignore BUGS NEWS README acconfig.h cccp.1 config.guess configure.frag configure.in cppmain.c dbxstclass.h doschk.c dwarfout.c floatlib.c future.options getopt.c getopt.h getopt1.c location.h mbchar.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:40:27 -0000 kan 2004-08-12 16:40:26 UTC FreeBSD src repository Removed files: (Branch: FSF) contrib/gcc .brik .cvsignore BUGS NEWS README acconfig.h cccp.1 config.guess configure.frag configure.in cppmain.c dbxstclass.h doschk.c dwarfout.c floatlib.c future.options getopt.c getopt.h getopt1.c location.h mbchar.c mbchar.h pexecute.c profile.h ssa-ccp.c ssa-dce.c ssa.c ssa.h unwind-libunwind.c contrib/gcc/config aoutos.h freebsd3.h freebsd4.h freebsd5.h freebsd6.h psos.h t-interix t-linux-aout contrib/gcc/config/alpha alpha-interix.h alpha32.h crtbegin.asm crtend.asm gdb-osf12.h gdb-osf2.h gdb.h osf2.h t-interix vxworks.h xm-alpha-interix.h xm-vms64.h contrib/gcc/config/arm conix-elf.h t-arm-aout t-strongarm-coff unknown-elf-oabi.h vxarm.h contrib/gcc/config/i386 freebsd-elf.h freebsd.h.fixed vxi386.h win32.h x-freebsd xm-i386-interix.h xm-vsta.h contrib/gcc/config/ia64 aix.h hpux_longdouble.h t-aix unwind-aix.c contrib/gcc/config/rs6000 aix31.h aix3newas.h eabiaix.h mach.h t-rs6000-c-rule vxppc.h contrib/gcc/config/sparc bsd.h hal.h linux-aout.h lynx-ng.h lynx.h netbsd.h sp86x-aout.h splet.h sun4gas.h sun4o3.h sunos4.h t-chorus-elf t-halos t-sparcbare t-splet t-sunos41 t-vxsparc t-vxsparc64 vxsim.h vxsparc.h vxsparc64.h contrib/gcc/cp cfns.h g++.c lang-options.h parse.y reno.texi spew.c contrib/gcc/doc install-old.texi install.texi install.texi2html contrib/gcc/f README lang-options.h contrib/gcc/objc lang-options.h sendmsg.c Log: Remove files that are not part of GCC 3.4.x from the vendor branch. Revision Changes Path 1.1.1.2 +0 -14448 src/contrib/gcc/.brik (dead) 1.1.1.2 +0 -32 src/contrib/gcc/.cvsignore (dead) 1.1.1.6 +0 -594 src/contrib/gcc/BUGS (dead) 1.1.1.9 +0 -2446 src/contrib/gcc/NEWS (dead) 1.1.1.7 +0 -17 src/contrib/gcc/README (dead) 1.1.1.5 +0 -44 src/contrib/gcc/acconfig.h (dead) 1.1.1.4 +0 -674 src/contrib/gcc/cccp.1 (dead) 1.1.1.7 +0 -4 src/contrib/gcc/config.guess (dead) 1.1.1.4 +0 -150 src/contrib/gcc/config/alpha/alpha-interix.h (dead) 1.1.1.3 +0 -85 src/contrib/gcc/config/alpha/alpha32.h (dead) 1.1.1.3 +0 -192 src/contrib/gcc/config/alpha/crtbegin.asm (dead) 1.1.1.3 +0 -108 src/contrib/gcc/config/alpha/crtend.asm (dead) 1.1.1.2 +0 -26 src/contrib/gcc/config/alpha/gdb-osf12.h (dead) 1.1.1.2 +0 -26 src/contrib/gcc/config/alpha/gdb-osf2.h (dead) 1.1.1.2 +0 -26 src/contrib/gcc/config/alpha/gdb.h (dead) 1.1.1.2 +0 -32 src/contrib/gcc/config/alpha/osf2.h (dead) 1.1.1.3 +0 -7 src/contrib/gcc/config/alpha/t-interix (dead) 1.1.1.5 +0 -55 src/contrib/gcc/config/alpha/vxworks.h (dead) 1.1.1.3 +0 -39 src/contrib/gcc/config/alpha/xm-alpha-interix.h (dead) 1.1.1.2 +0 -29 src/contrib/gcc/config/alpha/xm-vms64.h (dead) 1.1.1.3 +0 -41 src/contrib/gcc/config/aoutos.h (dead) 1.1.1.3 +0 -46 src/contrib/gcc/config/arm/conix-elf.h (dead) 1.1.1.2 +0 -29 src/contrib/gcc/config/arm/t-arm-aout (dead) 1.1.1.2 +0 -34 src/contrib/gcc/config/arm/t-strongarm-coff (dead) 1.1.1.3 +0 -29 src/contrib/gcc/config/arm/unknown-elf-oabi.h (dead) 1.1.1.3 +0 -71 src/contrib/gcc/config/arm/vxarm.h (dead) 1.1.1.2 +0 -22 src/contrib/gcc/config/freebsd3.h (dead) 1.1.1.2 +0 -22 src/contrib/gcc/config/freebsd4.h (dead) 1.1.1.2 +0 -22 src/contrib/gcc/config/freebsd5.h (dead) 1.1.1.2 +0 -22 src/contrib/gcc/config/freebsd6.h (dead) 1.1.1.3 +0 -257 src/contrib/gcc/config/i386/freebsd-elf.h (dead) 1.1.1.7 +0 -257 src/contrib/gcc/config/i386/freebsd.h.fixed (dead) 1.1.1.5 +0 -66 src/contrib/gcc/config/i386/vxi386.h (dead) 1.1.1.4 +0 -173 src/contrib/gcc/config/i386/win32.h (dead) 1.1.1.2 +0 -3 src/contrib/gcc/config/i386/x-freebsd (dead) 1.1.1.3 +0 -32 src/contrib/gcc/config/i386/xm-i386-interix.h (dead) 1.1.1.4 +0 -11 src/contrib/gcc/config/i386/xm-vsta.h (dead) 1.1.1.4 +0 -159 src/contrib/gcc/config/ia64/aix.h (dead) 1.1.1.3 +0 -99 src/contrib/gcc/config/ia64/hpux_longdouble.h (dead) 1.1.1.3 +0 -15 src/contrib/gcc/config/ia64/t-aix (dead) 1.1.1.2 +0 -120 src/contrib/gcc/config/ia64/unwind-aix.c (dead) 1.1.1.4 +0 -88 src/contrib/gcc/config/psos.h (dead) 1.1.1.3 +0 -87 src/contrib/gcc/config/rs6000/aix31.h (dead) 1.1.1.2 +0 -60 src/contrib/gcc/config/rs6000/aix3newas.h (dead) 1.1.1.3 +0 -36 src/contrib/gcc/config/rs6000/eabiaix.h (dead) 1.1.1.3 +0 -54 src/contrib/gcc/config/rs6000/mach.h (dead) 1.1.1.2 +0 -4 src/contrib/gcc/config/rs6000/t-rs6000-c-rule (dead) 1.1.1.3 +0 -57 src/contrib/gcc/config/rs6000/vxppc.h (dead) 1.1.1.3 +0 -5 src/contrib/gcc/config/sparc/bsd.h (dead) 1.1.1.2 +0 -33 src/contrib/gcc/config/sparc/hal.h (dead) 1.1.1.5 +0 -96 src/contrib/gcc/config/sparc/linux-aout.h (dead) 1.1.1.3 +0 -38 src/contrib/gcc/config/sparc/lynx-ng.h (dead) 1.1.1.4 +0 -47 src/contrib/gcc/config/sparc/lynx.h (dead) 1.1.1.5 +0 -49 src/contrib/gcc/config/sparc/netbsd.h (dead) 1.1.1.3 +0 -51 src/contrib/gcc/config/sparc/sp86x-aout.h (dead) 1.1.1.5 +0 -46 src/contrib/gcc/config/sparc/splet.h (dead) 1.1.1.3 +0 -22 src/contrib/gcc/config/sparc/sun4gas.h (dead) 1.1.1.4 +0 -11 src/contrib/gcc/config/sparc/sun4o3.h (dead) 1.1.1.4 +0 -48 src/contrib/gcc/config/sparc/sunos4.h (dead) 1.1.1.2 +0 -29 src/contrib/gcc/config/sparc/t-chorus-elf (dead) 1.1.1.2 +0 -2 src/contrib/gcc/config/sparc/t-halos (dead) 1.1.1.3 +0 -25 src/contrib/gcc/config/sparc/t-sparcbare (dead) 1.1.1.4 +0 -21 src/contrib/gcc/config/sparc/t-splet (dead) 1.1.1.3 +0 -12 src/contrib/gcc/config/sparc/t-sunos41 (dead) 1.1.1.3 +0 -10 src/contrib/gcc/config/sparc/t-vxsparc (dead) 1.1.1.2 +0 -23 src/contrib/gcc/config/sparc/t-vxsparc64 (dead) 1.1.1.5 +0 -136 src/contrib/gcc/config/sparc/vxsim.h (dead) 1.1.1.3 +0 -59 src/contrib/gcc/config/sparc/vxsparc.h (dead) 1.1.1.4 +0 -92 src/contrib/gcc/config/sparc/vxsparc64.h (dead) 1.1.1.2 +0 -2 src/contrib/gcc/config/t-interix (dead) 1.1.1.3 +0 -2 src/contrib/gcc/config/t-linux-aout (dead) 1.1.1.4 +0 -77 src/contrib/gcc/configure.frag (dead) 1.1.1.17 +0 -2969 src/contrib/gcc/configure.in (dead) 1.1.1.2 +0 -467 src/contrib/gcc/cp/cfns.h (dead) 1.1.1.2 +0 -582 src/contrib/gcc/cp/g++.c (dead) 1.1.1.6 +0 -159 src/contrib/gcc/cp/lang-options.h (dead) 1.1.1.11 +0 -4237 src/contrib/gcc/cp/parse.y (dead) 1.1.1.2 +0 -752 src/contrib/gcc/cp/reno.texi (dead) 1.1.1.8 +0 -1558 src/contrib/gcc/cp/spew.c (dead) 1.1.1.9 +0 -432 src/contrib/gcc/cppmain.c (dead) 1.1.1.3 +0 -17 src/contrib/gcc/dbxstclass.h (dead) 1.1.1.2 +0 -725 src/contrib/gcc/doc/install-old.texi (dead) 1.1.1.4 +0 -3928 src/contrib/gcc/doc/install.texi (dead) 1.1.1.2 +0 -31 src/contrib/gcc/doc/install.texi2html (dead) 1.1.1.5 +0 -360 src/contrib/gcc/doschk.c (dead) 1.1.1.8 +0 -6561 src/contrib/gcc/dwarfout.c (dead) 1.1.1.2 +0 -7 src/contrib/gcc/f/README (dead) 1.1.1.4 +0 -239 src/contrib/gcc/f/lang-options.h (dead) 1.1.1.6 +0 -944 src/contrib/gcc/floatlib.c (dead) 1.1.1.4 +0 -40 src/contrib/gcc/future.options (dead) 1.1.1.7 +0 -1056 src/contrib/gcc/getopt.c (dead) 1.1.1.7 +0 -144 src/contrib/gcc/getopt.h (dead) 1.1.1.5 +0 -190 src/contrib/gcc/getopt1.c (dead) 1.1.1.2 +0 -38 src/contrib/gcc/location.h (dead) 1.1.1.5 +0 -334 src/contrib/gcc/mbchar.c (dead) 1.1.1.4 +0 -41 src/contrib/gcc/mbchar.h (dead) 1.1.1.2 +0 -43 src/contrib/gcc/objc/lang-options.h (dead) 1.1.1.3 +0 -651 src/contrib/gcc/objc/sendmsg.c (dead) 1.1.1.5 +0 -792 src/contrib/gcc/pexecute.c (dead) 1.1.1.2 +0 -54 src/contrib/gcc/profile.h (dead) 1.1.1.5 +0 -1219 src/contrib/gcc/ssa-ccp.c (dead) 1.1.1.4 +0 -733 src/contrib/gcc/ssa-dce.c (dead) 1.1.1.4 +0 -2334 src/contrib/gcc/ssa.c (dead) 1.1.1.4 +0 -72 src/contrib/gcc/ssa.h (dead) 1.1.1.2 +0 -172 src/contrib/gcc/unwind-libunwind.c (dead) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 16:41:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A2F016A4CF; Thu, 12 Aug 2004 16:41:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 667D943D46; Thu, 12 Aug 2004 16:41:13 +0000 (GMT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CGfD5e031865; Thu, 12 Aug 2004 16:41:13 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CGfDT1031864; Thu, 12 Aug 2004 16:41:13 GMT (envelope-from kan) Message-Id: <200408121641.i7CGfDT1031864@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 12 Aug 2004 16:41:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: FSF Subject: cvs commit: src/contrib/libf2c/libU77 bes.c dbes.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:41:13 -0000 kan 2004-08-12 16:41:13 UTC FreeBSD src repository Removed files: (Branch: FSF) contrib/libf2c/libU77 bes.c dbes.c Log: Remove files that are not part of GCC 3.4.x from the vendor branch. Revision Changes Path 1.1.1.3 +0 -58 src/contrib/libf2c/libU77/bes.c (dead) 1.1.1.3 +0 -58 src/contrib/libf2c/libU77/dbes.c (dead) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 16:41:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3388716A4CE; Thu, 12 Aug 2004 16:41:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F96F43D46; Thu, 12 Aug 2004 16:41:43 +0000 (GMT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CGfhEk032663; Thu, 12 Aug 2004 16:41:43 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CGfhuW032662; Thu, 12 Aug 2004 16:41:43 GMT (envelope-from kan) Message-Id: <200408121641.i7CGfhuW032662@repoman.freebsd.org> From: Alexander Kabaev Date: Thu, 12 Aug 2004 16:41:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: FSF Subject: cvs commit: src/contrib/libstdc++ NEWS cassert cctype cerrno cfloat cinst.cc ciso646 climits clocale cmath cmathi.cc complex complex.h configure.in configure.target csetjmp csignal cstdarg cstddef cstdio cstdlib cstdlibi.cc cstring cstringi.cc ctime ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:41:43 -0000 kan 2004-08-12 16:41:42 UTC FreeBSD src repository Removed files: (Branch: FSF) contrib/libstdc++ NEWS cassert cctype cerrno cfloat cinst.cc ciso646 climits clocale cmath cmathi.cc complex complex.h configure.in configure.target csetjmp csignal cstdarg cstddef cstdio cstdlib cstdlibi.cc cstring cstringi.cc ctime cwchar cwctype fstream iomanip iosfwd iostream mkcheck.in sinst.cc sstream stdexcept stdexcepti.cc stl.h stlinst.cc string strstream testsuite_flags.in valarray valarray.cc contrib/libstdc++/config aix.ml dec-osf.ml delta.mt elf.ml elfshlibm.ml freebsd.ml gnu.ml hpux.ml irix5.ml linux.ml linux.mt openbsd.ml openbsd.mt posix.mt sol2pth.mt sol2shm.ml sol2solth.mt sunos4.ml x86-interix.ml contrib/libstdc++/config/abi extract_symvers contrib/libstdc++/config/cpu/sparc/sparc32/bits atomicity.h contrib/libstdc++/config/cpu/sparc/sparc64/bits atomicity.h contrib/libstdc++/config/io basic_file_libio.cc basic_file_libio.h c_io_libio.h c_io_libio_codecvt.c contrib/libstdc++/include/bits fpos.h pthread_allocimpl.h stl_alloc.h stl_pthread_alloc.h valarray_meta.h contrib/libstdc++/include/ext stl_hash_fun.h stl_hashtable.h stl_rope.h contrib/libstdc++/libio ChangeLog Makefile.am Makefile.in _G_config.h filedoalloc.c fileops.c genops.c iofclose.c iofopen.c iofwide.c iolibio.h libio.h libioP.h stdfiles.c stdio.c wfiledoalloc.c wfileops.c wgenops.c contrib/libstdc++/libmath nan.c contrib/libstdc++/src bitset.cc cmath.cc fstream.cc globals.cc stl-inst.cc vterminate.cc contrib/libstdc++/std bastring.cc bastring.h complext.cc complext.h dcomplex.h fcomplex.h gslice.h gslice_array.h indirect_array.h ldcomplex.h mask_array.h slice.h slice_array.h std_valarray.h straits.h valarray_array.h valarray_array.tcc valarray_meta.h contrib/libstdc++/stl ChangeLog README algo.h algobase.h algorithm alloc.h bitset bvector.h defalloc.h deque deque.h function.h functional hash_map hash_map.h hash_set hash_set.h hashtable.h heap.h iterator iterator.h list list.h map map.h memory multimap.h multiset.h numeric pair.h pthread_alloc pthread_alloc.h queue rope rope.h ropeimpl.h set set.h slist slist.h stack stack.h stl_algo.h stl_algobase.h stl_alloc.h stl_bvector.h stl_config.h stl_construct.h stl_deque.h stl_function.h stl_hash_fun.h stl_hash_map.h stl_hash_set.h stl_hashtable.h stl_heap.h stl_iterator.h stl_list.h stl_map.h stl_multimap.h stl_multiset.h stl_numeric.h stl_pair.h stl_queue.h stl_raw_storage_iter.h stl_relops.h stl_rope.h stl_set.h stl_slist.h stl_stack.h stl_tempbuf.h stl_tree.h stl_uninitialized.h stl_vector.h tempbuf.h tree.h type_traits.h utility vector vector.h contrib/libstdc++/tests ChangeLog Makefile.in configure.in tcomplex.cc tcomplex.exp tcomplex.inp tlist.cc tlist.exp tmap.cc tmap.exp tstring.cc tstring.exp tstring.inp tvector.cc tvector.exp contrib/libstdc++/testsuite ChangeLog Makefile.in configure.in contrib/libstdc++/testsuite/config default.exp contrib/libstdc++/testsuite/lib libstdc++.exp contrib/libstdc++/testsuite/libstdc++.tests test.exp Log: Remove files that are not part of GCC 3.4.x from the vendor branch. Revision Changes Path 1.1.1.2 +0 -9 src/contrib/libstdc++/NEWS (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cassert (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cctype (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cerrno (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cfloat (dead) 1.1.1.3 +0 -154 src/contrib/libstdc++/cinst.cc (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/ciso646 (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/climits (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/clocale (dead) 1.1.1.2 +0 -76 src/contrib/libstdc++/cmath (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cmathi.cc (dead) 1.1.1.2 +0 -18 src/contrib/libstdc++/complex (dead) 1.1.1.2 +0 -6 src/contrib/libstdc++/complex.h (dead) 1.1.1.2 +0 -64 src/contrib/libstdc++/config/abi/extract_symvers (dead) 1.1.1.3 +0 -9 src/contrib/libstdc++/config/aix.ml (dead) 1.1.1.2 +0 -88 src/contrib/libstdc++/config/cpu/sparc/sparc32/bits/atomicity.h (dead) 1.1.1.2 +0 -70 src/contrib/libstdc++/config/cpu/sparc/sparc64/bits/atomicity.h (dead) 1.1.1.3 +0 -6 src/contrib/libstdc++/config/dec-osf.ml (dead) 1.1.1.2 +0 -2 src/contrib/libstdc++/config/delta.mt (dead) 1.1.1.3 +0 -8 src/contrib/libstdc++/config/elf.ml (dead) 1.1.1.3 +0 -6 src/contrib/libstdc++/config/elfshlibm.ml (dead) 1.1.1.2 +0 -6 src/contrib/libstdc++/config/freebsd.ml (dead) 1.1.1.2 +0 -6 src/contrib/libstdc++/config/gnu.ml (dead) 1.1.1.3 +0 -6 src/contrib/libstdc++/config/hpux.ml (dead) 1.1.1.2 +0 -194 src/contrib/libstdc++/config/io/basic_file_libio.cc (dead) 1.1.1.2 +0 -498 src/contrib/libstdc++/config/io/basic_file_libio.h (dead) 1.1.1.2 +0 -113 src/contrib/libstdc++/config/io/c_io_libio.h (dead) 1.1.1.2 +0 -153 src/contrib/libstdc++/config/io/c_io_libio_codecvt.c (dead) 1.1.1.3 +0 -6 src/contrib/libstdc++/config/irix5.ml (dead) 1.1.1.3 +0 -11 src/contrib/libstdc++/config/linux.ml (dead) 1.1.1.2 +0 -2 src/contrib/libstdc++/config/linux.mt (dead) 1.1.1.3 +0 -7 src/contrib/libstdc++/config/openbsd.ml (dead) 1.1.1.2 +0 -3 src/contrib/libstdc++/config/openbsd.mt (dead) 1.1.1.2 +0 -1 src/contrib/libstdc++/config/posix.mt (dead) 1.1.1.2 +0 -1 src/contrib/libstdc++/config/sol2pth.mt (dead) 1.1.1.3 +0 -6 src/contrib/libstdc++/config/sol2shm.ml (dead) 1.1.1.2 +0 -1 src/contrib/libstdc++/config/sol2solth.mt (dead) 1.1.1.3 +0 -9 src/contrib/libstdc++/config/sunos4.ml (dead) 1.1.1.2 +0 -9 src/contrib/libstdc++/config/x86-interix.ml (dead) 1.1.1.9 +0 -554 src/contrib/libstdc++/configure.in (dead) 1.1.1.6 +0 -200 src/contrib/libstdc++/configure.target (dead) 1.1.1.2 +0 -8 src/contrib/libstdc++/csetjmp (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/csignal (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cstdarg (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cstddef (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cstdio (dead) 1.1.1.2 +0 -23 src/contrib/libstdc++/cstdlib (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cstdlibi.cc (dead) 1.1.1.2 +0 -96 src/contrib/libstdc++/cstring (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cstringi.cc (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/ctime (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cwchar (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/cwctype (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/fstream (dead) 1.1.1.4 +0 -127 src/contrib/libstdc++/include/bits/fpos.h (dead) 1.1.1.2 +0 -525 src/contrib/libstdc++/include/bits/pthread_allocimpl.h (dead) 1.1.1.4 +0 -974 src/contrib/libstdc++/include/bits/stl_alloc.h (dead) 1.1.1.2 +0 -60 src/contrib/libstdc++/include/bits/stl_pthread_alloc.h (dead) 1.1.1.3 +0 -1147 src/contrib/libstdc++/include/bits/valarray_meta.h (dead) 1.1.1.2 +0 -126 src/contrib/libstdc++/include/ext/stl_hash_fun.h (dead) 1.1.1.4 +0 -996 src/contrib/libstdc++/include/ext/stl_hashtable.h (dead) 1.1.1.4 +0 -2503 src/contrib/libstdc++/include/ext/stl_rope.h (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/iomanip (dead) 1.1.1.2 +0 -15 src/contrib/libstdc++/iosfwd (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/iostream (dead) 1.1.1.3 +0 -2802 src/contrib/libstdc++/libio/ChangeLog (dead) 1.1.1.2 +0 -67 src/contrib/libstdc++/libio/Makefile.am (dead) 1.1.1.3 +0 -406 src/contrib/libstdc++/libio/Makefile.in (dead) 1.1.1.2 +0 -136 src/contrib/libstdc++/libio/_G_config.h (dead) 1.1.1.2 +0 -101 src/contrib/libstdc++/libio/filedoalloc.c (dead) 1.1.1.2 +0 -1049 src/contrib/libstdc++/libio/fileops.c (dead) 1.1.1.2 +0 -1123 src/contrib/libstdc++/libio/genops.c (dead) 1.1.1.2 +0 -97 src/contrib/libstdc++/libio/iofclose.c (dead) 1.1.1.2 +0 -78 src/contrib/libstdc++/libio/iofopen.c (dead) 1.1.1.2 +0 -476 src/contrib/libstdc++/libio/iofwide.c (dead) 1.1.1.2 +0 -82 src/contrib/libstdc++/libio/iolibio.h (dead) 1.1.1.2 +0 -511 src/contrib/libstdc++/libio/libio.h (dead) 1.1.1.2 +0 -821 src/contrib/libstdc++/libio/libioP.h (dead) 1.1.1.2 +0 -71 src/contrib/libstdc++/libio/stdfiles.c (dead) 1.1.1.2 +0 -43 src/contrib/libstdc++/libio/stdio.c (dead) 1.1.1.2 +0 -108 src/contrib/libstdc++/libio/wfiledoalloc.c (dead) 1.1.1.2 +0 -754 src/contrib/libstdc++/libio/wfileops.c (dead) 1.1.1.2 +0 -756 src/contrib/libstdc++/libio/wgenops.c (dead) 1.1.1.2 +0 -36 src/contrib/libstdc++/libmath/nan.c (dead) 1.1.1.3 +0 -448 src/contrib/libstdc++/mkcheck.in (dead) 1.1.1.3 +0 -135 src/contrib/libstdc++/sinst.cc (dead) 1.1.1.4 +0 -219 src/contrib/libstdc++/src/bitset.cc (dead) 1.1.1.2 +0 -47 src/contrib/libstdc++/src/cmath.cc (dead) 1.1.1.3 +0 -202 src/contrib/libstdc++/src/fstream.cc (dead) 1.1.1.4 +0 -317 src/contrib/libstdc++/src/globals.cc (dead) 1.1.1.3 +0 -43 src/contrib/libstdc++/src/stl-inst.cc (dead) 1.1.1.3 +0 -82 src/contrib/libstdc++/src/vterminate.cc (dead) 1.1.1.3 +0 -343 src/contrib/libstdc++/sstream (dead) 1.1.1.4 +0 -524 src/contrib/libstdc++/std/bastring.cc (dead) 1.1.1.5 +0 -657 src/contrib/libstdc++/std/bastring.h (dead) 1.1.1.3 +0 -273 src/contrib/libstdc++/std/complext.cc (dead) 1.1.1.2 +0 -400 src/contrib/libstdc++/std/complext.h (dead) 1.1.1.2 +0 -91 src/contrib/libstdc++/std/dcomplex.h (dead) 1.1.1.2 +0 -87 src/contrib/libstdc++/std/fcomplex.h (dead) 1.1.1.2 +0 -111 src/contrib/libstdc++/std/gslice.h (dead) 1.1.1.2 +0 -170 src/contrib/libstdc++/std/gslice_array.h (dead) 1.1.1.2 +0 -157 src/contrib/libstdc++/std/indirect_array.h (dead) 1.1.1.2 +0 -95 src/contrib/libstdc++/std/ldcomplex.h (dead) 1.1.1.2 +0 -154 src/contrib/libstdc++/std/mask_array.h (dead) 1.1.1.2 +0 -76 src/contrib/libstdc++/std/slice.h (dead) 1.1.1.2 +0 -156 src/contrib/libstdc++/std/slice_array.h (dead) 1.1.1.2 +0 -728 src/contrib/libstdc++/std/std_valarray.h (dead) 1.1.1.2 +0 -161 src/contrib/libstdc++/std/straits.h (dead) 1.1.1.3 +0 -346 src/contrib/libstdc++/std/valarray_array.h (dead) 1.1.1.2 +0 -130 src/contrib/libstdc++/std/valarray_array.tcc (dead) 1.1.1.3 +0 -1046 src/contrib/libstdc++/std/valarray_meta.h (dead) 1.1.1.3 +0 -97 src/contrib/libstdc++/stdexcept (dead) 1.1.1.3 +0 -21 src/contrib/libstdc++/stdexcepti.cc (dead) 1.1.1.2 +0 -15 src/contrib/libstdc++/stl.h (dead) 1.1.1.6 +0 -381 src/contrib/libstdc++/stl/ChangeLog (dead) 1.1.1.3 +0 -13 src/contrib/libstdc++/stl/README (dead) 1.1.1.2 +0 -114 src/contrib/libstdc++/stl/algo.h (dead) 1.1.1.2 +0 -71 src/contrib/libstdc++/stl/algobase.h (dead) 1.1.1.3 +0 -40 src/contrib/libstdc++/stl/algorithm (dead) 1.1.1.3 +0 -46 src/contrib/libstdc++/stl/alloc.h (dead) 1.1.1.3 +0 -1066 src/contrib/libstdc++/stl/bitset (dead) 1.1.1.2 +0 -51 src/contrib/libstdc++/stl/bvector.h (dead) 1.1.1.3 +0 -87 src/contrib/libstdc++/stl/defalloc.h (dead) 1.1.1.2 +0 -40 src/contrib/libstdc++/stl/deque (dead) 1.1.1.2 +0 -42 src/contrib/libstdc++/stl/deque.h (dead) 1.1.1.2 +0 -118 src/contrib/libstdc++/stl/function.h (dead) 1.1.1.2 +0 -26 src/contrib/libstdc++/stl/functional (dead) 1.1.1.2 +0 -40 src/contrib/libstdc++/stl/hash_map (dead) 1.1.1.3 +0 -49 src/contrib/libstdc++/stl/hash_map.h (dead) 1.1.1.2 +0 -40 src/contrib/libstdc++/stl/hash_set (dead) 1.1.1.3 +0 -44 src/contrib/libstdc++/stl/hash_set.h (dead) 1.1.1.2 +0 -48 src/contrib/libstdc++/stl/hashtable.h (dead) 1.1.1.2 +0 -46 src/contrib/libstdc++/stl/heap.h (dead) 1.1.1.3 +0 -44 src/contrib/libstdc++/stl/iterator (dead) 1.1.1.2 +0 -104 src/contrib/libstdc++/stl/iterator.h (dead) 1.1.1.2 +0 -40 src/contrib/libstdc++/stl/list (dead) 1.1.1.2 +0 -42 src/contrib/libstdc++/stl/list.h (dead) 1.1.1.2 +0 -40 src/contrib/libstdc++/stl/map (dead) 1.1.1.2 +0 -41 src/contrib/libstdc++/stl/map.h (dead) 1.1.1.3 +0 -108 src/contrib/libstdc++/stl/memory (dead) 1.1.1.2 +0 -41 src/contrib/libstdc++/stl/multimap.h (dead) 1.1.1.2 +0 -41 src/contrib/libstdc++/stl/multiset.h (dead) 1.1.1.2 +0 -42 src/contrib/libstdc++/stl/numeric (dead) 1.1.1.2 +0 -51 src/contrib/libstdc++/stl/pair.h (dead) 1.1.1.3 +0 -479 src/contrib/libstdc++/stl/pthread_alloc (dead) 1.1.1.3 +0 -31 src/contrib/libstdc++/stl/pthread_alloc.h (dead) 1.1.1.2 +0 -45 src/contrib/libstdc++/stl/queue (dead) 1.1.1.3 +0 -32 src/contrib/libstdc++/stl/rope (dead) 1.1.1.2 +0 -34 src/contrib/libstdc++/stl/rope.h (dead) 1.1.1.3 +0 -1550 src/contrib/libstdc++/stl/ropeimpl.h (dead) 1.1.1.2 +0 -40 src/contrib/libstdc++/stl/set (dead) 1.1.1.2 +0 -41 src/contrib/libstdc++/stl/set.h (dead) 1.1.1.2 +0 -28 src/contrib/libstdc++/stl/slist (dead) 1.1.1.2 +0 -30 src/contrib/libstdc++/stl/slist.h (dead) 1.1.1.2 +0 -41 src/contrib/libstdc++/stl/stack (dead) 1.1.1.2 +0 -46 src/contrib/libstdc++/stl/stack.h (dead) 1.1.1.3 +0 -2894 src/contrib/libstdc++/stl/stl_algo.h (dead) 1.1.1.3 +0 -526 src/contrib/libstdc++/stl/stl_algobase.h (dead) 1.1.1.3 +0 -1057 src/contrib/libstdc++/stl/stl_alloc.h (dead) 1.1.1.3 +0 -838 src/contrib/libstdc++/stl/stl_bvector.h (dead) 1.1.1.3 +0 -356 src/contrib/libstdc++/stl/stl_config.h (dead) 1.1.1.3 +0 -90 src/contrib/libstdc++/stl/stl_construct.h (dead) 1.1.1.4 +0 -1698 src/contrib/libstdc++/stl/stl_deque.h (dead) 1.1.1.3 +0 -700 src/contrib/libstdc++/stl/stl_function.h (dead) 1.1.1.3 +0 -93 src/contrib/libstdc++/stl/stl_hash_fun.h (dead) 1.1.1.3 +0 -416 src/contrib/libstdc++/stl/stl_hash_map.h (dead) 1.1.1.3 +0 -401 src/contrib/libstdc++/stl/stl_hash_set.h (dead) 1.1.1.3 +0 -1039 src/contrib/libstdc++/stl/stl_hashtable.h (dead) 1.1.1.3 +0 -281 src/contrib/libstdc++/stl/stl_heap.h (dead) 1.1.1.3 +0 -915 src/contrib/libstdc++/stl/stl_iterator.h (dead) 1.1.1.3 +0 -840 src/contrib/libstdc++/stl/stl_list.h (dead) 1.1.1.3 +0 -242 src/contrib/libstdc++/stl/stl_map.h (dead) 1.1.1.3 +0 -232 src/contrib/libstdc++/stl/stl_multimap.h (dead) 1.1.1.3 +0 -224 src/contrib/libstdc++/stl/stl_multiset.h (dead) 1.1.1.3 +0 -239 src/contrib/libstdc++/stl/stl_numeric.h (dead) 1.1.1.3 +0 -77 src/contrib/libstdc++/stl/stl_pair.h (dead) 1.1.1.3 +0 -202 src/contrib/libstdc++/stl/stl_queue.h (dead) 1.1.1.3 +0 -81 src/contrib/libstdc++/stl/stl_raw_storage_iter.h (dead) 1.1.1.3 +0 -62 src/contrib/libstdc++/stl/stl_relops.h (dead) 1.1.1.4 +0 -2541 src/contrib/libstdc++/stl/stl_rope.h (dead) 1.1.1.3 +0 -216 src/contrib/libstdc++/stl/stl_set.h (dead) 1.1.1.3 +0 -945 src/contrib/libstdc++/stl/stl_slist.h (dead) 1.1.1.3 +0 -111 src/contrib/libstdc++/stl/stl_stack.h (dead) 1.1.1.3 +0 -156 src/contrib/libstdc++/stl/stl_tempbuf.h (dead) 1.1.1.3 +0 -1333 src/contrib/libstdc++/stl/stl_tree.h (dead) 1.1.1.3 +0 -279 src/contrib/libstdc++/stl/stl_uninitialized.h (dead) 1.1.1.3 +0 -823 src/contrib/libstdc++/stl/stl_vector.h (dead) 1.1.1.3 +0 -61 src/contrib/libstdc++/stl/tempbuf.h (dead) 1.1.1.2 +0 -46 src/contrib/libstdc++/stl/tree.h (dead) 1.1.1.3 +0 -373 src/contrib/libstdc++/stl/type_traits.h (dead) 1.1.1.2 +0 -38 src/contrib/libstdc++/stl/utility (dead) 1.1.1.2 +0 -41 src/contrib/libstdc++/stl/vector (dead) 1.1.1.2 +0 -42 src/contrib/libstdc++/stl/vector.h (dead) 1.1.1.3 +0 -10 src/contrib/libstdc++/stlinst.cc (dead) 1.1.1.2 +0 -13 src/contrib/libstdc++/string (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/strstream (dead) 1.1.1.5 +0 -132 src/contrib/libstdc++/tests/ChangeLog (dead) 1.1.1.2 +0 -35 src/contrib/libstdc++/tests/Makefile.in (dead) 1.1.1.2 +0 -65 src/contrib/libstdc++/tests/configure.in (dead) 1.1.1.2 +0 -151 src/contrib/libstdc++/tests/tcomplex.cc (dead) 1.1.1.2 +0 -37 src/contrib/libstdc++/tests/tcomplex.exp (dead) 1.1.1.2 +0 -1 src/contrib/libstdc++/tests/tcomplex.inp (dead) 1.1.1.2 +0 -151 src/contrib/libstdc++/tests/tlist.cc (dead) 1.1.1.2 +0 -44 src/contrib/libstdc++/tests/tlist.exp (dead) 1.1.1.2 +0 -59 src/contrib/libstdc++/tests/tmap.cc (dead) 1.1.1.2 +0 -7 src/contrib/libstdc++/tests/tmap.exp (dead) 1.1.1.2 +0 -249 src/contrib/libstdc++/tests/tstring.cc (dead) 1.1.1.2 +0 -22 src/contrib/libstdc++/tests/tstring.exp (dead) 1.1.1.2 +0 -1 src/contrib/libstdc++/tests/tstring.inp (dead) 1.1.1.2 +0 -20 src/contrib/libstdc++/tests/tvector.cc (dead) 1.1.1.2 +0 -4 src/contrib/libstdc++/tests/tvector.exp (dead) 1.1.1.5 +0 -94 src/contrib/libstdc++/testsuite/ChangeLog (dead) 1.1.1.4 +0 -428 src/contrib/libstdc++/testsuite/Makefile.in (dead) 1.1.1.3 +0 -21 src/contrib/libstdc++/testsuite/config/default.exp (dead) 1.1.1.2 +0 -24 src/contrib/libstdc++/testsuite/configure.in (dead) 1.1.1.2 +0 -179 src/contrib/libstdc++/testsuite/lib/libstdc++.exp (dead) 1.1.1.2 +0 -34 src/contrib/libstdc++/testsuite/libstdc++.tests/test.exp (dead) 1.1.1.2 +0 -61 src/contrib/libstdc++/testsuite_flags.in (dead) 1.1.1.2 +0 -8 src/contrib/libstdc++/valarray (dead) 1.1.1.2 +0 -50 src/contrib/libstdc++/valarray.cc (dead) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 16:56:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E9BD216A4CE; Thu, 12 Aug 2004 16:56:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C865343D2D; Thu, 12 Aug 2004 16:56:40 +0000 (GMT) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CGueNL033066; Thu, 12 Aug 2004 16:56:40 GMT (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CGue4J033065; Thu, 12 Aug 2004 16:56:40 GMT (envelope-from leeym) Message-Id: <200408121656.i7CGue4J033065@repoman.freebsd.org> From: Yen-Ming Lee Date: Thu, 12 Aug 2004 16:56:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/openwebmail Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:56:41 -0000 leeym 2004-08-12 16:56:40 UTC FreeBSD ports repository Modified files: mail/openwebmail Makefile Log: minor fixes - add --quiet argument for CPIO - remove the arguments of speedy_suidperl Revision Changes Path 1.46 +3 -3 ports/mail/openwebmail/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 17:02:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D0C216A4CE; Thu, 12 Aug 2004 17:02:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EED4A43D45; Thu, 12 Aug 2004 17:02:53 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CH2roS033225; Thu, 12 Aug 2004 17:02:53 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CH2rvL033224; Thu, 12 Aug 2004 17:02:53 GMT (envelope-from njl) Message-Id: <200408121702.i7CH2rvL033224@repoman.freebsd.org> From: Nate Lawson Date: Thu, 12 Aug 2004 17:02:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 17:02:54 -0000 njl 2004-08-12 17:02:53 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: Allow null handles to be passed into acpi_name(). Revision Changes Path 1.185 +1 -1 src/sys/dev/acpica/acpi.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 17:04:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BFE416A4CE; Thu, 12 Aug 2004 17:04:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A14343D5D; Thu, 12 Aug 2004 17:04:19 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CH4J1b033275; Thu, 12 Aug 2004 17:04:19 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CH4JrB033274; Thu, 12 Aug 2004 17:04:19 GMT (envelope-from njl) Message-Id: <200408121704.i7CH4JrB033274@repoman.freebsd.org> From: Nate Lawson Date: Thu, 12 Aug 2004 17:04:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pcib.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 17:04:19 -0000 njl 2004-08-12 17:04:19 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pcib.c Log: Only print the link name if there is a link. For the hardwired case, don't bother printing it. This fixes a panic and acpi_name() has been more robust as well. Bug from: Tai-hwa Liang Revision Changes Path 1.49 +7 -4 src/sys/dev/acpica/acpi_pcib.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 17:06:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DAC1A16A4CE; Thu, 12 Aug 2004 17:06:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B917A43D31; Thu, 12 Aug 2004 17:06:05 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CH65Ef033424; Thu, 12 Aug 2004 17:06:05 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CH65S2033423; Thu, 12 Aug 2004 17:06:05 GMT (envelope-from njl) Message-Id: <200408121706.i7CH65S2033423@repoman.freebsd.org> From: Nate Lawson Date: Thu, 12 Aug 2004 17:06:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci_link.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 17:06:06 -0000 njl 2004-08-12 17:06:05 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci_link.c Log: Skip dependent functions when finding the resource from _PRS to use for later calls to _SRS. Add note that this code should be centralized at some point. Bug from: Jiawei Ye Revision Changes Path 1.22 +8 -4 src/sys/dev/acpica/acpi_pci_link.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 17:22:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F252716A4CE; Thu, 12 Aug 2004 17:22:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D033043D49; Thu, 12 Aug 2004 17:22:28 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CHMS7v033834; Thu, 12 Aug 2004 17:22:28 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CHMS07033833; Thu, 12 Aug 2004 17:22:28 GMT (envelope-from green) Message-Id: <200408121722.i7CHMS07033833@repoman.freebsd.org> From: Brian Feldman Date: Thu, 12 Aug 2004 17:22:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_map.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 17:22:29 -0000 green 2004-08-12 17:22:28 UTC FreeBSD src repository Modified files: sys/vm vm_map.c Log: Re-delete the comment from r1.352. Revision Changes Path 1.355 +0 -3 src/sys/vm/vm_map.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 17:26:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49E9916A4CE; Thu, 12 Aug 2004 17:26:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28A7343D48; Thu, 12 Aug 2004 17:26:23 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CHQN9L033991; Thu, 12 Aug 2004 17:26:23 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CHQN3B033990; Thu, 12 Aug 2004 17:26:23 GMT (envelope-from imp) Message-Id: <200408121726.i7CHQN3B033990@repoman.freebsd.org> From: Warner Losh Date: Thu, 12 Aug 2004 17:26:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern bus_if.m device_if.m X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 17:26:23 -0000 imp 2004-08-12 17:26:23 UTC FreeBSD src repository Modified files: sys/kern bus_if.m device_if.m Log: Minor formatting fixes for lines > 80 characters Revision Changes Path 1.28 +8 -7 src/sys/kern/bus_if.m 1.10 +22 -21 src/sys/kern/device_if.m From owner-cvs-all@FreeBSD.ORG Thu Aug 12 17:27:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 938AC16A4CE; Thu, 12 Aug 2004 17:27:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87DCF43D3F; Thu, 12 Aug 2004 17:27:31 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CHRVtg034096; Thu, 12 Aug 2004 17:27:31 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CHRVLg034095; Thu, 12 Aug 2004 17:27:31 GMT (envelope-from sem) Message-Id: <200408121727.i7CHRVLg034095@repoman.freebsd.org> From: Sergey Matveychuk Date: Thu, 12 Aug 2004 17:27:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security Makefile ports/security/doorman Makefile distinfo pkg-descr pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 17:27:31 -0000 sem 2004-08-12 17:27:31 UTC FreeBSD ports repository Modified files: security Makefile Added files: security/doorman Makefile distinfo pkg-descr pkg-message pkg-plist Log: Doorman is a port knocking implementation which allows a server to run silently, invisibly, with all TCP ports closed except to those who know... the secret knock! PR: ports/70186 Submitted by: Aaron Dalton Revision Changes Path 1.538 +1 -0 ports/security/Makefile 1.1 +62 -0 ports/security/doorman/Makefile (new) 1.1 +2 -0 ports/security/doorman/distinfo (new) 1.1 +9 -0 ports/security/doorman/pkg-descr (new) 1.1 +12 -0 ports/security/doorman/pkg-message (new) 1.1 +15 -0 ports/security/doorman/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 17:27:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7ABDA16A4D0; Thu, 12 Aug 2004 17:27:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4328E43D4C; Thu, 12 Aug 2004 17:27:42 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CHRget034146; Thu, 12 Aug 2004 17:27:42 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CHRgjv034145; Thu, 12 Aug 2004 17:27:42 GMT (envelope-from sem) Message-Id: <200408121727.i7CHRgjv034145@repoman.freebsd.org> From: Sergey Matveychuk Date: Thu, 12 Aug 2004 17:27:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 17:27:42 -0000 sem 2004-08-12 17:27:42 UTC FreeBSD ports repository Modified files: . modules Log: doorman --> ports/security/doorman Revision Changes Path 1.10883 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 12 17:31:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2157E16A4CE; Thu, 12 Aug 2004 17:31:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F352643D2D; Thu, 12 Aug 2004 17:31:17 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CHVHl1034320; Thu, 12 Aug 2004 17:31:17 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CHVH1E034319; Thu, 12 Aug 2004 17:31:17 GMT (envelope-from sem) Message-Id: <200408121731.i7CHVH1E034319@repoman.freebsd.org> From: Sergey Matveychuk Date: Thu, 12 Aug 2004 17:31:17 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/articles/contributors contrib.additional.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 17:31:18 -0000 sem 2004-08-12 17:31:17 UTC FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Add Aaron Dalton for his security/doorman Revision Changes Path 1.251 +5 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 17:31:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FBFF16A4CE; Thu, 12 Aug 2004 17:31:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DAFB43D3F; Thu, 12 Aug 2004 17:31:27 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CHVRCY034378; Thu, 12 Aug 2004 17:31:27 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CHVRJJ034377; Thu, 12 Aug 2004 17:31:27 GMT (envelope-from marcus) Message-Id: <200408121731.i7CHVRJJ034377@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 12 Aug 2004 17:31:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/esound Makefile distinfo ports/audio/esound/files patch-audio_oss.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 17:31:27 -0000 marcus 2004-08-12 17:31:27 UTC FreeBSD ports repository Modified files: audio/esound Makefile distinfo audio/esound/files patch-audio_oss.c Log: Update to 0.2.35. Revision Changes Path 1.52 +2 -2 ports/audio/esound/Makefile 1.24 +2 -2 ports/audio/esound/distinfo 1.3 +1 -1 ports/audio/esound/files/patch-audio_oss.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 17:41:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9593216A4CE; Thu, 12 Aug 2004 17:41:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B88943D1F; Thu, 12 Aug 2004 17:41:33 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CHfXm7035259; Thu, 12 Aug 2004 17:41:33 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CHfXON035258; Thu, 12 Aug 2004 17:41:33 GMT (envelope-from marius) Message-Id: <200408121741.i7CHfXON035258@repoman.freebsd.org> From: Marius Strobl Date: Thu, 12 Aug 2004 17:41:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf files.powerpc files.sparc64 kmod.mk src/sys/dev/esp esp_sbus.c src/sys/dev/hme if_hme_sbus.c src/sys/dev/isp isp_sbus.c src/sys/dev/ofw ofw_bus.h ofw_bus_if.m... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 17:41:33 -0000 marius 2004-08-12 17:41:33 UTC FreeBSD src repository Modified files: sys/conf files.powerpc files.sparc64 kmod.mk sys/dev/esp esp_sbus.c sys/dev/hme if_hme_sbus.c sys/dev/isp isp_sbus.c sys/dev/pcf envctrl.c pcf_ebus.c sys/dev/puc puc_ebus.c puc_sbus.c sys/dev/sab sab.c sys/dev/uart uart_bus_ebus.c sys/dev/zs zs_macio.c zs_sbus.c sys/modules/esp Makefile sys/modules/hme Makefile sys/modules/isp Makefile sys/modules/uart Makefile sys/powerpc/powermac ata_macio.c hrowpic.c macio.c maciovar.h openpic_macio.c sys/sparc64/central central.c sys/sparc64/ebus ebus.c sys/sparc64/fhc fhc.c fhc_central.c fhc_nexus.c fhcvar.h sys/sparc64/include eeprom.h sys/sparc64/isa isa.c sys/sparc64/pci apb.c ofw_pci.h ofw_pci_if.m ofw_pcib.c ofw_pcib_subr.c ofw_pcib_subr.h ofw_pcibus.c psycho.c sys/sparc64/sbus sbus.c sbusvar.h sys/sparc64/sparc64 eeprom.c eeprom_ebus.c eeprom_sbus.c ofw_machdep.c Added files: sys/dev/ofw ofw_bus.h ofw_bus_if.m Removed files: sys/sparc64/central centralvar.h sys/sparc64/ebus ebusvar.h sys/sparc64/sparc64 eeprom_fhc.c Log: - Introduce an ofw_bus kobj-interface for retrieving the OFW node and a subset ("compatible", "device_type", "model" and "name") of the standard properties in drivers for devices on Open Firmware supported busses. The standard properties "reg", "interrupts" und "address" are not covered by this interface because they are only of interest in the respective bridge code. There's a remaining standard property "status" which is unclear how to support properly but which also isn't used in FreeBSD at present. This ofw_bus kobj-interface allows to replace the various (ebus_get_node(), ofw_pci_get_node(), etc.) and partially inconsistent (central_get_type() vs. sbus_get_device_type(), etc.) existing IVAR ones with a common one. This in turn allows to simplify and remove code-duplication in drivers for devices that can hang off of more than one OFW supported bus. - Convert the sparc64 Central, EBus, FHC, PCI and SBus bus drivers and the drivers for their children to use the ofw_bus kobj-interface. The IVAR- interfaces of the Central, EBus and FHC are entirely replaced by this. The PCI bus driver used its own kobj-interface and now also uses the ofw_bus one. The IVARs special to the SBus, e.g. for retrieving the burst size, remain. Beware: this causes an ABI-breakage for modules of drivers which used the IVAR-interfaces, i.e. esp(4), hme(4), isp(4) and uart(4), which need to be recompiled. The style-inconsistencies introduced in some of the bus drivers will be fixed by tmm@ in a generic clean-up of the respective drivers later (he requested to add the changes in the "new" style). - Convert the powerpc MacIO bus driver and the drivers for its children to use the ofw_bus kobj-interface. This invloves removing the IVARs related to the "reg" property which were unused and a leftover from the NetBSD origini of the code. There's no ABI-breakage caused by this because none of these driver are currently built as modules. There are other powerpc bus drivers which can be converted to the ofw_bus kobj-interface, e.g. the PCI bus driver, which should be done together with converting powerpc to use the OFW PCI code from sparc64. - Make the SBus and FHC front-end of zs(4) and the sparc64 eeprom(4) take advantage of the ofw_bus kobj-interface and simplify them a bit. Reviewed by: grehan, tmm Approved by: re (scottl) Discussed with: tmm Tested with: Sun AX1105, AXe, Ultra 2, Ultra 60; PPC cross-build on i386 Revision Changes Path 1.40 +1 -0 src/sys/conf/files.powerpc 1.57 +2 -1 src/sys/conf/files.sparc64 1.164 +1 -0 src/sys/conf/kmod.mk 1.6 +5 -4 src/sys/dev/esp/esp_sbus.c 1.13 +4 -3 src/sys/dev/hme/if_hme_sbus.c 1.15 +6 -5 src/sys/dev/isp/isp_sbus.c 1.1 +73 -0 src/sys/dev/ofw/ofw_bus.h (new) 1.1 +110 -0 src/sys/dev/ofw/ofw_bus_if.m (new) 1.4 +3 -5 src/sys/dev/pcf/envctrl.c 1.3 +7 -8 src/sys/dev/pcf/pcf_ebus.c 1.3 +4 -4 src/sys/dev/puc/puc_ebus.c 1.4 +4 -4 src/sys/dev/puc/puc_sbus.c 1.35 +12 -9 src/sys/dev/sab/sab.c 1.5 +5 -5 src/sys/dev/uart/uart_bus_ebus.c 1.6 +5 -9 src/sys/dev/zs/zs_macio.c 1.8 +12 -61 src/sys/dev/zs/zs_sbus.c 1.3 +1 -1 src/sys/modules/esp/Makefile 1.2 +2 -2 src/sys/modules/hme/Makefile 1.2 +1 -1 src/sys/modules/isp/Makefile 1.10 +3 -2 src/sys/modules/uart/Makefile 1.11 +2 -3 src/sys/powerpc/powermac/ata_macio.c 1.8 +2 -2 src/sys/powerpc/powermac/hrowpic.c 1.16 +69 -53 src/sys/powerpc/powermac/macio.c 1.5 +4 -27 src/sys/powerpc/powermac/maciovar.h 1.8 +2 -2 src/sys/powerpc/powermac/openpic_macio.c 1.4 +64 -46 src/sys/sparc64/central/central.c 1.2 +0 -47 src/sys/sparc64/central/centralvar.h (dead) 1.19 +71 -49 src/sys/sparc64/ebus/ebus.c 1.3 +0 -56 src/sys/sparc64/ebus/ebusvar.h (dead) 1.9 +52 -41 src/sys/sparc64/fhc/fhc.c 1.4 +10 -5 src/sys/sparc64/fhc/fhc_central.c 1.4 +8 -2 src/sys/sparc64/fhc/fhc_nexus.c 1.3 +5 -17 src/sys/sparc64/fhc/fhcvar.h 1.3 +2 -1 src/sys/sparc64/include/eeprom.h 1.13 +2 -1 src/sys/sparc64/isa/isa.c 1.10 +4 -1 src/sys/sparc64/pci/apb.c 1.8 +0 -7 src/sys/sparc64/pci/ofw_pci.h 1.5 +0 -17 src/sys/sparc64/pci/ofw_pci_if.m 1.4 +5 -2 src/sys/sparc64/pci/ofw_pcib.c 1.4 +4 -3 src/sys/sparc64/pci/ofw_pcib_subr.c 1.3 +1 -1 src/sys/sparc64/pci/ofw_pcib_subr.h 1.3 +67 -9 src/sys/sparc64/pci/ofw_pcibus.c 1.52 +7 -4 src/sys/sparc64/pci/psycho.c 1.31 +67 -25 src/sys/sparc64/sbus/sbus.c 1.4 +0 -8 src/sys/sparc64/sbus/sbusvar.h 1.5 +16 -9 src/sys/sparc64/sparc64/eeprom.c 1.7 +4 -19 src/sys/sparc64/sparc64/eeprom_ebus.c 1.7 +0 -136 src/sys/sparc64/sparc64/eeprom_fhc.c (dead) 1.7 +6 -20 src/sys/sparc64/sparc64/eeprom_sbus.c 1.10 +3 -1 src/sys/sparc64/sparc64/ofw_machdep.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 18:01:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 798E116A4CE; Thu, 12 Aug 2004 18:01:50 +0000 (GMT) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1955343D4C; Thu, 12 Aug 2004 18:01:50 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from dhcp50.pn.xcllnt.net (dhcp50.pn.xcllnt.net [192.168.4.250]) by ns1.xcllnt.net (8.12.11/8.12.11) with ESMTP id i7CI1n73087417; Thu, 12 Aug 2004 11:01:49 -0700 (PDT) (envelope-from marcel@piii.pn.xcllnt.net) Received: from dhcp50.pn.xcllnt.net (localhost [127.0.0.1]) by dhcp50.pn.xcllnt.net (8.13.1/8.13.1) with ESMTP id i7CI1n83030327; Thu, 12 Aug 2004 11:01:49 -0700 (PDT) (envelope-from marcel@dhcp50.pn.xcllnt.net) Received: (from marcel@localhost) by dhcp50.pn.xcllnt.net (8.13.1/8.13.1/Submit) id i7CI1ncp030326; Thu, 12 Aug 2004 11:01:49 -0700 (PDT) (envelope-from marcel) Date: Thu, 12 Aug 2004 11:01:49 -0700 From: Marcel Moolenaar To: Marius Strobl Message-ID: <20040812180149.GA30239@dhcp50.pn.xcllnt.net> References: <200408121741.i7CHfXON035258@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408121741.i7CHfXON035258@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf files.powerpc files.sparc64 kmod.mk src/sys/dev/esp esp_sbus.c src/sys/dev/hme if_hme_sbus.c src/sys/dev/isp isp_sbus.c src/sys/dev/ofw ofw_bus.h ofw_bus_if.m src/sys/dev/pcf envctrl.c pcf_ebus.c src/sys/dev/puc puc_ebus.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 18:01:50 -0000 On Thu, Aug 12, 2004 at 05:41:33PM +0000, Marius Strobl wrote: > Log: > - Introduce an ofw_bus kobj-interface for retrieving the OFW node and a > subset ("compatible", "device_type", "model" and "name") of the standard > properties in drivers for devices on Open Firmware supported busses. Very nice! -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net From owner-cvs-all@FreeBSD.ORG Thu Aug 12 18:02:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9503316A4CF; Thu, 12 Aug 2004 18:02:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71BEB43D49; Thu, 12 Aug 2004 18:02:52 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CI2qro035990; Thu, 12 Aug 2004 18:02:52 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CI2qxu035989; Thu, 12 Aug 2004 18:02:52 GMT (envelope-from pav) Message-Id: <200408121802.i7CI2qxu035989@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 12 Aug 2004 18:02:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils Makefile ports/sysutils/ucspi-ipc Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 18:02:52 -0000 pav 2004-08-12 18:02:52 UTC FreeBSD ports repository Modified files: sysutils Makefile Added files: sysutils/ucspi-ipc Makefile distinfo pkg-descr pkg-plist Log: Add ucspi-ipc, UCSPI tools for building local-domain client-server applications, by William Baxter. PR: ports/68794 Submitted by: David Thiel Revision Changes Path 1.570 +1 -0 ports/sysutils/Makefile 1.1 +51 -0 ports/sysutils/ucspi-ipc/Makefile (new) 1.1 +2 -0 ports/sysutils/ucspi-ipc/distinfo (new) 1.1 +19 -0 ports/sysutils/ucspi-ipc/pkg-descr (new) 1.1 +17 -0 ports/sysutils/ucspi-ipc/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 18:03:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8EF716A4CE; Thu, 12 Aug 2004 18:03:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9857243D3F; Thu, 12 Aug 2004 18:03:40 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CI3ev5036040; Thu, 12 Aug 2004 18:03:40 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CI3eg8036039; Thu, 12 Aug 2004 18:03:40 GMT (envelope-from pav) Message-Id: <200408121803.i7CI3eg8036039@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 12 Aug 2004 18:03:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 18:03:40 -0000 pav 2004-08-12 18:03:40 UTC FreeBSD ports repository Modified files: . modules Log: ucspi-ipc --> ports/sysutils/ucspi-ipc Revision Changes Path 1.10884 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 12 18:06:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76AC716A4CE; Thu, 12 Aug 2004 18:06:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B4CF43D3F; Thu, 12 Aug 2004 18:06:21 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CI6LK8036217; Thu, 12 Aug 2004 18:06:21 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CI6L0K036216; Thu, 12 Aug 2004 18:06:21 GMT (envelope-from rwatson) Message-Id: <200408121806.i7CI6L0K036216@repoman.freebsd.org> From: Robert Watson Date: Thu, 12 Aug 2004 18:06:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_event.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 18:06:21 -0000 rwatson 2004-08-12 18:06:21 UTC FreeBSD src repository Modified files: sys/kern kern_event.c Log: Trim trailing white space. Revision Changes Path 1.75 +11 -11 src/sys/kern/kern_event.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 18:06:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5679416A4CF; Thu, 12 Aug 2004 18:06:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34A5543D2F; Thu, 12 Aug 2004 18:06:45 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CI6jxw036263; Thu, 12 Aug 2004 18:06:45 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CI6jd1036262; Thu, 12 Aug 2004 18:06:45 GMT (envelope-from pav) Message-Id: <200408121806.i7CI6jd1036262@repoman.freebsd.org> From: Pav Lucistnik Date: Thu, 12 Aug 2004 18:06:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports LEGAL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 18:06:45 -0000 pav 2004-08-12 18:06:45 UTC FreeBSD ports repository Modified files: . LEGAL Log: - Kill trailing whitespace Revision Changes Path 1.357 +12 -12 ports/LEGAL From owner-cvs-all@FreeBSD.ORG Thu Aug 12 18:07:10 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0AEBB16A4CE; Thu, 12 Aug 2004 18:07:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2B4843D1F; Thu, 12 Aug 2004 18:07:09 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CI79k0036345; Thu, 12 Aug 2004 18:07:09 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CI79fp036344; Thu, 12 Aug 2004 18:07:09 GMT (envelope-from krion) Message-Id: <200408121807.i7CI79fp036344@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 12 Aug 2004 18:07:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/bfilter Makefile distinfo patch-main_htmlprocessor.cpppatch-main_network.h patch-main_serverresponsestream.cpp patch-main_uri.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 18:07:10 -0000 krion 2004-08-12 18:07:09 UTC FreeBSD ports repository Modified files: net/bfilter Makefile distinfo Removed files: net/bfilter/files patch-main_bfilter.cpp patch-main_htmlprocessor.cpp patch-main_htmlprocessor.h patch-main_network.cpp patch-main_network.h patch-main_serverresponsestream.cpp patch-main_uri.cpp Log: Update to 0.9.4 Revision Changes Path 1.13 +1 -2 ports/net/bfilter/Makefile 1.7 +2 -2 ports/net/bfilter/distinfo 1.2 +0 -14 ports/net/bfilter/files/patch-main_bfilter.cpp (dead) 1.2 +0 -57 ports/net/bfilter/files/patch-main_htmlprocessor.cpp (dead) 1.2 +0 -22 ports/net/bfilter/files/patch-main_htmlprocessor.h (dead) 1.2 +0 -23 ports/net/bfilter/files/patch-main_network.cpp (dead) 1.2 +0 -23 ports/net/bfilter/files/patch-main_network.h (dead) 1.2 +0 -22 ports/net/bfilter/files/patch-main_serverresponsestream.cpp (dead) 1.2 +0 -51 ports/net/bfilter/files/patch-main_uri.cpp (dead) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 18:19:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1213716A4CE; Thu, 12 Aug 2004 18:19:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E639C43D46; Thu, 12 Aug 2004 18:19:36 +0000 (GMT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CIJawV036691; Thu, 12 Aug 2004 18:19:36 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CIJa1X036690; Thu, 12 Aug 2004 18:19:36 GMT (envelope-from dwmalone) Message-Id: <200408121819.i7CIJa1X036690@repoman.freebsd.org> From: David Malone Date: Thu, 12 Aug 2004 18:19:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet tcp_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 18:19:37 -0000 dwmalone 2004-08-12 18:19:36 UTC FreeBSD src repository Modified files: sys/netinet tcp_subr.c Log: In tcp6_ctlinput, lock tcbinfo around the call to syncache_unreach so that the locks held are the same as the IPv4 case. Reviewed by: rwatson Revision Changes Path 1.200 +2 -0 src/sys/netinet/tcp_subr.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 18:31:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E372116A4CE; Thu, 12 Aug 2004 18:31:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C403543D45; Thu, 12 Aug 2004 18:31:36 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CIVa4B037069; Thu, 12 Aug 2004 18:31:36 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CIVaDw037068; Thu, 12 Aug 2004 18:31:36 GMT (envelope-from rwatson) Message-Id: <200408121831.i7CIVaDw037068@repoman.freebsd.org> From: Robert Watson Date: Thu, 12 Aug 2004 18:31:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet6 raw_ip6.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 18:31:37 -0000 rwatson 2004-08-12 18:31:36 UTC FreeBSD src repository Modified files: sys/netinet6 raw_ip6.c Log: When allocating the IPv6 header to stick in front of raw packet being sent via a raw IPv6 socket, use M_DONTWAIT not M_TRYWAIT, as we're holding the raw pcb mutex. Reported, tested by: kuriyama Revision Changes Path 1.45 +5 -1 src/sys/netinet6/raw_ip6.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 18:43:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17F4B16A4CE; Thu, 12 Aug 2004 18:43:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2FFE43D5A; Thu, 12 Aug 2004 18:43:01 +0000 (GMT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CIh1sd037395; Thu, 12 Aug 2004 18:43:01 GMT (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CIh16F037394; Thu, 12 Aug 2004 18:43:01 GMT (envelope-from nectar) Message-Id: <200408121843.i7CIh16F037394@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 12 Aug 2004 18:43:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 18:43:02 -0000 nectar 2004-08-12 18:43:01 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Correct version information syntax in a number of entries. VuXML-using tools are expected only to understand actual package names and version numbers, not globs such as `foo-{bar,baz}' or `1.*'. Revision Changes Path 1.166 +41 -23 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 15:49:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF5B816A4CF; Thu, 12 Aug 2004 15:49:42 +0000 (GMT) Received: from sirius.firepipe.net (sirius.firepipe.net [69.13.116.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98DD143D76; Thu, 12 Aug 2004 15:49:42 +0000 (GMT) (envelope-from will@csociety.org) Received: by sirius.firepipe.net (Postfix, from userid 1000) id 1C06D18100; Thu, 12 Aug 2004 10:49:42 -0500 (EST) Date: Thu, 12 Aug 2004 10:49:42 -0500 From: Will Andrews To: Alfred Perlstein Message-ID: <20040812154941.GJ32036@sirius.firepipe.net> References: <20040812012909.GA25768@electra.cse.Buffalo.EDU> <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> <20040812030913.GD27338@electra.cse.Buffalo.EDU> <1092287083.796.29.camel@tomcat.kitchenlab.org> <20040812053107.GK57908@elvis.mu.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ed/6oDxOLijJh8b0" Content-Disposition: inline In-Reply-To: <20040812053107.GK57908@elvis.mu.org> User-Agent: Mutt/1.5.6i X-Mailman-Approved-At: Thu, 12 Aug 2004 18:45:13 +0000 cc: "Bruce A. Mah" cc: Ken Smith cc: re@freebsd.org cc: src-committers@freebsd.org cc: cvs-src@freebsd.org cc: cvs-all@freebsd.org cc: Doug Barton cc: Ceri Davies cc: Oliver Eikemeier Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 15:49:43 -0000 --ed/6oDxOLijJh8b0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Aug 11, 2004 at 10:31:07PM -0700, Alfred Perlstein wrote: > But wouldn't it suck to be that user that actually does use '-c' > correctly, and to have it suddenly gone in the middle of a "stable" > release? It is a broken mis-feature. Please tell me how you managed to make it work properly. Do you have some sort of script that sorts the output in order by dependency tree? Or do you actually go through it every time and sort it by hand? Do you think that it's justified that so many other users who didn't know what they were doing shot themselves in the foot? portupgrade is a much better tool. How about simply replacing -c with a message suggesting use of that instead? Regards, --=20 wca --ed/6oDxOLijJh8b0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD4DBQFBG5GVF47idPgWcsURAgO9AJYvemY/3fZWlkrCVPQGsnjQgRK0AKCWphdZ MqTrBELB8FJ66u+xNPyS+Q== =p7QF -----END PGP SIGNATURE----- --ed/6oDxOLijJh8b0-- From owner-cvs-all@FreeBSD.ORG Thu Aug 12 16:06:30 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8A2A016A4CE; Thu, 12 Aug 2004 16:06:30 +0000 (GMT) Received: from sccrmhc13.comcast.net (sccrmhc13.comcast.net [204.127.202.64]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0EB943D66; Thu, 12 Aug 2004 16:06:29 +0000 (GMT) (envelope-from DougB@freebsd.org) Received: from lap (c-24-130-110-32.we.client2.attbi.com[24.130.110.32]) by comcast.net (sccrmhc13) with SMTP id <2004081216062701600ql5b2e>; Thu, 12 Aug 2004 16:06:29 +0000 Date: Thu, 12 Aug 2004 09:06:26 -0700 (PDT) From: Doug Barton To: Will Andrews In-Reply-To: <20040812154941.GJ32036@sirius.firepipe.net> Message-ID: <20040812085554.M773@ync.qbhto.arg> References: <20040812012909.GA25768@electra.cse.Buffalo.EDU> <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> <1092287083.796.29.camel@tomcat.kitchenlab.org> <20040812154941.GJ32036@sirius.firepipe.net> Organization: http://www.FreeBSD.org/ X-message-flag: Outlook -- Not just for spreading viruses anymore! MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-Mailman-Approved-At: Thu, 12 Aug 2004 18:45:13 +0000 cc: "Bruce A. Mah" cc: Ken Smith cc: "re@freebsd.org" cc: "cvs-src@freebsd.org" cc: Alfred Perlstein cc: "cvs-all@freebsd.org" cc: "src-committers@freebsd.org" cc: Ceri Davies cc: Oliver Eikemeier Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.hextract.c Makefilesrc/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:06:30 -0000 On Thu, 12 Aug 2004, Will Andrews wrote: > On Wed, Aug 11, 2004 at 10:31:07PM -0700, Alfred Perlstein wrote: >> But wouldn't it suck to be that user that actually does use '-c' >> correctly, and to have it suddenly gone in the middle of a "stable" >> release? > > It is a broken mis-feature. Please tell me how you managed to > make it work properly. Do you have some sort of script that > sorts the output in order by dependency tree? Or do you actually > go through it every time and sort it by hand? Do you think that > it's justified that so many other users who didn't know what they > were doing shot themselves in the foot? I find this line of reasoning very interesting in light of the disagreement I'm currently having with eik about repo copying a port I'm working on. On the one hand, you and he are arguing that it's perfectly ok to break POLA in -stable because the new stuff is better, and the old stuff sucked anyway. On the other hand, eik and one other member of the portmgr team are arguing that an old port's revision history is so incredibly valuable that it must be preserved, even though it has little relevance to the new port. I'd find this funny if it weren't so sad. This is exactly the opposite of what it should be. In the past, the very definition of a -stable branch included that features were NEVER removed. It doesn't matter how much YOU as an individual developer don't like a feature, you have absolutely no way of knowing how many users depend on it, how they are using it, etc. On the other hand, repo copying a port has always been a judgement call, based on the merits of the individual case, repo bloat, etc., and now we're being told that this rule must remain inviolate. I think that this bodes very poorly for the project. Doug -- This .signature sanitized for your protection From owner-cvs-all@FreeBSD.ORG Thu Aug 12 16:21:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93F3016A4CE; Thu, 12 Aug 2004 16:21:48 +0000 (GMT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 503F443D2D; Thu, 12 Aug 2004 16:21:48 +0000 (GMT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 3B18F5C91C; Thu, 12 Aug 2004 09:21:48 -0700 (PDT) Date: Thu, 12 Aug 2004 09:21:48 -0700 From: Alfred Perlstein To: Doug Barton Message-ID: <20040812162148.GM57908@elvis.mu.org> References: <20040812012909.GA25768@electra.cse.Buffalo.EDU> <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> <20040812030913.GD27338@electra.cse.Buffalo.EDU> <1092287083.796.29.camel@tomcat.kitchenlab.org> <20040812053107.GK57908@elvis.mu.org> <20040812154941.GJ32036@sirius.firepipe.net> <20040812085554.M773@ync.qbhto.arg> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040812085554.M773@ync.qbhto.arg> User-Agent: Mutt/1.4.2.1i X-Mailman-Approved-At: Thu, 12 Aug 2004 18:45:13 +0000 cc: "Bruce A. Mah" cc: Ken Smith cc: "re@freebsd.org" cc: "cvs-src@freebsd.org" cc: Will Andrews cc: "src-committers@freebsd.org" cc: "cvs-all@freebsd.org" cc: Ceri Davies cc: Oliver Eikemeier Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:21:49 -0000 * Doug Barton [040812 09:06] wrote: > > I find this line of reasoning very interesting in light of the > disagreement I'm currently having with eik about repo copying a port I'm > working on. On the one hand, you and he are arguing that it's perfectly > ok to break POLA in -stable because the new stuff is better, and the old > stuff sucked anyway. On the other hand, eik and one other member of the > portmgr team are arguing that an old port's revision history is so > incredibly valuable that it must be preserved, even though it has > little relevance to the new port. I'd find this funny if it weren't so > sad. It's upsetting that the two concerns are: 1) Breaking POLA because somehow someone on the team knows what's better for users, somehow this is OK. 2) Preserving repo history, that the user couldn't give two shits about. I would have made another port, at least for a couple of months. I don't care about the history, as long as you're not taking away a widely used tool (no matter how much it "sucks") and forcing people to upgrade. -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-all@FreeBSD.ORG Thu Aug 12 16:41:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C19B916A4D0; Thu, 12 Aug 2004 16:41:45 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CE5743D49; Thu, 12 Aug 2004 16:41:45 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-13.local ([172.16.0.13] helo=dhcp-10.local) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1BvIe5-0008uD-Vm; Thu, 12 Aug 2004 18:41:44 +0200 Date: Thu, 12 Aug 2004 18:43:21 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Doug Barton From: Oliver Eikemeier In-Reply-To: <20040812085554.M773@ync.qbhto.arg> Message-Id: Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 X-Mailman-Approved-At: Thu, 12 Aug 2004 18:45:13 +0000 cc: "Bruce A. Mah" cc: Ken Smith cc: re@freebsd.org cc: cvs-src@freebsd.org cc: Alfred Perlstein cc: Will Andrews cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: Ceri Davies Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:41:46 -0000 Doug Barton wrote: > I find this line of reasoning very interesting in light of the > disagreement I'm currently having with eik about repo copying a port > I'm working on. On the one hand, you and he are arguing that it's > perfectly ok to break POLA in -stable because the new stuff is better, > and the old stuff sucked anyway. Ehm, could you point me to the post where I said that? I seem to suffer from amnesia. Or is this your interpretion of "I will add an -c option to the C pkg_version code ASAP. I believe backing this out won't be beneficial for -STABLE users, since they'll loose a lot of features (and speed)." [...] > This is exactly the opposite of what it should be. In the past, the > very definition of a -stable branch included that features were NEVER > removed. It doesn't matter how much YOU as an individual developer > don't like a feature, you have absolutely no way of knowing how many > users depend on it, how they are using it, etc. What is your point here? I made a mistake that I recognized only in the last moment, and I'm working on fixing it. So? -Oliver [stuff unrelated to this thread deleted. please reply to ] From owner-cvs-all@FreeBSD.ORG Thu Aug 12 16:00:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A536216A4CE; Thu, 12 Aug 2004 16:00:13 +0000 (GMT) Received: from shrike.submonkey.net (cpc2-cdif3-6-0-cust204.cdif.cable.ntl.com [81.103.67.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3011943D3F; Thu, 12 Aug 2004 16:00:13 +0000 (GMT) (envelope-from setantae@submonkey.net) Received: from setantae by shrike.submonkey.net with local (Exim 4.41 (FreeBSD)) id 1BvHzv-000LH3-I5; Thu, 12 Aug 2004 17:00:11 +0100 Date: Thu, 12 Aug 2004 17:00:11 +0100 From: Ceri Davies To: Will Andrews Message-ID: <20040812160011.GG87690@submonkey.net> Mail-Followup-To: Ceri Davies , Will Andrews , Alfred Perlstein , "Bruce A. Mah" , Ken Smith , Oliver Eikemeier , Doug Barton , re@freebsd.org, src-committers@freebsd.org, cvs-src@freebsd.org, cvs-all@freebsd.org References: <20040812012909.GA25768@electra.cse.Buffalo.EDU> <2CD52765-EC03-11D8-887A-00039312D914@fillmore-labs.com> <20040812030913.GD27338@electra.cse.Buffalo.EDU> <1092287083.796.29.camel@tomcat.kitchenlab.org> <20040812053107.GK57908@elvis.mu.org> <20040812154941.GJ32036@sirius.firepipe.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="f8uTbadvzI+nQOZu" Content-Disposition: inline In-Reply-To: <20040812154941.GJ32036@sirius.firepipe.net> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.6i Sender: Ceri Davies X-Mailman-Approved-At: Thu, 12 Aug 2004 18:46:30 +0000 cc: "Bruce A. Mah" cc: Doug Barton cc: re@freebsd.org cc: cvs-src@freebsd.org cc: Alfred Perlstein cc: cvs-all@freebsd.org cc: src-committers@freebsd.org cc: Ken Smith cc: Oliver Eikemeier Subject: Re: cvs commit: src/usr.sbin/pkg_install/add Makefile add.h extract.c futil.c main.c perform.c pkg_add.1 src/usr.sbin/pkg_install/create Makefile create.h main.c perform.c pkg_create.1 pl.c src/usr.sbin/pkg_install/delete Makefile delete.h main.c perform.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 16:00:13 -0000 --f8uTbadvzI+nQOZu Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Aug 12, 2004 at 10:49:42AM -0500, Will Andrews wrote: > On Wed, Aug 11, 2004 at 10:31:07PM -0700, Alfred Perlstein wrote: > > But wouldn't it suck to be that user that actually does use '-c' > > correctly, and to have it suddenly gone in the middle of a "stable" > > release? >=20 > It is a broken mis-feature. Please tell me how you managed to > make it work properly. Do you have some sort of script that > sorts the output in order by dependency tree? Or do you actually > go through it every time and sort it by hand? Do you think that > it's justified that so many other users who didn't know what they > were doing shot themselves in the foot? >=20 > portupgrade is a much better tool. How about simply replacing -c > with a message suggesting use of that instead? These discussions happen every time something like this happens. The fact is that the development community have an agreement with the userbase that we will not do this. The fact that we all think that -c is shit doesn't change that. re@ need to make the call and everyone else, including myself, should shut the hell up (and doubly so, since re and eik have already agreed a resolution). Ceri --=20 It is not tinfoil, it is my new skin. I am a robot. --f8uTbadvzI+nQOZu Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBG5QLocfcwTS3JF8RAmWMAJ9eyJZdwQv0jr9TUMQatfZmHgVWSQCgknXJ 3cdM1v83jCEI207w84h85w8= =dAvc -----END PGP SIGNATURE----- --f8uTbadvzI+nQOZu-- From owner-cvs-all@FreeBSD.ORG Thu Aug 12 18:56:10 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 772CB16A4CE; Thu, 12 Aug 2004 18:56:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59C7443D39; Thu, 12 Aug 2004 18:56:10 +0000 (GMT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CIuATu037776; Thu, 12 Aug 2004 18:56:10 GMT (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CIuAYp037775; Thu, 12 Aug 2004 18:56:10 GMT (envelope-from nectar) Message-Id: <200408121856.i7CIuAYp037775@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 12 Aug 2004 18:56:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 18:56:10 -0000 nectar 2004-08-12 18:56:10 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Under certain configurations of POPfile may allow an attacker to retrieve files from the victim's machine. Reported by: Daniel Grund Revision Changes Path 1.167 +26 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 19:05:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05A9616A4CE; Thu, 12 Aug 2004 19:05:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAD8043D1F; Thu, 12 Aug 2004 19:05:51 +0000 (GMT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CJ5puK038077; Thu, 12 Aug 2004 19:05:51 GMT (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CJ5pPP038076; Thu, 12 Aug 2004 19:05:51 GMT (envelope-from nectar) Message-Id: <200408121905.i7CJ5pPP038076@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 12 Aug 2004 19:05:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 19:05:52 -0000 nectar 2004-08-12 19:05:51 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: The Adobe Acrobat Reader can be coerced into executing arbitrary commands on UNIX systems. Revision Changes Path 1.168 +37 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 19:07:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F039A16A4CE; Thu, 12 Aug 2004 19:07:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1FA243D2D; Thu, 12 Aug 2004 19:07:32 +0000 (GMT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CJ7WAv038129; Thu, 12 Aug 2004 19:07:32 GMT (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CJ7Wc6038128; Thu, 12 Aug 2004 19:07:32 GMT (envelope-from nectar) Message-Id: <200408121907.i7CJ7Wc6038128@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 12 Aug 2004 19:07:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/acroread5 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 19:07:33 -0000 nectar 2004-08-12 19:07:32 UTC FreeBSD ports repository Modified files: print/acroread5 Makefile Log: Mark forbidden due to arbitrary command execution. Revision Changes Path 1.50 +2 -0 ports/print/acroread5/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 19:09:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5BBC916A4CE; Thu, 12 Aug 2004 19:09:12 +0000 (GMT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2131143D48; Thu, 12 Aug 2004 19:09:12 +0000 (GMT) (envelope-from nectar@celabo.org) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "madman.celabo.org", Issuer "celabo.org CA" (not verified)) by gw.celabo.org (Postfix) with ESMTP id B5FF05487E; Thu, 12 Aug 2004 14:09:11 -0500 (CDT) Received: by madman.celabo.org (Postfix, from userid 1001) id 49A036D465; Thu, 12 Aug 2004 14:09:11 -0500 (CDT) Date: Thu, 12 Aug 2004 14:09:11 -0500 From: "Jacques A. Vidrine" To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040812190911.GB1279@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200408121907.i7CJ7Wc6038128@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408121907.i7CJ7Wc6038128@repoman.freebsd.org> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i Subject: Re: cvs commit: ports/print/acroread5 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 19:09:12 -0000 On Thu, Aug 12, 2004 at 07:07:32PM +0000, Jacques A. Vidrine wrote: > nectar 2004-08-12 19:07:32 UTC > > FreeBSD ports repository > > Modified files: > print/acroread5 Makefile > Log: > Mark forbidden due to arbitrary command execution. > > > Revision Changes Path > 1.50 +2 -0 ports/print/acroread5/Makefile It seems reasonable to assume that Acrobat Reader 3.x is also affected, but I haven't checked. Cheers, -- Jacques Vidrine / nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org From owner-cvs-all@FreeBSD.ORG Thu Aug 12 19:14:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4A4316A4CE; Thu, 12 Aug 2004 19:14:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C716143D48; Thu, 12 Aug 2004 19:14:08 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CJE8bs038341; Thu, 12 Aug 2004 19:14:08 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CJE8RF038340; Thu, 12 Aug 2004 19:14:08 GMT (envelope-from oliver) Message-Id: <200408121914.i7CJE8RF038340@repoman.freebsd.org> From: Oliver Lehmann Date: Thu, 12 Aug 2004 19:14:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/libuta Makefile ports/devel/libuta/files patch-uta::blitters.cc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 19:14:09 -0000 oliver 2004-08-12 19:14:08 UTC FreeBSD ports repository Modified files: devel/libuta Makefile devel/libuta/files patch-uta::blitters.cc Log: fix build with gcc 3.4 Bump PORTREVISION Revision Changes Path 1.26 +1 -1 ports/devel/libuta/Makefile 1.3 +33 -6 ports/devel/libuta/files/patch-uta::blitters.cc From owner-cvs-all@FreeBSD.ORG Thu Aug 12 19:14:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3551016A4D9; Thu, 12 Aug 2004 19:14:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1778D43D48; Thu, 12 Aug 2004 19:14:11 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CJEApX038370; Thu, 12 Aug 2004 19:14:10 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CJEASP038369; Thu, 12 Aug 2004 19:14:10 GMT (envelope-from harti) Message-Id: <200408121914.i7CJEASP038369@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 12 Aug 2004 19:14:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/regression/usr.bin/make Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 19:14:11 -0000 harti 2004-08-12 19:14:10 UTC FreeBSD src repository Modified files: tools/regression/usr.bin/make Makefile Log: Now that make more correctly handles variable assignments in .MAKEFLAGS targets enable the regression test for this. Revision Changes Path 1.20 +1 -3 src/tools/regression/usr.bin/make/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 19:17:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E562916A4CE; Thu, 12 Aug 2004 19:17:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C842143D39; Thu, 12 Aug 2004 19:17:29 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CJHT6j038486; Thu, 12 Aug 2004 19:17:29 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CJHTdV038485; Thu, 12 Aug 2004 19:17:29 GMT (envelope-from harti) Message-Id: <200408121917.i7CJHTdV038485@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 12 Aug 2004 19:17:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: BEGEMOT Subject: cvs commit: src/contrib/bsnmp/snmpd config.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 19:17:30 -0000 harti 2004-08-12 19:17:29 UTC FreeBSD src repository Modified files: (Branch: BEGEMOT) contrib/bsnmp/snmpd config.c Log: Vendor patch: don't dump core when the config file cannot be opened. Submitted by: Maxim Konovalov Revision Changes Path 1.1.1.5 +6 -1 src/contrib/bsnmp/snmpd/config.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 19:23:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B73516A4CE; Thu, 12 Aug 2004 19:23:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3940F43D45; Thu, 12 Aug 2004 19:23:23 +0000 (GMT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CJNNJS038639; Thu, 12 Aug 2004 19:23:23 GMT (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CJNNxV038638; Thu, 12 Aug 2004 19:23:23 GMT (envelope-from nectar) Message-Id: <200408121923.i7CJNNxV038638@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 12 Aug 2004 19:23:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 19:23:23 -0000 nectar 2004-08-12 19:23:23 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: The MSN component of Gaim contains remotely exploitable buffer overflows. Revision Changes Path 1.169 +26 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 19:25:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DD0F416A4CE; Thu, 12 Aug 2004 19:25:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF5E043D3F; Thu, 12 Aug 2004 19:25:14 +0000 (GMT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CJPEWT038694; Thu, 12 Aug 2004 19:25:14 GMT (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CJPE5Y038693; Thu, 12 Aug 2004 19:25:14 GMT (envelope-from nectar) Message-Id: <200408121925.i7CJPE5Y038693@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 12 Aug 2004 19:25:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/gaim Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 19:25:15 -0000 nectar 2004-08-12 19:25:14 UTC FreeBSD ports repository Modified files: net/gaim Makefile Log: The MSN component of gaim contains remotely exploitable buffer overflows. Revision Changes Path 1.153 +2 -0 ports/net/gaim/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 19:32:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE8CE16A4CE; Thu, 12 Aug 2004 19:32:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A21B043D3F; Thu, 12 Aug 2004 19:32:34 +0000 (GMT) (envelope-from lth@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CJWY6U038977; Thu, 12 Aug 2004 19:32:34 GMT (envelope-from lth@repoman.freebsd.org) Received: (from lth@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CJWYdc038976; Thu, 12 Aug 2004 19:32:34 GMT (envelope-from lth) Message-Id: <200408121932.i7CJWYdc038976@repoman.freebsd.org> From: Lars Thegler Date: Thu, 12 Aug 2004 19:32:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Module-CoreList Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 19:32:34 -0000 lth 2004-08-12 19:32:34 UTC FreeBSD ports repository Modified files: devel/p5-Module-CoreList Makefile distinfo Log: Update to 1.96 PR: 69774 Approved by: maintainer timeout (2 weeks) Revision Changes Path 1.4 +1 -1 ports/devel/p5-Module-CoreList/Makefile 1.5 +2 -2 ports/devel/p5-Module-CoreList/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 12 19:37:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4296C16A4CE; Thu, 12 Aug 2004 19:37:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 256D643D45; Thu, 12 Aug 2004 19:37:17 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CJbHUt039162; Thu, 12 Aug 2004 19:37:17 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CJbHvU039161; Thu, 12 Aug 2004 19:37:17 GMT (envelope-from thierry) Message-Id: <200408121937.i7CJbHvU039161@repoman.freebsd.org> From: Thierry Thomas Date: Thu, 12 Aug 2004 19:37:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/tidy-devel Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 19:37:17 -0000 thierry 2004-08-12 19:37:16 UTC FreeBSD ports repository Modified files: www/tidy-devel Makefile distinfo Log: Upgrade to the latest snapshot + some cleaning. Revision Changes Path 1.88 +7 -14 ports/www/tidy-devel/Makefile 1.74 +4 -4 ports/www/tidy-devel/distinfo From owner-cvs-all@FreeBSD.ORG Thu Aug 12 20:06:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4DA5716A4CF; Thu, 12 Aug 2004 20:06:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 463D943D39; Thu, 12 Aug 2004 20:06:01 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CK61qt040043; Thu, 12 Aug 2004 20:06:01 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CK61qu040042; Thu, 12 Aug 2004 20:06:01 GMT (envelope-from ru) Message-Id: <200408122006.i7CK61qu040042@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 12 Aug 2004 20:06:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/pkg_install/add Makefile src/usr.sbin/pkg_install/create Makefile src/usr.sbin/pkg_install/delete Makefile src/usr.sbin/pkg_install/lib Makefile src/usr.sbin/pkg_install/sign Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:06:01 -0000 ru 2004-08-12 20:06:01 UTC FreeBSD src repository Modified files: usr.sbin/pkg_install/add Makefile usr.sbin/pkg_install/create Makefile usr.sbin/pkg_install/delete Makefile usr.sbin/pkg_install/info Makefile usr.sbin/pkg_install/lib Makefile usr.sbin/pkg_install/sign Makefile usr.sbin/pkg_install/version Makefile Log: Don't put DEBUG to CFLAGS, we have the standard DEBUG_FLAGS for this. Revision Changes Path 1.21 +1 -1 src/usr.sbin/pkg_install/add/Makefile 1.22 +1 -1 src/usr.sbin/pkg_install/create/Makefile 1.22 +1 -1 src/usr.sbin/pkg_install/delete/Makefile 1.20 +1 -1 src/usr.sbin/pkg_install/info/Makefile 1.17 +0 -2 src/usr.sbin/pkg_install/lib/Makefile 1.10 +1 -1 src/usr.sbin/pkg_install/sign/Makefile 1.16 +1 -1 src/usr.sbin/pkg_install/version/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 20:13:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9591416A4CE; Thu, 12 Aug 2004 20:13:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 796D043D31; Thu, 12 Aug 2004 20:13:05 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CKD5J2040245; Thu, 12 Aug 2004 20:13:05 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CKD5PT040244; Thu, 12 Aug 2004 20:13:05 GMT (envelope-from oliver) Message-Id: <200408122013.i7CKD5PT040244@repoman.freebsd.org> From: Oliver Lehmann Date: Thu, 12 Aug 2004 20:13:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/atlas Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:13:05 -0000 oliver 2004-08-12 20:13:05 UTC FreeBSD ports repository Modified files: devel/atlas Makefile distinfo pkg-plist Log: update to 0.4.94 Revision Changes Path 1.13 +1 -1 ports/devel/atlas/Makefile 1.6 +2 -2 ports/devel/atlas/distinfo 1.8 +1 -0 ports/devel/atlas/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 20:14:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43FB216A4CE; Thu, 12 Aug 2004 20:14:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28C5843D3F; Thu, 12 Aug 2004 20:14:21 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CKELXC040299; Thu, 12 Aug 2004 20:14:21 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CKEL2n040298; Thu, 12 Aug 2004 20:14:21 GMT (envelope-from sanpei) Message-Id: <200408122014.i7CKEL2n040298@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Thu, 12 Aug 2004 20:14:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb umass.c usbdevs X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:14:21 -0000 sanpei 2004-08-12 20:14:20 UTC FreeBSD src repository Modified files: sys/dev/usb umass.c usbdevs Log: add support Sitecom CN-311 usb flash reader(aka SIIG_WINTERREADER) PR: kern/64722 Submitted by: Thiemo Nordenholz MFC after: 1 week Revision Changes Path 1.110 +4 -0 src/sys/dev/usb/umass.c 1.194 +1 -0 src/sys/dev/usb/usbdevs From owner-cvs-all@FreeBSD.ORG Thu Aug 12 20:14:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2DA5316A4FF; Thu, 12 Aug 2004 20:14:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10A1C43D31; Thu, 12 Aug 2004 20:14:50 +0000 (GMT) (envelope-from tegge@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CKEnkk040334; Thu, 12 Aug 2004 20:14:49 GMT (envelope-from tegge@repoman.freebsd.org) Received: (from tegge@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CKEn2I040333; Thu, 12 Aug 2004 20:14:49 GMT (envelope-from tegge) Message-Id: <200408122014.i7CKEn2I040333@repoman.freebsd.org> From: Tor Egge Date: Thu, 12 Aug 2004 20:14:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_fault.c vm_map.c vm_map.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:14:50 -0000 tegge 2004-08-12 20:14:49 UTC FreeBSD src repository Modified files: sys/vm vm_fault.c vm_map.c vm_map.h Log: The vm map lock is needed in vm_fault() after the page has been found, to avoid later changes before pmap_enter() and vm_fault_prefault() has completed. Simplify deadlock avoidance by not blocking on vm map relookup. In collaboration with: alc Revision Changes Path 1.191 +37 -51 src/sys/vm/vm_fault.c 1.356 +102 -6 src/sys/vm/vm_map.c 1.115 +2 -1 src/sys/vm/vm_map.h From owner-cvs-all@FreeBSD.ORG Thu Aug 12 20:37:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB86016A4CE; Thu, 12 Aug 2004 20:37:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BEFB643D45; Thu, 12 Aug 2004 20:37:02 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CKb2wD041015; Thu, 12 Aug 2004 20:37:02 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CKb2NU041014; Thu, 12 Aug 2004 20:37:02 GMT (envelope-from marius) Message-Id: <200408122037.i7CKb2NU041014@repoman.freebsd.org> From: Marius Strobl Date: Thu, 12 Aug 2004 20:37:02 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/hme if_hme.c if_hme_pci.c if_hme_sbus.c if_hmevar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:37:03 -0000 marius 2004-08-12 20:37:02 UTC FreeBSD src repository Modified files: sys/dev/hme if_hme.c if_hme_pci.c if_hme_sbus.c if_hmevar.h Log: - Use bus_space_subregion() rather than arithmetic on bus_space_handle_t. [1] - Properly use the error variable and return it on failure in the attach- routines. Reviewed by: tmm Inspired by: NetBSD [1] Revision Changes Path 1.30 +2 -2 src/sys/dev/hme/if_hme.c 1.14 +16 -11 src/sys/dev/hme/if_hme_pci.c 1.14 +12 -10 src/sys/dev/hme/if_hme_sbus.c 1.6 +0 -5 src/sys/dev/hme/if_hmevar.h From owner-cvs-all@FreeBSD.ORG Thu Aug 12 20:38:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D588016A4CE; Thu, 12 Aug 2004 20:38:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA38B43D1D; Thu, 12 Aug 2004 20:38:43 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CKchVN041092; Thu, 12 Aug 2004 20:38:43 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CKchPU041091; Thu, 12 Aug 2004 20:38:43 GMT (envelope-from marcus) Message-Id: <200408122038.i7CKchPU041091@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 12 Aug 2004 20:38:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/gaim Makefile ports/net/gaim/files patch-msn X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:38:44 -0000 marcus 2004-08-12 20:38:43 UTC FreeBSD ports repository Modified files: net/gaim Makefile Added files: net/gaim/files patch-msn Log: Fix the remotely exploitable buffer overflows in the MSN protocol. Submitted by: nectar Obtained from: Sebastian Krahmer Revision Changes Path 1.154 +1 -2 ports/net/gaim/Makefile 1.1 +45 -0 ports/net/gaim/files/patch-msn (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 20:43:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5802816A4CE; Thu, 12 Aug 2004 20:43:32 +0000 (GMT) Received: from aslan.scsiguy.com (mail.scsiguy.com [63.229.232.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2B7743D1D; Thu, 12 Aug 2004 20:43:31 +0000 (GMT) (envelope-from gibbs@scsiguy.com) Received: from aslan.scsiguy.com (aslan.scsiguy.com [63.229.232.106]) by aslan.scsiguy.com (8.12.11/8.12.11) with ESMTP id i7CKhAOc023060; Thu, 12 Aug 2004 14:43:23 -0600 (MDT) (envelope-from gibbs@scsiguy.com) Date: Thu, 12 Aug 2004 14:43:10 -0600 From: "Justin T. Gibbs" To: Thomas Moestl , John-Mark Gurney Message-ID: <2CA8968CB91C695E852DB6E3@aslan.scsiguy.com> In-Reply-To: <20040812011010.GA4799@timesink.dyndns.org> References: <200408111452.i7BEqXg8071621@repoman.freebsd.org> <20040811150458.GU991@funkthat.com> <20040812011010.GA4799@timesink.dyndns.org> X-Mailer: Mulberry/3.1.6 (Linux/x86) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/man/man9 bus_dma.9 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: "Justin T. Gibbs" List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:43:32 -0000 > NetBSD has a nice clarification: > Synchronization operations are expressed from the perspective of > the host RAM, e.g., a device -> memory operation is a READ and a > memory -> device operation is a WRITE. > > I think that something of that variety is required, since there are > always the two opposite meanings of "reading from" and "reading into". First off, yes, our code is compatible with the NetBSD semantics. While their description is perhaps more accurate, I believe that the API as currently defined and the above description are still confusing. If the API is from the perspective of the memory, then a WRITE would mean the memory is updated by the operation, but it is not. Perhaps a better way to describe the current semantics is from the perspective of a "backing store". If you are writing a packet to the wire, you perform a PREWRITE. If you are reading a packet from the wire, you perform a PREREAD. A filesystem write requires the SCSI controller to use a PREWRITE primative. A filesystem read requires the SCSI controller to use PREREAD. etc. I believe this was the intention of the original API. In the long run, I'd like to come up with API names that are from the perspective of the DMA engine doing the work. These names should be different enough from the current API names so that the old API can be retained for compatibility with NetBSD and OpenBSD. I think that is the only way to really end the confusion. -- Justin From owner-cvs-all@FreeBSD.ORG Thu Aug 12 20:44:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8D6C16A4CE; Thu, 12 Aug 2004 20:44:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DCAE43D49; Thu, 12 Aug 2004 20:44:41 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CKif18041340; Thu, 12 Aug 2004 20:44:41 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CKifOM041339; Thu, 12 Aug 2004 20:44:41 GMT (envelope-from marcus) Message-Id: <200408122044.i7CKifOM041339@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 12 Aug 2004 20:44:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:44:41 -0000 marcus 2004-08-12 20:44:41 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Update Gaim vulnerability (5b8f9a02-ec93-11d8-b913-000c41e2cdad) to indicate that gaim-0.81_1 has a fix for this. Revision Changes Path 1.170 +3 -2 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 20:47:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E5F816A4CE; Thu, 12 Aug 2004 20:47:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7160F43D46; Thu, 12 Aug 2004 20:47:35 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CKlZTs041506; Thu, 12 Aug 2004 20:47:35 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CKlZ0n041505; Thu, 12 Aug 2004 20:47:35 GMT (envelope-from thierry) Message-Id: <200408122047.i7CKlZ0n041505@repoman.freebsd.org> From: Thierry Thomas Date: Thu, 12 Aug 2004 20:47:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel Makefile ports/devel/pear-HTML_Select Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:47:35 -0000 thierry 2004-08-12 20:47:35 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/pear-HTML_Select Makefile distinfo pkg-descr Log: Add pear-HTML_Select 1.2.1, PEAR::HTML_Select is a class for generating HTML form select elements. PR: 70325 Submitted by: Michael Schout Revision Changes Path 1.1671 +1 -0 ports/devel/Makefile 1.4 +23 -0 ports/devel/pear-HTML_Select/Makefile (new) 1.3 +2 -0 ports/devel/pear-HTML_Select/distinfo (new) 1.3 +4 -0 ports/devel/pear-HTML_Select/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 20:47:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6F17D16A4CE; Thu, 12 Aug 2004 20:47:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5328943D2D; Thu, 12 Aug 2004 20:47:47 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CKll6q041552; Thu, 12 Aug 2004 20:47:47 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CKllwx041551; Thu, 12 Aug 2004 20:47:47 GMT (envelope-from thierry) Message-Id: <200408122047.i7CKllwx041551@repoman.freebsd.org> From: Thierry Thomas Date: Thu, 12 Aug 2004 20:47:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:47:47 -0000 thierry 2004-08-12 20:47:47 UTC FreeBSD ports repository Modified files: . modules Log: pear-HTML_Select --> ports/devel/pear-HTML_Select Revision Changes Path 1.10885 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 12 20:51:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DCF8F16A4CE; Thu, 12 Aug 2004 20:51:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D499C43D4C; Thu, 12 Aug 2004 20:51:15 +0000 (GMT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CKpFY5041779; Thu, 12 Aug 2004 20:51:15 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CKpFfn041778; Thu, 12 Aug 2004 20:51:15 GMT (envelope-from knu) Message-Id: <200408122051.i7CKpFfn041778@repoman.freebsd.org> From: Akinori MUSHA Date: Thu, 12 Aug 2004 20:51:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www Makefile ports/www/mod_fcgid Makefile distinfo pkg-descr pkg-message pkg-plist ports/www/mod_fcgid/files patch-fcgid_conf.c patch-fcgid_proc_unix.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:51:16 -0000 knu 2004-08-12 20:51:15 UTC FreeBSD ports repository Modified files: www Makefile Added files: www/mod_fcgid Makefile distinfo pkg-descr pkg-message pkg-plist www/mod_fcgid/files patch-fcgid_conf.c patch-fcgid_proc_unix.c Log: Add www/mod_fcgid, an alternative FastCGI module for Apache2. mod_fcgid has a new process management strategy, which concentrates on reducing the number of fastcgi server, and kick out the corrupt fastcgi server as soon as possible. The bad news is that it does not currently support suEXEC, and the good news is that it has PHP support. Check out the web site for details. Licence: GPL WWW: http://fastcgi.coremail.cn/ Revision Changes Path 1.964 +1 -0 ports/www/Makefile 1.1 +27 -0 ports/www/mod_fcgid/Makefile (new) 1.1 +2 -0 ports/www/mod_fcgid/distinfo (new) 1.1 +11 -0 ports/www/mod_fcgid/files/patch-fcgid_conf.c (new) 1.1 +7 -0 ports/www/mod_fcgid/files/patch-fcgid_proc_unix.c (new) 1.1 +12 -0 ports/www/mod_fcgid/pkg-descr (new) 1.1 +10 -0 ports/www/mod_fcgid/pkg-message (new) 1.1 +4 -0 ports/www/mod_fcgid/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 20:51:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D005516A4CE; Thu, 12 Aug 2004 20:51:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B518443D49; Thu, 12 Aug 2004 20:51:26 +0000 (GMT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CKpQ3q041830; Thu, 12 Aug 2004 20:51:26 GMT (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CKpQiN041829; Thu, 12 Aug 2004 20:51:26 GMT (envelope-from knu) Message-Id: <200408122051.i7CKpQiN041829@repoman.freebsd.org> From: Akinori MUSHA Date: Thu, 12 Aug 2004 20:51:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:51:27 -0000 knu 2004-08-12 20:51:26 UTC FreeBSD ports repository Modified files: . modules Log: mod_fcgid --> ports/www/mod_fcgid Revision Changes Path 1.10886 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Aug 12 20:54:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B95816A4CE; Thu, 12 Aug 2004 20:54:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F13743D54; Thu, 12 Aug 2004 20:54:13 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CKsD8H041907; Thu, 12 Aug 2004 20:54:13 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CKsD2O041906; Thu, 12 Aug 2004 20:54:13 GMT (envelope-from marcus) Message-Id: <200408122054.i7CKsD2O041906@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 12 Aug 2004 20:54:13 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 20:54:13 -0000 marcus 2004-08-12 20:54:13 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: The last commit should have changed the comparison tag from to . Revision Changes Path 1.171 +2 -2 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 21:01:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE07A16A4CF; Thu, 12 Aug 2004 21:01:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C090F43D4C; Thu, 12 Aug 2004 21:01:21 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CL1LmL042186; Thu, 12 Aug 2004 21:01:21 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CL1LHf042185; Thu, 12 Aug 2004 21:01:21 GMT (envelope-from marcus) Message-Id: <200408122101.i7CL1LHf042185@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 12 Aug 2004 21:01:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/vino Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 21:01:22 -0000 marcus 2004-08-12 21:01:21 UTC FreeBSD ports repository Modified files: net/vino Makefile distinfo pkg-plist Log: Update to 2.7.90. Revision Changes Path 1.3 +1 -1 ports/net/vino/Makefile 1.3 +2 -2 ports/net/vino/distinfo 1.2 +9 -2 ports/net/vino/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 21:07:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14B0B16A4CE; Thu, 12 Aug 2004 21:07:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAB8043D46; Thu, 12 Aug 2004 21:07:06 +0000 (GMT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CL76cD042398; Thu, 12 Aug 2004 21:07:06 GMT (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CL76vD042397; Thu, 12 Aug 2004 21:07:06 GMT (envelope-from nectar) Message-Id: <200408122107.i7CL76vD042397@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 12 Aug 2004 21:07:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 21:07:07 -0000 nectar 2004-08-12 21:07:06 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Add two issues covering three KDE advisories: two temporary file handling issues, and a KHTML issue. Revision Changes Path 1.172 +68 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 21:10:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D601C16A4CE; Thu, 12 Aug 2004 21:10:58 +0000 (GMT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id AABD443D41; Thu, 12 Aug 2004 21:10:58 +0000 (GMT) (envelope-from nectar@celabo.org) Received: from madman.celabo.org (madman.celabo.org [10.0.1.111]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "madman.celabo.org", Issuer "celabo.org CA" (not verified)) by gw.celabo.org (Postfix) with ESMTP id 39EB85487F; Thu, 12 Aug 2004 16:10:58 -0500 (CDT) Received: by madman.celabo.org (Postfix, from userid 1001) id B54B86D455; Thu, 12 Aug 2004 16:10:57 -0500 (CDT) Date: Thu, 12 Aug 2004 16:10:57 -0500 From: "Jacques A. Vidrine" To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040812211057.GE2489@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200408122107.i7CL76vD042397@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408122107.i7CL76vD042397@repoman.freebsd.org> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i Subject: Re: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 21:10:59 -0000 On Thu, Aug 12, 2004 at 09:07:06PM +0000, Jacques A. Vidrine wrote: > Add two issues covering three KDE advisories: two temporary file > handling issues, and a KHTML issue. Actually, the KHTML issue is probably a much wider issue affected Mozilla and other browsers. That entry will probably have to be revised later. Cheers, -- Jacques Vidrine / nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org From owner-cvs-all@FreeBSD.ORG Thu Aug 12 21:13:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 107E116A4CE; Thu, 12 Aug 2004 21:13:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E955A43D46; Thu, 12 Aug 2004 21:13:12 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CLDCAu042563; Thu, 12 Aug 2004 21:13:12 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CLDClg042562; Thu, 12 Aug 2004 21:13:12 GMT (envelope-from blackend) Message-Id: <200408122113.i7CLDClg042562@repoman.freebsd.org> From: Marc Fonvieille Date: Thu, 12 Aug 2004 21:13:12 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/l10n chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 21:13:13 -0000 blackend 2004-08-12 21:13:12 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/l10n chapter.sgml Log: Add a missing closing tag. Revision Changes Path 1.100 +1 -0 doc/en_US.ISO8859-1/books/handbook/l10n/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 21:16:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20CE616A4CE; Thu, 12 Aug 2004 21:16:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1990B43D58; Thu, 12 Aug 2004 21:16:21 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CLGKjA042823; Thu, 12 Aug 2004 21:16:20 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CLGKuo042822; Thu, 12 Aug 2004 21:16:20 GMT (envelope-from lofi) Message-Id: <200408122116.i7CLGKuo042822@repoman.freebsd.org> From: Michael Nottebrock Date: Thu, 12 Aug 2004 21:16:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/kdelibs3 Makefile ports/x11/kdelibs3/files patch-dcop_dcopserver.cpp ports/x11/kdebase3 Makefile patch-kxkb_kcmlayout.h patch-kxkb_kxkb.cpp patch-kxkb_rules.cpp patch-kxkb_rules.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 21:16:21 -0000 lofi 2004-08-12 21:16:20 UTC FreeBSD ports repository Modified files: x11/kdelibs3 Makefile x11/kdebase3 Makefile Added files: x11/kdelibs3/files patch-dcop_dcopserver.cpp x11/kdebase3/files patch-kxkb_kcmlayout.cpp patch-kxkb_kcmlayout.h patch-kxkb_kxkb.cpp patch-kxkb_rules.cpp patch-kxkb_rules.h Log: A couple of patches didn't make it from the kde-freebsd repo into ports. Here they are... PORTREVISION needs to be bumped again (sorry). Pointy hat to: me Revision Changes Path 1.142 +1 -1 ports/x11/kdebase3/Makefile 1.1 +83 -0 ports/x11/kdebase3/files/patch-kxkb_kcmlayout.cpp (new) 1.1 +25 -0 ports/x11/kdebase3/files/patch-kxkb_kcmlayout.h (new) 1.1 +23 -0 ports/x11/kdebase3/files/patch-kxkb_kxkb.cpp (new) 1.1 +85 -0 ports/x11/kdebase3/files/patch-kxkb_rules.cpp (new) 1.1 +33 -0 ports/x11/kdebase3/files/patch-kxkb_rules.h (new) 1.154 +1 -1 ports/x11/kdelibs3/Makefile 1.1 +185 -0 ports/x11/kdelibs3/files/patch-dcop_dcopserver.cpp (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 21:16:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A41BE16A4CE; Thu, 12 Aug 2004 21:16:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87D7643D45; Thu, 12 Aug 2004 21:16:44 +0000 (GMT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CLGi1x042862; Thu, 12 Aug 2004 21:16:44 GMT (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CLGiRW042861; Thu, 12 Aug 2004 21:16:44 GMT (envelope-from wilko) Message-Id: <200408122116.i7CLGiRW042861@repoman.freebsd.org> From: Wilko Bulte Date: Thu, 12 Aug 2004 21:16:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 21:16:44 -0000 wilko 2004-08-12 21:16:44 UTC FreeBSD src repository Modified files: . access Log: Per his request to core@, re-enable mjacob's commit bit With hat: core-secretary Revision Changes Path 1.674 +1 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Thu Aug 12 21:17:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 157E116A4CE; Thu, 12 Aug 2004 21:17:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE44143D41; Thu, 12 Aug 2004 21:17:31 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CLHV2T042898; Thu, 12 Aug 2004 21:17:31 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CLHV36042897; Thu, 12 Aug 2004 21:17:31 GMT (envelope-from lofi) Message-Id: <200408122117.i7CLHV36042897@repoman.freebsd.org> From: Michael Nottebrock Date: Thu, 12 Aug 2004 21:17:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/portaudit-db/database portaudit.txt X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 21:17:32 -0000 lofi 2004-08-12 21:17:31 UTC FreeBSD ports repository Modified files: security/portaudit-db/database portaudit.txt Log: Correct entries for recent kde vuln's and add new entry for kdelibs (3.2.3_3 didn't have all patches). Revision Changes Path 1.86 +4 -2 ports/security/portaudit-db/database/portaudit.txt From owner-cvs-all@FreeBSD.ORG Thu Aug 12 21:28:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B35A616A4CE; Thu, 12 Aug 2004 21:28:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 963C943D31; Thu, 12 Aug 2004 21:28:53 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CLSrpt043231; Thu, 12 Aug 2004 21:28:53 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CLSrEP043230; Thu, 12 Aug 2004 21:28:53 GMT (envelope-from lofi) Message-Id: <200408122128.i7CLSrEP043230@repoman.freebsd.org> From: Michael Nottebrock Date: Thu, 12 Aug 2004 21:28:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/kdelibs3 Makefile ports/x11/kdelibs3/files patch-kdecore_kstandarddirs.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 21:28:53 -0000 lofi 2004-08-12 21:28:53 UTC FreeBSD ports repository Modified files: x11/kdelibs3 Makefile Added files: x11/kdelibs3/files patch-kdecore_kstandarddirs.cpp Log: Add another missed patch. Revision Changes Path 1.155 +1 -1 ports/x11/kdelibs3/Makefile 1.1 +38 -0 ports/x11/kdelibs3/files/patch-kdecore_kstandarddirs.cpp (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 21:32:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BBE9C16A4CE; Thu, 12 Aug 2004 21:32:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EF9643D54; Thu, 12 Aug 2004 21:32:15 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CLWFLS043374; Thu, 12 Aug 2004 21:32:15 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CLWF2w043373; Thu, 12 Aug 2004 21:32:15 GMT (envelope-from lofi) Message-Id: <200408122132.i7CLWF2w043373@repoman.freebsd.org> From: Michael Nottebrock Date: Thu, 12 Aug 2004 21:32:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/portaudit-db/database portaudit.txt X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 21:32:15 -0000 lofi 2004-08-12 21:32:15 UTC FreeBSD ports repository Modified files: security/portaudit-db/database portaudit.txt Log: Add another entry for kdelibs3 due to another missed patch. Revision Changes Path 1.87 +2 -1 ports/security/portaudit-db/database/portaudit.txt From owner-cvs-all@FreeBSD.ORG Thu Aug 12 21:47:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6341616A4CE; Thu, 12 Aug 2004 21:47:45 +0000 (GMT) Received: from randomservers.com (randomservers.com [69.55.237.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4150643D48; Thu, 12 Aug 2004 21:47:45 +0000 (GMT) (envelope-from joseph@randomnetworks.com) Received: from [10.6.1.1] (204-102-9-17.water-programs.com [204.102.9.17] (may be forged)) (authenticated bits=0) by randomservers.com (8.12.10/8.12.6) with ESMTP id i7CLlhER031679 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO); Thu, 12 Aug 2004 14:47:43 -0700 (PDT) (envelope-from joseph@randomnetworks.com) X-Authentication-Warning: randomservers.com: Host 204-102-9-17.water-programs.com [204.102.9.17] (may be forged) claimed to be [10.6.1.1] In-Reply-To: <200408121907.i7CJ7Wc6038128@repoman.freebsd.org> References: <200408121907.i7CJ7Wc6038128@repoman.freebsd.org> Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <3D4FE3C6-ECA9-11D8-BE7C-000A95AD0296@randomnetworks.com> Content-Transfer-Encoding: 7bit From: Joseph Scott Date: Thu, 12 Aug 2004 14:47:42 -0700 To: Jacques Vidrine X-Mailer: Apple Mail (2.619) X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=0.0 required=7.0 tests=none autolearn=no version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on randomservers.com cc: cvs-ports@freebsd.org cc: trevor@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/print/acroread5 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 21:47:45 -0000 On Aug 12, 2004, at 12:07 PM, Jacques Vidrine wrote: > nectar 2004-08-12 19:07:32 UTC > > FreeBSD ports repository > > Modified files: > print/acroread5 Makefile > Log: > Mark forbidden due to arbitrary command execution. > http://vuxml.freebsd.org/78348ea2-ec91-11d8-b913-000c41e2cdad.html > PR ports/68294 has a patch to upgrade this to 5.0.9, which reportedly fixes this issue. It's been in the PR database since 24 Jun 2004. -- Joseph Scott From owner-cvs-all@FreeBSD.ORG Thu Aug 12 21:54:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1496A16A4CE; Thu, 12 Aug 2004 21:54:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EE0943D53; Thu, 12 Aug 2004 21:54:02 +0000 (GMT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CLs1Ko043915; Thu, 12 Aug 2004 21:54:01 GMT (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CLs1mm043914; Thu, 12 Aug 2004 21:54:01 GMT (envelope-from glewis) Message-Id: <200408122154.i7CLs1mm043914@repoman.freebsd.org> From: Greg Lewis Date: Thu, 12 Aug 2004 21:54:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jdk14/files patch-awt_fontmanager_t2kScalerContext.cpppatch-plugin_ns600_nscore.h patch-plugin_ns610_nscore.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 21:54:02 -0000 glewis 2004-08-12 21:54:01 UTC FreeBSD ports repository Added files: java/jdk14/files patch-awt_fontmanager_t2kScalerContext.cpp patch-plugin_ns600_nscore.h patch-plugin_ns610_nscore.h Log: . Fix the build for gcc 3.4. PR: 69853 Submitted by: Jake Hamby Approved by: phantom (maintainer) Revision Changes Path 1.1 +21 -0 ports/java/jdk14/files/patch-awt_fontmanager_t2kScalerContext.cpp (new) 1.1 +13 -0 ports/java/jdk14/files/patch-plugin_ns600_nscore.h (new) 1.1 +13 -0 ports/java/jdk14/files/patch-plugin_ns610_nscore.h (new) From owner-cvs-all@FreeBSD.ORG Thu Aug 12 22:05:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 242FD16A4CE; Thu, 12 Aug 2004 22:05:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C19143D46; Thu, 12 Aug 2004 22:05:48 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CM5mDo044328; Thu, 12 Aug 2004 22:05:48 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CM5lTf044327; Thu, 12 Aug 2004 22:05:47 GMT (envelope-from csjp) Message-Id: <200408122205.i7CM5lTf044327@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Thu, 12 Aug 2004 22:05:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netinet ip_fw.h ip_fw2.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 22:05:48 -0000 csjp 2004-08-12 22:05:47 UTC FreeBSD src repository Modified files: sys/netinet ip_fw.h ip_fw2.c Log: Add the ability to associate ipfw rules with a specific prison ID. Since the only thing truly unique about a prison is it's ID, I figured this would be the most granular way of handling this. This commit makes the following changes: - Adds tokenizing and parsing for the ``jail'' command line option to the ipfw(8) userspace utility. - Append the ipfw opcode list with O_JAIL. - While Iam here, add a comment informing others that if they want to add additional opcodes, they should append them to the end of the list to avoid ABI breakage. - Add ``fw_prid'' to the ipfw ucred cache structure. - When initializing ucred cache, if the process is jailed, set fw_prid to the prison ID, otherwise set it to -1. - Update man page to reflect these changes. This change was a strong motivator behind the ucred caching mechanism in ipfw. A sample usage of this new functionality could be: ipfw add count ip from any to any jail 2 It should be noted that because ucred based constraints are only implemented for TCP and UDP packets, the same applies for jail associations. Conceptual head nod by: pjd Reviewed by: rwatson Approved by: bmilekic (mentor) Revision Changes Path 1.87 +5 -1 src/sys/netinet/ip_fw.h 1.69 +9 -1 src/sys/netinet/ip_fw2.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 22:06:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2959816A4CE; Thu, 12 Aug 2004 22:06:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CE5B43D46; Thu, 12 Aug 2004 22:06:18 +0000 (GMT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CM6Hpk044400; Thu, 12 Aug 2004 22:06:17 GMT (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CM6HKF044399; Thu, 12 Aug 2004 22:06:17 GMT (envelope-from nectar) Message-Id: <200408122206.i7CM6HKF044399@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 12 Aug 2004 22:06:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 22:06:18 -0000 nectar 2004-08-12 22:06:17 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Repair broken URL. Noticed by: simon Revision Changes Path 1.173 +2 -2 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Thu Aug 12 22:06:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDF5716A4CE; Thu, 12 Aug 2004 22:06:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB80343D41; Thu, 12 Aug 2004 22:06:55 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CM6tqb044450; Thu, 12 Aug 2004 22:06:55 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CM6tIf044449; Thu, 12 Aug 2004 22:06:55 GMT (envelope-from csjp) Message-Id: <200408122206.i7CM6tIf044449@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Thu, 12 Aug 2004 22:06:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/ipfw ipfw.8 ipfw2.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 22:06:56 -0000 csjp 2004-08-12 22:06:55 UTC FreeBSD src repository Modified files: sbin/ipfw ipfw.8 ipfw2.c Log: Add the ability to associate ipfw rules with a specific prison ID. Since the only thing truly unique about a prison is it's ID, I figured this would be the most granular way of handling this. This commit makes the following changes: - Adds tokenizing and parsing for the ``jail'' command line option to the ipfw(8) userspace utility. - Append the ipfw opcode list with O_JAIL. - While Iam here, add a comment informing others that if they want to add additional opcodes, they should append them to the end of the list to avoid ABI breakage. - Add ``fw_prid'' to the ipfw ucred cache structure. - When initializing ucred cache, if the process is jailed, set fw_prid to the prison ID, otherwise set it to -1. - Update man page to reflect these changes. This change was a strong motivator behind the ucred caching mechanism in ipfw. A sample usage of this new functionality could be: ipfw add count ip from any to any jail 2 It should be noted that because ucred based constraints are only implemented for TCP and UDP packets, the same applies for jail associations. Conceptual head nod by: pjd Reviewed by: rwatson Approved by: bmilekic (mentor) Revision Changes Path 1.149 +4 -0 src/sbin/ipfw/ipfw.8 1.54 +22 -0 src/sbin/ipfw/ipfw2.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 23:13:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A43CE16A4CE; Thu, 12 Aug 2004 23:13:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8939C43D3F; Thu, 12 Aug 2004 23:13:31 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CNDVdN046055; Thu, 12 Aug 2004 23:13:31 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CNDVUG046054; Thu, 12 Aug 2004 23:13:31 GMT (envelope-from kuriyama) Message-Id: <200408122313.i7CNDVUG046054@repoman.freebsd.org> From: Jun Kuriyama Date: Thu, 12 Aug 2004 23:13:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/p5-IMAP-Sieve Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 23:13:31 -0000 kuriyama 2004-08-12 23:13:31 UTC FreeBSD ports repository Modified files: mail/p5-IMAP-Sieve Makefile Log: - Make p5-IO dependency conditional with perl-5.6 later. - Grab maintainership. Approved by: maintainer (eik) Revision Changes Path 1.4 +9 -4 ports/mail/p5-IMAP-Sieve/Makefile From owner-cvs-all@FreeBSD.ORG Thu Aug 12 23:17:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F1EEB16A4CE; Thu, 12 Aug 2004 23:17:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D681843D46; Thu, 12 Aug 2004 23:17:09 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CNH9Cm046179; Thu, 12 Aug 2004 23:17:09 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CNH9AQ046178; Thu, 12 Aug 2004 23:17:09 GMT (envelope-from sanpei) Message-Id: <200408122317.i7CNH9AQ046178@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Thu, 12 Aug 2004 23:17:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/cam/scsi scsi_da.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 23:17:10 -0000 sanpei 2004-08-12 23:17:09 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_da.c Log: add support Frontier Labs NEX IA+ Digital Audio Player with USB CF card reader/writer PR: kern/70158 Submitted by: Bernd Strau. MFC after: 1 week Revision Changes Path 1.171 +9 -1 src/sys/cam/scsi/scsi_da.c From owner-cvs-all@FreeBSD.ORG Thu Aug 12 23:29:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E243D16A4CF; Thu, 12 Aug 2004 23:29:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C10C743D2F; Thu, 12 Aug 2004 23:29:22 +0000 (GMT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CNTMI1050689; Thu, 12 Aug 2004 23:29:22 GMT (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CNTMS2050685; Thu, 12 Aug 2004 23:29:22 GMT (envelope-from sanpei) Message-Id: <200408122329.i7CNTMS2050685@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Thu, 12 Aug 2004 23:29:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb umass.c usbdevs X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 23:29:23 -0000 sanpei 2004-08-12 23:29:22 UTC FreeBSD src repository Modified files: sys/dev/usb umass.c usbdevs Log: add support for SanDisk Cruzer Mini 256MB USB 2.0 Flash Drive PR: kern/65438 Submitted by: Peter D. Quilty MFC after: 1 week Revision Changes Path 1.111 +4 -0 src/sys/dev/usb/umass.c 1.195 +1 -0 src/sys/dev/usb/usbdevs From owner-cvs-all@FreeBSD.ORG Thu Aug 12 23:38:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E8BD16A4CE; Thu, 12 Aug 2004 23:38:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE50E43D55; Thu, 12 Aug 2004 23:38:04 +0000 (GMT) (envelope-from pb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CNc4OA056354; Thu, 12 Aug 2004 23:38:04 GMT (envelope-from pb@repoman.freebsd.org) Received: (from pb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CNc4dJ056353; Thu, 12 Aug 2004 23:38:04 GMT (envelope-from pb) Message-Id: <200408122338.i7CNc4dJ056353@repoman.freebsd.org> From: Pierre Beyssac Date: Thu, 12 Aug 2004 23:38:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/kino Makefile distinfo pkg-plist ports/multimedia/kino/files patch-Makefile.in patch-aa patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-ai patch-aj patch-al patch-aq patch-ar patch-az patch-help::Makefile.in ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 23:38:05 -0000 pb 2004-08-12 23:38:04 UTC FreeBSD ports repository Modified files: multimedia/kino Makefile distinfo pkg-plist multimedia/kino/files patch-Makefile.in patch-aa patch-ai patch-aj patch-az patch-src::mediactrl.c Removed files: multimedia/kino/files patch-ab patch-ac patch-ad patch-ae patch-af patch-ag patch-al patch-aq patch-ar patch-help::Makefile.in patch-scripts::exports::ffmpeg_dvd.sh patch-scripts::help.sh patch-src::smiltime.cc Log: Update to 0.7.3. Revision Changes Path 1.5 +3 -3 ports/multimedia/kino/Makefile 1.3 +2 -2 ports/multimedia/kino/distinfo 1.2 +5 -14 ports/multimedia/kino/files/patch-Makefile.in 1.3 +11 -33 ports/multimedia/kino/files/patch-aa 1.2 +0 -19 ports/multimedia/kino/files/patch-ab (dead) 1.2 +0 -19 ports/multimedia/kino/files/patch-ac (dead) 1.2 +0 -19 ports/multimedia/kino/files/patch-ad (dead) 1.2 +0 -19 ports/multimedia/kino/files/patch-ae (dead) 1.2 +0 -10 ports/multimedia/kino/files/patch-af (dead) 1.3 +0 -23 ports/multimedia/kino/files/patch-ag (dead) 1.3 +64 -100 ports/multimedia/kino/files/patch-ai 1.3 +18 -13 ports/multimedia/kino/files/patch-aj 1.2 +0 -10 ports/multimedia/kino/files/patch-al (dead) 1.2 +0 -11 ports/multimedia/kino/files/patch-aq (dead) 1.2 +0 -11 ports/multimedia/kino/files/patch-ar (dead) 1.3 +4 -4 ports/multimedia/kino/files/patch-az 1.2 +0 -11 ports/multimedia/kino/files/patch-help::Makefile.in (dead) 1.2 +0 -19 ports/multimedia/kino/files/patch-scripts::exports::ffmpeg_dvd.sh (dead) 1.2 +0 -10 ports/multimedia/kino/files/patch-scripts::help.sh (dead) 1.2 +19 -10 ports/multimedia/kino/files/patch-src::mediactrl.c 1.2 +0 -35 ports/multimedia/kino/files/patch-src::smiltime.cc (dead) 1.3 +3 -0 ports/multimedia/kino/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Aug 12 23:48:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CEAA16A4CE; Thu, 12 Aug 2004 23:48:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40FCE43D45; Thu, 12 Aug 2004 23:48:26 +0000 (GMT) (envelope-from tackerman@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7CNmQgd056757; Thu, 12 Aug 2004 23:48:26 GMT (envelope-from tackerman@repoman.freebsd.org) Received: (from tackerman@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7CNmQcJ056756; Thu, 12 Aug 2004 23:48:26 GMT (envelope-from tackerman) Message-Id: <200408122348.i7CNmQcJ056756@repoman.freebsd.org> From: Tony Ackerman Date: Thu, 12 Aug 2004 23:48:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net if_media.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 12 Aug 2004 23:48:26 -0000 tackerman 2004-08-12 23:48:26 UTC FreeBSD src repository Modified files: sys/net if_media.h Log: Added two new media types for 10GBASE-SR and 10GBASE-LR Revision Changes Path 1.28 +5 -0 src/sys/net/if_media.h From owner-cvs-all@FreeBSD.ORG Fri Aug 13 00:24:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 45C9D16A4CE; Fri, 13 Aug 2004 00:24:50 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id F272943D3F; Fri, 13 Aug 2004 00:24:49 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-13.local ([172.16.0.13]) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1BvPsE-000LvI-Nt; Fri, 13 Aug 2004 02:24:49 +0200 Date: Fri, 13 Aug 2004 02:26:26 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Jacques Vidrine From: Oliver Eikemeier In-Reply-To: <200408121843.i7CIh16F037394@repoman.freebsd.org> Message-Id: <6982DFDC-ECBF-11D8-87C4-00039312D914@fillmore-labs.com> Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 00:24:50 -0000 Jacques Vidrine wrote: > nectar 2004-08-12 18:43:01 UTC > > FreeBSD ports repository > > Modified files: > security/vuxml vuln.xml > Log: > Correct version information syntax in a number of entries. > VuXML-using > tools are expected only to understand actual package names and version > numbers, not globs such as `foo-{bar,baz}' or `1.*'. The globs help against database bloat, and make checking faster. 1.* is no glob, as you might remember from a previous discussion. portaudit understands these just fine, and I guess it is the main client right now. Besides, it seems like this commit introduced some errors. How should we handle this? -Oliver From owner-cvs-all@FreeBSD.ORG Fri Aug 13 00:27:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1765316A4CE; Fri, 13 Aug 2004 00:27:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1195643D49; Fri, 13 Aug 2004 00:27:49 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D0Rms4057758; Fri, 13 Aug 2004 00:27:48 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D0RmVZ057757; Fri, 13 Aug 2004 00:27:48 GMT (envelope-from marcus) Message-Id: <200408130027.i7D0RmVZ057757@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 13 Aug 2004 00:27:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/gnomevfs2 Makefile distinfo pkg-plist ports/devel/gnomevfs2/files patch-aa patch-ltmain.sh patch-modules_extfs-method.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 00:27:49 -0000 marcus 2004-08-13 00:27:48 UTC FreeBSD ports repository Modified files: devel/gnomevfs2 Makefile distinfo pkg-plist devel/gnomevfs2/files patch-aa Added files: devel/gnomevfs2/files patch-modules_extfs-method.c Removed files: devel/gnomevfs2/files patch-ltmain.sh Log: Update to 2.6.2. Revision Changes Path 1.86 +2 -3 ports/devel/gnomevfs2/Makefile 1.40 +2 -2 ports/devel/gnomevfs2/distinfo 1.32 +13 -82 ports/devel/gnomevfs2/files/patch-aa 1.11 +0 -51 ports/devel/gnomevfs2/files/patch-ltmain.sh (dead) 1.1 +11 -0 ports/devel/gnomevfs2/files/patch-modules_extfs-method.c (new) 1.41 +0 -53 ports/devel/gnomevfs2/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 13 00:53:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0A0016A4CE; Fri, 13 Aug 2004 00:53:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B228943D5A; Fri, 13 Aug 2004 00:53:40 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D0reZN058425; Fri, 13 Aug 2004 00:53:40 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D0reTA058424; Fri, 13 Aug 2004 00:53:40 GMT (envelope-from julian) Message-Id: <200408130053.i7D0reTA058424@repoman.freebsd.org> From: Julian Elischer Date: Fri, 13 Aug 2004 00:53:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys cdefs.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 00:53:41 -0000 julian 2004-08-13 00:53:40 UTC FreeBSD src repository Modified files: sys/sys cdefs.h Log: Add a macro to define the size of a subsection of a structure. Used in fork1() and thr_create() Revision Changes Path 1.84 +2 -0 src/sys/sys/cdefs.h From owner-cvs-all@FreeBSD.ORG Fri Aug 13 00:57:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 89DA616A4CE; Fri, 13 Aug 2004 00:57:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F4BD43D1D; Fri, 13 Aug 2004 00:57:43 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D0vhS9058739; Fri, 13 Aug 2004 00:57:43 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D0vhbM058738; Fri, 13 Aug 2004 00:57:43 GMT (envelope-from julian) Message-Id: <200408130057.i7D0vhbM058738@repoman.freebsd.org> From: Julian Elischer Date: Fri, 13 Aug 2004 00:57:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern subr_smp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 00:57:43 -0000 julian 2004-08-13 00:57:43 UTC FreeBSD src repository Modified files: sys/kern subr_smp.c Log: Don't keep evaluating our own cpu mask.. it's not likely to have changed.... Revision Changes Path 1.188 +3 -2 src/sys/kern/subr_smp.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 01:44:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9AA0F16A4CE; Fri, 13 Aug 2004 01:44:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7970343D45; Fri, 13 Aug 2004 01:44:09 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D1i9gj060042; Fri, 13 Aug 2004 01:44:09 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D1i9Nc060041; Fri, 13 Aug 2004 01:44:09 GMT (envelope-from scottl) Message-Id: <200408130144.i7D1i9Nc060041@repoman.freebsd.org> From: Scott Long Date: Fri, 13 Aug 2004 01:44:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aac aac.c aac_pci.c aacreg.h aacvar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 01:44:09 -0000 scottl 2004-08-13 01:44:09 UTC FreeBSD src repository Modified files: sys/dev/aac aac.c aac_pci.c aacreg.h aacvar.h Log: Add support for the Adaptec RAID-On-Chip architecture. This in turn provides support for the Adaptec 2130S adapter. Thanks to Adaptec for providing hardware for this. Revision Changes Path 1.101 +91 -0 src/sys/dev/aac/aac.c 1.48 +9 -2 src/sys/dev/aac/aac_pci.c 1.18 +15 -0 src/sys/dev/aac/aacreg.h 1.46 +3 -1 src/sys/dev/aac/aacvar.h From owner-cvs-all@FreeBSD.ORG Fri Aug 13 02:23:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73EB516A4CE; Fri, 13 Aug 2004 02:23:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 521AB43D45; Fri, 13 Aug 2004 02:23:24 +0000 (GMT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D2NObY061450; Fri, 13 Aug 2004 02:23:24 GMT (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D2NOMr061449; Fri, 13 Aug 2004 02:23:24 GMT (envelope-from lioux) Message-Id: <200408130223.i7D2NOMr061449@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Fri, 13 Aug 2004 02:23:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/edonkey-tool-hash Makefile distinfo ports/misc/edonkey-tool-hash/files patch-processfile.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 02:23:24 -0000 lioux 2004-08-13 02:23:24 UTC FreeBSD ports repository Modified files: misc/edonkey-tool-hash Makefile distinfo Added files: misc/edonkey-tool-hash/files patch-processfile.c Log: Update to 0.4.0 Submitted by: dinoex Revision Changes Path 1.9 +3 -3 ports/misc/edonkey-tool-hash/Makefile 1.6 +2 -2 ports/misc/edonkey-tool-hash/distinfo 1.1 +12 -0 ports/misc/edonkey-tool-hash/files/patch-processfile.c (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 02:26:30 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A084E16A4CE; Fri, 13 Aug 2004 02:26:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FB0C43D31; Fri, 13 Aug 2004 02:26:30 +0000 (GMT) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D2QUdX061580; Fri, 13 Aug 2004 02:26:30 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D2QUtv061579; Fri, 13 Aug 2004 02:26:30 GMT (envelope-from kevlo) Message-Id: <200408130226.i7D2QUtv061579@repoman.freebsd.org> From: Kevin Lo Date: Fri, 13 Aug 2004 02:26:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/snowlog Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 02:26:30 -0000 kevlo 2004-08-13 02:26:30 UTC FreeBSD ports repository Modified files: sysutils/snowlog Makefile distinfo Log: Update to 1.0.2 PR: ports/70363 Submitted by: MAINTAINER Revision Changes Path 1.3 +1 -1 ports/sysutils/snowlog/Makefile 1.3 +2 -2 ports/sysutils/snowlog/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 02:31:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B247616A4CE; Fri, 13 Aug 2004 02:31:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9073E43D45; Fri, 13 Aug 2004 02:31:07 +0000 (GMT) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D2V7wc061745; Fri, 13 Aug 2004 02:31:07 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D2V71f061744; Fri, 13 Aug 2004 02:31:07 GMT (envelope-from kevlo) Message-Id: <200408130231.i7D2V71f061744@repoman.freebsd.org> From: Kevin Lo Date: Fri, 13 Aug 2004 02:31:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/websvn Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 02:31:07 -0000 kevlo 2004-08-13 02:31:07 UTC FreeBSD ports repository Modified files: devel/websvn Makefile distinfo pkg-plist Log: Update to 1.51 PR: ports/70377 Submitted by: MAINTAINER Revision Changes Path 1.3 +2 -2 ports/devel/websvn/Makefile 1.3 +2 -2 ports/devel/websvn/distinfo 1.3 +11 -0 ports/devel/websvn/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 13 02:38:10 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C58D16A4CE; Fri, 13 Aug 2004 02:38:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AFF943D3F; Fri, 13 Aug 2004 02:38:10 +0000 (GMT) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D2cAdX061943; Fri, 13 Aug 2004 02:38:10 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D2cAGN061942; Fri, 13 Aug 2004 02:38:10 GMT (envelope-from kevlo) Message-Id: <200408130238.i7D2cAGN061942@repoman.freebsd.org> From: Kevin Lo Date: Fri, 13 Aug 2004 02:38:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/p5-Net-Whois-Raw Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 02:38:10 -0000 kevlo 2004-08-13 02:38:10 UTC FreeBSD ports repository Modified files: net/p5-Net-Whois-Raw Makefile distinfo pkg-plist Log: Update to 0.37 PR: ports/70356 Submitted by: Cheng-Lung Sung Approved by: MAINTAINER Revision Changes Path 1.4 +1 -1 ports/net/p5-Net-Whois-Raw/Makefile 1.4 +2 -2 ports/net/p5-Net-Whois-Raw/distinfo 1.3 +2 -0 ports/net/p5-Net-Whois-Raw/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 13 02:50:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76AFA16A4CE; Fri, 13 Aug 2004 02:50:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5646643D3F; Fri, 13 Aug 2004 02:50:59 +0000 (GMT) (envelope-from csjp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D2oxRt062290; Fri, 13 Aug 2004 02:50:59 GMT (envelope-from csjp@repoman.freebsd.org) Received: (from csjp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D2oxme062289; Fri, 13 Aug 2004 02:50:59 GMT (envelope-from csjp) Message-Id: <200408130250.i7D2oxme062289@repoman.freebsd.org> From: "Christian S.J. Peron" Date: Fri, 13 Aug 2004 02:50:59 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/ipfw ipfw.8 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 02:50:59 -0000 csjp 2004-08-13 02:50:59 UTC FreeBSD src repository Modified files: sbin/ipfw ipfw.8 Log: Remove trailing whitespace and change "prisoniD" to "prisonID". Pointed out by: simon Approved by: bmilekic (mentor) Revision Changes Path 1.150 +2 -2 src/sbin/ipfw/ipfw.8 From owner-cvs-all@FreeBSD.ORG Fri Aug 13 03:04:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1323316A4CF; Fri, 13 Aug 2004 03:04:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FBAB43D1F; Fri, 13 Aug 2004 03:04:05 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D344KY062978; Fri, 13 Aug 2004 03:04:04 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D344xM062977; Fri, 13 Aug 2004 03:04:04 GMT (envelope-from maho) Message-Id: <200408130304.i7D344xM062977@repoman.freebsd.org> From: Maho Nakata Date: Fri, 13 Aug 2004 03:04:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-1.1-devel Makefile ports/editors/openoffice-1.1-devel/files Makefile.localized freebsd-local.sh generate.pl patch-desktop+scripts+soffice.sh patch-solenv+bin+addsym.awk patch-tools+source+string+tstring.cxx patch-unoil+makefile.pmk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 03:04:06 -0000 maho 2004-08-13 03:04:04 UTC FreeBSD ports repository Modified files: editors/openoffice-1.1-devel Makefile editors/openoffice-1.1-devel/files Makefile.localized Added files: editors/openoffice-1.1-devel/files generate.pl Removed files: editors/openoffice-1.1-devel/files freebsd-local.sh patch-connectivity+source+drivers+mozab+mozillasrc+makefile.mk patch-desktop+scripts+soffice.sh patch-solenv+bin+addsym.awk patch-tools+source+string+tstring.cxx patch-unoil+makefile.pmk Log: o remove obsolated (?) patches files/freebsd-local.sh files/patch-connectivity+source+drivers+mozab+mozillasrc+makefile.mk files/patch-desktop+scripts+soffice.sh files/patch-solenv+bin+addsym.awk files/patch-tools+source+string+tstring.cxx files/patch-unoil+makefile.pmk o More clean-up of Makefiles o add generate.pl, generates csh script that build everything o WITHOUT_MOZILLA for 5-current, workaround for mozilla subproject Revision Changes Path 1.152 +9 -33 ports/editors/openoffice-1.1-devel/Makefile 1.4 +7 -1 ports/editors/openoffice-1.1-devel/files/Makefile.localized 1.5 +0 -71 ports/editors/openoffice-1.1-devel/files/freebsd-local.sh (dead) 1.1 +21 -0 ports/editors/openoffice-1.1-devel/files/generate.pl (new) 1.7 +0 -45 ports/editors/openoffice-1.1-devel/files/patch-connectivity+source+drivers+mozab+mozillasrc+makefile.mk (dead) 1.2 +0 -11 ports/editors/openoffice-1.1-devel/files/patch-desktop+scripts+soffice.sh (dead) 1.4 +0 -16 ports/editors/openoffice-1.1-devel/files/patch-solenv+bin+addsym.awk (dead) 1.3 +0 -22 ports/editors/openoffice-1.1-devel/files/patch-tools+source+string+tstring.cxx (dead) 1.3 +0 -13 ports/editors/openoffice-1.1-devel/files/patch-unoil+makefile.pmk (dead) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 03:18:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B97C816A4CE; Fri, 13 Aug 2004 03:18:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9783043D1F; Fri, 13 Aug 2004 03:18:16 +0000 (GMT) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D3IG0h064802; Fri, 13 Aug 2004 03:18:16 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D3IGoP064801; Fri, 13 Aug 2004 03:18:16 GMT (envelope-from kevlo) Message-Id: <200408130318.i7D3IGoP064801@repoman.freebsd.org> From: Kevin Lo Date: Fri, 13 Aug 2004 03:18:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/kxmleditor Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 03:18:16 -0000 kevlo 2004-08-13 03:18:16 UTC FreeBSD ports repository Modified files: editors/kxmleditor Makefile distinfo pkg-plist Log: upgrade to kxmleditor 1.1.2 Revision Changes Path 1.12 +1 -10 ports/editors/kxmleditor/Makefile 1.8 +2 -2 ports/editors/kxmleditor/distinfo 1.7 +1 -1 ports/editors/kxmleditor/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 13 03:24:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3391016A4CE; Fri, 13 Aug 2004 03:24:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 129D643D39; Fri, 13 Aug 2004 03:24:17 +0000 (GMT) (envelope-from kevlo@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D3OGQN064975; Fri, 13 Aug 2004 03:24:16 GMT (envelope-from kevlo@repoman.freebsd.org) Received: (from kevlo@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D3OGlw064974; Fri, 13 Aug 2004 03:24:16 GMT (envelope-from kevlo) Message-Id: <200408130324.i7D3OGlw064974@repoman.freebsd.org> From: Kevin Lo Date: Fri, 13 Aug 2004 03:24:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/p5-Kwiki Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 03:24:17 -0000 kevlo 2004-08-13 03:24:16 UTC FreeBSD ports repository Modified files: www/p5-Kwiki Makefile distinfo Log: Update to 0.33 PR: ports/70353 Submitted by: MAINTAINER Revision Changes Path 1.3 +1 -1 ports/www/p5-Kwiki/Makefile 1.3 +2 -2 ports/www/p5-Kwiki/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 03:55:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E36516A4D7; Fri, 13 Aug 2004 03:55:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DE2943D4C; Fri, 13 Aug 2004 03:55:36 +0000 (GMT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D3tarL065770; Fri, 13 Aug 2004 03:55:36 GMT (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D3ta3A065769; Fri, 13 Aug 2004 03:55:36 GMT (envelope-from scottl) Message-Id: <200408130355.i7D3ta3A065769@repoman.freebsd.org> From: Scott Long Date: Fri, 13 Aug 2004 03:55:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 aac.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 03:55:36 -0000 scottl 2004-08-13 03:55:36 UTC FreeBSD src repository Modified files: share/man/man4 aac.4 Log: Re-write some poorly written paragraphs. Document the 2130. Revision Changes Path 1.25 +13 -18 src/share/man/man4/aac.4 From owner-cvs-all@FreeBSD.ORG Fri Aug 13 04:05:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 926DE16A4CE; Fri, 13 Aug 2004 04:05:49 +0000 (GMT) Received: from randomservers.com (randomservers.com [69.55.237.158]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E33843D48; Fri, 13 Aug 2004 04:05:49 +0000 (GMT) (envelope-from joseph@randomnetworks.com) Received: from [192.168.1.101] (c-24-7-164-83.client.comcast.net [24.7.164.83]) (authenticated bits=0) by randomservers.com (8.12.10/8.12.6) with ESMTP id i7D45kER032733 (version=TLSv1/SSLv3 cipher=RC4-SHA bits=128 verify=NO); Thu, 12 Aug 2004 21:05:47 -0700 (PDT) (envelope-from joseph@randomnetworks.com) X-Authentication-Warning: randomservers.com: Host c-24-7-164-83.client.comcast.net [24.7.164.83] claimed to be [192.168.1.101] In-Reply-To: <200408130318.i7D3IGoP064801@repoman.freebsd.org> References: <200408130318.i7D3IGoP064801@repoman.freebsd.org> Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <0D503C6A-ECDE-11D8-BE7C-000A95AD0296@randomnetworks.com> Content-Transfer-Encoding: 7bit From: Joseph Scott Date: Thu, 12 Aug 2004 21:05:45 -0700 To: Kevin Lo X-Mailer: Apple Mail (2.619) X-Virus-Scanned: by amavisd-milter (http://amavis.org/) X-Spam-Status: No, hits=0.0 required=7.0 tests=none autolearn=no version=2.64 X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on randomservers.com cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/editors/kxmleditor Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 04:05:49 -0000 On Aug 12, 2004, at 8:18 PM, Kevin Lo wrote: > kevlo 2004-08-13 03:18:16 UTC > > FreeBSD ports repository > > Modified files: > editors/kxmleditor Makefile distinfo pkg-plist > Log: > upgrade to kxmleditor 1.1.2 Does this also take care of the issue mentioned in PR ports/70079? -- Joseph Scott From owner-cvs-all@FreeBSD.ORG Fri Aug 13 04:54:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E1FC16A4CE; Fri, 13 Aug 2004 04:54:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D48A43D3F; Fri, 13 Aug 2004 04:54:53 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D4srU7068499; Fri, 13 Aug 2004 04:54:53 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D4srOH068498; Fri, 13 Aug 2004 04:54:53 GMT (envelope-from bmah) Message-Id: <200408130454.i7D4srOH068498@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 13 Aug 2004 04:54:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 04:54:53 -0000 bmah 2004-08-13 04:54:53 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: More wording, grammar, and punctuation tweaks. No major content changes, although one release note, about udav(4) promiscuous mode, was deleted as it was redundant (the driver itself is new and this fact has its own note). Revision Changes Path 1.759 +40 -40 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Fri Aug 13 05:38:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BF62F16A4CE; Fri, 13 Aug 2004 05:38:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CBA243D5D; Fri, 13 Aug 2004 05:38:44 +0000 (GMT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D5ciLi069648; Fri, 13 Aug 2004 05:38:44 GMT (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D5ciLc069647; Fri, 13 Aug 2004 05:38:44 GMT (envelope-from tjr) Message-Id: <200408130538.i7D5ciLc069647@repoman.freebsd.org> From: "Tim J. Robbins" Date: Fri, 13 Aug 2004 05:38:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/usr.bin/gzip inflate.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 05:38:44 -0000 tjr 2004-08-13 05:38:44 UTC FreeBSD src repository Modified files: gnu/usr.bin/gzip inflate.c Log: Bring in fix from gzip 1.3.3 to avoid crashes when processing certain corrupt input files: 1999-06-25 Paul Eggert * inflate.c (huft_build): Set n to length of v, to detect improper tables. Don't accidentally grow j past z. MFC after: 3 days Revision Changes Path 1.9 +8 -6 src/gnu/usr.bin/gzip/inflate.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:04:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8E96716A4CE; Fri, 13 Aug 2004 06:04:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5527743D1D; Fri, 13 Aug 2004 06:04:06 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D646MU070289; Fri, 13 Aug 2004 06:04:06 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D646a3070288; Fri, 13 Aug 2004 06:04:06 GMT (envelope-from thierry) Message-Id: <200408130604.i7D646a3070288@repoman.freebsd.org> From: Thierry Thomas Date: Fri, 13 Aug 2004 06:04:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/spambnc Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:04:06 -0000 thierry 2004-08-13 06:04:06 UTC FreeBSD ports repository Modified files: mail/spambnc Makefile distinfo Log: Upgrade to 20040812. Revision Changes Path 1.45 +1 -1 ports/mail/spambnc/Makefile 1.40 +3 -3 ports/mail/spambnc/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:21:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17CD216A4CE; Fri, 13 Aug 2004 06:21:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA23343D31; Fri, 13 Aug 2004 06:21:19 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6LJWj070783; Fri, 13 Aug 2004 06:21:19 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6LJcP070782; Fri, 13 Aug 2004 06:21:19 GMT (envelope-from njl) Message-Id: <200408130621.i7D6LJcP070782@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpivar.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:21:20 -0000 njl 2004-08-13 06:21:19 UTC FreeBSD src repository Modified files: sys/dev/acpica acpivar.h Log: MPSAFE locking * Add and comment our locking primitives. The mutex primitives use a a static mutex and the serialization ones use a static sx lock. A global acpi_mutex is used for access to global resources (i.e., writes to the SMI_CMD register.) * Remove 4.x compat defines. Revision Changes Path 1.79 +33 -28 src/sys/dev/acpica/acpivar.h From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:21:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83D6616A4CE; Fri, 13 Aug 2004 06:21:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6361A43D49; Fri, 13 Aug 2004 06:21:41 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6LfUk070889; Fri, 13 Aug 2004 06:21:41 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6Lf0w070888; Fri, 13 Aug 2004 06:21:41 GMT (envelope-from njl) Message-Id: <200408130621.i7D6Lf0w070888@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_battery.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:21:41 -0000 njl 2004-08-13 06:21:41 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_battery.c Log: MPSAFE locking * Serialize acpi_battery_get_battdesc(), acpi_battery_register(), and acpi_battery_remove(). * Assert that the sx lock is held in acpi_batteries_init(). * Remove check for device_get_softc() returning NULL. Revision Changes Path 1.10 +53 -36 src/sys/dev/acpica/acpi_battery.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:21:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9257A16A6C9; Fri, 13 Aug 2004 06:21:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8663F43D5A; Fri, 13 Aug 2004 06:21:44 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6LiR2070923; Fri, 13 Aug 2004 06:21:44 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6LiGC070922; Fri, 13 Aug 2004 06:21:44 GMT (envelope-from njl) Message-Id: <200408130621.i7D6LiGC070922@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_cmbat.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:21:44 -0000 njl 2004-08-13 06:21:44 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_cmbat.c Log: MPSAFE locking * Serialize ops in acpi_cmbat_notify_handler(), acpi_cmbat_ioctl(), acpi_cmbat_init_battery(), and acpi_cmbat_get_battinfo(). * Get the softc directly in acpi_cmbat_get_total_battinfo() rather than build an array of them. * Don't queue a _BIF query after receiving a notify. Since we clear the timespec, a _BIF query will be done in the context of the next caller. * Add asserts to leaf functions that operate on shared data. * Remove the bst/bif updating flags now that we hold the lock over the full query. * Explain various comments in more detail. Revision Changes Path 1.35 +125 -169 src/sys/dev/acpica/acpi_cmbat.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:21:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF2C616A558; Fri, 13 Aug 2004 06:21:47 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDA0543D2D; Fri, 13 Aug 2004 06:21:47 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6LlQP070957; Fri, 13 Aug 2004 06:21:47 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6Llwr070956; Fri, 13 Aug 2004 06:21:47 GMT (envelope-from njl) Message-Id: <200408130621.i7D6Llwr070956@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:47 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_cpu.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:21:48 -0000 njl 2004-08-13 06:21:47 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_cpu.c Log: MPSAFE locking * Hold the ACPI lock over table register writes. * Serialize calls to acpi_cpu_throttle_set() and the sysctls. Revision Changes Path 1.42 +14 -15 src/sys/dev/acpica/acpi_cpu.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:21:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D40716A4CF; Fri, 13 Aug 2004 06:21:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CE8843D39; Fri, 13 Aug 2004 06:21:53 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6LrLo070991; Fri, 13 Aug 2004 06:21:53 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6LriG070990; Fri, 13 Aug 2004 06:21:53 GMT (envelope-from njl) Message-Id: <200408130621.i7D6LriG070990@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_ec.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:21:56 -0000 njl 2004-08-13 06:21:53 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_ec.c Log: MPSAFE locking * Use the common serialization macros instead of rolling our own. * Increase the coverage of the lock in EcSpaceHandler() to cover the entire loop to avoid dropping the lock when reading more than one byte. Revision Changes Path 1.59 +19 -21 src/sys/dev/acpica/acpi_ec.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:21:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B82E16A799; Fri, 13 Aug 2004 06:21:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA1CA43D46; Fri, 13 Aug 2004 06:21:55 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6Ltf3071025; Fri, 13 Aug 2004 06:21:55 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6Ltfg071024; Fri, 13 Aug 2004 06:21:55 GMT (envelope-from njl) Message-Id: <200408130621.i7D6Ltfg071024@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_lid.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:21:57 -0000 njl 2004-08-13 06:21:55 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_lid.c Log: MPSAFE locking * Serialize notifying the user in acpi_lid_notify_status_changed(). This way multiple lid events occur in order. * Add an initialization pass to get the lid status at boot-time. This pass does not notify any apps but gets the initial status. Revision Changes Path 1.26 +33 -15 src/sys/dev/acpica/acpi_lid.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:22:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0CC3716A7BD; Fri, 13 Aug 2004 06:21:59 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFCBE43D31; Fri, 13 Aug 2004 06:21:58 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6LwpW071059; Fri, 13 Aug 2004 06:21:58 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6LwYd071058; Fri, 13 Aug 2004 06:21:58 GMT (envelope-from njl) Message-Id: <200408130621.i7D6LwYd071058@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:01 -0000 njl 2004-08-13 06:21:58 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci.c Log: MPSAFE locking * Serialize access to acpi_pci_set_powerstate_method(). Revision Changes Path 1.23 +10 -4 src/sys/dev/acpica/acpi_pci.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:21:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A30716A4E8; Fri, 13 Aug 2004 06:21:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F8FE43D1F; Fri, 13 Aug 2004 06:21:32 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6LWl5070821; Fri, 13 Aug 2004 06:21:32 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6LWPb070820; Fri, 13 Aug 2004 06:21:32 GMT (envelope-from njl) Message-Id: <200408130621.i7D6LWPb070820@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:32 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:21:32 -0000 njl 2004-08-13 06:21:32 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: MPSAFE locking * Serialize calls to acpi_alloc_resource(), acpi_release_resource(), acpi_Enable(), acpi_Disable(), and acpi_debug_sysctl(). * Acquire the ACPI mutex in acpi_register_ioctl(), acpi_deregister_ioctl(), and acpiioctl(). * Acquire the mutex while disabling subsequent requests to enter a sleep state in acpi_SetSleepState(). * Be sure to re-enable sleep requests and don't run resume methods when the current request fails. * Don't check if sleep requests are disabled in the ACPIIO_SETSLPSTATE ioctl. acpi_SetSleepState() does this for us. * Remove the acquisition of Giant from the struct cdevsw. * Remove the ACPI_USE_THREADS option. Revision Changes Path 1.186 +79 -35 src/sys/dev/acpica/acpi.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:21:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D92D16A594; Fri, 13 Aug 2004 06:21:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F12C943D39; Fri, 13 Aug 2004 06:21:36 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6Lap1070855; Fri, 13 Aug 2004 06:21:36 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6Laps070854; Fri, 13 Aug 2004 06:21:36 GMT (envelope-from njl) Message-Id: <200408130621.i7D6Laps070854@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:21:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_acad.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:21:37 -0000 njl 2004-08-13 06:21:36 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_acad.c Log: MPSAFE locking * Serialize notification of acline changes in acpi_acad_get_status(). * Remove the initializing flag. With the locking, we don't need to push off requests for the acline before initialization is done. * Don't check device_get_softc(), it can't return NULL. Revision Changes Path 1.30 +15 -29 src/sys/dev/acpica/acpi_acad.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:22:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3E2D216A51D; Fri, 13 Aug 2004 06:22:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CDF543D4C; Fri, 13 Aug 2004 06:22:04 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6M4LA071097; Fri, 13 Aug 2004 06:22:04 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6M4nZ071096; Fri, 13 Aug 2004 06:22:04 GMT (envelope-from njl) Message-Id: <200408130622.i7D6M4nZ071096@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci_link.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:06 -0000 njl 2004-08-13 06:22:03 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci_link.c Log: MPSAFE locking * Serialize access to acpi_pci_link_config(), acpi_pci_find_prt(), acpi_pci_link_route(), and acpi_pci_link_resume(). * Add lock assertions to all functions called by them. Revision Changes Path 1.23 +27 -6 src/sys/dev/acpica/acpi_pci_link.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:22:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CD4E16A8E6; Fri, 13 Aug 2004 06:22:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43DC343D5A; Fri, 13 Aug 2004 06:22:10 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MA51071165; Fri, 13 Aug 2004 06:22:10 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MA1r071164; Fri, 13 Aug 2004 06:22:10 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MA1r071164@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_powerres.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:12 -0000 njl 2004-08-13 06:22:10 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_powerres.c Log: MPSAFE locking * Serialize acpi_pwr_switch_consumer() and acpi_pwr_wake_enable(). * Make acpi_pwr_switch_consumer() have a single exit point. * Add assertions to the leaf functions they call. * Fix a memory leak in acpi_pwr_deregister_consumer(). However, it is currently ifdefed out so this code was unused. Revision Changes Path 1.26 +55 -33 src/sys/dev/acpica/acpi_powerres.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:22:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A9E4D16A4FF; Fri, 13 Aug 2004 06:22:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8861843D53; Fri, 13 Aug 2004 06:22:13 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MDia071199; Fri, 13 Aug 2004 06:22:13 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MDiY071198; Fri, 13 Aug 2004 06:22:13 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MDiY071198@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_resource.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:17 -0000 njl 2004-08-13 06:22:13 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_resource.c Log: MPSAFE locking: Add a comment that we need resource list and device_t refcounting/locking. Revision Changes Path 1.28 +1 -0 src/sys/dev/acpica/acpi_resource.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:22:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7169916A9BD; Fri, 13 Aug 2004 06:22:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2888543D53; Fri, 13 Aug 2004 06:22:20 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MKnV071267; Fri, 13 Aug 2004 06:22:20 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MK7o071266; Fri, 13 Aug 2004 06:22:20 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MK7o071266@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_video.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:24 -0000 njl 2004-08-13 06:22:20 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_video.c Log: MPSAFE locking * Serialize operations in acpi_video_bind_outputs(), acpi_video_detach(), acpi_video_notify_handler(), acpi_video_power_profile(), and the sysctls. The main goal is to protect the shared device list and prevent conflicting settings. * Add assertions that the sx lock is held in the leaf functions. Revision Changes Path 1.8 +48 -24 src/sys/dev/acpica/acpi_video.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:22:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB47A16A560; Fri, 13 Aug 2004 06:22:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 636DF43D41; Fri, 13 Aug 2004 06:22:24 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MOA2071301; Fri, 13 Aug 2004 06:22:24 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MOgl071300; Fri, 13 Aug 2004 06:22:24 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MOgl071300@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica/Osd OsdInterrupt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:29 -0000 njl 2004-08-13 06:22:24 UTC FreeBSD src repository Modified files: sys/dev/acpica/Osd OsdInterrupt.c Log: MPSAFE locking * Remove the interrupt wrapper that locked Giant and call the handler directly. Mark the handler as MPSAFE. * Don't attempt to detect if a handler is installed. Leave that to the bus_alloc_resource() function. Revision Changes Path 1.18 +2 -22 src/sys/dev/acpica/Osd/OsdInterrupt.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:22:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C665E16A74B; Fri, 13 Aug 2004 06:22:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 968FB43D58; Fri, 13 Aug 2004 06:22:29 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MTe5071373; Fri, 13 Aug 2004 06:22:29 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MT31071372; Fri, 13 Aug 2004 06:22:29 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MT31071372@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/acpica acpi_asus.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:35 -0000 njl 2004-08-13 06:22:29 UTC FreeBSD src repository Modified files: sys/i386/acpica acpi_asus.c Log: MPSAFE locking * Serialize access to the sysctl routines and the notify handler. Revision Changes Path 1.11 +10 -0 src/sys/i386/acpica/acpi_asus.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:22:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4D90416A5E7; Fri, 13 Aug 2004 06:22:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAF6A43D49; Fri, 13 Aug 2004 06:22:31 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MVgl071407; Fri, 13 Aug 2004 06:22:31 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MVKl071406; Fri, 13 Aug 2004 06:22:31 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MVKl071406@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/acpica acpi_panasonic.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:39 -0000 njl 2004-08-13 06:22:31 UTC FreeBSD src repository Modified files: sys/i386/acpica acpi_panasonic.c Log: MPSAFE locking * Serialize access to the sysctl routines and the notify handler * Assert that the sx lock is held in any functions they call. Revision Changes Path 1.3 +15 -2 src/sys/i386/acpica/acpi_panasonic.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:22:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 72BB816AADE; Fri, 13 Aug 2004 06:22:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B8E843D39; Fri, 13 Aug 2004 06:22:35 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MZpl071442; Fri, 13 Aug 2004 06:22:35 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MZHY071441; Fri, 13 Aug 2004 06:22:35 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MZHY071441@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/acpica acpi_toshiba.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:43 -0000 njl 2004-08-13 06:22:35 UTC FreeBSD src repository Modified files: sys/i386/acpica acpi_toshiba.c Log: MPSAFE locking * Serialize access to the sysctl routines and the notify handler * Assert that the sx lock is held in any functions they call. * Note that recursively calling to re-enable the hotkeys is sub-optimal. Revision Changes Path 1.13 +20 -2 src/sys/i386/acpica/acpi_toshiba.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:22:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A409116A691; Fri, 13 Aug 2004 06:22:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 832E243D41; Fri, 13 Aug 2004 06:22:07 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6M79f071131; Fri, 13 Aug 2004 06:22:07 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6M7Qj071130; Fri, 13 Aug 2004 06:22:07 GMT (envelope-from njl) Message-Id: <200408130622.i7D6M7Qj071130@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pcib.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:11 -0000 njl 2004-08-13 06:22:07 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pcib.c Log: MPSAFE locking * Serialize calls to acpi_pcib_route_interrupt(). * Note that acpi_pcib_attach() should not be called concurrently. Revision Changes Path 1.50 +9 -0 src/sys/dev/acpica/acpi_pcib.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:22:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD25E16A966; Fri, 13 Aug 2004 06:22:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44AC343D5F; Fri, 13 Aug 2004 06:22:17 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MHnE071233; Fri, 13 Aug 2004 06:22:17 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MHFM071232; Fri, 13 Aug 2004 06:22:17 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MHFM071232@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_thermal.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:19 -0000 njl 2004-08-13 06:22:17 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_thermal.c Log: MPSAFE locking * Restructure the event handling path. acpi_tz_thread() now calls acpi_tz_timeout() any time an event occurs. acpi_tz_timeout() checks the flags and calls acpi_tz_power_profile(), acpi_tz_establish(), and acpi_tz_monitor() as appropriate. Notifies only do a wakeup and let acpi_tz_thread() do the actual work. This path is cleaner and allows locking since the call path is now always a D.A.G. * Add the acpi_tz_signal() function to set flags and wake the thread. * Remove the tz_tmp_updating flag since calls are serialized by acpi_tz_thread(). * Remove Giant locking. Revision Changes Path 1.48 +109 -121 src/sys/dev/acpica/acpi_thermal.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:22:30 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8FA116A745; Fri, 13 Aug 2004 06:22:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86E2443D45; Fri, 13 Aug 2004 06:22:26 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6MQH9071335; Fri, 13 Aug 2004 06:22:26 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6MQDm071334; Fri, 13 Aug 2004 06:22:26 GMT (envelope-from njl) Message-Id: <200408130622.i7D6MQDm071334@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 06:22:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica/Osd OsdSchedule.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:22:33 -0000 njl 2004-08-13 06:22:26 UTC FreeBSD src repository Modified files: sys/dev/acpica/Osd OsdSchedule.c Log: MPSAFE locking * Simplify taskqueue locking. * Don't acquire Giant around calls to the taskqueue function. * Remove 4.x compatibility routines. Revision Changes Path 1.29 +9 -38 src/sys/dev/acpica/Osd/OsdSchedule.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:38:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B573216A4CE; Fri, 13 Aug 2004 06:38:11 +0000 (GMT) Received: from msr78.hinet.net (msr78.hinet.net [168.95.4.178]) by mx1.FreeBSD.org (Postfix) with ESMTP id C106243D5C; Fri, 13 Aug 2004 06:38:10 +0000 (GMT) (envelope-from kevlo@FreeBSD.org) Received: from [192.168.1.118] (web.kaiping.org.tw [220.130.133.25]) by msr78.hinet.net (8.9.3/8.9.3) with ESMTP id OAA06722; Fri, 13 Aug 2004 14:38:03 +0800 (CST) From: Kevin Lo To: Joseph Scott In-Reply-To: <0D503C6A-ECDE-11D8-BE7C-000A95AD0296@randomnetworks.com> References: <200408130318.i7D3IGoP064801@repoman.freebsd.org> <0D503C6A-ECDE-11D8-BE7C-000A95AD0296@randomnetworks.com> Content-Type: text/plain Message-Id: <1092379177.2667.1.camel@localhost.localdomain> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 (1.4.6-2) Date: Fri, 13 Aug 2004 14:39:37 +0800 Content-Transfer-Encoding: 7bit cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/editors/kxmleditor Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:38:11 -0000 Joseph Scott wrote: > On Aug 12, 2004, at 8:18 PM, Kevin Lo wrote: > > > kevlo 2004-08-13 03:18:16 UTC > > > > FreeBSD ports repository > > > > Modified files: > > editors/kxmleditor Makefile distinfo pkg-plist > > Log: > > upgrade to kxmleditor 1.1.2 > > Does this also take care of the issue mentioned in PR ports/70079? Yes, I'll close that, thanks. > -- > Joseph Scott -Kevin From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:47:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3268016A4CF; Fri, 13 Aug 2004 06:47:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10BF743D31; Fri, 13 Aug 2004 06:47:34 +0000 (GMT) (envelope-from davidxu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6lXf8072170; Fri, 13 Aug 2004 06:47:33 GMT (envelope-from davidxu@repoman.freebsd.org) Received: (from davidxu@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6lXCG072169; Fri, 13 Aug 2004 06:47:33 GMT (envelope-from davidxu) Message-Id: <200408130647.i7D6lXCG072169@repoman.freebsd.org> From: David Xu Date: Fri, 13 Aug 2004 06:47:33 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libthread_db libthr_db.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:47:34 -0000 davidxu 2004-08-13 06:47:33 UTC FreeBSD src repository Modified files: lib/libthread_db libthr_db.c Log: 1. Add missing functions: libthr_dbresume,libthr_dbsuspend. 2. Implement functions: libthr_db_thr_setfpregs, libthr_db_thr_setregs, libthr_db_ta_map_id2thr. 3. simplify libthr_db_thr_getfpregs, libthr_db_thr_getgregs. Revision Changes Path 1.2 +77 -20 src/lib/libthread_db/libthr_db.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:52:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37BF716A4CE; Fri, 13 Aug 2004 06:52:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CA7D43D62; Fri, 13 Aug 2004 06:52:08 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6q8Mi072416; Fri, 13 Aug 2004 06:52:08 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6q8FB072415; Fri, 13 Aug 2004 06:52:08 GMT (envelope-from blackend) Message-Id: <200408130652.i7D6q8FB072415@repoman.freebsd.org> From: Marc Fonvieille Date: Fri, 13 Aug 2004 06:52:08 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/fr_FR.ISO8859-1/books/handbook/l10n chapter.sgml doc/fr_FR.ISO8859-1/books/handbook/mirrorschapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:52:08 -0000 blackend 2004-08-13 06:52:08 UTC FreeBSD doc repository Modified files: fr_FR.ISO8859-1/books/handbook/l10n chapter.sgml fr_FR.ISO8859-1/books/handbook/mirrors chapter.sgml fr_FR.ISO8859-1/books/handbook/pgpkeys chapter.sgml Log: MFen: l10n/chapter.sgml 1.95 --> 1.100 mirrors/chapter.sgml 1.347 --> 1.350 pgpkeys/chapter.sgml 1.222 --> 1.237 Revision Changes Path 1.11 +12 -45 doc/fr_FR.ISO8859-1/books/handbook/l10n/chapter.sgml 1.8 +17 -3 doc/fr_FR.ISO8859-1/books/handbook/mirrors/chapter.sgml 1.19 +68 -18 doc/fr_FR.ISO8859-1/books/handbook/pgpkeys/chapter.sgml From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:57:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2799A16A4CE; Fri, 13 Aug 2004 06:57:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0803B43D66; Fri, 13 Aug 2004 06:57:32 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6vVR6072572; Fri, 13 Aug 2004 06:57:31 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6vVs3072571; Fri, 13 Aug 2004 06:57:31 GMT (envelope-from imp) Message-Id: <200408130657.i7D6vVs3072571@repoman.freebsd.org> From: Warner Losh Date: Fri, 13 Aug 2004 06:57:31 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pccard i82365.h pcic.c pcic_isa.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:57:32 -0000 imp 2004-08-13 06:57:31 UTC FreeBSD src repository Modified files: sys/pccard i82365.h pcic.c pcic_isa.c Log: Move PNP IDs back into oldcard files Revision Changes Path 1.28 +13 -0 src/sys/pccard/i82365.h 1.185 +0 -1 src/sys/pccard/pcic.c 1.26 +0 -1 src/sys/pccard/pcic_isa.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 06:57:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED80F16A4CE; Fri, 13 Aug 2004 06:57:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDB6243D39; Fri, 13 Aug 2004 06:57:46 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D6vkBF072606; Fri, 13 Aug 2004 06:57:46 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D6vkMG072605; Fri, 13 Aug 2004 06:57:46 GMT (envelope-from ijliao) Message-Id: <200408130657.i7D6vkMG072605@repoman.freebsd.org> From: Ying-Chieh Liao Date: Fri, 13 Aug 2004 06:57:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/centericq Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 06:57:47 -0000 ijliao 2004-08-13 06:57:46 UTC FreeBSD ports repository Modified files: net/centericq Makefile Log: utilize OPTIONS Approved by: maintainer Revision Changes Path 1.92 +20 -10 ports/net/centericq/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 13 07:05:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CC5116A4CE; Fri, 13 Aug 2004 07:05:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D78443D2F; Fri, 13 Aug 2004 07:05:35 +0000 (GMT) (envelope-from sem@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D75ZK2072942; Fri, 13 Aug 2004 07:05:35 GMT (envelope-from sem@repoman.freebsd.org) Received: (from sem@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D75Zqq072941; Fri, 13 Aug 2004 07:05:35 GMT (envelope-from sem) Message-Id: <200408130705.i7D75Zqq072941@repoman.freebsd.org> From: Sergey Matveychuk Date: Fri, 13 Aug 2004 07:05:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/frox Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 07:05:35 -0000 sem 2004-08-13 07:05:35 UTC FreeBSD ports repository Modified files: ftp/frox Makefile distinfo Log: Update to 0.7.15 Revision Changes Path 1.19 +4 -2 ports/ftp/frox/Makefile 1.9 +2 -2 ports/ftp/frox/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 07:10:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3AAE016A4CF; Fri, 13 Aug 2004 07:10:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1926443D46; Fri, 13 Aug 2004 07:10:18 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D7AH7R073157; Fri, 13 Aug 2004 07:10:18 GMT (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D7AHA1073156; Fri, 13 Aug 2004 07:10:17 GMT (envelope-from den) Message-Id: <200408130710.i7D7AHA1073156@repoman.freebsd.org> From: Denis Peplin Date: Fri, 13 Aug 2004 07:10:17 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ru_RU.KOI8-R/share/sgml articles.ent books.ent catalog urls.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 07:10:18 -0000 den 2004-08-13 07:10:17 UTC FreeBSD doc repository Modified files: ru_RU.KOI8-R/share/sgml articles.ent books.ent catalog Added files: ru_RU.KOI8-R/share/sgml urls.ent Log: Implement urls rewriting Other translation teams can use the same way Approach discussed with: hrs Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.3 +5 -1 doc/ru_RU.KOI8-R/share/sgml/articles.ent 1.3 +3 -1 doc/ru_RU.KOI8-R/share/sgml/books.ent 1.10 +3 -1 doc/ru_RU.KOI8-R/share/sgml/catalog 1.1 +21 -0 doc/ru_RU.KOI8-R/share/sgml/urls.ent (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 07:16:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A0E316A4CE; Fri, 13 Aug 2004 07:16:17 +0000 (GMT) Received: from volginfo.ru (ns.volginfo.ru [217.23.84.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB77443D1F; Fri, 13 Aug 2004 07:16:16 +0000 (GMT) (envelope-from den@FreeBSD.org) Received: from FreeBSD.org (llp-13.vistcom.ru [217.23.84.68]) by volginfo.ru (Postfix) with ESMTP id 996162017; Fri, 13 Aug 2004 11:16:16 +0400 (MSD) Message-ID: <411C6ABE.90201@FreeBSD.org> Date: Fri, 13 Aug 2004 11:16:14 +0400 From: Denis Peplin User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040205 X-Accept-Language: ru, en-us, en MIME-Version: 1.0 To: Denis Peplin References: <200408130710.i7D7AHA1073156@repoman.freebsd.org> In-Reply-To: <200408130710.i7D7AHA1073156@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/ru_RU.KOI8-R/share/sgml articles.ent books.ent catalog urls.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 07:16:17 -0000 Hello! This will made urls maintaining as easy as possible. Probably the same can be done for www urls by adding something like url.www, url.www.somedir, etc. (l10n.ent should be also modified) Anyone can feel free to modify / take this back for any reason Denis Peplin wrote: > den 2004-08-13 07:10:17 UTC > > FreeBSD doc repository > > Modified files: > ru_RU.KOI8-R/share/sgml articles.ent books.ent catalog > Added files: > ru_RU.KOI8-R/share/sgml urls.ent > Log: > Implement urls rewriting > > Other translation teams can use the same way > > Approach discussed with: hrs > Obtained from: The FreeBSD Russian Documentation Project > > Revision Changes Path > 1.3 +5 -1 doc/ru_RU.KOI8-R/share/sgml/articles.ent > 1.3 +3 -1 doc/ru_RU.KOI8-R/share/sgml/books.ent > 1.10 +3 -1 doc/ru_RU.KOI8-R/share/sgml/catalog > 1.1 +21 -0 doc/ru_RU.KOI8-R/share/sgml/urls.ent (new) > From owner-cvs-all@FreeBSD.ORG Fri Aug 13 07:23:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 73E7616A4CE; Fri, 13 Aug 2004 07:23:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5504843D2F; Fri, 13 Aug 2004 07:23:03 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D7N3r0073559; Fri, 13 Aug 2004 07:23:03 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D7N3bN073558; Fri, 13 Aug 2004 07:23:03 GMT (envelope-from kientzle) Message-Id: <200408130723.i7D7N3bN073558@repoman.freebsd.org> From: Tim Kientzle Date: Fri, 13 Aug 2004 07:23:03 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/tar bsdtar.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 07:23:03 -0000 kientzle 2004-08-13 07:23:03 UTC FreeBSD src repository Modified files: usr.bin/tar bsdtar.c Log: Make -I and --files-from be synonyms for -T Revision Changes Path 1.52 +4 -0 src/usr.bin/tar/bsdtar.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 07:24:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FD2016A4CE; Fri, 13 Aug 2004 07:24:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E16943D46; Fri, 13 Aug 2004 07:24:55 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D7OtQa073647; Fri, 13 Aug 2004 07:24:55 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D7OtN5073646; Fri, 13 Aug 2004 07:24:55 GMT (envelope-from krion) Message-Id: <200408130724.i7D7OtN5073646@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 13 Aug 2004 07:24:55 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/comms/bforce Makefile ports/comms/bforce/files patch-ab X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 07:24:55 -0000 krion 2004-08-13 07:24:55 UTC FreeBSD ports repository Modified files: comms/bforce Makefile Added files: comms/bforce/files patch-ab Log: Fix build with gcc-3.4 PR: ports/70394 Submitted by: maintainer Revision Changes Path 1.3 +2 -1 ports/comms/bforce/Makefile 1.1 +88 -0 ports/comms/bforce/files/patch-ab (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 07:28:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 420D616A4CE; Fri, 13 Aug 2004 07:28:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2212243D39; Fri, 13 Aug 2004 07:28:05 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D7S5cE073801; Fri, 13 Aug 2004 07:28:05 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D7S5CU073800; Fri, 13 Aug 2004 07:28:05 GMT (envelope-from roam) Message-Id: <200408130728.i7D7S5CU073800@repoman.freebsd.org> From: Peter Pentchev Date: Fri, 13 Aug 2004 07:28:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/lib/libstand libstand.3 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 07:28:05 -0000 roam 2004-08-13 07:28:04 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_4) lib/libstand libstand.3 Log: MFC revisions 1.29 through 1.31: fix a printf() example and bump the document date. Revision Changes Path 1.5.2.12 +3 -3 src/lib/libstand/libstand.3 From owner-cvs-all@FreeBSD.ORG Fri Aug 13 07:39:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9612B16A4CE; Fri, 13 Aug 2004 07:39:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 755CE43D41; Fri, 13 Aug 2004 07:39:13 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D7cwr1074151; Fri, 13 Aug 2004 07:38:58 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D7cwZ4074150; Fri, 13 Aug 2004 07:38:58 GMT (envelope-from jmg) Message-Id: <200408130738.i7D7cwZ4074150@repoman.freebsd.org> From: John-Mark Gurney Date: Fri, 13 Aug 2004 07:38:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_event.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 07:39:13 -0000 jmg 2004-08-13 07:38:58 UTC FreeBSD src repository Modified files: sys/kern kern_event.c Log: looks like rwatson forgot tabs... :) Revision Changes Path 1.76 +2 -2 src/sys/kern/kern_event.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 07:55:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 315F116A4CE; Fri, 13 Aug 2004 07:55:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E88B43D46; Fri, 13 Aug 2004 07:55:45 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D7tiAk074707; Fri, 13 Aug 2004 07:55:44 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D7ti19074706; Fri, 13 Aug 2004 07:55:44 GMT (envelope-from vs) Message-Id: <200408130755.i7D7ti19074706@repoman.freebsd.org> From: Volker Stolz Date: Fri, 13 Aug 2004 07:55:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/tamago Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 07:55:45 -0000 vs 2004-08-13 07:55:44 UTC FreeBSD ports repository Modified files: editors/tamago Makefile distinfo Log: Update to latest upstream-patch PR: ports/70008 Submitted by: KIMURA Yasuhiro Revision Changes Path 1.15 +2 -2 ports/editors/tamago/Makefile 1.7 +2 -2 ports/editors/tamago/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 08:06:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1D8B216A4CE; Fri, 13 Aug 2004 08:06:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1240043D41; Fri, 13 Aug 2004 08:06:35 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D86YbZ075108; Fri, 13 Aug 2004 08:06:34 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D86YJZ075107; Fri, 13 Aug 2004 08:06:34 GMT (envelope-from alc) Message-Id: <200408130806.i7D86YJZ075107@repoman.freebsd.org> From: Alan Cox Date: Fri, 13 Aug 2004 08:06:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_map.c vm_map.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 08:06:35 -0000 alc 2004-08-13 08:06:34 UTC FreeBSD src repository Modified files: sys/vm vm_map.c vm_map.h Log: Replace the linear search in vm_map_findspace() with an O(log n) algorithm built into the map entry splay tree. This replaces the first_free hint in struct vm_map with two fields in vm_map_entry: adj_free, the amount of free space following a map entry, and max_free, the maximum amount of free space in the entry's subtree. These fields make it possible to find a first-fit free region of a given size in one pass down the tree, so O(log n) amortized using splay trees. This significantly reduces the overhead in vm_map_findspace() for applications that mmap() many hundreds or thousands of regions, and has a negligible slowdown (0.1%) on buildworld. See, for example, the discussion of a micro-benchmark titled "Some mmap observations compared to Linux 2.6/OpenBSD" on -hackers in late October 2003. OpenBSD adopted this approach in March 2002, and NetBSD added it in November 2003, both with Red-Black trees. Submitted by: Mark W. Krentel Revision Changes Path 1.357 +212 -98 src/sys/vm/vm_map.c 1.116 +2 -1 src/sys/vm/vm_map.h From owner-cvs-all@FreeBSD.ORG Fri Aug 13 08:14:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D00916A4CE; Fri, 13 Aug 2004 08:14:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D35343D1F; Fri, 13 Aug 2004 08:14:27 +0000 (GMT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D8ERXT075314; Fri, 13 Aug 2004 08:14:27 GMT (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D8ERTl075313; Fri, 13 Aug 2004 08:14:27 GMT (envelope-from sos) Message-Id: <200408130814.i7D8ERTl075313@repoman.freebsd.org> From: Søren Schmidt Date: Fri, 13 Aug 2004 08:14:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ata ata-all.h ata-chipset.c ata-dma.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 08:14:27 -0000 sos 2004-08-13 08:14:27 UTC FreeBSD src repository Modified files: sys/dev/ata ata-all.h ata-chipset.c ata-dma.c Log: Allow the use of a supplied function to set the PRD table. This is needed for new chips that supports 64bit addressing. Revision Changes Path 1.81 +11 -4 src/sys/dev/ata/ata-all.h 1.80 +5 -4 src/sys/dev/ata/ata-chipset.c 1.129 +14 -30 src/sys/dev/ata/ata-dma.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 08:22:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CA59816A4CE; Fri, 13 Aug 2004 08:22:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9B2043D1D; Fri, 13 Aug 2004 08:22:58 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D8Mwot075568; Fri, 13 Aug 2004 08:22:58 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D8MwpC075567; Fri, 13 Aug 2004 08:22:58 GMT (envelope-from kris) Message-Id: <200408130822.i7D8MwpC075567@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 13 Aug 2004 08:22:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/clanlib-devel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 08:22:58 -0000 kris 2004-08-13 08:22:58 UTC FreeBSD ports repository Modified files: devel/clanlib-devel Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.23 +2 -0 ports/devel/clanlib-devel/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 13 08:36:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6344616A4CE; Fri, 13 Aug 2004 08:36:36 +0000 (GMT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15A6E43D1F; Fri, 13 Aug 2004 08:36:36 +0000 (GMT) (envelope-from nectar@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by gw.celabo.org (Postfix) with ESMTP id 921BD54889; Fri, 13 Aug 2004 03:36:35 -0500 (CDT) Received: from gw.celabo.org ([127.0.0.1]) by localhost (hellblazer.celabo.org [127.0.0.1]) (amavisd-new, port 10024) with SMTP id 05251-09; Fri, 13 Aug 2004 03:36:24 -0500 (CDT) Received: from [10.0.1.207] (dhcp-207.celabo.org [10.0.1.207]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (Client did not present a certificate) by gw.celabo.org (Postfix) with ESMTP id B6EC05486E; Fri, 13 Aug 2004 03:36:24 -0500 (CDT) In-Reply-To: <6982DFDC-ECBF-11D8-87C4-00039312D914@fillmore-labs.com> References: <6982DFDC-ECBF-11D8-87C4-00039312D914@fillmore-labs.com> Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Jacques Vidrine Date: Fri, 13 Aug 2004 03:36:23 -0500 To: Oliver Eikemeier X-Mailer: Apple Mail (2.619) cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 08:36:36 -0000 On Aug 12, 2004, at 7:26 PM, Oliver Eikemeier wrote: > Jacques Vidrine wrote: > >> nectar 2004-08-12 18:43:01 UTC >> >> FreeBSD ports repository >> >> Modified files: >> security/vuxml vuln.xml >> Log: >> Correct version information syntax in a number of entries. >> VuXML-using >> tools are expected only to understand actual package names and >> version >> numbers, not globs such as `foo-{bar,baz}' or `1.*'. > > The globs help against database bloat, I don't believe that this is a significant benefit. > and make checking faster. This is only true if you are doing linear searching. > 1.* is no glob, as you might remember from a previous discussion. I remember the previous discussion, but that had to do with your version of pkg_* tools. Outside of that context, "1.*" looks like a glob, and I was just using that to be descriptive. > portaudit understands these just fine, and I guess it is the main > client right now. I think VuXML.org is the main client :-) but of course that's not the point. As previously discussed, the semantics of VuXML and elements are package names and version numbers respectively, not globs or glob-like patterns. In particular, the semantics are not FreeBSD or FreeBSD Ports Collection specific. > Besides, it seems like this commit introduced some errors. How should > we handle this? Hit me over the head with the specific errors, please :-) Let's resolve them. Cheers, -- Jacques A Vidrine / NTT/Verio nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org From owner-cvs-all@FreeBSD.ORG Fri Aug 13 09:10:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5AC5416A4CF; Fri, 13 Aug 2004 09:10:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3864143D58; Fri, 13 Aug 2004 09:10:39 +0000 (GMT) (envelope-from roberto@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D9AdGG076505; Fri, 13 Aug 2004 09:10:39 GMT (envelope-from roberto@repoman.freebsd.org) Received: (from roberto@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D9AciV076504; Fri, 13 Aug 2004 09:10:38 GMT (envelope-from roberto) Message-Id: <200408130910.i7D9AciV076504@repoman.freebsd.org> From: Ollivier Robert Date: Fri, 13 Aug 2004 09:10:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/ntp/ntptimeset Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 09:10:39 -0000 roberto 2004-08-13 09:10:38 UTC FreeBSD src repository Removed files: usr.sbin/ntp/ntptimeset Makefile Log: ntptimeset is not build anymore by default so remove it for the time being. Prodded by: imp Revision Changes Path 1.4 +0 -19 src/usr.sbin/ntp/ntptimeset/Makefile (dead) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 09:27:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0410016A4CE; Fri, 13 Aug 2004 09:27:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D410143D31; Fri, 13 Aug 2004 09:27:21 +0000 (GMT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D9RLbR077037; Fri, 13 Aug 2004 09:27:21 GMT (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D9RLIF077036; Fri, 13 Aug 2004 09:27:21 GMT (envelope-from harti) Message-Id: <200408130927.i7D9RLIF077036@repoman.freebsd.org> From: Hartmut Brandt Date: Fri, 13 Aug 2004 09:27:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/regression/atm README RunTest.sh src/tools/regression/atm/proto_cc RunTest.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 09:27:22 -0000 harti 2004-08-13 09:27:21 UTC FreeBSD src repository Modified files: tools/regression/atm README RunTest.sh Added files: tools/regression/atm/proto_cc RunTest.sh Log: Add a regression test for the ATM call control stuff. Revision Changes Path 1.2 +1 -0 src/tools/regression/atm/README 1.3 +2 -0 src/tools/regression/atm/RunTest.sh 1.1 +10 -0 src/tools/regression/atm/proto_cc/RunTest.sh (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 09:40:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A92D516A4CE; Fri, 13 Aug 2004 09:40:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C81843D5E; Fri, 13 Aug 2004 09:40:58 +0000 (GMT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D9ewii077647; Fri, 13 Aug 2004 09:40:58 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D9ewwq077646; Fri, 13 Aug 2004 09:40:58 GMT (envelope-from fjoe) Message-Id: <200408130940.i7D9ewwq077646@repoman.freebsd.org> From: Max Khon Date: Fri, 13 Aug 2004 09:40:58 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/uzip g_uzip.c src/sys/conf NOTES files options src/sys/modules/geom Makefile src/sys/modules/geom/geom_uzip Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 09:40:58 -0000 fjoe 2004-08-13 09:40:58 UTC FreeBSD src repository Modified files: sys/conf NOTES files options sys/modules/geom Makefile Added files: sys/geom/uzip g_uzip.c sys/modules/geom/geom_uzip Makefile Log: Add geom_uzip -- geom class that implements read-only compressed disks. Currently supports cloop V2.0 disk compression format. May support more formats in future. Revision Changes Path 1.1258 +1 -0 src/sys/conf/NOTES 1.940 +2 -0 src/sys/conf/files 1.472 +1 -0 src/sys/conf/options 1.1 +521 -0 src/sys/geom/uzip/g_uzip.c (new) 1.11 +1 -0 src/sys/modules/geom/Makefile 1.1 +9 -0 src/sys/modules/geom/geom_uzip/Makefile (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 09:52:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6AB216A4CE; Fri, 13 Aug 2004 09:52:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8478243D2F; Fri, 13 Aug 2004 09:52:33 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D9qXsF078049; Fri, 13 Aug 2004 09:52:33 GMT (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D9qXnC078048; Fri, 13 Aug 2004 09:52:33 GMT (envelope-from mat) Message-Id: <200408130952.i7D9qXnC078048@repoman.freebsd.org> From: Mathieu Arnold Date: Fri, 13 Aug 2004 09:52:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Devel-PPPort Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 09:52:33 -0000 mat 2004-08-13 09:52:33 UTC FreeBSD ports repository Modified files: devel/p5-Devel-PPPort Makefile distinfo Log: Update to 2.99.06 Revision Changes Path 1.4 +2 -1 ports/devel/p5-Devel-PPPort/Makefile 1.4 +2 -2 ports/devel/p5-Devel-PPPort/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 09:53:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 709D816A4CE; Fri, 13 Aug 2004 09:53:22 +0000 (GMT) Received: from ylpvm15.prodigy.net (ylpvm15-ext.prodigy.net [207.115.57.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B9F843D49; Fri, 13 Aug 2004 09:53:22 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (adsl-67-115-74-195.dsl.lsan03.pacbell.net [67.115.74.195]) i7D9rIEU015610; Fri, 13 Aug 2004 05:53:20 -0400 Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 7E724536F9; Fri, 13 Aug 2004 01:58:37 -0700 (PDT) Date: Fri, 13 Aug 2004 01:58:37 -0700 From: Kris Kennaway To: Kris Kennaway Message-ID: <20040813085837.GA4524@xor.obsecurity.org> References: <200408130822.i7D8MwpC075567@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="azLHFNyN32YCQGCU" Content-Disposition: inline In-Reply-To: <200408130822.i7D8MwpC075567@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/devel/clanlib-devel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 09:53:22 -0000 --azLHFNyN32YCQGCU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Aug 13, 2004 at 08:22:58AM +0000, Kris Kennaway wrote: > kris 2004-08-13 08:22:58 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > devel/clanlib-devel Makefile=20 > Log: > BROKEN: Unfetchable Note to maintainer: you are blocking my email because you claim it is spam. This is annoying :-) Kris --azLHFNyN32YCQGCU Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBHIK9Wry0BWjoQKURAmonAKDdCHBqg638VP6GEfh4CjouSoNtWwCfd8cH YARiiLQFTIDcw2AvPxRarMo= =MOVo -----END PGP SIGNATURE----- --azLHFNyN32YCQGCU-- From owner-cvs-all@FreeBSD.ORG Fri Aug 13 09:53:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BD66C16A4CE; Fri, 13 Aug 2004 09:53:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B05D943D41; Fri, 13 Aug 2004 09:53:52 +0000 (GMT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D9rqBo078158; Fri, 13 Aug 2004 09:53:52 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D9rqkh078157; Fri, 13 Aug 2004 09:53:52 GMT (envelope-from fjoe) Message-Id: <200408130953.i7D9rqkh078157@repoman.freebsd.org> From: Max Khon Date: Fri, 13 Aug 2004 09:53:52 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/regression/geom_uzip .cvsignore Makefile runtests.sh test-1.img.gz.uue test-1.sh test-2.sh src/tools/regression/geom_uzip/etalon etalon.txt X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 09:53:52 -0000 fjoe 2004-08-13 09:53:52 UTC FreeBSD src repository Added files: tools/regression/geom_uzip .cvsignore Makefile runtests.sh test-1.img.gz.uue test-1.sh test-2.sh tools/regression/geom_uzip/etalon etalon.txt Log: Regression test for geom_uzip. Revision Changes Path 1.1 +2 -0 src/tools/regression/geom_uzip/.cvsignore (new) 1.1 +21 -0 src/tools/regression/geom_uzip/Makefile (new) 1.1 +43 -0 src/tools/regression/geom_uzip/etalon/etalon.txt (new) 1.1 +10 -0 src/tools/regression/geom_uzip/runtests.sh (new) 1.1 +72 -0 src/tools/regression/geom_uzip/test-1.img.gz.uue (new) 1.1 +35 -0 src/tools/regression/geom_uzip/test-1.sh (new) 1.1 +15 -0 src/tools/regression/geom_uzip/test-2.sh (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 09:54:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CD8B616A4CE; Fri, 13 Aug 2004 09:54:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB76243D5D; Fri, 13 Aug 2004 09:54:29 +0000 (GMT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D9sT1Y078206; Fri, 13 Aug 2004 09:54:29 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D9sTWD078205; Fri, 13 Aug 2004 09:54:29 GMT (envelope-from fjoe) Message-Id: <200408130954.i7D9sTWD078205@repoman.freebsd.org> From: Max Khon Date: Fri, 13 Aug 2004 09:54:29 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/calendar/calendars calendar.freebsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 09:54:30 -0000 fjoe 2004-08-13 09:54:29 UTC FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: I was born in USSR. Revision Changes Path 1.138 +1 -1 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Fri Aug 13 09:56:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2E4C16A4CE; Fri, 13 Aug 2004 09:56:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 90DC743D49; Fri, 13 Aug 2004 09:56:22 +0000 (GMT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7D9uM7K078320; Fri, 13 Aug 2004 09:56:22 GMT (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7D9uMEk078319; Fri, 13 Aug 2004 09:56:22 GMT (envelope-from fjoe) Message-Id: <200408130956.i7D9uMEk078319@repoman.freebsd.org> From: Max Khon Date: Fri, 13 Aug 2004 09:56:22 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/regression/geom_uzip test-1.img.gz.uue X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 09:56:22 -0000 fjoe 2004-08-13 09:56:22 UTC FreeBSD src repository Modified files: tools/regression/geom_uzip test-1.img.gz.uue Log: Regen. Revision Changes Path 1.2 +47 -46 src/tools/regression/geom_uzip/test-1.img.gz.uue From owner-cvs-all@FreeBSD.ORG Fri Aug 13 10:05:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDDF016A4CF; Fri, 13 Aug 2004 10:05:35 +0000 (GMT) Received: from imap.univie.ac.at (mail.univie.ac.at [131.130.1.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4B8243D1D; Fri, 13 Aug 2004 10:05:34 +0000 (GMT) (envelope-from le@FreeBSD.org) Received: from pcle2.cc.univie.ac.at (pcle2.cc.univie.ac.at [131.130.2.177]) by imap.univie.ac.at (8.12.10/8.12.10) with ESMTP id i7DA5KNx212684; Fri, 13 Aug 2004 12:05:23 +0200 Date: Fri, 13 Aug 2004 12:05:20 +0200 (CEST) From: Lukas Ertl To: Max Khon In-Reply-To: <200408130940.i7D9ewwq077646@repoman.freebsd.org> Message-ID: <20040813120505.L68167@pcle2.cc.univie.ac.at> References: <200408130940.i7D9ewwq077646@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed X-DCC-ZID-Univie-Metrics: mx9.univie.ac.at 4249; Body=4 Fuz1=4 Fuz2=4 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/geom/uzip g_uzip.c src/sys/conf NOTES files Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 10:05:35 -0000 On Fri, 13 Aug 2004, Max Khon wrote: > Add geom_uzip -- geom class that implements read-only compressed disks. > Currently supports cloop V2.0 disk compression format. > May support more formats in future. Wow, sounds cool. :-) cheers, le -- Lukas Ertl http://homepage.univie.ac.at/l.ertl/ le@FreeBSD.org http://people.freebsd.org/~le/ From owner-cvs-all@FreeBSD.ORG Fri Aug 13 10:14:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14A4F16A4CE; Fri, 13 Aug 2004 10:14:53 +0000 (GMT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BCD443D1D; Fri, 13 Aug 2004 10:14:52 +0000 (GMT) (envelope-from phk@critter.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.13.1/8.13.1) with ESMTP id i7DAEnXE059113; Fri, 13 Aug 2004 12:14:50 +0200 (CEST) (envelope-from phk@critter.freebsd.dk) To: Max Khon From: "Poul-Henning Kamp" In-Reply-To: Your message of "Fri, 13 Aug 2004 09:56:22 -0000." <200408130956.i7D9uMEk078319@repoman.freebsd.org> Date: Fri, 13 Aug 2004 12:14:49 +0200 Message-ID: <59112.1092392089@critter.freebsd.dk> Sender: phk@critter.freebsd.dk cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/tools/regression/geom_uzip test-1.img.gz.uue X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 10:14:53 -0000 In message <200408130956.i7D9uMEk078319@repoman.freebsd.org>, Max Khon writes: >fjoe 2004-08-13 09:56:22 UTC > > FreeBSD src repository > > Modified files: > tools/regression/geom_uzip test-1.img.gz.uue > Log: > Regen. I would actually have preferred if you have used the stuff in regression/geom for this, but any regression test is better than no regression test. -- 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 Fri Aug 13 10:19:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3ABB16A4CE; Fri, 13 Aug 2004 10:19:15 +0000 (GMT) Received: from neo.samodelkin.net (samodelkin.net [81.176.202.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9374243D58; Fri, 13 Aug 2004 10:19:15 +0000 (GMT) (envelope-from fjoe@neo.samodelkin.net) Received: by neo.samodelkin.net (Postfix, from userid 1000) id 9E4841706A; Fri, 13 Aug 2004 17:19:14 +0700 (NOVST) Date: Fri, 13 Aug 2004 17:19:14 +0700 From: Max Khon To: Poul-Henning Kamp Message-ID: <20040813101914.GB50469@samodelkin.net> References: <200408130956.i7D9uMEk078319@repoman.freebsd.org> <59112.1092392089@critter.freebsd.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <59112.1092392089@critter.freebsd.dk> User-Agent: Mutt/1.4.2i cc: Max Khon cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/tools/regression/geom_uzip test-1.img.gz.uue X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 10:19:16 -0000 Hi! On Fri, Aug 13, 2004 at 12:14:49PM +0200, Poul-Henning Kamp wrote: > >fjoe 2004-08-13 09:56:22 UTC > > > > FreeBSD src repository > > > > Modified files: > > tools/regression/geom_uzip test-1.img.gz.uue > > Log: > > Regen. > > I would actually have preferred if you have used the stuff in > regression/geom for this, but any regression test is better than > no regression test. I'll take look at it! /fjoe From owner-cvs-all@FreeBSD.ORG Fri Aug 13 10:31:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A256616A4CE; Fri, 13 Aug 2004 10:31:39 +0000 (GMT) Received: from neo.samodelkin.net (samodelkin.net [81.176.202.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5284443D54; Fri, 13 Aug 2004 10:31:39 +0000 (GMT) (envelope-from fjoe@neo.samodelkin.net) Received: by neo.samodelkin.net (Postfix, from userid 1000) id 9EFB11706A; Fri, 13 Aug 2004 17:31:37 +0700 (NOVST) Date: Fri, 13 Aug 2004 17:31:37 +0700 From: Max Khon To: Lukas Ertl Message-ID: <20040813103137.GB50664@samodelkin.net> References: <200408130940.i7D9ewwq077646@repoman.freebsd.org> <20040813120505.L68167@pcle2.cc.univie.ac.at> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040813120505.L68167@pcle2.cc.univie.ac.at> User-Agent: Mutt/1.4.2i cc: Max Khon cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/geom/uzip g_uzip.c src/sys/conf NOTES files Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 10:31:39 -0000 Hi! On Fri, Aug 13, 2004 at 12:05:20PM +0200, Lukas Ertl wrote: > > Add geom_uzip -- geom class that implements read-only compressed disks. > > Currently supports cloop V2.0 disk compression format. > > May support more formats in future. > > Wow, sounds cool. :-) By the way, I asked FreeSBIE (FreeBSD-based livecd system) developers to measure application startup times with and without geom_uzip. They are quite impressive (times are in minute and seconds): --------+----------+--------+ | w/o uzip | w/uzip | Boot | 1:26 | 1:04 | X | 41 | 9 | XFce | 1:17 | 18 | xterm | 13 | 2 | FireFox | 3:02 | 24 | --------+----------+--------+ /fjoe From owner-cvs-all@FreeBSD.ORG Fri Aug 13 10:45:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 894C316A4CE; Fri, 13 Aug 2004 10:45:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 666B443D1F; Fri, 13 Aug 2004 10:45:42 +0000 (GMT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DAjggs079991; Fri, 13 Aug 2004 10:45:42 GMT (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DAjgSJ079990; Fri, 13 Aug 2004 10:45:42 GMT (envelope-from bland) Message-Id: <200408131045.i7DAjgSJ079990@repoman.freebsd.org> From: Alexander Nedotsukov Date: Fri, 13 Aug 2004 10:45:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/atomix Makefile ports/games/atomix/files patch-src::goal-view.c patch-src::level-convert.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 10:45:42 -0000 bland 2004-08-13 10:45:42 UTC FreeBSD ports repository Modified files: games/atomix Makefile Added files: games/atomix/files patch-src::goal-view.c patch-src::level-convert.c Log: - Fix build with gcc 3.4 [1] - Use intlhack. - Fix score file installation permissions. Reported by: kris [1] Revision Changes Path 1.19 +2 -4 ports/games/atomix/Makefile 1.1 +10 -0 ports/games/atomix/files/patch-src::goal-view.c (new) 1.1 +10 -0 ports/games/atomix/files/patch-src::level-convert.c (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 10:54:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5744C16A4CE; Fri, 13 Aug 2004 10:54:59 +0000 (GMT) Received: from kaiser.sig11.org (host42-123.pool8250.interbusiness.it [82.50.123.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E12443D53; Fri, 13 Aug 2004 10:54:58 +0000 (GMT) (envelope-from rionda@riondato.com) Received: by kaiser.sig11.org (Postfix, from userid 1000) id EE7B5F6; Fri, 13 Aug 2004 12:55:35 +0200 (CEST) From: Matteo Riondato To: Max Khon In-Reply-To: <20040813103137.GB50664@samodelkin.net> References: <200408130940.i7D9ewwq077646@repoman.freebsd.org> <20040813120505.L68167@pcle2.cc.univie.ac.at> <20040813103137.GB50664@samodelkin.net> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-/xtvSmWmitVhPxs3yOsF" Message-Id: <1092394535.2114.2.camel@kaiser.sig11.org> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Fri, 13 Aug 2004 12:55:35 +0200 cc: cvs-all@freebsd.org cc: Lukas Ertl Subject: Re: cvs commit: src/sys/geom/uzip g_uzip.c src/sys/conf NOTES files Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 10:54:59 -0000 --=-/xtvSmWmitVhPxs3yOsF Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Il Ven, 2004-08-13 alle 12:31, Max Khon ha scritto: > Hi! >=20 > On Fri, Aug 13, 2004 at 12:05:20PM +0200, Lukas Ertl wrote: >=20 > > > Add geom_uzip -- geom class that implements read-only compressed disk= s. > > > Currently supports cloop V2.0 disk compression format. > > > May support more formats in future. > >=20 > > Wow, sounds cool. :-) >=20 > By the way, I asked FreeSBIE (FreeBSD-based livecd system) developers > to measure application startup times with and without geom_uzip. > They are quite impressive (times are in minute and seconds): As FreeSBIE bugmeister, I would like to thanks Max for his great work, because it improved FreeSBIE performances in a way we couldn't imagine before. Best Regards --=20 Rionda aka Matteo Riondato GUFI Staff Member (http://www.gufi.org) BSD-FAQ-it Main Developer (http://www.gufi.org/~rionda) FreeSBIE BugMeister (http://www.freesbie.org) GPG key at: http://www.riondabsd.net/riondagpg.asc Sent from: kaiser.sig11.org running FreeBSD-5.2-CURRENT --=-/xtvSmWmitVhPxs3yOsF Content-Type: application/pgp-signature; name=signature.asc Content-Description: Questa parte del messaggio =?ISO-8859-1?Q?=E8?= firmata -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD4DBQBBHJ4m2Mp4pR7Fa+wRAuJSAJUVRy2LUbYBfgimQBNHfTm3soRcAJ45ujJA qiDuEp6W67JjrhxRCM2CIQ== =Q9a7 -----END PGP SIGNATURE----- --=-/xtvSmWmitVhPxs3yOsF-- From owner-cvs-all@FreeBSD.ORG Fri Aug 13 10:55:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 902CE16A4CF; Fri, 13 Aug 2004 10:55:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6951143D39; Fri, 13 Aug 2004 10:55:00 +0000 (GMT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DAt0s0080188; Fri, 13 Aug 2004 10:55:00 GMT (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DAt09n080179; Fri, 13 Aug 2004 10:55:00 GMT (envelope-from bland) Message-Id: <200408131055.i7DAt09n080179@repoman.freebsd.org> From: Alexander Nedotsukov Date: Fri, 13 Aug 2004 10:55:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/gribouy/files patch-src::gribouy-curve.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 10:55:00 -0000 bland 2004-08-13 10:55:00 UTC FreeBSD ports repository Added files: print/gribouy/files patch-src::gribouy-curve.c Log: Fix build with gcc 3.4 Reported by: kris Revision Changes Path 1.1 +10 -0 ports/print/gribouy/files/patch-src::gribouy-curve.c (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 11:43:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF9BE16A4CE; Fri, 13 Aug 2004 11:43:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF57C43D49; Fri, 13 Aug 2004 11:43:23 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DBhNEb081474; Fri, 13 Aug 2004 11:43:23 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DBhN4J081473; Fri, 13 Aug 2004 11:43:23 GMT (envelope-from nork) Message-Id: <200408131143.i7DBhN4J081473@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 13 Aug 2004 11:43:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/liveMedia Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 11:43:24 -0000 nork 2004-08-13 11:43:23 UTC FreeBSD ports repository Modified files: net/liveMedia Makefile distinfo Log: Update to 2004.08.13. Revision Changes Path 1.128 +1 -1 ports/net/liveMedia/Makefile 1.119 +2 -2 ports/net/liveMedia/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 11:50:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BE7AE16A4CE; Fri, 13 Aug 2004 11:50:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C82743D46; Fri, 13 Aug 2004 11:50:24 +0000 (GMT) (envelope-from obraun@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DBoO9U081681; Fri, 13 Aug 2004 11:50:24 GMT (envelope-from obraun@repoman.freebsd.org) Received: (from obraun@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DBoOgn081680; Fri, 13 Aug 2004 11:50:24 GMT (envelope-from obraun) Message-Id: <200408131150.i7DBoOgn081680@repoman.freebsd.org> From: Oliver Braun Date: Fri, 13 Aug 2004 11:50:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/hs-cpphs Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 11:50:24 -0000 obraun 2004-08-13 11:50:24 UTC FreeBSD ports repository Modified files: devel/hs-cpphs Makefile distinfo Log: Upgrade to 0.6. Revision Changes Path 1.2 +2 -2 ports/devel/hs-cpphs/Makefile 1.2 +2 -2 ports/devel/hs-cpphs/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 12:14:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 43BCB16A4CE; Fri, 13 Aug 2004 12:14:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 244AD43D31; Fri, 13 Aug 2004 12:14:40 +0000 (GMT) (envelope-from rik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DCEeI6082352; Fri, 13 Aug 2004 12:14:40 GMT (envelope-from rik@repoman.freebsd.org) Received: (from rik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DCEdv4082351; Fri, 13 Aug 2004 12:14:39 GMT (envelope-from rik) Message-Id: <200408131214.i7DCEdv4082351@repoman.freebsd.org> From: Roman Kurakin Date: Fri, 13 Aug 2004 12:14:39 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/cx if_cx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 12:14:40 -0000 rik 2004-08-13 12:14:39 UTC FreeBSD src repository Modified files: sys/dev/cx if_cx.c Log: White space cleanup. Revision Changes Path 1.29 +217 -217 src/sys/dev/cx/if_cx.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 12:22:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 008BB16A4CE; Fri, 13 Aug 2004 12:22:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D536343D5E; Fri, 13 Aug 2004 12:22:01 +0000 (GMT) (envelope-from rik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DCM1mN083018; Fri, 13 Aug 2004 12:22:01 GMT (envelope-from rik@repoman.freebsd.org) Received: (from rik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DCM1MN083017; Fri, 13 Aug 2004 12:22:01 GMT (envelope-from rik) Message-Id: <200408131222.i7DCM1MN083017@repoman.freebsd.org> From: Roman Kurakin Date: Fri, 13 Aug 2004 12:22:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ctau if_ct.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 12:22:02 -0000 rik 2004-08-13 12:22:01 UTC FreeBSD src repository Modified files: sys/dev/ctau if_ct.c Log: White space cleanup. Revision Changes Path 1.13 +225 -225 src/sys/dev/ctau/if_ct.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 12:27:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 37D8B16A4CE; Fri, 13 Aug 2004 12:27:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18F6F43D54; Fri, 13 Aug 2004 12:27:25 +0000 (GMT) (envelope-from rik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DCROLa083201; Fri, 13 Aug 2004 12:27:24 GMT (envelope-from rik@repoman.freebsd.org) Received: (from rik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DCROYI083200; Fri, 13 Aug 2004 12:27:24 GMT (envelope-from rik) Message-Id: <200408131227.i7DCROYI083200@repoman.freebsd.org> From: Roman Kurakin Date: Fri, 13 Aug 2004 12:27:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/cp if_cp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 12:27:25 -0000 rik 2004-08-13 12:27:24 UTC FreeBSD src repository Modified files: sys/dev/cp if_cp.c Log: White space cleanup. Revision Changes Path 1.11 +375 -375 src/sys/dev/cp/if_cp.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 12:35:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 816B716A4CE; Fri, 13 Aug 2004 12:35:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6291143D48; Fri, 13 Aug 2004 12:35:53 +0000 (GMT) (envelope-from rik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DCZrgr084155; Fri, 13 Aug 2004 12:35:53 GMT (envelope-from rik@repoman.freebsd.org) Received: (from rik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DCZr1W084154; Fri, 13 Aug 2004 12:35:53 GMT (envelope-from rik) Message-Id: <200408131235.i7DCZr1W084154@repoman.freebsd.org> From: Roman Kurakin Date: Fri, 13 Aug 2004 12:35:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/cx if_cx.c src/sys/dev/ctau if_ct.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 12:35:53 -0000 rik 2004-08-13 12:35:52 UTC FreeBSD src repository Modified files: sys/dev/cx if_cx.c sys/dev/ctau if_ct.c Log: Fix resource check while autodetection. Revision Changes Path 1.14 +6 -6 src/sys/dev/ctau/if_ct.c 1.30 +6 -6 src/sys/dev/cx/if_cx.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 12:59:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D19A516A4CE; Fri, 13 Aug 2004 12:59:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B15A443D2D; Fri, 13 Aug 2004 12:59:46 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DCxksF084982; Fri, 13 Aug 2004 12:59:46 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DCxkXS084981; Fri, 13 Aug 2004 12:59:46 GMT (envelope-from ru) Message-Id: <200408131259.i7DCxkXS084981@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 13 Aug 2004 12:59:46 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man7 build.7 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 12:59:47 -0000 ru 2004-08-13 12:59:46 UTC FreeBSD src repository Modified files: share/man/man7 build.7 Log: Replaced a way outdated and unsafe sequence of upgrading the system from sources with the link to the relevant section in src/UPDATING. Revision Changes Path 1.27 +7 -40 src/share/man/man7/build.7 From owner-cvs-all@FreeBSD.ORG Fri Aug 13 13:09:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0CD516A4CE; Fri, 13 Aug 2004 13:09:39 +0000 (GMT) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id C50A643D60; Fri, 13 Aug 2004 13:09:39 +0000 (GMT) (envelope-from csjp@freebsd.org) Received: from freefall.freebsd.org (csjp@localhost [127.0.0.1]) i7DD9dgh095132; Fri, 13 Aug 2004 13:09:39 GMT (envelope-from csjp@freebsd.org) Received: (from csjp@localhost) by freefall.freebsd.org (8.12.11/8.12.11/Submit) id i7DD9dsQ095131; Fri, 13 Aug 2004 13:09:39 GMT (envelope-from csjp@freebsd.org) X-Authentication-Warning: freefall.freebsd.org: csjp set sender to csjp@freebsd.org using -f Date: Fri, 13 Aug 2004 13:09:39 +0000 From: "Christian S.J. Peron" To: Alan Cox Message-ID: <20040813130939.GA94895@freefall.freebsd.org> References: <200408130806.i7D86YJZ075107@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200408130806.i7D86YJZ075107@repoman.freebsd.org> User-Agent: Mutt/1.4.1i cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/vm vm_map.c vm_map.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 13:09:40 -0000 Neat! On 13 Aug 2004 Alan Cox wrote: > alc 2004-08-13 08:06:34 UTC > > FreeBSD src repository > > Modified files: > sys/vm vm_map.c vm_map.h > Log: > Replace the linear search in vm_map_findspace() with an O(log n) > algorithm built into the map entry splay tree. This replaces the > first_free hint in struct vm_map with two fields in vm_map_entry: > adj_free, the amount of free space following a map entry, and > max_free, the maximum amount of free space in the entry's subtree. > These fields make it possible to find a first-fit free region of a > given size in one pass down the tree, so O(log n) amortized using > splay trees. > > This significantly reduces the overhead in vm_map_findspace() for > applications that mmap() many hundreds or thousands of regions, and > has a negligible slowdown (0.1%) on buildworld. See, for example, the > discussion of a micro-benchmark titled "Some mmap observations > compared to Linux 2.6/OpenBSD" on -hackers in late October 2003. > > OpenBSD adopted this approach in March 2002, and NetBSD added it in > November 2003, both with Red-Black trees. > > Submitted by: Mark W. Krentel > > Revision Changes Path > 1.357 +212 -98 src/sys/vm/vm_map.c > 1.116 +2 -1 src/sys/vm/vm_map.h -- Christian S.J. Peron csjp@FreeBSD.ORG FreeBSD Committer From owner-cvs-all@FreeBSD.ORG Fri Aug 13 13:13:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33B9616A4CE; Fri, 13 Aug 2004 13:13:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14A4B43D68; Fri, 13 Aug 2004 13:13:32 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DDDV6K085411; Fri, 13 Aug 2004 13:13:31 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DDDVYI085410; Fri, 13 Aug 2004 13:13:31 GMT (envelope-from vs) Message-Id: <200408131313.i7DDDVYI085410@repoman.freebsd.org> From: Volker Stolz Date: Fri, 13 Aug 2004 13:13:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-fonts/urwfonts-ttf Makefile pkg-message pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 13:13:32 -0000 vs 2004-08-13 13:13:31 UTC FreeBSD ports repository Modified files: x11-fonts/urwfonts-ttf Makefile pkg-plist Added files: x11-fonts/urwfonts-ttf pkg-message Log: - Use more correct path for fonts, to be exact, use X prefix and install fonts to ${PREFIX}/lib/X11/fonts/urwfonts-ttf. - Add pkg-message with some description how to get X server to know about installed fonts. PR: ports/70375 Submitted by: Roman Bogorodskiy Revision Changes Path 1.4 +7 -3 ports/x11-fonts/urwfonts-ttf/Makefile 1.1 +10 -0 ports/x11-fonts/urwfonts-ttf/pkg-message (new) 1.2 +40 -40 ports/x11-fonts/urwfonts-ttf/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 13 13:14:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E497116A4CE; Fri, 13 Aug 2004 13:14:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C63EF43D45; Fri, 13 Aug 2004 13:14:05 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DDE5o0085448; Fri, 13 Aug 2004 13:14:05 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DDE5Jp085447; Fri, 13 Aug 2004 13:14:05 GMT (envelope-from ru) Message-Id: <200408131314.i7DDE5Jp085447@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 13 Aug 2004 13:14:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 13:14:06 -0000 ru 2004-08-13 13:14:05 UTC FreeBSD src repository Modified files: . UPDATING Log: Proofreading the 4.x -> 5.x upgrade procedure. Revision Changes Path 1.341 +3 -3 src/UPDATING From owner-cvs-all@FreeBSD.ORG Fri Aug 13 13:32:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D57216A4D1; Fri, 13 Aug 2004 13:32:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34A9C43D49; Fri, 13 Aug 2004 13:32:52 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DDWqdn086013; Fri, 13 Aug 2004 13:32:52 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DDWq25086012; Fri, 13 Aug 2004 13:32:52 GMT (envelope-from pav) Message-Id: <200408131332.i7DDWq25086012@repoman.freebsd.org> From: Pav Lucistnik Date: Fri, 13 Aug 2004 13:32:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net Makefile ports/net/glflow Makefile distinfo pkg-descr ports/net/glflow/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 13:32:52 -0000 pav 2004-08-13 13:32:52 UTC FreeBSD ports repository Modified files: net Makefile Added files: net/glflow Makefile distinfo pkg-descr net/glflow/files patch-Makefile Log: Add glflow, a DoS detection tool written with speed in mind. It detects attacks on high speed links through real-time NetFlow aggregation and analysis. PR: ports/69011 Submitted by: David Thiel Revision Changes Path 1.1345 +1 -0 ports/net/Makefile 1.1 +28 -0 ports/net/glflow/Makefile (new) 1.1 +2 -0 ports/net/glflow/distinfo (new) 1.1 +10 -0 ports/net/glflow/files/patch-Makefile (new) 1.1 +5 -0 ports/net/glflow/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 13:33:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2771316A4CE; Fri, 13 Aug 2004 13:33:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07C3943D55; Fri, 13 Aug 2004 13:33:25 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DDXOcs086073; Fri, 13 Aug 2004 13:33:24 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DDXOLc086072; Fri, 13 Aug 2004 13:33:24 GMT (envelope-from arved) Message-Id: <200408131333.i7DDXOLc086072@repoman.freebsd.org> From: Tilman Linneweh Date: Fri, 13 Aug 2004 13:33:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/p5-Mail-ClamAV Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 13:33:25 -0000 arved 2004-08-13 13:33:24 UTC FreeBSD ports repository Modified files: mail/p5-Mail-ClamAV Makefile distinfo Log: Update to 0.11 PR: 70352 Submitted by: Jan-Peter Koopmann Revision Changes Path 1.3 +1 -1 ports/mail/p5-Mail-ClamAV/Makefile 1.3 +2 -2 ports/mail/p5-Mail-ClamAV/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 13:33:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C848F16A4CE; Fri, 13 Aug 2004 13:33:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB9E243D5C; Fri, 13 Aug 2004 13:33:33 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DDXXA9086102; Fri, 13 Aug 2004 13:33:33 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DDXXjR086101; Fri, 13 Aug 2004 13:33:33 GMT (envelope-from pav) Message-Id: <200408131333.i7DDXXjR086101@repoman.freebsd.org> From: Pav Lucistnik Date: Fri, 13 Aug 2004 13:33:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 13:33:33 -0000 pav 2004-08-13 13:33:33 UTC FreeBSD ports repository Modified files: . modules Log: glflow --> ports/net/glflow Revision Changes Path 1.10887 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 13 13:36:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E2F016A4CF; Fri, 13 Aug 2004 13:36:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 399B243D1F; Fri, 13 Aug 2004 13:36:03 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DDa3Ja086359; Fri, 13 Aug 2004 13:36:03 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DDa3DU086358; Fri, 13 Aug 2004 13:36:03 GMT (envelope-from vs) Message-Id: <200408131336.i7DDa3DU086358@repoman.freebsd.org> From: Volker Stolz Date: Fri, 13 Aug 2004 13:36:03 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/nessus Makefile pkg-message pkg-plist ports/security/nessus/scripts move_nessus ports/security/nessus-libnasl Makefile ports/security/nessus-plugins ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 13:36:03 -0000 vs 2004-08-13 13:36:03 UTC FreeBSD ports repository Modified files: security/nessus Makefile pkg-plist security/nessus/files nessusd.sh security/nessus/scripts move_nessus security/nessus-libnasl Makefile security/nessus-libraries Makefile security/nessus-plugins Makefile Added files: security/nessus pkg-message Log: - Add WITHOUT_NESSUS_GTK knob. - Upgrade rc.d script to the rc-ng style; bump PORTREVISION for that. - Add CONFLICTS. PR: ports/69877 Submitted by: Udo Schweigert (maintainer) Revision Changes Path 1.46 +2 -0 ports/security/nessus-libnasl/Makefile 1.47 +2 -0 ports/security/nessus-libraries/Makefile 1.48 +2 -0 ports/security/nessus-plugins/Makefile 1.56 +20 -6 ports/security/nessus/Makefile 1.2 +33 -24 ports/security/nessus/files/nessusd.sh 1.1 +10 -0 ports/security/nessus/pkg-message (new) 1.14 +1 -1 ports/security/nessus/pkg-plist 1.2 +20 -11 ports/security/nessus/scripts/move_nessus From owner-cvs-all@FreeBSD.ORG Fri Aug 13 13:45:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4F9D116A4CE; Fri, 13 Aug 2004 13:45:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 312AA43D1F; Fri, 13 Aug 2004 13:45:06 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DDj6Rb086589; Fri, 13 Aug 2004 13:45:06 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DDj5w9086588; Fri, 13 Aug 2004 13:45:06 GMT (envelope-from arved) Message-Id: <200408131345.i7DDj5w9086588@repoman.freebsd.org> From: Tilman Linneweh Date: Fri, 13 Aug 2004 13:45:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/dns/p5-Net-Nslookup Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 13:45:06 -0000 arved 2004-08-13 13:45:05 UTC FreeBSD ports repository Modified files: dns/p5-Net-Nslookup Makefile distinfo Log: Update to 1.16 add new BUILD_DEPENDS for perl5.00503/perl5.6 PR: 70357 Submitted by: Cheng-Lung Sung Revision Changes Path 1.4 +8 -2 ports/dns/p5-Net-Nslookup/Makefile 1.4 +2 -2 ports/dns/p5-Net-Nslookup/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 13:54:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2F31416A4CE; Fri, 13 Aug 2004 13:54:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11AB143D48; Fri, 13 Aug 2004 13:54:23 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DDsMLq086915; Fri, 13 Aug 2004 13:54:22 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DDsMRg086914; Fri, 13 Aug 2004 13:54:22 GMT (envelope-from arved) Message-Id: <200408131354.i7DDsMRg086914@repoman.freebsd.org> From: Tilman Linneweh Date: Fri, 13 Aug 2004 13:54:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/deskutils/gtweakui Makefile distinfo pkg-plist ports/deskutils/gtweakui/files patch-Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 13:54:23 -0000 arved 2004-08-13 13:54:22 UTC FreeBSD ports repository Modified files: deskutils/gtweakui Makefile distinfo pkg-plist Removed files: deskutils/gtweakui/files patch-Makefile.in Log: Update to 0.4.0 PR: 70358 Submitted by: Sergey Akifyev Revision Changes Path 1.2 +14 -1 ports/deskutils/gtweakui/Makefile 1.2 +2 -2 ports/deskutils/gtweakui/distinfo 1.2 +0 -43 ports/deskutils/gtweakui/files/patch-Makefile.in (dead) 1.2 +8 -3 ports/deskutils/gtweakui/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 13 14:03:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BAFD716A4CE; Fri, 13 Aug 2004 14:03:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C6B343D5C; Fri, 13 Aug 2004 14:03:17 +0000 (GMT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DE3HdT087216; Fri, 13 Aug 2004 14:03:17 GMT (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DE3Ho9087215; Fri, 13 Aug 2004 14:03:17 GMT (envelope-from netchild) Message-Id: <200408131403.i7DE3Ho9087215@repoman.freebsd.org> From: Alexander Leidinger Date: Fri, 13 Aug 2004 14:03:17 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/modlogan Makefileports/textproc/modlogan/files patch-output_modlogan X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:03:17 -0000 netchild 2004-08-13 14:03:17 UTC FreeBSD ports repository Modified files: textproc/modlogan Makefile Added files: textproc/modlogan/files patch-output_modlogan Log: Add an official patch which fixes a segfault in output_modlogan. Revision Changes Path 1.35 +1 -0 ports/textproc/modlogan/Makefile 1.1 +47 -0 ports/textproc/modlogan/files/patch-output_modlogan (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 14:13:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA3DF16A4CE; Fri, 13 Aug 2004 14:13:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C6D443D4C; Fri, 13 Aug 2004 14:13:19 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEDJTC087740; Fri, 13 Aug 2004 14:13:19 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEDJiF087739; Fri, 13 Aug 2004 14:13:19 GMT (envelope-from arved) Message-Id: <200408131413.i7DEDJiF087739@repoman.freebsd.org> From: Tilman Linneweh Date: Fri, 13 Aug 2004 14:13:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-SVN-Mirror Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:13:19 -0000 arved 2004-08-13 14:13:19 UTC FreeBSD ports repository Modified files: devel/p5-SVN-Mirror Makefile distinfo Log: Update to 0.42 PR: 70351 Submitted by: Rong-En Fan Revision Changes Path 1.8 +1 -2 ports/devel/p5-SVN-Mirror/Makefile 1.6 +2 -2 ports/devel/p5-SVN-Mirror/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 14:15:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E349F16A4CE; Fri, 13 Aug 2004 14:15:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9D5743D5F; Fri, 13 Aug 2004 14:15:25 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEFPYR088003; Fri, 13 Aug 2004 14:15:25 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEFPL3088002; Fri, 13 Aug 2004 14:15:25 GMT (envelope-from vs) Message-Id: <200408131415.i7DEFPL3088002@repoman.freebsd.org> From: Volker Stolz Date: Fri, 13 Aug 2004 14:15:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/nessus-devel Makefile pkg-message pkg-plist ports/security/nessus-devel/files nessusd.sh ports/security/nessus-libnasl-devel Makefile ports/security/nessus-libraries-devel Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:15:26 -0000 vs 2004-08-13 14:15:25 UTC FreeBSD ports repository Modified files: security/nessus-devel Makefile pkg-plist security/nessus-devel/files nessusd.sh security/nessus-devel/scripts move_nessus security/nessus-libnasl-devel Makefile security/nessus-libraries-devel Makefile security/nessus-plugins-devel Makefile Added files: security/nessus-devel pkg-message Log: - Add WITHOUT_NESSUS_GTK knob. - Upgrade rc.d script to the rc-ng style; bump PORTREVISION for that. - Add CONFLICTS. PR: ports/69878 Submitted by: Udo Schweigert (maintainer) Revision Changes Path 1.70 +20 -6 ports/security/nessus-devel/Makefile 1.2 +33 -24 ports/security/nessus-devel/files/nessusd.sh 1.1 +10 -0 ports/security/nessus-devel/pkg-message (new) 1.17 +1 -1 ports/security/nessus-devel/pkg-plist 1.2 +20 -11 ports/security/nessus-devel/scripts/move_nessus 1.57 +2 -0 ports/security/nessus-libnasl-devel/Makefile 1.57 +2 -0 ports/security/nessus-libraries-devel/Makefile 1.59 +2 -0 ports/security/nessus-plugins-devel/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 13 14:18:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A4B3316A4CE; Fri, 13 Aug 2004 14:18:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84C3843D53; Fri, 13 Aug 2004 14:18:24 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEIOkw088375; Fri, 13 Aug 2004 14:18:24 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEIOSf088374; Fri, 13 Aug 2004 14:18:24 GMT (envelope-from ru) Message-Id: <200408131418.i7DEIOSf088374@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 13 Aug 2004 14:18:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/routed Makefile src/sbin/routed/rtquery Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:18:24 -0000 ru 2004-08-13 14:18:24 UTC FreeBSD src repository Modified files: sbin/routed Makefile sbin/routed/rtquery Makefile Log: Removed commented out bitrot. Revision Changes Path 1.16 +0 -1 src/sbin/routed/Makefile 1.14 +0 -1 src/sbin/routed/rtquery/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 13 14:19:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E164616A4CF; Fri, 13 Aug 2004 14:19:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B162243D41; Fri, 13 Aug 2004 14:19:12 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEJCvx088442; Fri, 13 Aug 2004 14:19:12 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEJCVn088441; Fri, 13 Aug 2004 14:19:12 GMT (envelope-from ru) Message-Id: <200408131419.i7DEJCVn088441@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 13 Aug 2004 14:19:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/examples/ses Makefile.inc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:19:13 -0000 ru 2004-08-13 14:19:12 UTC FreeBSD src repository Modified files: share/examples/ses Makefile.inc Log: Removed COPTS with equivalent CFLAGS. While here, fixed setting of BINDIR. Revision Changes Path 1.2 +3 -3 src/share/examples/ses/Makefile.inc From owner-cvs-all@FreeBSD.ORG Fri Aug 13 14:21:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A60EF16A4CE; Fri, 13 Aug 2004 14:21:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86A7643D53; Fri, 13 Aug 2004 14:21:49 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DELnEK088665; Fri, 13 Aug 2004 14:21:49 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DELnWx088664; Fri, 13 Aug 2004 14:21:49 GMT (envelope-from ru) Message-Id: <200408131421.i7DELnWx088664@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 13 Aug 2004 14:21:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/regression/p1003_1b Makefilesrc/usr.sbin/i4b/isdnd Makefile src/usr.sbin/i4b/isdnmonitor Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:21:49 -0000 ru 2004-08-13 14:21:49 UTC FreeBSD src repository Modified files: tools/regression/p1003_1b Makefile usr.sbin/i4b/isdnd Makefile usr.sbin/i4b/isdnmonitor Makefile Log: Replaced COPTS by equivalent CFLAGS. Revision Changes Path 1.2 +1 -1 src/tools/regression/p1003_1b/Makefile 1.14 +7 -7 src/usr.sbin/i4b/isdnd/Makefile 1.9 +2 -2 src/usr.sbin/i4b/isdnmonitor/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 13 14:23:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 978E016A4CE; Fri, 13 Aug 2004 14:23:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A5D843D69; Fri, 13 Aug 2004 14:23:25 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DENPlR088718; Fri, 13 Aug 2004 14:23:25 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DENP8X088717; Fri, 13 Aug 2004 14:23:25 GMT (envelope-from arved) Message-Id: <200408131423.i7DENP8X088717@repoman.freebsd.org> From: Tilman Linneweh Date: Fri, 13 Aug 2004 14:23:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/p5-XML-RSS Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:23:25 -0000 arved 2004-08-13 14:23:25 UTC FreeBSD ports repository Modified files: textproc/p5-XML-RSS Makefile distinfo Log: Update to 1.05 Assing maintainership to submitter add new dependency of Test-* PR: 70398 Submitted by: Cheng-Lung Sung Revision Changes Path 1.14 +11 -4 ports/textproc/p5-XML-RSS/Makefile 1.7 +2 -2 ports/textproc/p5-XML-RSS/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 14:30:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0B3916A4CE; Fri, 13 Aug 2004 14:30:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83D8243D58; Fri, 13 Aug 2004 14:30:26 +0000 (GMT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEUQ7T088979; Fri, 13 Aug 2004 14:30:26 GMT (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEUQqn088978; Fri, 13 Aug 2004 14:30:26 GMT (envelope-from ru) Message-Id: <200408131430.i7DEUQqn088978@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 13 Aug 2004 14:30:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/mk bsd.README bsd.prog.mk src/sys/conf Makefile.powerpc kern.pre.mk kmod.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:30:26 -0000 ru 2004-08-13 14:30:26 UTC FreeBSD src repository Modified files: share/mk bsd.README bsd.prog.mk sys/conf Makefile.powerpc kern.pre.mk kmod.mk Log: Removed COPTS support from kmod.mk and kern.pre.mk. COPTS support in bsd.prog.mk is preserved but discouraged. Revision Changes Path 1.27 +1 -1 src/share/mk/bsd.README 1.136 +1 -0 src/share/mk/bsd.prog.mk 1.270 +1 -1 src/sys/conf/Makefile.powerpc 1.56 +2 -2 src/sys/conf/kern.pre.mk 1.165 +1 -1 src/sys/conf/kmod.mk From owner-cvs-all@FreeBSD.ORG Fri Aug 13 14:33:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 548CA16A4CE; Fri, 13 Aug 2004 14:33:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3810A43D41; Fri, 13 Aug 2004 14:33:04 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEX47w089150; Fri, 13 Aug 2004 14:33:04 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEX4MO089149; Fri, 13 Aug 2004 14:33:04 GMT (envelope-from roam) Message-Id: <200408131433.i7DEX4MO089149@repoman.freebsd.org> From: Peter Pentchev Date: Fri, 13 Aug 2004 14:33:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/sys mount.2 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:33:04 -0000 roam 2004-08-13 14:33:04 UTC FreeBSD src repository (doc,ports committer) Modified files: lib/libc/sys mount.2 Log: Document the MNT_SNAPSHOT mount flag with a cross-reference to mksnap_ffs(8). PR: 70402 Submitted by: James Raftery Revision Changes Path 1.40 +7 -1 src/lib/libc/sys/mount.2 From owner-cvs-all@FreeBSD.ORG Fri Aug 13 14:39:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AFB4E16A4EA; Fri, 13 Aug 2004 14:39:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9282543D39; Fri, 13 Aug 2004 14:39:15 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEdFML089368; Fri, 13 Aug 2004 14:39:15 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEdF2p089367; Fri, 13 Aug 2004 14:39:15 GMT (envelope-from vs) Message-Id: <200408131439.i7DEdF2p089367@repoman.freebsd.org> From: Volker Stolz Date: Fri, 13 Aug 2004 14:39:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gtkmathview Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:39:16 -0000 vs 2004-08-13 14:39:15 UTC FreeBSD ports repository Modified files: x11-toolkits/gtkmathview Makefile pkg-plist Log: Fix location of pkg-config-file PR: ports/69192 Submitted by: Konstantin Oznobihin Approved by: maintainer timeout Revision Changes Path 1.17 +1 -1 ports/x11-toolkits/gtkmathview/Makefile 1.4 +2 -2 ports/x11-toolkits/gtkmathview/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 13 14:42:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A16F216A4CE; Fri, 13 Aug 2004 14:42:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8623743D1F; Fri, 13 Aug 2004 14:42:18 +0000 (GMT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEgIFR089532; Fri, 13 Aug 2004 14:42:18 GMT (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEgI5q089531; Fri, 13 Aug 2004 14:42:18 GMT (envelope-from roam) Message-Id: <200408131442.i7DEgI5q089531@repoman.freebsd.org> From: Peter Pentchev Date: Fri, 13 Aug 2004 14:42:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/net if.c src/sys/pci if_xl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:42:18 -0000 roam 2004-08-13 14:42:18 UTC FreeBSD src repository (doc,ports committer) Modified files: (Branch: RELENG_4) sys/net if.c sys/pci if_xl.c Log: MFC if.c 1.198 and if_xl.c 1.179: Do not attempt to clean up data that has not been initialized yet. This fixes two kernel panics on boot when the xl driver fails to allocate bus/port/memory resources. Revision Changes Path 1.85.2.26 +15 -4 src/sys/net/if.c 1.72.2.30 +4 -2 src/sys/pci/if_xl.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 14:48:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D6F5D16A4CE; Fri, 13 Aug 2004 14:48:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBAB643D2D; Fri, 13 Aug 2004 14:48:50 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEmoEg089703; Fri, 13 Aug 2004 14:48:50 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEmoo4089702; Fri, 13 Aug 2004 14:48:50 GMT (envelope-from ume) Message-Id: <200408131448.i7DEmoo4089702@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 13 Aug 2004 14:48:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/netinet ip_icmp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:48:51 -0000 ume 2004-08-13 14:48:50 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) sys/netinet ip_icmp.c Log: MFC 1.93: do not send icmp response if the original packet is encrypted. Revision Changes Path 1.39.2.20 +3 -0 src/sys/netinet/ip_icmp.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 14:51:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC19E16A4CE; Fri, 13 Aug 2004 14:51:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FA4743D3F; Fri, 13 Aug 2004 14:51:45 +0000 (GMT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEpj5E089858; Fri, 13 Aug 2004 14:51:45 GMT (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEpjpG089857; Fri, 13 Aug 2004 14:51:45 GMT (envelope-from ume) Message-Id: <200408131451.i7DEpjpG089857@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Fri, 13 Aug 2004 14:51:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/kern uipc_syscalls.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:51:45 -0000 ume 2004-08-13 14:51:45 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) sys/kern uipc_syscalls.c Log: MFC 1.187: allow more than MLEN bytes for ancillary data to meet the requirement of Section 20.1 of RFC3542. Revision Changes Path 1.65.2.21 +4 -1 src/sys/kern/uipc_syscalls.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 14:54:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3FB9516A4CE; Fri, 13 Aug 2004 14:54:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2246A43D54; Fri, 13 Aug 2004 14:54:13 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DEsD8v089984; Fri, 13 Aug 2004 14:54:13 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DEsDm6089983; Fri, 13 Aug 2004 14:54:13 GMT (envelope-from arved) Message-Id: <200408131454.i7DEsDm6089983@repoman.freebsd.org> From: Tilman Linneweh Date: Fri, 13 Aug 2004 14:54:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/kscope Makefile distinfo pkg-plist ports/devel/kscope/files patch-src-ctagsfrontend.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 14:54:13 -0000 arved 2004-08-13 14:54:12 UTC FreeBSD ports repository Modified files: devel/kscope Makefile distinfo pkg-plist Removed files: devel/kscope/files patch-src-ctagsfrontend.cpp Log: Update to 0.8a PR: 70338 Submitted by: Frank Mayhar Revision Changes Path 1.4 +4 -1 ports/devel/kscope/Makefile 1.3 +2 -2 ports/devel/kscope/distinfo 1.3 +0 -11 ports/devel/kscope/files/patch-src-ctagsfrontend.cpp (dead) 1.2 +11 -12 ports/devel/kscope/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 13 15:01:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 25A0C16A4CE; Fri, 13 Aug 2004 15:01:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0983843D2D; Fri, 13 Aug 2004 15:01:41 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DF1evQ090225; Fri, 13 Aug 2004 15:01:40 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DF1eeQ090224; Fri, 13 Aug 2004 15:01:40 GMT (envelope-from arved) Message-Id: <200408131501.i7DF1eeQ090224@repoman.freebsd.org> From: Tilman Linneweh Date: Fri, 13 Aug 2004 15:01:40 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/multiskkserv/files multiskkserv.sh patch-src:multiskkserv-ctl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:01:41 -0000 arved 2004-08-13 15:01:40 UTC FreeBSD ports repository Modified files: japanese/multiskkserv/files multiskkserv.sh Added files: japanese/multiskkserv/files patch-src:multiskkserv-ctl.c Log: Run in background mode. Fix build with gcc 3.4.2 PR: 70403 Submitted by: Takahiro MORISHITA Revision Changes Path 1.2 +2 -2 ports/japanese/multiskkserv/files/multiskkserv.sh 1.1 +11 -0 ports/japanese/multiskkserv/files/patch-src:multiskkserv-ctl.c (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 15:08:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 100FD16A4CE; Fri, 13 Aug 2004 15:08:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9FEA43D2D; Fri, 13 Aug 2004 15:08:32 +0000 (GMT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DF8W9Y090466; Fri, 13 Aug 2004 15:08:32 GMT (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DF8WU3090465; Fri, 13 Aug 2004 15:08:32 GMT (envelope-from vs) Message-Id: <200408131508.i7DF8WU3090465@repoman.freebsd.org> From: Volker Stolz Date: Fri, 13 Aug 2004 15:08:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/converters/tnef Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:08:33 -0000 vs 2004-08-13 15:08:32 UTC FreeBSD ports repository Modified files: converters/tnef Makefile distinfo Removed files: converters/tnef pkg-plist Log: - Update to 1.2.3.1 [1] - Nuke pkg-plist while here PR: ports/68748 [1] Submitted by: Matt Peterson Approved by: maintainer timeout Revision Changes Path 1.8 +4 -3 ports/converters/tnef/Makefile 1.8 +2 -2 ports/converters/tnef/distinfo 1.3 +0 -8 ports/converters/tnef/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 15:09:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83A5516A4CE; Fri, 13 Aug 2004 15:09:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68A5043D1D; Fri, 13 Aug 2004 15:09:06 +0000 (GMT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DF96E3090509; Fri, 13 Aug 2004 15:09:06 GMT (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DF96LX090508; Fri, 13 Aug 2004 15:09:06 GMT (envelope-from bland) Message-Id: <200408131509.i7DF96LX090508@repoman.freebsd.org> From: Alexander Nedotsukov Date: Fri, 13 Aug 2004 15:09:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/glib20 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:09:06 -0000 bland 2004-08-13 15:09:06 UTC FreeBSD ports repository Modified files: devel/glib20 Makefile distinfo pkg-plist Log: Update to 2.4.6 Revision Changes Path 1.104 +1 -1 ports/devel/glib20/Makefile 1.45 +2 -2 ports/devel/glib20/distinfo 1.44 +1 -0 ports/devel/glib20/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 13 15:09:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C718A16A4CE; Fri, 13 Aug 2004 15:09:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA85943D31; Fri, 13 Aug 2004 15:09:21 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DF9LbF090548; Fri, 13 Aug 2004 15:09:21 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DF9Lk0090547; Fri, 13 Aug 2004 15:09:21 GMT (envelope-from bmah) Message-Id: <200408131509.i7DF9Lk0090547@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 13 Aug 2004 15:09:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:09:21 -0000 bmah 2004-08-13 15:09:21 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Miscellaneous edits. Mostly style, grammar, and punctuation fixes in the vein of my previous, recent commits. Updated release notes: Augmented sha(1)/rmd160(1) note, updated pf(4) pseudo-users, retweaked doscmd note to reinstate a missing word I deleted by accident [1] and add some more info. MFCs noted: ppp(8) LQM, ppp(8) set rad_alive. Pointed out by: "Eagle Eyes" ru [1] Revision Changes Path 1.760 +28 -20 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Fri Aug 13 15:13:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E17616A4CE; Fri, 13 Aug 2004 15:13:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 022B743D2D; Fri, 13 Aug 2004 15:13:12 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DFDBOC090691; Fri, 13 Aug 2004 15:13:11 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DFDBWt090690; Fri, 13 Aug 2004 15:13:11 GMT (envelope-from bmah) Message-Id: <200408131513.i7DFDBWt090690@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 13 Aug 2004 15:13:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:13:12 -0000 bmah 2004-08-13 15:13:11 UTC FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: ppp(8) LQM, ppp(8) set rad_alive. Revision Changes Path 1.22.2.418 +10 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Fri Aug 13 15:21:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CA1716A4CE; Fri, 13 Aug 2004 15:21:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E09543D46; Fri, 13 Aug 2004 15:21:20 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DFLKru091430; Fri, 13 Aug 2004 15:21:20 GMT (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DFLKsG091429; Fri, 13 Aug 2004 15:21:20 GMT (envelope-from nork) Message-Id: <200408131521.i7DFLKsG091429@repoman.freebsd.org> From: Norikatsu Shigemura Date: Fri, 13 Aug 2004 15:21:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/converters/p5-Convert-ASCII-Armour Makefile ports/databases/p5-DBD-SQLite Makefile ports/devel/p5-DB_File-Lock Makefile ports/mail/p5-Mail-Address-MobileJp Makefile ports/security/p5-Crypt-OpenSSL-DSA Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:21:20 -0000 nork 2004-08-13 15:21:20 UTC FreeBSD ports repository Modified files: converters/p5-Convert-ASCII-Armour Makefile databases/p5-DBD-SQLite Makefile devel/p5-DB_File-Lock Makefile devel/p5-IPC-SharedCache Makefile mail/p5-Mail-Address-MobileJp Makefile security/p5-Crypt-OpenSSL-DSA Makefile security/p5-Crypt-OpenSSL-RSA Makefile security/p5-Crypt-OpenSSL-Random Makefile security/p5-Crypt-RC5 Makefile security/p5-Crypt-RC6 Makefile security/p5-Crypt-Serpent Makefile security/p5-Crypt-Twofish2 Makefile security/p5-Digest-HMAC Makefile textproc/p5-Apache-ParseLog Makefile www/p5-Apache-DumpHeaders Makefile www/p5-HTML-Template-Expr Makefile Log: Change MAINTAINER to perl@. I welcome bsd.port.mk introduced soon. Inspired by: freebsd-perl@ Revision Changes Path 1.6 +1 -1 ports/converters/p5-Convert-ASCII-Armour/Makefile 1.17 +1 -1 ports/databases/p5-DBD-SQLite/Makefile 1.5 +1 -1 ports/devel/p5-DB_File-Lock/Makefile 1.6 +1 -1 ports/devel/p5-IPC-SharedCache/Makefile 1.2 +1 -1 ports/mail/p5-Mail-Address-MobileJp/Makefile 1.9 +1 -1 ports/security/p5-Crypt-OpenSSL-DSA/Makefile 1.15 +1 -1 ports/security/p5-Crypt-OpenSSL-RSA/Makefile 1.8 +1 -1 ports/security/p5-Crypt-OpenSSL-Random/Makefile 1.7 +1 -1 ports/security/p5-Crypt-RC5/Makefile 1.6 +1 -1 ports/security/p5-Crypt-RC6/Makefile 1.6 +1 -1 ports/security/p5-Crypt-Serpent/Makefile 1.6 +1 -1 ports/security/p5-Crypt-Twofish2/Makefile 1.6 +1 -1 ports/security/p5-Digest-HMAC/Makefile 1.5 +1 -1 ports/textproc/p5-Apache-ParseLog/Makefile 1.5 +1 -1 ports/www/p5-Apache-DumpHeaders/Makefile 1.7 +1 -1 ports/www/p5-HTML-Template-Expr/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 13 15:22:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDB1B16A4CF; Fri, 13 Aug 2004 15:22:07 +0000 (GMT) Received: from mx2.mail.ru (mx2.mail.ru [194.67.23.122]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD43F43D46; Fri, 13 Aug 2004 15:22:06 +0000 (GMT) (envelope-from bogorodskiy@inbox.ru) Received: from [194.186.150.60] (port=49179 helo=inbox.ru) by mx2.mail.ru with esmtp id 1Bvdsa-000I4p-00; Fri, 13 Aug 2004 19:22:04 +0400 Date: Fri, 13 Aug 2004 19:20:50 +0400 From: Roman Bogorodskiy To: Kris Kennaway Message-ID: <20040813152049.GA664@lame.novel.ru> References: <200408130822.i7D8MwpC075567@repoman.freebsd.org> <20040813085837.GA4524@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="KsGdsel6WgEHnImy" Content-Disposition: inline In-Reply-To: <20040813085837.GA4524@xor.obsecurity.org> X-GPG: http://phptags.sourceforge.net/key User-Agent: Mutt/1.5.6i X-Spam: Probable Spam cc: cvs-ports@FreeBSD.org cc: Kris Kennaway cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/devel/clanlib-devel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:22:07 -0000 --KsGdsel6WgEHnImy Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Kris wrote: > Note to maintainer: you are blocking my email because you claim it is > spam. This is annoying :-) It's not my fault but fault but mail.ru's one, I can't do anything with it. As for clanlib-devel, they had some troubles with their server but currently it seems to work and I hope downloads will be avaible in a=20 short time.=20 -Roman Bogorodskiy --KsGdsel6WgEHnImy Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iQCVAwUBQRzcUYB0WzgdqspGAQJysQP/QbfHmmIvIZ8QMMeZBrh3nvoTdHRNKqzB WQRZ7skyEOJKoJrVFURIGj58E8TAUZ4Wz5kzs6m5+su4KGQnhUtOF/M0SYnZxuA4 r6KO6POMCvWwh+5nYmF+8hDPSOvZazcDqvt3fnEfuim1cfKv++/9GzjbLU7Qx4Zy Mixax7WM38A= =NVyz -----END PGP SIGNATURE----- --KsGdsel6WgEHnImy-- From owner-cvs-all@FreeBSD.ORG Fri Aug 13 15:30:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4576316A4CE; Fri, 13 Aug 2004 15:30:16 +0000 (GMT) Received: from plouf.absolight.net (plouf.absolight.net [212.43.217.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D54743D45; Fri, 13 Aug 2004 15:30:16 +0000 (GMT) (envelope-from mat@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by plouf.absolight.net (Postfix) with ESMTP id D1EF63F9A; Fri, 13 Aug 2004 17:30:14 +0200 (CEST) X-Original-To: ports-committers@FreeBSD.org X-Original-To: nork@FreeBSD.org X-Original-To: cvs-ports@FreeBSD.org X-Original-To: cvs-all@FreeBSD.org Received: from [192.168.8.51] (abeille.free.absolight.net [82.66.245.111]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by plouf.absolight.net (Postfix) with ESMTP id E08A44044; Fri, 13 Aug 2004 17:30:02 +0200 (CEST) Date: Fri, 13 Aug 2004 17:30:01 +0200 From: Mathieu Arnold To: Norikatsu Shigemura Message-ID: <94320FE5C32C213AAA2B5886@[192.168.8.51]> In-Reply-To: <20040813152125.43A8E16A4CF@hub.freebsd.org> References: <20040813152125.43A8E16A4CF@hub.freebsd.org> X-Mailer: Mulberry/3.1.6 (Win32) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========A6ECED8D5342CE8965D0==========" X-Spam-Checker-Version: SpamAssassin 2.64-abso_2004012301 (2004-01-11) on plouf.absolight.net by root@absolight.fr X-Virus-Scanned: by amavisd-new at plouf.absolight.net X-Spam-Status: No, hits=-2.238 tagged_above=-10 required=5 tests=AWL, BAYES_00, SARE_SUB_LONG_SUBJ_140, SARE_SUB_LONG_SUBJ_170, SUBJ_HAS_SPACES X-Spam-Level: cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/converters/p5-Convert-ASCII-Armour Makefile ports/databases/p5-DBD-SQLite Makefile ports/devel/p5-DB_File-Lock Makefile ports/devel/p5-IPC-SharedCache Makefile ports/mail/p5-Mail-Address-MobileJp Makefile ports/security/p5-Crypt-OpenSSL-DSA Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:30:16 -0000 --==========A6ECED8D5342CE8965D0========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +-le 13/08/2004 15:21 +0000, Norikatsu Shigemura a dit : | nork 2004-08-13 15:21:20 UTC | | FreeBSD ports repository | | Modified files: | Log: | I welcome bsd.port.mk introduced soon. Hopefully, this one is already here :-) -- Mathieu Arnold --==========A6ECED8D5342CE8965D0========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (MingW32) iQEVAwUBQRzee1vROjYJ63c1AQK/vQgAgJuQOdvsAk0YTFC5ZqVR8pZBQQpKblaN JEVNBnE4tvBcKP1MEmuA4/7NFrF2mGmrRaR8PsGtLEN/V3ciqWzjaKWxfodE/iGw hIyXdDJdw5CqStfjR3hMv3rdT2O4ONHQtB5ElAdytqI1YZw3A3OYp9UFjBG8mtQf +NtQnKfUceBfteUTw3FXtYra2/NDCueD1sWwUK3vyn6u7ZqzsL7yiKnLh1ypUf94 ibPNkqmg3Ql6ob/w/ZIVdPYCMUPeRf4lgznSw4iufrhzNeG+kOKxraaB2dPej6c5 0Aq5LgjYSBfgxLdr0UqrAhzd0sAE4joxSTE5y9hrOuhisI5iqWiuhQ== =M3hR -----END PGP SIGNATURE----- --==========A6ECED8D5342CE8965D0==========-- From owner-cvs-all@FreeBSD.ORG Fri Aug 13 15:34:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8DB816A4CE; Fri, 13 Aug 2004 15:34:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DF2243D5C; Fri, 13 Aug 2004 15:34:06 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DFY6ve091888; Fri, 13 Aug 2004 15:34:06 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DFY69F091887; Fri, 13 Aug 2004 15:34:06 GMT (envelope-from arved) Message-Id: <200408131534.i7DFY69F091887@repoman.freebsd.org> From: Tilman Linneweh Date: Fri, 13 Aug 2004 15:34:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/btqueue Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:34:06 -0000 arved 2004-08-13 15:34:06 UTC FreeBSD ports repository Modified files: net/btqueue Makefile distinfo pkg-plist Log: Update to 0.0.15 PR: 70416 Submitted by: Stefan Walter Revision Changes Path 1.4 +1 -1 ports/net/btqueue/Makefile 1.4 +2 -2 ports/net/btqueue/distinfo 1.4 +4 -0 ports/net/btqueue/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 13 15:37:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 57A3116A4CE; Fri, 13 Aug 2004 15:37:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C74C43D49; Fri, 13 Aug 2004 15:37:32 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DFbWkn092062; Fri, 13 Aug 2004 15:37:32 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DFbWqN092061; Fri, 13 Aug 2004 15:37:32 GMT (envelope-from arved) Message-Id: <200408131537.i7DFbWqN092061@repoman.freebsd.org> From: Tilman Linneweh Date: Fri, 13 Aug 2004 15:37:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/zope-coreblog Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:37:32 -0000 arved 2004-08-13 15:37:32 UTC FreeBSD ports repository Modified files: www/zope-coreblog Makefile distinfo Log: Update to 0.74b PR: 70405 Submitted by: HAYASHI Yasushi Revision Changes Path 1.7 +4 -5 ports/www/zope-coreblog/Makefile 1.6 +2 -2 ports/www/zope-coreblog/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 15:39:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9B1ED16A4D6; Fri, 13 Aug 2004 15:39:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74D7643D39; Fri, 13 Aug 2004 15:39:02 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DFd2LR092203; Fri, 13 Aug 2004 15:39:02 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DFd2fh092202; Fri, 13 Aug 2004 15:39:02 GMT (envelope-from krion) Message-Id: <200408131539.i7DFd2fh092202@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 13 Aug 2004 15:39:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/dparser Makefile distinfo ports/devel/dparser/files patch-write_tables.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:39:03 -0000 krion 2004-08-13 15:39:02 UTC FreeBSD ports repository Modified files: devel/dparser Makefile distinfo Added files: devel/dparser/files patch-write_tables.c Log: Update to version 1.11 PR: ports/70406 Submitted by: Ports Fury Revision Changes Path 1.7 +12 -3 ports/devel/dparser/Makefile 1.5 +2 -2 ports/devel/dparser/distinfo 1.1 +26 -0 ports/devel/dparser/files/patch-write_tables.c (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 15:41:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 42D4716A4CE; Fri, 13 Aug 2004 15:41:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2724D43D2F; Fri, 13 Aug 2004 15:41:13 +0000 (GMT) (envelope-from josef@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DFfDsY092313; Fri, 13 Aug 2004 15:41:13 GMT (envelope-from josef@repoman.freebsd.org) Received: (from josef@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DFfCBw092311; Fri, 13 Aug 2004 15:41:12 GMT (envelope-from josef) Message-Id: <200408131541.i7DFfCBw092311@repoman.freebsd.org> From: Josef El-Rayes Date: Fri, 13 Aug 2004 15:41:12 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/events events.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:41:13 -0000 josef 2004-08-13 15:41:12 UTC FreeBSD doc repository Modified files: en/events events.xml Log: Note the booth i will organize. Revision Changes Path 1.33 +3 -2 www/en/events/events.xml From owner-cvs-all@FreeBSD.ORG Fri Aug 13 15:43:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2FE2416A4CE; Fri, 13 Aug 2004 15:43:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1526843D1D; Fri, 13 Aug 2004 15:43:17 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DFhGHt092477; Fri, 13 Aug 2004 15:43:16 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DFhGf4092476; Fri, 13 Aug 2004 15:43:16 GMT (envelope-from krion) Message-Id: <200408131543.i7DFhGf4092476@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 13 Aug 2004 15:43:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/pngwriter Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:43:17 -0000 krion 2004-08-13 15:43:16 UTC FreeBSD ports repository Modified files: graphics/pngwriter Makefile distinfo pkg-plist Log: Update to version 0.4.4 PR: ports/70409 Submitted by: Ports Fury Revision Changes Path 1.3 +6 -3 ports/graphics/pngwriter/Makefile 1.4 +2 -2 ports/graphics/pngwriter/distinfo 1.3 +4 -0 ports/graphics/pngwriter/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 13 15:46:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F67016A4CE; Fri, 13 Aug 2004 15:46:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 833EF43D2F; Fri, 13 Aug 2004 15:46:34 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DFkY0u092678; Fri, 13 Aug 2004 15:46:34 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DFkYdb092677; Fri, 13 Aug 2004 15:46:34 GMT (envelope-from krion) Message-Id: <200408131546.i7DFkYdb092677@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 13 Aug 2004 15:46:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/gsk Makefile distinfo pkg-plist ports/net/gsk/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:46:34 -0000 krion 2004-08-13 15:46:34 UTC FreeBSD ports repository Modified files: net/gsk Makefile distinfo pkg-plist Removed files: net/gsk/files patch-configure Log: Update to version 1.0.0 PR: ports/70410 Submitted by: Ports Fury Revision Changes Path 1.13 +10 -7 ports/net/gsk/Makefile 1.5 +2 -2 ports/net/gsk/distinfo 1.2 +0 -10 ports/net/gsk/files/patch-configure (dead) 1.5 +157 -113 ports/net/gsk/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 13 15:52:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BB41416A4CE; Fri, 13 Aug 2004 15:52:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A06AA43D31; Fri, 13 Aug 2004 15:52:29 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DFqT9c092961; Fri, 13 Aug 2004 15:52:29 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DFqT0e092960; Fri, 13 Aug 2004 15:52:29 GMT (envelope-from krion) Message-Id: <200408131552.i7DFqT0e092960@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 13 Aug 2004 15:52:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/science/euler/files patch-source::term.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:52:29 -0000 krion 2004-08-13 15:52:29 UTC FreeBSD ports repository Added files: science/euler/files patch-source::term.c Log: Fix build with gcc-3.4 PR: ports/70413 Submitted by: Ports Fury Revision Changes Path 1.1 +34 -0 ports/science/euler/files/patch-source::term.c (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 15:54:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1F2E16A4CE; Fri, 13 Aug 2004 15:54:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7AB243D41; Fri, 13 Aug 2004 15:54:54 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DFsscE093123; Fri, 13 Aug 2004 15:54:54 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DFss0m093122; Fri, 13 Aug 2004 15:54:54 GMT (envelope-from krion) Message-Id: <200408131554.i7DFss0m093122@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 13 Aug 2004 15:54:54 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/bbrun Makefile pkg-descr pkg-plist ports/x11/bbrun/files patch-Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 15:54:54 -0000 krion 2004-08-13 15:54:54 UTC FreeBSD ports repository Modified files: x11/bbrun Makefile pkg-descr x11/bbrun/files patch-Makefile Removed files: x11/bbrun pkg-plist Log: Support CFLAGS properly Support PLIST_FILES Fix WWW: line PR: ports/70414 Submitted by: Ports Fury Revision Changes Path 1.21 +10 -8 ports/x11/bbrun/Makefile 1.7 +8 -5 ports/x11/bbrun/files/patch-Makefile 1.4 +1 -1 ports/x11/bbrun/pkg-descr 1.2 +0 -3 ports/x11/bbrun/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 16:09:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B13916A4CE; Fri, 13 Aug 2004 16:09:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5158143D5E; Fri, 13 Aug 2004 16:09:06 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DG96qY094110; Fri, 13 Aug 2004 16:09:06 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DG96ee094109; Fri, 13 Aug 2004 16:09:06 GMT (envelope-from krion) Message-Id: <200408131609.i7DG96ee094109@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 13 Aug 2004 16:09:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/fox-devel Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 16:09:06 -0000 krion 2004-08-13 16:09:06 UTC FreeBSD ports repository Modified files: x11-toolkits/fox-devel Makefile distinfo Log: Update to version 1.1.9 PR: ports/70415 Submitted by: Ports Fury Revision Changes Path 1.50 +1 -1 ports/x11-toolkits/fox-devel/Makefile 1.26 +2 -2 ports/x11-toolkits/fox-devel/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 16:10:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 97FC416A4CE; Fri, 13 Aug 2004 16:10:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E97D43D58; Fri, 13 Aug 2004 16:10:04 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DGA4ZM094228; Fri, 13 Aug 2004 16:10:04 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DGA4v8094227; Fri, 13 Aug 2004 16:10:04 GMT (envelope-from krion) Message-Id: <200408131610.i7DGA4v8094227@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 13 Aug 2004 16:10:04 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/goggles Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 16:10:04 -0000 krion 2004-08-13 16:10:04 UTC FreeBSD ports repository Modified files: multimedia/goggles Makefile Log: Chase libraries for latest x11-toolkits/fox-devel version. Revision Changes Path 1.22 +2 -2 ports/multimedia/goggles/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 13 16:11:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B767816A4CE; Fri, 13 Aug 2004 16:11:07 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 863EB43D55; Fri, 13 Aug 2004 16:11:07 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.41 (FreeBSD)) id 1Bvedw-0002bp-Bj; Fri, 13 Aug 2004 18:11:00 +0200 Date: Fri, 13 Aug 2004 18:11:00 +0200 From: Kirill Ponomarew To: Kirill Ponomarew Message-ID: <20040813161100.GD24103@voodoo.oberon.net> References: <200408131609.i7DG96ee094109@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UfEAyuTBtIjiZzX6" Content-Disposition: inline In-Reply-To: <200408131609.i7DG96ee094109@repoman.freebsd.org> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/x11-toolkits/fox-devel Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 16:11:07 -0000 --UfEAyuTBtIjiZzX6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Fri, Aug 13, 2004 at 04:09:06PM +0000, Kirill Ponomarew wrote: > krion 2004-08-13 16:09:06 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > x11-toolkits/fox-devel Makefile distinfo=20 > Log: > Update to version 1.1.9 ^ Typo, it should be 1.2.9 -Kirill --UfEAyuTBtIjiZzX6 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBHOgUQC1G6a60JuURAparAKDLrsifx6oHxvx34g63wvin2CRHkQCePACB VIKfIeCta0FOHeJJATHMeEI= =9MWP -----END PGP SIGNATURE----- --UfEAyuTBtIjiZzX6-- From owner-cvs-all@FreeBSD.ORG Fri Aug 13 16:23:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01F2916A4CF; Fri, 13 Aug 2004 16:23:46 +0000 (GMT) Received: from sakura.ninth-nine.com (sakura.ninth-nine.com [219.127.74.120]) by mx1.FreeBSD.org (Postfix) with ESMTP id 615A143D3F; Fri, 13 Aug 2004 16:23:45 +0000 (GMT) (envelope-from nork@FreeBSD.org) Received: from nadesico.ninth-nine.com (nadesico.ninth-nine.com [219.127.74.122]) by sakura.ninth-nine.com (8.12.11/8.12.11/NinthNine) with ESMTP id i7DGNhGY004708; Sat, 14 Aug 2004 01:23:44 +0900 (JST) (envelope-from nork@FreeBSD.org) Date: Sat, 14 Aug 2004 01:23:43 +0900 From: Norikatsu Shigemura To: Mathieu Arnold Message-Id: <20040814012343.7feb6c33.nork@FreeBSD.org> In-Reply-To: <94320FE5C32C213AAA2B5886@[192.168.8.51]> References: <20040813152125.43A8E16A4CF@hub.freebsd.org> <94320FE5C32C213AAA2B5886@[192.168.8.51]> X-Mailer: Sylpheed version 0.9.12-gtk2-20040622 (GTK+ 2.4.4; i386-portbld-freebsd5.2) 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-1.5.3 (sakura.ninth-nine.com [219.127.74.121]); Sat, 14 Aug 2004 01:23:44 +0900 (JST) cc: cvs-ports@FreeBSD.org cc: nork@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/converters/p5-Convert-ASCII-Armour Makefile ports/databases/p5-DBD-SQLite Makefile ports/devel/p5-DB_File-Lock Makefile ports/devel/p5-IPC-SharedCache Makefile ports/mail/p5-Mail-Address-MobileJp Makefile ports/security/p5-Crypt-OpenSSL-DSA Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 16:23:46 -0000 On Fri, 13 Aug 2004 17:30:01 +0200 Mathieu Arnold wrote: > +-le 13/08/2004 15:21 +0000, Norikatsu Shigemura a dit : > | nork 2004-08-13 15:21:20 UTC > | FreeBSD ports repository > | Modified files: > | Log: > | I welcome bsd.port.mk introduced soon. > Hopefully, this one is already here :-) Gahhhhh! It is too awkward. s/bsd.port.mk/bsd.perl.mk/ From owner-cvs-all@FreeBSD.ORG Fri Aug 13 16:46:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0959016A4CE; Fri, 13 Aug 2004 16:46:11 +0000 (GMT) Received: from blake.polstra.com (blake.polstra.com [64.81.189.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E35943D58; Fri, 13 Aug 2004 16:46:10 +0000 (GMT) (envelope-from jdp@polstra.com) Received: from strings.polstra.com (dsl081-189-067.sea1.dsl.speakeasy.net [64.81.189.67]) by blake.polstra.com (8.12.11/8.12.11) with ESMTP id i7DGk8cQ048795 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 13 Aug 2004 09:46:08 -0700 (PDT) (envelope-from jdp@strings.polstra.com) Received: (from jdp@localhost) by strings.polstra.com (8.12.11/8.12.11/Submit) id i7DGk85Z009734; Fri, 13 Aug 2004 09:46:08 -0700 (PDT) (envelope-from jdp) Message-ID: X-Mailer: XFMail 1.5.5 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <20040811020431.GA981@green.homeunix.org> Date: Fri, 13 Aug 2004 09:46:08 -0700 (PDT) From: John Polstra To: Brian Fundakowski Feldman X-Bogosity: No, tests=bogofilter, spamicity=0.152965, version=0.14.5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Maksim Yevmenkin cc: cvs-all@FreeBSD.org cc: Max Laier Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 16:46:11 -0000 On 11-Aug-2004 Brian Fundakowski Feldman wrote: > On Wed, Aug 11, 2004 at 03:33:25AM +0200, Max Laier wrote: >> On Wednesday 11 August 2004 02:12, Maksim Yevmenkin wrote: >> > emax 2004-08-11 00:12:27 UTC >> > >> > FreeBSD src repository >> > >> > Modified files: >> > sys/net if_tap.c >> > Log: >> > Set IFF_RUNNING flag on the interface as soon as the control device is >> > opened. >> >> Erm ... >> 1) IFF_RUNNING has a different meaning (for all I know) - "resources >> allocated" i.e. address(es) assigned. See if_loop.c for instance. >> 2) What are these spl's for? You are not going to MFC that anyway as it would >> be user visible. >> >> I recon a thread with this topic, but I think the outcome was that this is not >> a good thing to do. Can't find the thread though. > > Having written a driver recently, the best I could find is that IFF_RUNNING > essentially means not dead... That's pretty much correct. IFF_UP is an administrative control that expresses the desired state of the interface. The driver never changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ state. The driver changes IFF_RUNNING in response to changes in IFF_UP, or in response to error conditions that make the driver unable to function. Neither IFF_UP nor IFF_RUNNING have anything at all to do with whether any addresses are assigned to the interface. John From owner-cvs-all@FreeBSD.ORG Fri Aug 13 16:48:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB20B16A4CE; Fri, 13 Aug 2004 16:48:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FBD343D41; Fri, 13 Aug 2004 16:48:12 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DGmC0x095161; Fri, 13 Aug 2004 16:48:12 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DGmC0r095160; Fri, 13 Aug 2004 16:48:12 GMT (envelope-from eik) Message-Id: <200408131648.i7DGmC0r095160@repoman.freebsd.org> From: Oliver Eikemeier Date: Fri, 13 Aug 2004 16:48:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/portaudit-db/database portaudit.txt portaudit.xlist portaudit.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 16:48:12 -0000 eik 2004-08-13 16:48:12 UTC FreeBSD ports repository Modified files: security/portaudit-db/database portaudit.txt portaudit.xlist portaudit.xml Log: fix some vuxml duplicates, add sympa unauthorized list creation Revision Changes Path 1.88 +2 -8 ports/security/portaudit-db/database/portaudit.txt 1.3 +16 -1 ports/security/portaudit-db/database/portaudit.xlist 1.8 +665 -2 ports/security/portaudit-db/database/portaudit.xml From owner-cvs-all@FreeBSD.ORG Fri Aug 13 16:51:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6FA7F16A4CE; Fri, 13 Aug 2004 16:51:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5394D43D31; Fri, 13 Aug 2004 16:51:56 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DGpuP1095339; Fri, 13 Aug 2004 16:51:56 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DGpuaw095338; Fri, 13 Aug 2004 16:51:56 GMT (envelope-from pav) Message-Id: <200408131651.i7DGpuaw095338@repoman.freebsd.org> From: Pav Lucistnik Date: Fri, 13 Aug 2004 16:51:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/palm/synce-rra/files patch-lib-recurrence_internal.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 16:51:56 -0000 pav 2004-08-13 16:51:56 UTC FreeBSD ports repository Added files: palm/synce-rra/files patch-lib-recurrence_internal.h Log: - Fix build with gcc-3.4 PR: ports/70417 Submitted by: Sam Lawrance (maintainer) Revision Changes Path 1.1 +39 -0 ports/palm/synce-rra/files/patch-lib-recurrence_internal.h (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 16:52:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01B2D16A4CE; Fri, 13 Aug 2004 16:52:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA61B43D46; Fri, 13 Aug 2004 16:52:19 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DGqJTD095375; Fri, 13 Aug 2004 16:52:19 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DGqJg9095374; Fri, 13 Aug 2004 16:52:19 GMT (envelope-from krion) Message-Id: <200408131652.i7DGqJg9095374@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 13 Aug 2004 16:52:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/ftpcopy Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 16:52:20 -0000 krion 2004-08-13 16:52:19 UTC FreeBSD ports repository Modified files: ftp/ftpcopy Makefile distinfo Log: Update to version 0.6.7 PR: ports/70420 Submitted by: maintainer Revision Changes Path 1.24 +2 -1 ports/ftp/ftpcopy/Makefile 1.19 +1 -1 ports/ftp/ftpcopy/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 16:58:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5124C16A4CE; Fri, 13 Aug 2004 16:58:49 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFFBE43D69; Fri, 13 Aug 2004 16:58:48 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-13.local ([172.16.0.13]) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1BvfO9-0001WA-9z; Fri, 13 Aug 2004 18:58:47 +0200 Date: Fri, 13 Aug 2004 19:00:21 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Jacques Vidrine From: Oliver Eikemeier In-Reply-To: Message-Id: <43261AE6-ED4A-11D8-87C4-00039312D914@fillmore-labs.com> Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 16:58:49 -0000 Jacques Vidrine wrote: > On Aug 12, 2004, at 7:26 PM, Oliver Eikemeier wrote: > >> portaudit understands these just fine, and I guess it is the main >> client right now. > > I think VuXML.org is the main client :-) but of course that's not the > point. Ah, but it is an important point to me. My main concern is the FreeBSD ports collection, I don't care much about OpenBSD compatibility. > As previously discussed, the semantics of VuXML and > elements are package names and version numbers respectively, not globs > or glob-like patterns. In particular, the semantics are not FreeBSD or > FreeBSD Ports Collection specific. That's unfortunate. I would prefer when you would care more about portaudit, especially the elements have to adhere to FreeBSD semantics. Since you seem not to check your entries with portaudit, I have a lot of work dealing with vuxml quirks. OTOH when you think we have different design goals, it should be no problem for me to change the database, since portaudit is database format agnostic. -Oliver From owner-cvs-all@FreeBSD.ORG Fri Aug 13 16:59:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A428D16A4CE for ; Fri, 13 Aug 2004 16:59:24 +0000 (GMT) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC98243D48 for ; Fri, 13 Aug 2004 16:59:23 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru id i7DGuAuG047448 for cvs-all@FreeBSD.org.checked; (8.12.8/vak/2.1) Fri, 13 Aug 2004 20:56:10 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (hi.cronyx.ru [144.206.181.94]) by hanoi.cronyx.ru with ESMTP id i7DGtgNm047386; (8.12.8/vak/2.1) Fri, 13 Aug 2004 20:55:42 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <411CF2CC.4000809@cronyx.ru> Date: Fri, 13 Aug 2004 20:56:44 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6b) Gecko/20031208 X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Polstra References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: Brian Fundakowski Feldman cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Maksim Yevmenkin cc: Max Laier Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 16:59:24 -0000 John Polstra wrote: >On 11-Aug-2004 Brian Fundakowski Feldman wrote: > > >>On Wed, Aug 11, 2004 at 03:33:25AM +0200, Max Laier wrote: >> >> >>>On Wednesday 11 August 2004 02:12, Maksim Yevmenkin wrote: >>> >>> >>>>emax 2004-08-11 00:12:27 UTC >>>> >>>> FreeBSD src repository >>>> >>>> Modified files: >>>> sys/net if_tap.c >>>> Log: >>>> Set IFF_RUNNING flag on the interface as soon as the control device is >>>>opened. >>>> >>>> >>>Erm ... >>>1) IFF_RUNNING has a different meaning (for all I know) - "resources >>>allocated" i.e. address(es) assigned. See if_loop.c for instance. >>>2) What are these spl's for? You are not going to MFC that anyway as it would >>>be user visible. >>> >>>I recon a thread with this topic, but I think the outcome was that this is not >>>a good thing to do. Can't find the thread though. >>> >>> >>Having written a driver recently, the best I could find is that IFF_RUNNING >>essentially means not dead... >> >> > >That's pretty much correct. IFF_UP is an administrative control >that expresses the desired state of the interface. The driver never >changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ > > PPP state machine can remove IFF_UP. For example if connection is not persistent and link was broken for any reason. >state. The driver changes IFF_RUNNING in response to changes in >IFF_UP, or in response to error conditions that make the driver unable >to function. > >Neither IFF_UP nor IFF_RUNNING have anything at all to do with whether >any addresses are assigned to the interface. > >John > > rik From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:01:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EDEE16A4CE; Fri, 13 Aug 2004 17:01:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 406C243D48; Fri, 13 Aug 2004 17:01:02 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DH12uq095644; Fri, 13 Aug 2004 17:01:02 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DH12Ni095643; Fri, 13 Aug 2004 17:01:02 GMT (envelope-from eik) Message-Id: <200408131701.i7DH12Ni095643@repoman.freebsd.org> From: Oliver Eikemeier Date: Fri, 13 Aug 2004 17:01:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/pkg_install-devel Makefile distinfo pkg-req X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:01:02 -0000 eik 2004-08-13 17:01:02 UTC FreeBSD ports repository Modified files: sysutils/pkg_install-devel Makefile distinfo pkg-req Log: update to 20040811: fix compilation with GCC 3.4 Revision Changes Path 1.16 +16 -10 ports/sysutils/pkg_install-devel/Makefile 1.15 +2 -2 ports/sysutils/pkg_install-devel/distinfo 1.3 +2 -2 ports/sysutils/pkg_install-devel/pkg-req From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:01:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E74C16A4D6; Fri, 13 Aug 2004 17:01:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4C8743D62; Fri, 13 Aug 2004 17:01:05 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DH15XE095673; Fri, 13 Aug 2004 17:01:05 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DH15YX095672; Fri, 13 Aug 2004 17:01:05 GMT (envelope-from krion) Message-Id: <200408131701.i7DH15YX095672@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 13 Aug 2004 17:01:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/clamsmtp Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:01:06 -0000 krion 2004-08-13 17:01:05 UTC FreeBSD ports repository Modified files: security/clamsmtp Makefile Log: Fix RUN_DEPENDS PR: ports/70419 Submitted by: maintainer Revision Changes Path 1.3 +1 -1 ports/security/clamsmtp/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:07:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 910E216A4CE; Fri, 13 Aug 2004 17:07:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75AF743D48; Fri, 13 Aug 2004 17:07:05 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DH75ie095877; Fri, 13 Aug 2004 17:07:05 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DH75Rt095876; Fri, 13 Aug 2004 17:07:05 GMT (envelope-from eik) Message-Id: <200408131707.i7DH75Rt095876@repoman.freebsd.org> From: Oliver Eikemeier Date: Fri, 13 Aug 2004 17:07:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/portaudit Makefile ports/security/portaudit/files portaudit-cmd.sh portaudit.1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:07:05 -0000 eik 2004-08-13 17:07:05 UTC FreeBSD ports repository Modified files: security/portaudit Makefile security/portaudit/files portaudit-cmd.sh portaudit.1 Log: fix man page nits, modify the vulnerability report depending on -q/-v (experimental) PR: 69935, 68942 Submitted by: Chris Pepper , Johan Karlsson Revision Changes Path 1.13 +8 -2 ports/security/portaudit/Makefile 1.8 +44 -33 ports/security/portaudit/files/portaudit-cmd.sh 1.6 +11 -3 ports/security/portaudit/files/portaudit.1 From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:10:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C41916A4CF; Fri, 13 Aug 2004 17:10:55 +0000 (GMT) Received: from blake.polstra.com (blake.polstra.com [64.81.189.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5A3643D3F; Fri, 13 Aug 2004 17:10:54 +0000 (GMT) (envelope-from jdp@polstra.com) Received: from strings.polstra.com (dsl081-189-067.sea1.dsl.speakeasy.net [64.81.189.67]) by blake.polstra.com (8.12.11/8.12.11) with ESMTP id i7DHAjSO048970 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 13 Aug 2004 10:10:45 -0700 (PDT) (envelope-from jdp@strings.polstra.com) Received: (from jdp@localhost) by strings.polstra.com (8.12.11/8.12.11/Submit) id i7DHAjkV009816; Fri, 13 Aug 2004 10:10:45 -0700 (PDT) (envelope-from jdp) Message-ID: X-Mailer: XFMail 1.5.5 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <411CF2CC.4000809@cronyx.ru> Date: Fri, 13 Aug 2004 10:10:44 -0700 (PDT) From: John Polstra To: Roman Kurakin X-Bogosity: No, tests=bogofilter, spamicity=0.007502, version=0.14.5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:10:55 -0000 On 13-Aug-2004 Roman Kurakin wrote: > John Polstra wrote: >>That's pretty much correct. IFF_UP is an administrative control >>that expresses the desired state of the interface. The driver never >>changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ >> >> > PPP state machine can remove IFF_UP. For example if connection is not > persistent and link > was broken for any reason. I call that a bug. John From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:08:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 730D216A4CE; Fri, 13 Aug 2004 17:08:44 +0000 (GMT) Received: from lakermmtao01.cox.net (lakermmtao01.cox.net [68.230.240.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8ED043D46; Fri, 13 Aug 2004 17:08:43 +0000 (GMT) (envelope-from mezz7@cox.net) Received: from mezz ([68.103.32.140]) by lakermmtao01.cox.net (InterMail vM.6.01.03.02.01 201-2131-111-104-103-20040709) with ESMTP id <20040813170840.IUYZ15934.lakermmtao01.cox.net@mezz>; Fri, 13 Aug 2004 13:08:40 -0400 Date: Fri, 13 Aug 2004 12:08:48 -0500 To: "Volker Stolz" , udo.schweigert@siemens.com References: <200408131415.i7DEFPL3088002@repoman.freebsd.org> From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID: In-Reply-To: <200408131415.i7DEFPL3088002@repoman.freebsd.org> User-Agent: Opera M2/7.54 (Linux, build 751) cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/security/nessus-devel Makefile pkg-message pkg-plist ports/security/nessus-devel/files nessusd.sh ports/security/nessus-devel/scripts move_nessus ports/security/nessus-libnasl-devel Makefile ports/security/nessus-libraries-devel Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:08:44 -0000 On Fri, 13 Aug 2004 14:15:25 +0000 (UTC), Volker Stolz wrote: > vs 2004-08-13 14:15:25 UTC > > FreeBSD ports repository > > Modified files: > security/nessus-devel Makefile pkg-plist > security/nessus-devel/files nessusd.sh > security/nessus-devel/scripts move_nessus > security/nessus-libnasl-devel Makefile > security/nessus-libraries-devel Makefile > security/nessus-plugins-devel Makefile > Added files: > security/nessus-devel pkg-message > Log: > - Add WITHOUT_NESSUS_GTK knob. Umm, why need the 'NESSUS'? How about do something common like WITHOUT_GTK? But, do you realized that bsd.gnome.mk has the nice feature that you don't need to add the knobs. The '${HAVE_GNOME:Mgtk20}' will take care if you use the WITHOUT_GNOME define. Check here: http://www.freebsd.org/gnome/docs/porting.html (in the Optional GNOME Dependencies section) If you don't like the 'WITHOUT_GNOME' word, then you can add 'WITHOUT_GTK' something like this: ==================================== .if ${HAVE_GNOME:Mgtk20}!="" && !defined(WITHOUT_GTK) [...] .endif ==================================== Cheers, Mezz > - Upgrade rc.d script to the rc-ng style; bump PORTREVISION for that. > - Add CONFLICTS. -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:23:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E4C916A4CE; Fri, 13 Aug 2004 17:23:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DBAD43D2F; Fri, 13 Aug 2004 17:23:21 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DHNKvQ096256; Fri, 13 Aug 2004 17:23:20 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DHNK7R096255; Fri, 13 Aug 2004 17:23:20 GMT (envelope-from lofi) Message-Id: <200408131723.i7DHNK7R096255@repoman.freebsd.org> From: Michael Nottebrock Date: Fri, 13 Aug 2004 17:23:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:23:21 -0000 lofi 2004-08-13 17:23:20 UTC FreeBSD ports repository Modified files: . UPDATING Log: Add an entry about possible kdm breakage. Revision Changes Path 1.56 +33 -1 ports/UPDATING From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:24:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0B22216A4CE; Fri, 13 Aug 2004 17:24:24 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBF4643D5E; Fri, 13 Aug 2004 17:24:23 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.41 (FreeBSD)) id 1Bvfmq-0003Ui-LG; Fri, 13 Aug 2004 19:24:16 +0200 Date: Fri, 13 Aug 2004 19:24:16 +0200 From: Kirill Ponomarew To: Michael Nottebrock Message-ID: <20040813172416.GF24103@voodoo.oberon.net> References: <200408131723.i7DHNK7R096255@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="HCdXmnRlPgeNBad2" Content-Disposition: inline In-Reply-To: <200408131723.i7DHNK7R096255@repoman.freebsd.org> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:24:24 -0000 --HCdXmnRlPgeNBad2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Fri, Aug 13, 2004 at 05:23:20PM +0000, Michael Nottebrock wrote: > lofi 2004-08-13 17:23:20 UTC >=20 > FreeBSD ports repository >=20 > Modified files: > . UPDATING=20 > Log: > Add an entry about possible kdm breakage. > =20 > Revision Changes Path > 1.56 +33 -1 ports/UPDATING > http://cvsweb.FreeBSD.org/ports/UPDATING.diff?r1=3D1.55&r2=3D1.56 > | =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > | RCS file: /usr/local/www/cvsroot/FreeBSD/ports/UPDATING,v > | retrieving revision 1.55 > | retrieving revision 1.56 > | diff -u -p -r1.55 -r1.56 > | --- ports/UPDATING 2004/08/02 14:12:37 1.55 > | +++ ports/UPDATING 2004/08/13 17:23:20 1.56 > | @@ -6,6 +6,38 @@ You should get into the habit of checkin > | time you update your ports collection, before attempting any port > | upgrades. > | =20 > | +20040813: > | + AFFECTS: users of kdm (x11/kdebase3) > | + AUTHOR: lofi@freebsd.org Maybe kde@freebsd.org is more suitable for that ? -Kirill --HCdXmnRlPgeNBad2 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBHPlAQC1G6a60JuURAtCAAJ9rNrlLEpkVck3vfYPF/esd0R/XLwCePtNY CxEY35YHuJJXu0WphO03ODA= =z0nT -----END PGP SIGNATURE----- --HCdXmnRlPgeNBad2-- From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:25:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B70DE16A4CE; Fri, 13 Aug 2004 17:25:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF39543D31; Fri, 13 Aug 2004 17:25:37 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DHPbOK096379; Fri, 13 Aug 2004 17:25:37 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DHPbEi096378; Fri, 13 Aug 2004 17:25:37 GMT (envelope-from marcus) Message-Id: <200408131725.i7DHPbEi096378@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 13 Aug 2004 17:25:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/soup/filespatch-src_libwsdl_wsdl-soap-memory.c patch-src_libwsdl_wsdl-soap-parse.c patch-src_libwsdl_wsdl-typecodes.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:25:37 -0000 marcus 2004-08-13 17:25:37 UTC FreeBSD ports repository Added files: devel/soup/files patch-src_libwsdl_wsdl-soap-memory.c patch-src_libwsdl_wsdl-soap-parse.c patch-src_libwsdl_wsdl-typecodes.c Log: Fix build with GCC 3.4.2. Note: patches were submitted by someone else, but I accidentally deleted the email, so I had to do these myself. Thanks to womever you were that sent the patches, though. Revision Changes Path 1.1 +37 -0 ports/devel/soup/files/patch-src_libwsdl_wsdl-soap-memory.c (new) 1.1 +20 -0 ports/devel/soup/files/patch-src_libwsdl_wsdl-soap-parse.c (new) 1.1 +38 -0 ports/devel/soup/files/patch-src_libwsdl_wsdl-typecodes.c (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:29:10 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 23E6D16A4CE for ; Fri, 13 Aug 2004 17:29:10 +0000 (GMT) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7437343D48 for ; Fri, 13 Aug 2004 17:29:09 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru id i7DHQ3V2048657 for cvs-all@FreeBSD.org.checked; (8.12.8/vak/2.1) Fri, 13 Aug 2004 21:26:03 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (hi.cronyx.ru [144.206.181.94]) by hanoi.cronyx.ru with ESMTP id i7DHOePF048585; (8.12.8/vak/2.1) Fri, 13 Aug 2004 21:24:40 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <411CF997.8020002@cronyx.ru> Date: Fri, 13 Aug 2004 21:25:43 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6b) Gecko/20031208 X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Polstra References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:29:10 -0000 John Polstra wrote: >On 13-Aug-2004 Roman Kurakin wrote: > > >>John Polstra wrote: >> >> >>>That's pretty much correct. IFF_UP is an administrative control >>>that expresses the desired state of the interface. The driver never >>>changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ >>> >>> >>> >>> >>PPP state machine can remove IFF_UP. For example if connection is not >>persistent and link >>was broken for any reason. >> >> >I call that a bug. > > This is not a bug, this is feature of protocol. Some times link should go down (or other state from which it could go up only by administrator (or program) intervention). Probably IFF_UP in PPP violation could be concerned like some protocols stacks relative OSI. rik >John > > From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:34:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A090816A4CE; Fri, 13 Aug 2004 17:34:46 +0000 (GMT) Received: from blake.polstra.com (blake.polstra.com [64.81.189.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32D5C43D46; Fri, 13 Aug 2004 17:34:46 +0000 (GMT) (envelope-from jdp@polstra.com) Received: from strings.polstra.com (dsl081-189-067.sea1.dsl.speakeasy.net [64.81.189.67]) by blake.polstra.com (8.12.11/8.12.11) with ESMTP id i7DHYfjI049119 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 13 Aug 2004 10:34:41 -0700 (PDT) (envelope-from jdp@strings.polstra.com) Received: (from jdp@localhost) by strings.polstra.com (8.12.11/8.12.11/Submit) id i7DHYfbg009913; Fri, 13 Aug 2004 10:34:41 -0700 (PDT) (envelope-from jdp) Message-ID: X-Mailer: XFMail 1.5.5 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <411CF997.8020002@cronyx.ru> Date: Fri, 13 Aug 2004 10:34:40 -0700 (PDT) From: John Polstra To: Roman Kurakin X-Bogosity: No, tests=bogofilter, spamicity=0.009958, version=0.14.5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:34:46 -0000 On 13-Aug-2004 Roman Kurakin wrote: > John Polstra wrote: >>On 13-Aug-2004 Roman Kurakin wrote: >>>John Polstra wrote: >>>>That's pretty much correct. IFF_UP is an administrative control >>>>that expresses the desired state of the interface. The driver never >>>>changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ >>>> >>>PPP state machine can remove IFF_UP. For example if connection is not >>>persistent and link >>>was broken for any reason. >>> >>I call that a bug. >> > This is not a bug, this is feature of protocol. Some times link should > go down (or other > state from which it could go up only by administrator (or program) > intervention). Sorry, but I disagree. PPP should clear IFF_RUNNING in that case, but should leave IFF_UP untouched. John From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:38:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 92E2716A505; Fri, 13 Aug 2004 17:38:00 +0000 (GMT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D72C43D49; Fri, 13 Aug 2004 17:38:00 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id 340CA1674E1; Fri, 13 Aug 2004 19:37:59 +0200 (CEST) Received: from kiste.my.domain (lofi@kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i7DHbn2W024538 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Fri, 13 Aug 2004 19:37:56 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Kirill Ponomarew Date: Fri, 13 Aug 2004 19:37:46 +0200 User-Agent: KMail/1.6.2 References: <200408131723.i7DHNK7R096255@repoman.freebsd.org> <20040813172416.GF24103@voodoo.oberon.net> In-Reply-To: <20040813172416.GF24103@voodoo.oberon.net> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_txPHBsE0HlRO+7m"; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <200408131937.49090.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:38:00 -0000 --Boundary-02=_txPHBsE0HlRO+7m Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Friday 13 August 2004 19:24, Kirill Ponomarew wrote: > > | + AFFECTS: users of kdm (x11/kdebase3) > > | + AUTHOR: lofi@freebsd.org > > Maybe kde@freebsd.org is more suitable for that ? Not sure, what does AUTHOR really mean in UPDATING? :) =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_txPHBsE0HlRO+7m Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBHPxtXhc68WspdLARAtUCAJ970AbH9SzaJ4jZdDgreRfzMNNNJACgp+vp 0F9oyEa2wulZRzPYy5cccNc= =JBBf -----END PGP SIGNATURE----- --Boundary-02=_txPHBsE0HlRO+7m-- From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:39:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0929C16A4CF; Fri, 13 Aug 2004 17:39:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 022B243D46; Fri, 13 Aug 2004 17:39:33 +0000 (GMT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DHdW4E096752; Fri, 13 Aug 2004 17:39:32 GMT (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DHdW9q096751; Fri, 13 Aug 2004 17:39:32 GMT (envelope-from jhb) Message-Id: <200408131739.i7DHdW9q096751@repoman.freebsd.org> From: John Baldwin Date: Fri, 13 Aug 2004 17:39:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/libmath++/files patch-math-matcher.tcc patch-math-nodes.h patch-math-nodes.tcc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:39:33 -0000 jhb 2004-08-13 17:39:32 UTC FreeBSD ports repository (src,doc committer) Added files: math/libmath++/files patch-math-matcher.tcc patch-math-nodes.h patch-math-nodes.tcc Log: Add patches to quiet new warnings and errors from gcc 3.4.2. The patches have been fed upstream to the maintainer and will hopefully be included in future releases. Prodded by: pointyhat via kris Revision Changes Path 1.1 +44 -0 ports/math/libmath++/files/patch-math-matcher.tcc (new) 1.1 +11 -0 ports/math/libmath++/files/patch-math-nodes.h (new) 1.1 +379 -0 ports/math/libmath++/files/patch-math-nodes.tcc (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:39:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 04C2916A4CF; Fri, 13 Aug 2004 17:39:49 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id B909243D55; Fri, 13 Aug 2004 17:39:48 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.41 (FreeBSD)) id 1Bvg1l-0003an-Io; Fri, 13 Aug 2004 19:39:41 +0200 Date: Fri, 13 Aug 2004 19:39:41 +0200 From: Kirill Ponomarew To: Michael Nottebrock Message-ID: <20040813173941.GG24103@voodoo.oberon.net> References: <200408131723.i7DHNK7R096255@repoman.freebsd.org> <20040813172416.GF24103@voodoo.oberon.net> <200408131937.49090.michaelnottebrock@gmx.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="nqkreNcslJAfgyzk" Content-Disposition: inline In-Reply-To: <200408131937.49090.michaelnottebrock@gmx.net> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:39:49 -0000 --nqkreNcslJAfgyzk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Fri, Aug 13, 2004 at 07:37:46PM +0200, Michael Nottebrock wrote: > > > | + AFFECTS: users of kdm (x11/kdebase3) > > > | + AUTHOR: lofi@freebsd.org > > > > Maybe kde@freebsd.org is more suitable for that ? >=20 > Not sure, what does AUTHOR really mean in UPDATING? :) The person/alias who's ready to answer all questions and support users who have questions regarding this message. -Kirill --nqkreNcslJAfgyzk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBHPzdQC1G6a60JuURAnKTAJ9Rk3WCmQ9+MzQRRoEeBsDuMd2KWQCgpi7y ESp7twmalBxJ2bpEUvPYj/w= =D78s -----END PGP SIGNATURE----- --nqkreNcslJAfgyzk-- From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:43:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4A5FA16A4CE; Fri, 13 Aug 2004 17:43:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DA5943D1D; Fri, 13 Aug 2004 17:43:54 +0000 (GMT) (envelope-from jmg@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DHhsqF096907; Fri, 13 Aug 2004 17:43:54 GMT (envelope-from jmg@repoman.freebsd.org) Received: (from jmg@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DHhsmm096906; Fri, 13 Aug 2004 17:43:54 GMT (envelope-from jmg) Message-Id: <200408131743.i7DHhsmm096906@repoman.freebsd.org> From: John-Mark Gurney Date: Fri, 13 Aug 2004 17:43:54 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern vfs_aio.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:43:55 -0000 jmg 2004-08-13 17:43:54 UTC FreeBSD src repository Modified files: sys/kern vfs_aio.c Log: clean up whitespace... Revision Changes Path 1.173 +55 -55 src/sys/kern/vfs_aio.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:44:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CB5B016A4CE; Fri, 13 Aug 2004 17:44:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE54543D1D; Fri, 13 Aug 2004 17:44:31 +0000 (GMT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DHiVLk096997; Fri, 13 Aug 2004 17:44:31 GMT (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DHiVRw096996; Fri, 13 Aug 2004 17:44:31 GMT (envelope-from bland) Message-Id: <200408131744.i7DHiVRw096996@repoman.freebsd.org> From: Alexander Nedotsukov Date: Fri, 13 Aug 2004 17:44:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11 Makefile ports/x11/sisctrl Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:44:32 -0000 bland 2004-08-13 17:44:31 UTC FreeBSD ports repository Modified files: x11 Makefile Added files: x11/sisctrl Makefile distinfo pkg-descr Log: Add sisctrl 0.0.20040622, Display Control Panel for XFree86/X.org SiS driver. Revision Changes Path 1.528 +1 -0 ports/x11/Makefile 1.1 +26 -0 ports/x11/sisctrl/Makefile (new) 1.1 +2 -0 ports/x11/sisctrl/distinfo (new) 1.1 +8 -0 ports/x11/sisctrl/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:44:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5CED16A4CE; Fri, 13 Aug 2004 17:44:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A9C3843D45; Fri, 13 Aug 2004 17:44:42 +0000 (GMT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DHigDm097043; Fri, 13 Aug 2004 17:44:42 GMT (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DHigjw097042; Fri, 13 Aug 2004 17:44:42 GMT (envelope-from bland) Message-Id: <200408131744.i7DHigjw097042@repoman.freebsd.org> From: Alexander Nedotsukov Date: Fri, 13 Aug 2004 17:44:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:44:42 -0000 bland 2004-08-13 17:44:42 UTC FreeBSD ports repository Modified files: . modules Log: sisctrl --> ports/x11/sisctrl Revision Changes Path 1.10888 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:47:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BEF0816A4EE; Fri, 13 Aug 2004 17:47:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FD9243D2D; Fri, 13 Aug 2004 17:47:40 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DHlem8097186; Fri, 13 Aug 2004 17:47:40 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DHleqN097185; Fri, 13 Aug 2004 17:47:40 GMT (envelope-from njl) Message-Id: <200408131747.i7DHleqN097185@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 17:47:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_acad.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:47:40 -0000 njl 2004-08-13 17:47:40 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_acad.c Log: Record the new status after checking if it has changed, not before. This fixes lost AC line transition events. Bug report: Kevin Oberman Revision Changes Path 1.31 +1 -1 src/sys/dev/acpica/acpi_acad.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:51:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E071616A4CE; Fri, 13 Aug 2004 17:51:46 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4A3443D2F; Fri, 13 Aug 2004 17:51:46 +0000 (GMT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DHpk45097404; Fri, 13 Aug 2004 17:51:46 GMT (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DHpk3K097403; Fri, 13 Aug 2004 17:51:46 GMT (envelope-from eik) Message-Id: <200408131751.i7DHpk3K097403@repoman.freebsd.org> From: Oliver Eikemeier Date: Fri, 13 Aug 2004 17:51:46 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/portaudit-db Makefile ports/security/portaudit-db/files packaudit.sh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:51:47 -0000 eik 2004-08-13 17:51:46 UTC FreeBSD ports repository Modified files: security/portaudit-db Makefile security/portaudit-db/files packaudit.sh Log: apply xlist not to the own files Revision Changes Path 1.8 +1 -1 ports/security/portaudit-db/Makefile 1.7 +15 -10 ports/security/portaudit-db/files/packaudit.sh From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:59:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8D1316A4CE; Fri, 13 Aug 2004 17:59:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C179643D49; Fri, 13 Aug 2004 17:59:12 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DHxCg5097620; Fri, 13 Aug 2004 17:59:12 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DHxCLC097619; Fri, 13 Aug 2004 17:59:12 GMT (envelope-from pav) Message-Id: <200408131759.i7DHxCLC097619@repoman.freebsd.org> From: Pav Lucistnik Date: Fri, 13 Aug 2004 17:59:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/dns/dnrd Makefile distinfo ports/dns/dnrd/files patch-configure patch-dns.c patch-query.h patch-src-domnode.c patch-src-relay.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:59:12 -0000 pav 2004-08-13 17:59:12 UTC FreeBSD ports repository Modified files: dns/dnrd Makefile distinfo Removed files: dns/dnrd/files patch-configure patch-dns.c patch-query.h patch-src-domnode.c patch-src-relay.c Log: - Update to 2.14.1 PR: ports/70404 Submitted by: Natanael Copa Revision Changes Path 1.15 +1 -1 ports/dns/dnrd/Makefile 1.5 +2 -2 ports/dns/dnrd/distinfo 1.2 +0 -12 ports/dns/dnrd/files/patch-configure (dead) 1.3 +0 -10 ports/dns/dnrd/files/patch-dns.c (dead) 1.3 +0 -10 ports/dns/dnrd/files/patch-query.h (dead) 1.2 +0 -10 ports/dns/dnrd/files/patch-src-domnode.c (dead) 1.2 +0 -16 ports/dns/dnrd/files/patch-src-relay.c (dead) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 17:59:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 149EA16A4CE; Fri, 13 Aug 2004 17:59:41 +0000 (GMT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id A328D43D2D; Fri, 13 Aug 2004 17:59:40 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id B79031674E1; Fri, 13 Aug 2004 19:59:39 +0200 (CEST) Received: from kiste.my.domain (lofi@kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i7DHxa2W094885 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Fri, 13 Aug 2004 19:59:38 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Kirill Ponomarew Date: Fri, 13 Aug 2004 19:59:20 +0200 User-Agent: KMail/1.6.2 References: <200408131723.i7DHNK7R096255@repoman.freebsd.org> <200408131937.49090.michaelnottebrock@gmx.net> <20040813173941.GG24103@voodoo.oberon.net> In-Reply-To: <20040813173941.GG24103@voodoo.oberon.net> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_4FQHBrDrA9XOTr7"; charset="iso-8859-15" Content-Transfer-Encoding: 7bit Message-Id: <200408131959.21017.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 17:59:41 -0000 --Boundary-02=_4FQHBrDrA9XOTr7 Content-Type: text/plain; charset="iso-8859-15" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Friday 13 August 2004 19:39, Kirill Ponomarew wrote: > The person/alias who's ready to answer all questions and > support users who have questions regarding this message. Maybe it should be CONTACT: then? I'll change the entry to kde@freebsd.org. =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_4FQHBrDrA9XOTr7 Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBHQF4Xhc68WspdLARAiKCAJ9W+F/haqu0o1tOuzSSrUDQ5DedHgCfbgDv zvsntQGAiByYJUQZ4ztNtOw= =Jdkf -----END PGP SIGNATURE----- --Boundary-02=_4FQHBrDrA9XOTr7-- From owner-cvs-all@FreeBSD.ORG Fri Aug 13 18:01:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AE31916A4CE; Fri, 13 Aug 2004 18:01:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92EDC43D41; Fri, 13 Aug 2004 18:01:32 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DI1WE2097747; Fri, 13 Aug 2004 18:01:32 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DI1WgL097746; Fri, 13 Aug 2004 18:01:32 GMT (envelope-from lofi) Message-Id: <200408131801.i7DI1WgL097746@repoman.freebsd.org> From: Michael Nottebrock Date: Fri, 13 Aug 2004 18:01:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:01:32 -0000 lofi 2004-08-13 18:01:32 UTC FreeBSD ports repository Modified files: . UPDATING Log: Change AUTHOR of the kdm entry to kde@freebsd.org Suggested by: krion Revision Changes Path 1.57 +2 -2 ports/UPDATING From owner-cvs-all@FreeBSD.ORG Fri Aug 13 18:12:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 95CFA16A4CE; Fri, 13 Aug 2004 18:12:09 +0000 (GMT) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B4F143D2F; Fri, 13 Aug 2004 18:12:09 +0000 (GMT) (envelope-from sam@errno.com) Received: from [66.127.85.91] ([66.127.85.91]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.6) with ESMTP id i7DIC2Wi048990 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Fri, 13 Aug 2004 11:12:02 -0700 (PDT) (envelope-from sam@errno.com) From: Sam Leffler Organization: Errno Consulting To: John Polstra Date: Fri, 13 Aug 2004 11:14:46 -0700 User-Agent: KMail/1.6.1 References: In-Reply-To: MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408131114.46274.sam@errno.com> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Roman Kurakin Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:12:09 -0000 On Friday 13 August 2004 10:34 am, John Polstra wrote: > On 13-Aug-2004 Roman Kurakin wrote: > > John Polstra wrote: > >>On 13-Aug-2004 Roman Kurakin wrote: > >>>John Polstra wrote: > >>>>That's pretty much correct. IFF_UP is an administrative control > >>>>that expresses the desired state of the interface. The driver never > >>>>changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ > >>> > >>>PPP state machine can remove IFF_UP. For example if connection is not > >>>persistent and link > >>>was broken for any reason. > >> > >>I call that a bug. > > > > This is not a bug, this is feature of protocol. Some times link should > > go down (or other > > state from which it could go up only by administrator (or program) > > intervention). > > Sorry, but I disagree. PPP should clear IFF_RUNNING in that case, > but should leave IFF_UP untouched. IFF_RUNNING was intended to mark a device "ready for use" and should be managed by the driver. IFF_UP was to be administratively controlled and any automated change is contrary to the original intent/design. The only case that I'm aware of where IFF_UP is touched as a side-effect of another operation is when setting an interface's address and I consider that a bug. Unfortunately fixing it has widespread consequences and each time I've tried I've given up in disgust. Sam From owner-cvs-all@FreeBSD.ORG Fri Aug 13 18:17:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6028F16A4CE; Fri, 13 Aug 2004 18:17:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EB7943D39; Fri, 13 Aug 2004 18:17:01 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DIH1al098145; Fri, 13 Aug 2004 18:17:01 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DIH19R098144; Fri, 13 Aug 2004 18:17:01 GMT (envelope-from pav) Message-Id: <200408131817.i7DIH19R098144@repoman.freebsd.org> From: Pav Lucistnik Date: Fri, 13 Aug 2004 18:17:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/dns/adns/files patch-src-parse.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:17:01 -0000 pav 2004-08-13 18:17:01 UTC FreeBSD ports repository Added files: dns/adns/files patch-src-parse.c Log: - Fix build with gcc-3.4 PR: ports/70305 Submitted by: keramida Revision Changes Path 1.1 +11 -0 ports/dns/adns/files/patch-src-parse.c (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 18:17:10 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DD6E16A54B for ; Fri, 13 Aug 2004 18:17:09 +0000 (GMT) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92F6E43D39 for ; Fri, 13 Aug 2004 18:17:08 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru id i7DIE8PE050527 for cvs-all@FreeBSD.org.checked; (8.12.8/vak/2.1) Fri, 13 Aug 2004 22:14:08 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (hi.cronyx.ru [144.206.181.94]) by hanoi.cronyx.ru with ESMTP id i7DIDJmE050469; (8.12.8/vak/2.1) Fri, 13 Aug 2004 22:13:19 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <411D04FE.70304@cronyx.ru> Date: Fri, 13 Aug 2004 22:14:22 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6b) Gecko/20031208 X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Polstra References: In-Reply-To: Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:17:10 -0000 John Polstra wrote: >On 13-Aug-2004 Roman Kurakin wrote: > > >>John Polstra wrote: >> >> >>>On 13-Aug-2004 Roman Kurakin wrote: >>> >>> >>>>John Polstra wrote: >>>> >>>> >>>>>That's pretty much correct. IFF_UP is an administrative control >>>>>that expresses the desired state of the interface. The driver never >>>>>changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ >>>>> >>>>> >>>>> >>>>PPP state machine can remove IFF_UP. For example if connection is not >>>>persistent and link >>>>was broken for any reason. >>>> >>>> >>>> >>>I call that a bug. >>> >>> >>> >>This is not a bug, this is feature of protocol. Some times link should >>go down (or other >>state from which it could go up only by administrator (or program) >>intervention). >> >> >Sorry, but I disagree. PPP should clear IFF_RUNNING in that case, >but should leave IFF_UP untouched. > > But in that case we need some other way to bring line up again, since we unable just to ifconfig XXX up. This is possible to implement but very inconvenient. Could you describe why is so bad that some administrative action could be canceled due to protection or some other reasons by device state machine? Especially if users have a choice to allow this action or not. If users have a choice this action could be treated on behalf of administrator and thus like administrative action. rik >John > > > > From owner-cvs-all@FreeBSD.ORG Fri Aug 13 18:29:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E2BB816A4DE for ; Fri, 13 Aug 2004 18:29:16 +0000 (GMT) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 857EF43D46 for ; Fri, 13 Aug 2004 18:29:15 +0000 (GMT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru id i7DIQ14q051015 for cvs-all@FreeBSD.org.checked; (8.12.8/vak/2.1) Fri, 13 Aug 2004 22:26:01 +0400 (MSD) (envelope-from rik@cronyx.ru) Received: from cronyx.ru (hi.cronyx.ru [144.206.181.94]) by hanoi.cronyx.ru with ESMTP id i7DIOMmE050950; (8.12.8/vak/2.1) Fri, 13 Aug 2004 22:24:22 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <411D0795.6010406@cronyx.ru> Date: Fri, 13 Aug 2004 22:25:25 +0400 From: Roman Kurakin User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6b) Gecko/20031208 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Sam Leffler References: <200408131114.46274.sam@errno.com> In-Reply-To: <200408131114.46274.sam@errno.com> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: John Polstra Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:29:20 -0000 Sam Leffler wrote: >On Friday 13 August 2004 10:34 am, John Polstra wrote: > > >>On 13-Aug-2004 Roman Kurakin wrote: >> >> >>>John Polstra wrote: >>> >>> >>>>On 13-Aug-2004 Roman Kurakin wrote: >>>> >>>> >>>>>John Polstra wrote: >>>>> >>>>> >>>>>>That's pretty much correct. IFF_UP is an administrative control >>>>>>that expresses the desired state of the interface. The driver never >>>>>>changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ >>>>>> >>>>>> >>>>>PPP state machine can remove IFF_UP. For example if connection is not >>>>>persistent and link >>>>>was broken for any reason. >>>>> >>>>> >>>>I call that a bug. >>>> >>>> >>>This is not a bug, this is feature of protocol. Some times link should >>>go down (or other >>>state from which it could go up only by administrator (or program) >>>intervention). >>> >>> >>Sorry, but I disagree. PPP should clear IFF_RUNNING in that case, >>but should leave IFF_UP untouched. >> >> > >IFF_RUNNING was intended to mark a device "ready for use" and should be >managed by the driver. IFF_UP was to be administratively controlled and any >automated change is contrary to the original intent/design. The only case >that I'm aware of where IFF_UP is touched as a side-effect of another >operation is when setting an interface's address and I consider that a bug. >Unfortunately fixing it has widespread consequences and each time I've tried >I've given up in disgust. > > Ok. Since IFF_UP is used this way by many implementations we have to agree that this is normal behavior that was introduced by evolution and practice like word spelling could be changed from its origin. rik > Sam > > > > From owner-cvs-all@FreeBSD.ORG Fri Aug 13 18:33:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A6A4816A4CE; Fri, 13 Aug 2004 18:33:05 +0000 (GMT) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C70B43D48; Fri, 13 Aug 2004 18:33:04 +0000 (GMT) (envelope-from dan@langille.org) Received: from xeon (xeon.unixathome.org [192.168.0.18]) by bast.unixathome.org (Postfix) with ESMTP id A09253D3D; Fri, 13 Aug 2004 14:33:03 -0400 (EDT) Date: Fri, 13 Aug 2004 14:33:03 -0400 (EDT) From: Dan Langille X-X-Sender: dan@xeon.unixathome.org To: cvs-all@freebsd.org, ports-committers@freebsd.org In-Reply-To: <200408131959.21017.michaelnottebrock@gmx.net> Message-ID: <20040813141719.J90265@xeon.unixathome.org> References: <200408131723.i7DHNK7R096255@repoman.freebsd.org> <20040813173941.GG24103@voodoo.oberon.net> <200408131959.21017.michaelnottebrock@gmx.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: format of ports/UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:33:05 -0000 On Fri, 13 Aug 2004, Michael Nottebrock wrote: > On Friday 13 August 2004 19:39, Kirill Ponomarew wrote: > > > The person/alias who's ready to answer all questions and > > support users who have questions regarding this message. > > Maybe it should be CONTACT: then? I'll change the entry to kde@freebsd.org. If changes to the format of /usr/ports/UPDATING are going to be made, I'd appreciate knowing in advance. FreshPorts now parses this file and includes the results under the relevant port[s], if that can be determined. We are doing pretty well so far. FreshPorts can handle the shell globs which have been used, although it could not handle the (x11/kdebase3) which occurred in the most recent commit. The perl script is available at: http://beta.freshports.org/process_updating.pl but you'll have to comment out some calls if you're going to get it to run outside the FreshPorts environment. Cheers -- Dan Langille - http://www.langille.org/ From owner-cvs-all@FreeBSD.ORG Fri Aug 13 18:41:51 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DE99116A4CE; Fri, 13 Aug 2004 18:41:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7FC143D41; Fri, 13 Aug 2004 18:41:51 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DIfpZT098803; Fri, 13 Aug 2004 18:41:51 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DIfpUL098802; Fri, 13 Aug 2004 18:41:51 GMT (envelope-from pav) Message-Id: <200408131841.i7DIfpUL098802@repoman.freebsd.org> From: Pav Lucistnik Date: Fri, 13 Aug 2004 18:41:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio Makefile ports/audio/yell Makefile distinfo pkg-descr pkg-message X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:41:52 -0000 pav 2004-08-13 18:41:51 UTC FreeBSD ports repository Modified files: audio Makefile Added files: audio/yell Makefile distinfo pkg-descr pkg-message Log: Add yell, a little command line utility playing a short tune on your speaker device. I mainly use it to yell the "sysop" on a remote machine. It could also be used as a notification for finished tasks (eg. make buildworld && yell). PR: ports/70277 Submitted by: Emanuel Haupt Revision Changes Path 1.547 +1 -0 ports/audio/Makefile 1.1 +39 -0 ports/audio/yell/Makefile (new) 1.1 +2 -0 ports/audio/yell/distinfo (new) 1.1 +9 -0 ports/audio/yell/pkg-descr (new) 1.1 +6 -0 ports/audio/yell/pkg-message (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 18:42:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6C59C16A4CE; Fri, 13 Aug 2004 18:42:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FB5643D1F; Fri, 13 Aug 2004 18:42:48 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DIgmHD098853; Fri, 13 Aug 2004 18:42:48 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DIgm5U098852; Fri, 13 Aug 2004 18:42:48 GMT (envelope-from pav) Message-Id: <200408131842.i7DIgm5U098852@repoman.freebsd.org> From: Pav Lucistnik Date: Fri, 13 Aug 2004 18:42:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:42:48 -0000 pav 2004-08-13 18:42:48 UTC FreeBSD ports repository Modified files: . modules Log: yell --> ports/audio/yell Revision Changes Path 1.10889 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Aug 13 18:45:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C4FF716A4CE; Fri, 13 Aug 2004 18:45:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A95EE43D1D; Fri, 13 Aug 2004 18:45:04 +0000 (GMT) (envelope-from mjacob@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DIj4Fq098918; Fri, 13 Aug 2004 18:45:04 GMT (envelope-from mjacob@repoman.freebsd.org) Received: (from mjacob@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DIj4NA098917; Fri, 13 Aug 2004 18:45:04 GMT (envelope-from mjacob) Message-Id: <200408131845.i7DIj4NA098917@repoman.freebsd.org> From: Matt Jacob Date: Fri, 13 Aug 2004 18:45:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/cam/scsi scsi_all.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:45:04 -0000 mjacob 2004-08-13 18:45:04 UTC FreeBSD src repository Modified files: sys/cam/scsi scsi_all.c Log: When printing out an unknown sense code we should print it in hex, not decimal. Reviewed by: gibbs, nate, kdm Revision Changes Path 1.45 +1 -3 src/sys/cam/scsi/scsi_all.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 18:51:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0E40F16A4CE; Fri, 13 Aug 2004 18:51:44 +0000 (GMT) Received: from meitner.wh.uni-dortmund.de (meitner.wh.Uni-Dortmund.DE [129.217.129.133]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E5C743D39; Fri, 13 Aug 2004 18:51:43 +0000 (GMT) (envelope-from michaelnottebrock@gmx.net) Received: from lofi.dyndns.org (pc2-105.intern.meitner [10.3.12.105]) by meitner.wh.uni-dortmund.de (Postfix) with ESMTP id B55361674E1; Fri, 13 Aug 2004 20:51:42 +0200 (CEST) Received: from kiste.my.domain (lofi@kiste.my.domain [192.168.8.4]) (authenticated bits=0) by lofi.dyndns.org (8.12.10/8.12.10) with ESMTP id i7DIpc2W024122 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Fri, 13 Aug 2004 20:51:40 +0200 (CEST) (envelope-from michaelnottebrock@gmx.net) From: Michael Nottebrock To: Dan Langille Date: Fri, 13 Aug 2004 20:51:33 +0200 User-Agent: KMail/1.6.2 References: <200408131723.i7DHNK7R096255@repoman.freebsd.org> <200408131959.21017.michaelnottebrock@gmx.net> <20040813141719.J90265@xeon.unixathome.org> In-Reply-To: <20040813141719.J90265@xeon.unixathome.org> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_52QHBKRjxnAuxkF"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408132051.37047.michaelnottebrock@gmx.net> X-Virus-Scanned: by amavisd-new cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: format of ports/UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:51:44 -0000 --Boundary-02=_52QHBKRjxnAuxkF Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Friday 13 August 2004 20:33, Dan Langille wrote: > We are doing pretty well so far. FreshPorts can handle the shell globs > which have been used, although it could not handle the (x11/kdebase3) > which occurred in the most recent commit. Would "x11/kdebase3 (kdm)" suit your needs better? =2D-=20 ,_, | Michael Nottebrock | lofi@freebsd.org (/^ ^\) | FreeBSD - The Power to Serve | http://www.freebsd.org \u/ | K Desktop Environment on FreeBSD | http://freebsd.kde.org --Boundary-02=_52QHBKRjxnAuxkF Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBHQ25Xhc68WspdLARAu3aAJ9NhaSw7QZ5HvemSSpX+mUij0tUmQCgkfnM vyQXYY/ZxRBT6m9xd73rswk= =jF5X -----END PGP SIGNATURE----- --Boundary-02=_52QHBKRjxnAuxkF-- From owner-cvs-all@FreeBSD.ORG Fri Aug 13 18:52:46 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6045716A4CE; Fri, 13 Aug 2004 18:52:46 +0000 (GMT) Received: from energistic.com (mail.virtual-voodoo.com [65.204.79.152]) by mx1.FreeBSD.org (Postfix) with ESMTP id 20AFA43D31; Fri, 13 Aug 2004 18:52:46 +0000 (GMT) (envelope-from steve@energistic.com) Received: from energistic.com (steve@localhost.virtual-voodoo.com [127.0.0.1]) by energistic.com (8.13.1/8.13.1) with ESMTP id i7DIqij1042846; Fri, 13 Aug 2004 13:52:44 -0500 (EST) (envelope-from steve@energistic.com) Received: (from steve@localhost) by energistic.com (8.13.1/8.13.1/Submit) id i7DIqia0039917; Fri, 13 Aug 2004 13:52:44 -0500 (EST) (envelope-from steve) Date: Fri, 13 Aug 2004 13:52:44 -0500 From: Steve Ames To: Jeremy Messenger Message-ID: <20040813185244.GA56217@energistic.com> References: <200408131415.i7DEFPL3088002@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.6i cc: udo.schweigert@siemens.com cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: Volker Stolz cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/security/nessus-devel Makefile pkg-message pkg-plist ports/security/nessus-devel/files nessusd.sh ports/security/nessus-devel/scripts move_nessus ports/security/nessus-libnasl-devel Makefile ports/security/nessus-libraries-devel Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:52:46 -0000 On Fri, Aug 13, 2004 at 12:08:48PM -0500, Jeremy Messenger wrote: > > - Add WITHOUT_NESSUS_GTK knob. > > Umm, why need the 'NESSUS'? How about do something common like > WITHOUT_GTK? You can set your ports variables globally and perhaps nessus is the only port you want to build without GTK... of course if that was the case the port should honor both versions :) -Steve From owner-cvs-all@FreeBSD.ORG Fri Aug 13 18:54:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1DBD016A4CE; Fri, 13 Aug 2004 18:54:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00CD543D48; Fri, 13 Aug 2004 18:54:22 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DIsLs7099265; Fri, 13 Aug 2004 18:54:21 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DIsLtD099264; Fri, 13 Aug 2004 18:54:21 GMT (envelope-from alc) Message-Id: <200408131854.i7DIsLtD099264@repoman.freebsd.org> From: Alan Cox Date: Fri, 13 Aug 2004 18:54:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sparc64/sparc64 pmap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:54:22 -0000 alc 2004-08-13 18:54:21 UTC FreeBSD src repository Modified files: sys/sparc64/sparc64 pmap.c Log: Add pmap locking to pmap_remove_all(). Revision Changes Path 1.139 +2 -0 src/sys/sparc64/sparc64/pmap.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 18:55:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 01FCD16A4CE; Fri, 13 Aug 2004 18:55:09 +0000 (GMT) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD28143D41; Fri, 13 Aug 2004 18:55:08 +0000 (GMT) (envelope-from dan@langille.org) Received: from xeon (xeon.unixathome.org [192.168.0.18]) by bast.unixathome.org (Postfix) with ESMTP id ED70C3D3D; Fri, 13 Aug 2004 14:55:07 -0400 (EDT) Date: Fri, 13 Aug 2004 14:55:07 -0400 (EDT) From: Dan Langille X-X-Sender: dan@xeon.unixathome.org To: Michael Nottebrock In-Reply-To: <200408132051.37047.michaelnottebrock@gmx.net> Message-ID: <20040813145315.D90265@xeon.unixathome.org> References: <200408131723.i7DHNK7R096255@repoman.freebsd.org> <20040813141719.J90265@xeon.unixathome.org> <200408132051.37047.michaelnottebrock@gmx.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: format of ports/UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:55:09 -0000 On Fri, 13 Aug 2004, Michael Nottebrock wrote: > On Friday 13 August 2004 20:33, Dan Langille wrote: > > > We are doing pretty well so far. FreshPorts can handle the shell globs > > which have been used, although it could not handle the (x11/kdebase3) > > which occurred in the most recent commit. > > Would "x11/kdebase3 (kdm)" suit your needs better? It would actually. I just tested that locally and it works just fine. See http://beta.freshports.org/x11/kdebase3/ for an example. Thank you. -- Dan Langille - http://www.langille.org/ From owner-cvs-all@FreeBSD.ORG Fri Aug 13 18:56:51 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8857216A4CE; Fri, 13 Aug 2004 18:56:51 +0000 (GMT) Received: from ebb.errno.com (ebb.errno.com [66.127.85.87]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40F4B43D53; Fri, 13 Aug 2004 18:56:51 +0000 (GMT) (envelope-from sam@errno.com) Received: from [66.127.85.91] ([66.127.85.91]) (authenticated bits=0) by ebb.errno.com (8.12.9/8.12.6) with ESMTP id i7DIukWi049177 (version=TLSv1/SSLv3 cipher=RC4-MD5 bits=128 verify=NO); Fri, 13 Aug 2004 11:56:46 -0700 (PDT) (envelope-from sam@errno.com) From: Sam Leffler Organization: Errno Consulting To: Roman Kurakin Date: Fri, 13 Aug 2004 11:59:30 -0700 User-Agent: KMail/1.6.1 References: <200408131114.46274.sam@errno.com> <411D0795.6010406@cronyx.ru> In-Reply-To: <411D0795.6010406@cronyx.ru> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408131159.30682.sam@errno.com> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: John Polstra Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 18:56:51 -0000 On Friday 13 August 2004 11:25 am, Roman Kurakin wrote: > Sam Leffler wrote: > >On Friday 13 August 2004 10:34 am, John Polstra wrote: > >>On 13-Aug-2004 Roman Kurakin wrote: > >>>John Polstra wrote: > >>>>On 13-Aug-2004 Roman Kurakin wrote: > >>>>>John Polstra wrote: > >>>>>>That's pretty much correct. IFF_UP is an administrative control > >>>>>>that expresses the desired state of the interface. The driver never > >>>>>>changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ > >>>>> > >>>>>PPP state machine can remove IFF_UP. For example if connection is not > >>>>>persistent and link > >>>>>was broken for any reason. > >>>> > >>>>I call that a bug. > >>> > >>>This is not a bug, this is feature of protocol. Some times link should > >>>go down (or other > >>>state from which it could go up only by administrator (or program) > >>>intervention). > >> > >>Sorry, but I disagree. PPP should clear IFF_RUNNING in that case, > >>but should leave IFF_UP untouched. > > > >IFF_RUNNING was intended to mark a device "ready for use" and should be > >managed by the driver. IFF_UP was to be administratively controlled and > > any automated change is contrary to the original intent/design. The only > > case that I'm aware of where IFF_UP is touched as a side-effect of > > another operation is when setting an interface's address and I consider > > that a bug. Unfortunately fixing it has widespread consequences and each > > time I've tried I've given up in disgust. > > Ok. Since IFF_UP is used this way by many implementations we have to > agree that this > is normal behavior that was introduced by evolution and practice like > word spelling could > be changed from its origin. The instances that I am aware of are misdesigns that need correcting. Folks that query IFF_UP to mean something it is not may need an alternative state bit but overloading IFF_UP to mean something it does not is wrong. FWIW netbsd does this correctly. I can't comment on PPP as I haven't looked at the code. Sam From owner-cvs-all@FreeBSD.ORG Fri Aug 13 19:03:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91BB516A4CE; Fri, 13 Aug 2004 19:03:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7565943D39; Fri, 13 Aug 2004 19:03:41 +0000 (GMT) (envelope-from mi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DJ3fkf099576; Fri, 13 Aug 2004 19:03:41 GMT (envelope-from mi@repoman.freebsd.org) Received: (from mi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DJ3fV4099575; Fri, 13 Aug 2004 19:03:41 GMT (envelope-from mi) Message-Id: <200408131903.i7DJ3fV4099575@repoman.freebsd.org> From: Mikhail Teterin Date: Fri, 13 Aug 2004 19:03:41 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/ispell Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 19:03:41 -0000 mi 2004-08-13 19:03:41 UTC FreeBSD ports repository Modified files: textproc/ispell Makefile Log: Obey not only the local CFLAGS, but CC as well. Approved by: maintainer Revision Changes Path 1.92 +1 -0 ports/textproc/ispell/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 13 19:02:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E67616A4CE; Fri, 13 Aug 2004 19:02:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 316FE43D2F; Fri, 13 Aug 2004 19:02:24 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DJ2OKL099532; Fri, 13 Aug 2004 19:02:24 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DJ2OF9099531; Fri, 13 Aug 2004 19:02:24 GMT (envelope-from lofi) Message-Id: <200408131902.i7DJ2OF9099531@repoman.freebsd.org> From: Michael Nottebrock Date: Fri, 13 Aug 2004 19:02:24 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 19:02:24 -0000 lofi 2004-08-13 19:02:24 UTC FreeBSD ports repository Modified files: . UPDATING Log: Change the AFFECTS line of the kdebase3/kdm entry to be more freshports- friendly Revision Changes Path 1.58 +2 -2 ports/UPDATING From owner-cvs-all@FreeBSD.ORG Fri Aug 13 19:25:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2ED316A4CE; Fri, 13 Aug 2004 19:25:43 +0000 (GMT) Received: from blake.polstra.com (blake.polstra.com [64.81.189.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id AFCD443D53; Fri, 13 Aug 2004 19:25:41 +0000 (GMT) (envelope-from jdp@polstra.com) Received: from strings.polstra.com (dsl081-189-067.sea1.dsl.speakeasy.net [64.81.189.67]) by blake.polstra.com (8.12.11/8.12.11) with ESMTP id i7DJPZvL050011 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 13 Aug 2004 12:25:35 -0700 (PDT) (envelope-from jdp@strings.polstra.com) Received: (from jdp@localhost) by strings.polstra.com (8.12.11/8.12.11/Submit) id i7DJPZ5w010141; Fri, 13 Aug 2004 12:25:35 -0700 (PDT) (envelope-from jdp) Message-ID: X-Mailer: XFMail 1.5.5 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <411D04FE.70304@cronyx.ru> Date: Fri, 13 Aug 2004 12:25:35 -0700 (PDT) From: John Polstra To: Roman Kurakin X-Bogosity: No, tests=bogofilter, spamicity=0.216012, version=0.14.5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 19:25:43 -0000 On 13-Aug-2004 Roman Kurakin wrote: > John Polstra wrote: >>On 13-Aug-2004 Roman Kurakin wrote: >>>John Polstra wrote: >>>>On 13-Aug-2004 Roman Kurakin wrote: >>>>>John Polstra wrote: >>>>> >>>>>>That's pretty much correct. IFF_UP is an administrative control >>>>>>that expresses the desired state of the interface. The driver never >>>>>>changes IFF_UP. IFF_RUNNING is the driver's idea of the _actual_ >>>>>> >>>>>PPP state machine can remove IFF_UP. For example if connection is not >>>>>persistent and link >>>>>was broken for any reason. >>>>> >>>>I call that a bug. >>>> >>>This is not a bug, this is feature of protocol. Some times link should >>>go down (or other >>>state from which it could go up only by administrator (or program) >>>intervention). >>> >>Sorry, but I disagree. PPP should clear IFF_RUNNING in that case, >>but should leave IFF_UP untouched. >> > But in that case we need some other way to bring line up again, since we > unable just > to ifconfig XXX up. This is possible to implement but very inconvenient. Actually (having thought about it some more), PPP probably shouldn't even clear IFF_RUNNING in that case. IFF_RUNNING is not supposed to reflect whether the link is active or not. It just reflects whether the driver software is capable of functioning. For example, Ethernet drivers don't change IFF_RUNNING if the link goes away. I don't know for sure how PPP ought to handle the case you're describing. It should mark the link as down (not active) but leave IFF_RUNNING set. Then it should either retry periodically to establish an active link; or it should let the user do that manually via "ifconfig ppp0 down; ifconfig ppp0 up". > Could you describe why is so bad that some administrative action > could be canceled due to protection or some other reasons by device > state machine? Especially if users have a choice to allow this > action or not. If users have a choice this action could be treated > on behalf of administrator and thus like administrative action. Well, it is standard practice to separate administrative controls from driver status bits. That's how all the relevant IEEE standards describe things, for instance. The standards define separate variables, for example "adminEnable" and "operEnable" to reflect the administratively requested state and the actual state, respectively. The first is changed only by management actions, and the second is changed only by the software/hardware/whatever. John From owner-cvs-all@FreeBSD.ORG Fri Aug 13 19:28:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0241716A4CE; Fri, 13 Aug 2004 19:28:45 +0000 (GMT) Received: from blake.polstra.com (blake.polstra.com [64.81.189.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C86843D54; Fri, 13 Aug 2004 19:28:44 +0000 (GMT) (envelope-from jdp@polstra.com) Received: from strings.polstra.com (dsl081-189-067.sea1.dsl.speakeasy.net [64.81.189.67]) by blake.polstra.com (8.12.11/8.12.11) with ESMTP id i7DJSdE1050041 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 13 Aug 2004 12:28:40 -0700 (PDT) (envelope-from jdp@strings.polstra.com) Received: (from jdp@localhost) by strings.polstra.com (8.12.11/8.12.11/Submit) id i7DJSdss010148; Fri, 13 Aug 2004 12:28:39 -0700 (PDT) (envelope-from jdp) Message-ID: X-Mailer: XFMail 1.5.5 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <411D0795.6010406@cronyx.ru> Date: Fri, 13 Aug 2004 12:28:39 -0700 (PDT) From: John Polstra To: Roman Kurakin X-Bogosity: No, tests=bogofilter, spamicity=0.021060, version=0.14.5 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if_tap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 19:28:45 -0000 On 13-Aug-2004 Roman Kurakin wrote: > Ok. Since IFF_UP is used this way by many implementations we have to > agree that this is normal behavior that was introduced by evolution > and practice like word spelling could be changed from its origin. I can't agree with that. There's a big difference between human language and software design. IFF_UP is misused by some implementations because the implementors didn't understand it. That's not evolution, it's just a plain old bug. :-) John From owner-cvs-all@FreeBSD.ORG Fri Aug 13 19:34:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DA5116A4CE; Fri, 13 Aug 2004 19:34:59 +0000 (GMT) Received: from david.siemens.de (david.siemens.de [192.35.17.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6B6443D39; Fri, 13 Aug 2004 19:34:58 +0000 (GMT) (envelope-from udo.schweigert@siemens.com) Received: from mail1.siemens.de (mail1.siemens.de [139.23.33.14]) by david.siemens.de (8.12.6/8.12.6) with ESMTP id i7DJYqCo018876; Fri, 13 Aug 2004 21:34:52 +0200 Received: from mars.cert.siemens.com (ust.mchp.siemens.de [139.23.201.17]) by mail1.siemens.de (8.12.6/8.12.6) with ESMTP id i7DJYpxA031109; Fri, 13 Aug 2004 21:34:51 +0200 Received: from alaska.cert.siemens.com (reims.mchp.siemens.de [139.23.202.134]) mail/cert.mc.pre,v 1.61 2004/06/20 16:46:46 mailadm Exp $) with ESMTP id i7DJYptm043481; Fri, 13 Aug 2004 21:34:51 +0200 (CEST) Received: from alaska.cert.siemens.com (alaska.cert.siemens.de [127.0.0.1]) hosts/alaska/mail/config.mc,v 1.17 2004/05/08 20:26:28 ust Exp $) with ESMTP id i7DJYp3E013915; Fri, 13 Aug 2004 21:34:51 +0200 (CEST) (envelope-from ust@alaska.cert.siemens.com) Received: (from ust@localhost) hosts/alaska/mail/submit.mc,v 1.4 2002/12/31 15:32:17 ust Exp $) id i7DJYp1J095718; Fri, 13 Aug 2004 21:34:51 +0200 (CEST) (envelope-from ust) Date: Fri, 13 Aug 2004 21:34:51 +0200 From: Udo Schweigert To: Steve Ames Message-ID: <20040813193451.GA51571@alaska.cert.siemens.com> Mail-Followup-To: Steve Ames , Jeremy Messenger , Volker Stolz , cvs-ports@freebsd.org, cvs-all@freebsd.org, ports-committers@freebsd.org References: <200408131415.i7DEFPL3088002@repoman.freebsd.org> <20040813185244.GA56217@energistic.com> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20040813185244.GA56217@energistic.com> X-Operating-System: FreeBSD 4.10-RELEASE-p2 User-Agent: Mutt/1.5.6i cc: Jeremy Messenger cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org cc: udo.schweigert@siemens.com cc: cvs-ports@freebsd.org cc: Volker Stolz Subject: Re: cvs commit: ports/security/nessus-devel Makefile pkg-message pkg-plist ports/security/nessus-devel/files nessusd.sh ports/security/nessus-devel/scripts move_nessus ports/security/nessus-libnasl-devel Makefile ports/security/nessus-libraries-devel Makefile ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 19:34:59 -0000 On Fri, Aug 13, 2004 at 13:52:44 -0500, Steve Ames wrote: > On Fri, Aug 13, 2004 at 12:08:48PM -0500, Jeremy Messenger wrote: > > > - Add WITHOUT_NESSUS_GTK knob. > > > > Umm, why need the 'NESSUS'? How about do something common like > > WITHOUT_GTK? > > You can set your ports variables globally and perhaps nessus is the only > port you want to build without GTK... of course if that was the case the > port should honor both versions :) > Yes, the idea behind that was to be able to set a variable in /etc/make.conf that does not interfere with other ports. For that it's the easiest way by adding WITHOUT_NESSUS_GTK=yes to /etc/make.conf. You also could use something like that: .if ${.CURDIR:N*/ports/security/nessus-devel} == "" WITHOUT_GNOME= yes .endif But not too many users really are aware of that, so having an additional knob is of some value. Anyway: I'll update the Makefile soon to be bsd.gnome.mk compliant. Thanks for pointing that out. -- Udo Schweigert, Siemens AG | Voice : +49 89 636 42170 CT IC CERT, Siemens CERT | Fax : +49 89 636 41166 D-81730 München / Germany | email : Udo.Schweigert@siemens.com From owner-cvs-all@FreeBSD.ORG Fri Aug 13 19:27:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3636616A4CE; Fri, 13 Aug 2004 19:27:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18DE543D4C; Fri, 13 Aug 2004 19:27:22 +0000 (GMT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DJRLHJ000282; Fri, 13 Aug 2004 19:27:21 GMT (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DJRLf9000281; Fri, 13 Aug 2004 19:27:21 GMT (envelope-from njl) Message-Id: <200408131927.i7DJRLf9000281@repoman.freebsd.org> From: Nate Lawson Date: Fri, 13 Aug 2004 19:27:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/acpica acpi_pci_link.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 19:27:22 -0000 njl 2004-08-13 19:27:21 UTC FreeBSD src repository Modified files: sys/dev/acpica acpi_pci_link.c Log: Fix building for the ACPI_DEBUG case. Revision Changes Path 1.24 +1 -0 src/sys/dev/acpica/acpi_pci_link.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 19:37:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56E3216A4CF; Fri, 13 Aug 2004 19:37:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28A0A43D3F; Fri, 13 Aug 2004 19:37:24 +0000 (GMT) (envelope-from markm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DJbOvY000570; Fri, 13 Aug 2004 19:37:24 GMT (envelope-from markm@repoman.freebsd.org) Received: (from markm@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DJbOU1000569; Fri, 13 Aug 2004 19:37:24 GMT (envelope-from markm) Message-Id: <200408131937.i7DJbOU1000569@repoman.freebsd.org> From: Mark Murray Date: Fri, 13 Aug 2004 19:37:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: OPENSSL Subject: cvs commit: src/crypto/openssl/crypto/engine - Imported sources X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 19:37:24 -0000 markm 2004-08-13 19:37:23 UTC FreeBSD src repository src/crypto/openssl/crypto/engine - Imported sources Update of /home/ncvs/src/crypto/openssl/crypto/engine In directory repoman.freebsd.org:/tmp/cvs-serv530 Log Message: Bring in support for VIA C3 Nehemiah Padlock crypto support (AES). This is from the upcoming OpenSSL 0.9.8 release. Status: Vendor Tag: OPENSSL Release Tags: v0_9_7_dev N src/crypto/openssl/crypto/engine/eng_padlock.c No conflicts created by this import From owner-cvs-all@FreeBSD.ORG Fri Aug 13 19:38:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB2E716A4CE; Fri, 13 Aug 2004 19:38:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBEEB43D4C; Fri, 13 Aug 2004 19:38:58 +0000 (GMT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DJcwkW000689; Fri, 13 Aug 2004 19:38:58 GMT (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DJcwcT000688; Fri, 13 Aug 2004 19:38:58 GMT (envelope-from dinoex) Message-Id: <200408131938.i7DJcwcT000688@repoman.freebsd.org> From: Dirk Meyer Date: Fri, 13 Aug 2004 19:38:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/dns/bind9-dlz Makefile ports/mail/sendmail Makefile ports/mail/sendmail811 Makefile ports/mail/sendmail812 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 19:38:59 -0000 dinoex 2004-08-13 19:38:58 UTC FreeBSD ports repository Modified files: dns/bind9-dlz Makefile mail/sendmail Makefile mail/sendmail811 Makefile mail/sendmail812 Makefile Log: - accept USE_OPENLDAP_VER Revision Changes Path 1.34 +4 -1 ports/dns/bind9-dlz/Makefile 1.96 +7 -3 ports/mail/sendmail/Makefile 1.54 +7 -3 ports/mail/sendmail811/Makefile 1.94 +7 -3 ports/mail/sendmail812/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 13 20:27:57 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 00CFB16A4CE; Fri, 13 Aug 2004 20:27:57 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D60B643D45; Fri, 13 Aug 2004 20:27:56 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DKRu44003714; Fri, 13 Aug 2004 20:27:56 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DKRud6003713; Fri, 13 Aug 2004 20:27:56 GMT (envelope-from rwatson) Message-Id: <200408132027.i7DKRud6003713@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 20:27:56 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/fs/pseudofs pseudofs_vnops.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 20:27:57 -0000 rwatson 2004-08-13 20:27:56 UTC FreeBSD src repository Modified files: sys/fs/pseudofs pseudofs_vnops.c Log: Commit a work-around for a more general bug involving process state: check whether p_ucred is NULL or not in pfs_getattr() before dereferencing the credential, and return ENOENT if there wasn't one. This is a symptom of a larger problem, wherein pfind() can return references to incompletely initialized processes, and we instead ought to not return them, or check the process state before acting on the process. Reported by: kris Discussed with: tjr, others Revision Changes Path 1.45 +11 -0 src/sys/fs/pseudofs/pseudofs_vnops.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 20:35:51 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5A2A716A4CE; Fri, 13 Aug 2004 20:35:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C6A143D1D; Fri, 13 Aug 2004 20:35:51 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DKZpH4003978; Fri, 13 Aug 2004 20:35:51 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DKZpPo003977; Fri, 13 Aug 2004 20:35:51 GMT (envelope-from krion) Message-Id: <200408132035.i7DKZpPo003977@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 13 Aug 2004 20:35:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/xxkb/files patch-resource.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 20:35:51 -0000 krion 2004-08-13 20:35:51 UTC FreeBSD ports repository Added files: x11/xxkb/files patch-resource.c Log: Fix build with gcc-3.4 Submitted by: maintainer Revision Changes Path 1.1 +13 -0 ports/x11/xxkb/files/patch-resource.c (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 20:38:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B43816A4CE; Fri, 13 Aug 2004 20:38:13 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0D8243D2F; Fri, 13 Aug 2004 20:38:12 +0000 (GMT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DKcCf0004078; Fri, 13 Aug 2004 20:38:12 GMT (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DKcCSG004077; Fri, 13 Aug 2004 20:38:12 GMT (envelope-from bland) Message-Id: <200408132038.i7DKcCSG004077@repoman.freebsd.org> From: Alexander Nedotsukov Date: Fri, 13 Aug 2004 20:38:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gtk20 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 20:38:13 -0000 bland 2004-08-13 20:38:12 UTC FreeBSD ports repository Modified files: x11-toolkits/gtk20 Makefile distinfo pkg-plist Log: Update to 2.4.6 Revision Changes Path 1.133 +1 -2 ports/x11-toolkits/gtk20/Makefile 1.69 +2 -2 ports/x11-toolkits/gtk20/distinfo 1.77 +2 -0 ports/x11-toolkits/gtk20/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 13 20:48:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 600B816A4CE; Fri, 13 Aug 2004 20:48:34 +0000 (GMT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15DFB43D1D; Fri, 13 Aug 2004 20:48:34 +0000 (GMT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.41 (FreeBSD)) id 1BviyQ-0004Br-SQ; Fri, 13 Aug 2004 22:48:26 +0200 Date: Fri, 13 Aug 2004 22:48:26 +0200 From: Kirill Ponomarew To: Michael Nottebrock Message-ID: <20040813204826.GA14574@voodoo.oberon.net> References: <200408131723.i7DHNK7R096255@repoman.freebsd.org> <200408131937.49090.michaelnottebrock@gmx.net> <20040813173941.GG24103@voodoo.oberon.net> <200408131959.21017.michaelnottebrock@gmx.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Nq2Wo0NMKNjxTN9z" Content-Disposition: inline In-Reply-To: <200408131959.21017.michaelnottebrock@gmx.net> X-NCC-Regid: de.oberon X-NIC-HDL: KP869-RIPE cc: cvs-ports@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 20:48:34 -0000 --Nq2Wo0NMKNjxTN9z Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Fri, Aug 13, 2004 at 07:59:20PM +0200, Michael Nottebrock wrote: > > The person/alias who's ready to answer all questions and > > support users who have questions regarding this message. >=20 > Maybe it should be CONTACT: then? I'll change the entry to kde@freebsd.or= g. Hmm, don't think it's necessary. I suppose if somebody adds an entry in UPDATING, he/she should also takes upon himself and handle all questions and proposals from users. -Kirill --Nq2Wo0NMKNjxTN9z Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBHSkaQC1G6a60JuURAnZMAKCZi3G9gYWKa30hqnfAaUWXB4r1OgCgvDU9 Pds89WRieD2pCdUVMgr9C6E= =Ozsx -----END PGP SIGNATURE----- --Nq2Wo0NMKNjxTN9z-- From owner-cvs-all@FreeBSD.ORG Fri Aug 13 21:31:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4AE8F16A4CE; Fri, 13 Aug 2004 21:31:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AA6343D53; Fri, 13 Aug 2004 21:31:54 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DLVs7A005404; Fri, 13 Aug 2004 21:31:54 GMT (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DLVspZ005403; Fri, 13 Aug 2004 21:31:54 GMT (envelope-from trhodes) Message-Id: <200408132131.i7DLVspZ005403@repoman.freebsd.org> From: Tom Rhodes Date: Fri, 13 Aug 2004 21:31:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 21:31:54 -0000 trhodes 2004-08-13 21:31:53 UTC FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Format string vulnerability in jftpgw. Informed by: Robert Nagy Revision Changes Path 1.174 +29 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Fri Aug 13 21:35:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B8BB716A4CE; Fri, 13 Aug 2004 21:35:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9773843D54; Fri, 13 Aug 2004 21:35:01 +0000 (GMT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DLZ1db005504; Fri, 13 Aug 2004 21:35:01 GMT (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DLZ1os005503; Fri, 13 Aug 2004 21:35:01 GMT (envelope-from trhodes) Message-Id: <200408132135.i7DLZ1os005503@repoman.freebsd.org> From: Tom Rhodes Date: Fri, 13 Aug 2004 21:35:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/jftpgw Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 21:35:01 -0000 trhodes 2004-08-13 21:35:01 UTC FreeBSD ports repository Modified files: ftp/jftpgw Makefile distinfo Log: Update to 0.13.5. Submitted by: Robert Nagy Revision Changes Path 1.11 +1 -1 ports/ftp/jftpgw/Makefile 1.8 +2 -2 ports/ftp/jftpgw/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 21:39:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2CBCC16A4CE; Fri, 13 Aug 2004 21:39:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BF3343D3F; Fri, 13 Aug 2004 21:39:15 +0000 (GMT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DLdEmc005656; Fri, 13 Aug 2004 21:39:14 GMT (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DLdE4g005655; Fri, 13 Aug 2004 21:39:14 GMT (envelope-from gibbs) Message-Id: <200408132139.i7DLdE4g005655@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Fri, 13 Aug 2004 21:39:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 21:39:15 -0000 gibbs 2004-08-13 21:39:14 UTC FreeBSD src repository Modified files: sys/dev/aic7xxx aic7xxx.c Log: Fix an off by one in the critical section clearing code. The code was adjusting twice for the instruction pointer indicating the *next* instruction to execute. The aic79xx driver had a similar bug, but was fixed some time ago. Revision Changes Path 1.101 +0 -2 src/sys/dev/aic7xxx/aic7xxx.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 21:41:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 167E716A4CE; Fri, 13 Aug 2004 21:41:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA08F43D2D; Fri, 13 Aug 2004 21:41:23 +0000 (GMT) (envelope-from gibbs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DLfNVm005793; Fri, 13 Aug 2004 21:41:23 GMT (envelope-from gibbs@repoman.freebsd.org) Received: (from gibbs@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DLfNJn005792; Fri, 13 Aug 2004 21:41:23 GMT (envelope-from gibbs) Message-Id: <200408132141.i7DLfNJn005792@repoman.freebsd.org> From: "Justin T. Gibbs" Date: Fri, 13 Aug 2004 21:41:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/aic7xxx aic7xxx.seq X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 21:41:24 -0000 gibbs 2004-08-13 21:41:23 UTC FreeBSD src repository Modified files: sys/dev/aic7xxx aic7xxx.seq Log: Extend critical section protection around portions of selection processing that cannot tolerate changes to the waiting for selection queue by the host or the host canceling an active selection. Revision Changes Path 1.127 +5 -1 src/sys/dev/aic7xxx/aic7xxx.seq From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:10:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8457316A4D0; Fri, 13 Aug 2004 22:10:37 +0000 (GMT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 002BF43D1D; Fri, 13 Aug 2004 22:10:36 +0000 (GMT) (envelope-from nectar@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by gw.celabo.org (Postfix) with ESMTP id 5780A54883; Fri, 13 Aug 2004 17:10:36 -0500 (CDT) Received: from gw.celabo.org ([127.0.0.1]) by localhost (hellblazer.celabo.org [127.0.0.1]) (amavisd-new, port 10024) with SMTP id 12284-10; Fri, 13 Aug 2004 17:10:24 -0500 (CDT) Received: from [10.0.1.207] (dhcp-207.celabo.org [10.0.1.207]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (Client did not present a certificate) by gw.celabo.org (Postfix) with ESMTP id B76D65487F; Fri, 13 Aug 2004 17:10:24 -0500 (CDT) In-Reply-To: <43261AE6-ED4A-11D8-87C4-00039312D914@fillmore-labs.com> References: <43261AE6-ED4A-11D8-87C4-00039312D914@fillmore-labs.com> Mime-Version: 1.0 (Apple Message framework v619) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <92425FA3-ED75-11D8-B3DD-000A95BC6FAE@FreeBSD.org> Content-Transfer-Encoding: 7bit From: Jacques Vidrine Date: Fri, 13 Aug 2004 17:10:22 -0500 To: Oliver Eikemeier X-Mailer: Apple Mail (2.619) cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:10:37 -0000 On Aug 13, 2004, at 12:00 PM, Oliver Eikemeier wrote: > Jacques Vidrine wrote: > >> On Aug 12, 2004, at 7:26 PM, Oliver Eikemeier wrote: >> >>> portaudit understands these just fine, and I guess it is the main >>> client right now. >> >> I think VuXML.org is the main client :-) but of course that's not the >> point. > > Ah, but it is an important point to me. My main concern is the FreeBSD > ports collection, I don't care much about OpenBSD compatibility. My main concern is FreeBSD users, also. Sharing infrastructure with other projects is desirable, and need not compromise FreeBSD's goals. This ought to be obvious: it can be seen in a huge percentage of the FreeBSD system. >> As previously discussed, the semantics of VuXML and >> elements are package names and version numbers respectively, not >> globs or glob-like patterns. In particular, the semantics are not >> FreeBSD or FreeBSD Ports Collection specific. > > That's unfortunate. I would prefer when you would care more about > portaudit, especially the elements have to adhere to FreeBSD > semantics. Um, the elements *do* adhere to FreeBSD semantics. They adhere to practically any system's semantics--- that's the point of keeping them simple version numbers rather than system-specific patterns. Every package collection has the concept of version numbers (even though the ordering might be different). > Since you seem not to check your entries with portaudit, I have a lot > of work dealing with vuxml quirks. No, I don't use portaudit. How would I go about `checking entries' with it? Does it not understand some VuXML entries for some reason? If there is a simple check, I would be happy to do it. I didn't realize there was a problem. Could you elaborate about the quirks, and what kind of work it is producing for you? Maybe we can ``fix'' them. Certainly I'm willing to make reasonable changes, and now is perhaps a good time as I'm working on a minor update to VuXML 1.2 in order to accommodate the needs of another large package collection. > OTOH when you think we have different design goals, it should be no > problem for me to change the database, since portaudit is database > format agnostic. This (``format agnostic'') seems to contradict what you stated above, so I think I must not quite understand. Cheers, -- Jacques A Vidrine / NTT/Verio nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org P.S. Did you miss this part? I would be much obliged if you would point out the problems so we can correct them, and so I don't goof it again in the future. Jacques Vidrine wrote: > On Aug 12, 2004, at 7:26 PM, Oliver Eikemeier wrote: >> Besides, it seems like this commit introduced some errors. How >> should we handle this? > > Hit me over the head with the specific errors, please :-) Let's > resolve them. From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:19:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 82E6516A4CF; Fri, 13 Aug 2004 22:19:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5636743D48; Fri, 13 Aug 2004 22:19:34 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMJYb4006748; Fri, 13 Aug 2004 22:19:34 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMJYFS006747; Fri, 13 Aug 2004 22:19:34 GMT (envelope-from pav) Message-Id: <200408132219.i7DMJYFS006747@repoman.freebsd.org> From: Pav Lucistnik Date: Fri, 13 Aug 2004 22:19:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/gnomevfs/files patch-libgnomevfs-gnome-vfs-private-utils.c patch-libgnomevfs-gnome-vfs-process.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:19:34 -0000 pav 2004-08-13 22:19:34 UTC FreeBSD ports repository Added files: devel/gnomevfs/files patch-libgnomevfs-gnome-vfs-private-utils.c patch-libgnomevfs-gnome-vfs-process.c Log: - Fix build with gcc-3.4 Revision Changes Path 1.1 +11 -0 ports/devel/gnomevfs/files/patch-libgnomevfs-gnome-vfs-private-utils.c (new) 1.1 +11 -0 ports/devel/gnomevfs/files/patch-libgnomevfs-gnome-vfs-process.c (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:23:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E573616A4CE; Fri, 13 Aug 2004 22:23:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C408F43D1D; Fri, 13 Aug 2004 22:23:21 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMNL2D006885; Fri, 13 Aug 2004 22:23:21 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMNLts006884; Fri, 13 Aug 2004 22:23:21 GMT (envelope-from rwatson) Message-Id: <200408132223.i7DMNLts006884@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 22:23:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/net rtsock.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:23:22 -0000 rwatson 2004-08-13 22:23:21 UTC FreeBSD src repository Modified files: sys/net rtsock.c Log: Use IFQ_SET_MAXLEN() to set the maximum queue depth of the routing socket netisr queue. Pointed out by: winter Revision Changes Path 1.113 +1 -1 src/sys/net/rtsock.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:30:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03F0D16A4CE; Fri, 13 Aug 2004 22:30:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D86FE43D2F; Fri, 13 Aug 2004 22:30:55 +0000 (GMT) (envelope-from ambrisko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMUtZ1007122; Fri, 13 Aug 2004 22:30:55 GMT (envelope-from ambrisko@repoman.freebsd.org) Received: (from ambrisko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMUt4N007121; Fri, 13 Aug 2004 22:30:55 GMT (envelope-from ambrisko) Message-Id: <200408132230.i7DMUt4N007121@repoman.freebsd.org> From: Doug Ambrisko Date: Fri, 13 Aug 2004 22:30:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/amd64/amd64 mp_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:30:56 -0000 ambrisko 2004-08-13 22:30:55 UTC FreeBSD src repository Modified files: sys/amd64/amd64 mp_machdep.c Log: Fix the memory scaling bug when basemem was converted to Kbytes from bytes for AMD64. Otherwise the AP will be started at 640K which won't work. Bug found on a Xeon 64bit system. Revision Changes Path 1.242 +1 -1 src/sys/amd64/amd64/mp_machdep.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:33:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D874316A4CE; Fri, 13 Aug 2004 22:33:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B772743D45; Fri, 13 Aug 2004 22:33:25 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMXPNY007180; Fri, 13 Aug 2004 22:33:25 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMXPkO007179; Fri, 13 Aug 2004 22:33:25 GMT (envelope-from maho) Message-Id: <200408132233.i7DMXPkO007179@repoman.freebsd.org> From: Maho Nakata Date: Fri, 13 Aug 2004 22:33:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/openoffice-1.1 Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:33:26 -0000 maho 2004-08-13 22:33:25 UTC FreeBSD ports repository Modified files: editors/openoffice-1.1 Makefile Log: Unbreak for 5-current (2004/Aug/6). Reported by: jhb Revision Changes Path 1.158 +0 -4 ports/editors/openoffice-1.1/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:34:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 34CF716A4CE; Fri, 13 Aug 2004 22:34:22 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.173]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA97C43D39; Fri, 13 Aug 2004 22:34:21 +0000 (GMT) (envelope-from max@love2party.net) Received: from [212.227.126.155] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1Bvkcv-00084l-00; Sat, 14 Aug 2004 00:34:21 +0200 Received: from [84.128.137.28] (helo=donor.laier.local) by mrelayng.kundenserver.de with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id 1Bvkcu-00060f-00; Sat, 14 Aug 2004 00:34:21 +0200 From: Max Laier To: Robert Watson Date: Sat, 14 Aug 2004 00:32:24 +0200 User-Agent: KMail/1.6.2 References: <200408132223.i7DMNLts006884@repoman.freebsd.org> In-Reply-To: <200408132223.i7DMNLts006884@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_AGUHBf6HaZBXQUb"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408140032.32139.max@love2party.net> X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:61c499deaeeba3ba5be80f48ecc83056 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net rtsock.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:34:22 -0000 --Boundary-02=_AGUHBf6HaZBXQUb Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Saturday 14 August 2004 00:23, Robert Watson wrote: > rwatson 2004-08-13 22:23:21 UTC > > FreeBSD src repository > > Modified files: > sys/net rtsock.c > Log: > Use IFQ_SET_MAXLEN() to set the maximum queue depth of the routing > socket netisr queue. Well, I suggest to use IFQ_* macros only on queues that are IFQ_SET_READY'e= d=20 as well. i.e. as long as you don't use IFQ_{EN,DE}QUEUE with the queue ther= e=20 is not much point in using IFQ_SET_MAXLEN either. It'd just add noise to=20 searches for IFQ_* I don't think that there are plans to use ALTQ disciplines on the netisr=20 queues, are there? > Pointed out by: winter > > Revision Changes Path > 1.113 +1 -1 src/sys/net/rtsock.c =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 --Boundary-02=_AGUHBf6HaZBXQUb Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBHUGAXyyEoT62BG0RAg3CAJ9MpNpflANXEci5z5qvNVZ2vB48dACZAZYj TZsxoxjLgEOIjVewsIA/Zt4= =4qv0 -----END PGP SIGNATURE----- --Boundary-02=_AGUHBf6HaZBXQUb-- From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:36:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2C9A316A4CE; Fri, 13 Aug 2004 22:36:39 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA03043D41; Fri, 13 Aug 2004 22:36:38 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-13.local ([172.16.0.13]) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1Bvkf5-000HM3-An; Sat, 14 Aug 2004 00:36:37 +0200 Date: Sat, 14 Aug 2004 00:38:13 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Jacques Vidrine From: Oliver Eikemeier In-Reply-To: <92425FA3-ED75-11D8-B3DD-000A95BC6FAE@FreeBSD.org> Message-Id: <760AEAC3-ED79-11D8-87C4-00039312D914@fillmore-labs.com> Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/vuxml vuln.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:36:39 -0000 Jacques Vidrine wrote: >> Since you seem not to check your entries with portaudit, I have a lot >> of work dealing with vuxml quirks. > > No, I don't use portaudit. How would I go about `checking entries' > with it? Does it not understand some VuXML entries for some reason? > If there is a simple check, I would be happy to do it. I didn't > realize there was a problem. Sorry, but this is the core of my problems. You had enough time to try it, and as security officer it should have been your duty to review the system. I have done a lot of work to make this a joint venture, but obviously failed. > Could you elaborate about the quirks, and what kind of work it is > producing for you? Maybe we can ``fix'' them. Certainly I'm willing > to make reasonable changes, and now is perhaps a good time as I'm > working on a minor update to VuXML 1.2 in order to accommodate the > needs of another large package collection. Ask them if they want to adopt your system. For me you care far too less about FreeBSD specifics to be really useful. >> OTOH when you think we have different design goals, it should be no >> problem for me to change the database, since portaudit is database >> format agnostic. > > This (``format agnostic'') seems to contradict what you stated above, > so I think I must not quite understand. I can get my data from multiple sources, and vuxml doesn't seem to be the ideal format, especially since you `own' it and refuse to join forces. > P.S. Did you miss this part? I would be much obliged if you would > point out the problems so we can correct them, and so I don't goof it > again in the future. > >>> Besides, it seems like this commit introduced some errors. How >>> should we handle this? >> >> Hit me over the head with the specific errors, please :-) Let's >> resolve them. No, I did not miss this part. Did you review the changes you've done to the entries made by me, or did you change them just because they did not fit in your concept? Anyway, don't ask me to improve your system by making suggestions. Tell me what you have to offer over having my own database or let us just go our ways, respecting that our projects have a different focus. -Oliver From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:39:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 05A9916A4CE; Fri, 13 Aug 2004 22:39:40 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88AB343D53; Fri, 13 Aug 2004 22:39:39 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i7DMbvlj096692; Fri, 13 Aug 2004 18:37:57 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i7DMbutZ096689; Fri, 13 Aug 2004 18:37:57 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Fri, 13 Aug 2004 18:37:56 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Max Laier In-Reply-To: <200408140032.32139.max@love2party.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net rtsock.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:39:40 -0000 On Sat, 14 Aug 2004, Max Laier wrote: > On Saturday 14 August 2004 00:23, Robert Watson wrote: > > rwatson 2004-08-13 22:23:21 UTC > > > > FreeBSD src repository > > > > Modified files: > > sys/net rtsock.c > > Log: > > Use IFQ_SET_MAXLEN() to set the maximum queue depth of the routing > > socket netisr queue. > > Well, I suggest to use IFQ_* macros only on queues that are > IFQ_SET_READY'ed as well. i.e. as long as you don't use IFQ_{EN,DE}QUEUE > with the queue there is not much point in using IFQ_SET_MAXLEN either. > It'd just add noise to searches for IFQ_* > > I don't think that there are plans to use ALTQ disciplines on the netisr > queues, are there? No, that wouldn't really make sense, as we want a reliable record stream, really, and the protocol in question wouldn't benefit from RED, etc. Do you suggest, then, just backing this out? Some of the other ifq abstractions are used, such as IFF_HANDOFF()... Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:43:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BA29316A4CE; Fri, 13 Aug 2004 22:43:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97EAD43D54; Fri, 13 Aug 2004 22:43:12 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMhCos007472; Fri, 13 Aug 2004 22:43:12 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMhCNd007471; Fri, 13 Aug 2004 22:43:12 GMT (envelope-from stefanf) Message-Id: <200408132243.i7DMhCNd007471@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 13 Aug 2004 22:43:12 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man3 Makefile tgmath.3 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:43:12 -0000 stefanf 2004-08-13 22:43:12 UTC FreeBSD src repository Modified files: share/man/man3 Makefile Added files: share/man/man3 tgmath.3 Log: Add a man page for tgmath.h. Reviewed by: keramida Revision Changes Path 1.32 +1 -0 src/share/man/man3/Makefile 1.1 +151 -0 src/share/man/man3/tgmath.3 (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:46:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D09A716A4CE; Fri, 13 Aug 2004 22:46:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C339E43D39; Fri, 13 Aug 2004 22:46:52 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMkqVi007769; Fri, 13 Aug 2004 22:46:52 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMkqvr007768; Fri, 13 Aug 2004 22:46:52 GMT (envelope-from lofi) Message-Id: <200408132246.i7DMkqvr007768@repoman.freebsd.org> From: Michael Nottebrock Date: Fri, 13 Aug 2004 22:46:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/qt-ibase-plugin Makefile distinfo ports/databases/qt-mysql-plugin Makefile distinfo ports/databases/qt-odbc-plugin Makefile distinfo ports/databases/qt-pgsql-plugin Makefile distinfo ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:46:53 -0000 lofi 2004-08-13 22:46:52 UTC FreeBSD ports repository Modified files: databases/qt-ibase-plugin Makefile distinfo databases/qt-mysql-plugin Makefile distinfo databases/qt-odbc-plugin Makefile distinfo databases/qt-pgsql-plugin Makefile distinfo databases/qt-sqlite-plugin Makefile distinfo devel/qmake Makefile distinfo pkg-plist x11-toolkits/qt33 Makefile distinfo pkg-plist Added files: x11-toolkits/qt33/files patch-tools_makeqpf_main.cpp Log: Update to 3.3.3 Revision Changes Path 1.4 +1 -1 ports/databases/qt-ibase-plugin/Makefile 1.3 +2 -2 ports/databases/qt-ibase-plugin/distinfo 1.8 +1 -1 ports/databases/qt-mysql-plugin/Makefile 1.6 +2 -2 ports/databases/qt-mysql-plugin/distinfo 1.4 +1 -1 ports/databases/qt-odbc-plugin/Makefile 1.5 +2 -2 ports/databases/qt-odbc-plugin/distinfo 1.7 +1 -1 ports/databases/qt-pgsql-plugin/Makefile 1.6 +2 -2 ports/databases/qt-pgsql-plugin/distinfo 1.4 +1 -1 ports/databases/qt-sqlite-plugin/Makefile 1.3 +2 -2 ports/databases/qt-sqlite-plugin/distinfo 1.9 +1 -1 ports/devel/qmake/Makefile 1.5 +2 -2 ports/devel/qmake/distinfo 1.3 +7 -4 ports/devel/qmake/pkg-plist 1.173 +4 -3 ports/x11-toolkits/qt33/Makefile 1.37 +2 -2 ports/x11-toolkits/qt33/distinfo 1.1 +20 -0 ports/x11-toolkits/qt33/files/patch-tools_makeqpf_main.cpp (new) 1.69 +1 -1 ports/x11-toolkits/qt33/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:47:32 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9692316A4CE; Fri, 13 Aug 2004 22:47:32 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7551543D2F; Fri, 13 Aug 2004 22:47:32 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMlWG4007807; Fri, 13 Aug 2004 22:47:32 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMlWEX007806; Fri, 13 Aug 2004 22:47:32 GMT (envelope-from lofi) Message-Id: <200408132247.i7DMlWEX007806@repoman.freebsd.org> From: Michael Nottebrock Date: Fri, 13 Aug 2004 22:47:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/qmake Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:47:32 -0000 lofi 2004-08-13 22:47:32 UTC FreeBSD ports repository Modified files: devel/qmake Makefile Log: Forced commit to note that the previous commit was Approved by: Maintainer Revision Changes Path 1.10 +0 -0 ports/devel/qmake/Makefile From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:48:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AD3416A4CE; Fri, 13 Aug 2004 22:48:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF53C43D31; Fri, 13 Aug 2004 22:48:05 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMm5j1007849; Fri, 13 Aug 2004 22:48:05 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMm5s9007848; Fri, 13 Aug 2004 22:48:05 GMT (envelope-from rwatson) Message-Id: <200408132248.i7DMm5s9007848@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 22:48:05 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_de.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:48:06 -0000 rwatson 2004-08-13 22:48:05 UTC FreeBSD src repository Modified files: sys/pci if_de.c Log: Since the if_de driver doesn't contain locking, mark it as IFF_NEEDSGIANT so that ifp->if_start won't be called without Giant when running debug.mpsafenet=1. Revision Changes Path 1.158 +1 -1 src/sys/pci/if_de.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:51:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F09216A4D2; Fri, 13 Aug 2004 22:51:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFF1A43D48; Fri, 13 Aug 2004 22:51:14 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMpERn008058; Fri, 13 Aug 2004 22:51:14 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMpEqF008057; Fri, 13 Aug 2004 22:51:14 GMT (envelope-from krion) Message-Id: <200408132251.i7DMpEqF008057@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 13 Aug 2004 22:51:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/libidn Makefile distinfo ports/devel/libidn/files patch-ltmain.sh patch-po::LINGUAS patch-po_LINGUAS X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:51:15 -0000 krion 2004-08-13 22:51:14 UTC FreeBSD ports repository Modified files: devel/libidn Makefile distinfo Added files: devel/libidn/files patch-po_LINGUAS Removed files: devel/libidn/files patch-ltmain.sh patch-po::LINGUAS Log: Update to 0.5.4 Revision Changes Path 1.36 +2 -3 ports/devel/libidn/Makefile 1.23 +2 -2 ports/devel/libidn/distinfo 1.2 +0 -15 ports/devel/libidn/files/patch-ltmain.sh (dead) 1.5 +0 -9 ports/devel/libidn/files/patch-po::LINGUAS (dead) 1.1 +10 -0 ports/devel/libidn/files/patch-po_LINGUAS (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:51:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A82316A4E9; Fri, 13 Aug 2004 22:51:23 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1087043D3F; Fri, 13 Aug 2004 22:51:23 +0000 (GMT) (envelope-from max@love2party.net) Received: from [212.227.126.179] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1BvktO-0002f2-00; Sat, 14 Aug 2004 00:51:22 +0200 Received: from [84.128.137.28] (helo=donor.laier.local) by mrelayng.kundenserver.de with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id 1BvktN-0001ak-00; Sat, 14 Aug 2004 00:51:22 +0200 From: Max Laier To: Robert Watson Date: Sat, 14 Aug 2004 00:49:25 +0200 User-Agent: KMail/1.6.2 References: In-Reply-To: MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_9VUHB6oxBbGSwSv"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408140049.33903.max@love2party.net> X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:61c499deaeeba3ba5be80f48ecc83056 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net rtsock.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:51:23 -0000 --Boundary-02=_9VUHB6oxBbGSwSv Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Saturday 14 August 2004 00:37, Robert Watson wrote: > On Sat, 14 Aug 2004, Max Laier wrote: > > On Saturday 14 August 2004 00:23, Robert Watson wrote: > > > rwatson 2004-08-13 22:23:21 UTC > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/net rtsock.c > > > Log: > > > Use IFQ_SET_MAXLEN() to set the maximum queue depth of the routing > > > socket netisr queue. > > > > Well, I suggest to use IFQ_* macros only on queues that are > > IFQ_SET_READY'ed as well. i.e. as long as you don't use IFQ_{EN,DE}QUEUE > > with the queue there is not much point in using IFQ_SET_MAXLEN either. > > It'd just add noise to searches for IFQ_* > > > > I don't think that there are plans to use ALTQ disciplines on the netisr > > queues, are there? > > No, that wouldn't really make sense, as we want a reliable record stream, > really, and the protocol in question wouldn't benefit from RED, etc. Do > you suggest, then, just backing this out? Some of the other ifq > abstractions are used, such as IFF_HANDOFF()... It does not hurt (much) to use IFQ_* macros on normal FIFO queues as long a= s=20 IFQ_SET_READY is not used to activate ALTQ processing. Nevertheless, there = is=20 some overhead and I don't see us removing the IF_* macros. So long story short: For normal FIFO queues use IF_* macros, for ALTQ-enabl= ed=20 queues use IFQ_* or IFQ_DRV_* (see altq(9) for details on the difference an= d=20 conversion). =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 --Boundary-02=_9VUHB6oxBbGSwSv Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBHUV9XyyEoT62BG0RAv0SAJ9FL4ijBGWaFnix1BzLWNiFPPOCQQCfTU5V f6G+8I27HgbWXpmjyWxGnFc= =sgwO -----END PGP SIGNATURE----- --Boundary-02=_9VUHB6oxBbGSwSv-- From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:52:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1EE4016A4CE; Fri, 13 Aug 2004 22:52:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F00F143D45; Fri, 13 Aug 2004 22:52:11 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMqBHY008113; Fri, 13 Aug 2004 22:52:11 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMqBUR008112; Fri, 13 Aug 2004 22:52:11 GMT (envelope-from rwatson) Message-Id: <200408132252.i7DMqBUR008112@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 22:52:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ar if_ar.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:52:12 -0000 rwatson 2004-08-13 22:52:11 UTC FreeBSD src repository Modified files: sys/dev/ar if_ar.c Log: As the if_ar driver doesn't contain locking or run its interrupt MPSAFE, mark it as IFF_NEEDSGIANT so that its if_start routine is run holding Giant. Revision Changes Path 1.65 +2 -1 src/sys/dev/ar/if_ar.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:54:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B229416A4CE; Fri, 13 Aug 2004 22:54:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 924FD43D3F; Fri, 13 Aug 2004 22:54:19 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMsJV1008172; Fri, 13 Aug 2004 22:54:19 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMsJk3008171; Fri, 13 Aug 2004 22:54:19 GMT (envelope-from rwatson) Message-Id: <200408132254.i7DMsJk3008171@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 22:54:19 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/arl if_arl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:54:19 -0000 rwatson 2004-08-13 22:54:19 UTC FreeBSD src repository Modified files: sys/dev/arl if_arl.c Log: Since if_arl doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.9 +2 -1 src/sys/dev/arl/if_arl.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:55:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D0DFD16A4CE; Fri, 13 Aug 2004 22:55:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF70243D45; Fri, 13 Aug 2004 22:55:25 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMtPvj008260; Fri, 13 Aug 2004 22:55:25 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMtPse008259; Fri, 13 Aug 2004 22:55:25 GMT (envelope-from rwatson) Message-Id: <200408132255.i7DMtPse008259@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 22:55:25 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/awi awi.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:55:26 -0000 rwatson 2004-08-13 22:55:25 UTC FreeBSD src repository Modified files: sys/dev/awi awi.c Log: Since if_awi doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.34 +1 -1 src/sys/dev/awi/awi.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:57:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8CD3F16A4CE; Fri, 13 Aug 2004 22:57:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B48943D46; Fri, 13 Aug 2004 22:57:44 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMvi3P008351; Fri, 13 Aug 2004 22:57:44 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMvin8008350; Fri, 13 Aug 2004 22:57:44 GMT (envelope-from rwatson) Message-Id: <200408132257.i7DMvin8008350@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 22:57:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/cm smc90cx6.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:57:44 -0000 rwatson 2004-08-13 22:57:44 UTC FreeBSD src repository Modified files: sys/dev/cm smc90cx6.c Log: Since if_cm doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.14 +1 -1 src/sys/dev/cm/smc90cx6.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 22:59:10 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 07DF016A4CE; Fri, 13 Aug 2004 22:59:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F143343D5C; Fri, 13 Aug 2004 22:59:09 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DMx91n008403; Fri, 13 Aug 2004 22:59:09 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DMx9gv008402; Fri, 13 Aug 2004 22:59:09 GMT (envelope-from marcel) Message-Id: <200408132259.i7DMx9gv008402@repoman.freebsd.org> From: Marcel Moolenaar Date: Fri, 13 Aug 2004 22:59:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/acpi/acpidump acpi.c acpidump.c acpidump.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 22:59:10 -0000 marcel 2004-08-13 22:59:09 UTC FreeBSD src repository Modified files: usr.sbin/acpi/acpidump acpi.c acpidump.c acpidump.h Log: Add support for SSDT tables. Dumping or disassembling the DSDT will now include the contents if any SSDT table as well. This makes use of the property that one can concatenate the body of SSDT tables to the DSDT, updating the DSDT header (length and checksum) and end up with a larger and valid DSDT table. Hence, this also works with -f. Reviewed by: njl@ Revision Changes Path 1.26 +44 -10 src/usr.sbin/acpi/acpidump/acpi.c 1.9 +10 -7 src/usr.sbin/acpi/acpidump/acpidump.c 1.17 +4 -3 src/usr.sbin/acpi/acpidump/acpidump.h From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:02:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A0FED16A4CE; Fri, 13 Aug 2004 23:02:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8104D43D2F; Fri, 13 Aug 2004 23:02:17 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DN2HKU008581; Fri, 13 Aug 2004 23:02:17 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DN2HhC008580; Fri, 13 Aug 2004 23:02:17 GMT (envelope-from rwatson) Message-Id: <200408132302.i7DN2HhC008580@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:02:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/cp if_cp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:02:17 -0000 rwatson 2004-08-13 23:02:17 UTC FreeBSD src repository Modified files: sys/dev/cp if_cp.c Log: Since if_cp doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.12 +2 -1 src/sys/dev/cp/if_cp.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:03:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E189216A4CE; Fri, 13 Aug 2004 23:03:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C081643D1F; Fri, 13 Aug 2004 23:03:11 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DN3B3J008623; Fri, 13 Aug 2004 23:03:11 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DN3BKF008622; Fri, 13 Aug 2004 23:03:11 GMT (envelope-from rwatson) Message-Id: <200408132303.i7DN3BKF008622@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:03:11 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/cs if_cs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:03:12 -0000 rwatson 2004-08-13 23:03:11 UTC FreeBSD src repository Modified files: sys/dev/cs if_cs.c Log: Since if_cs doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.33 +2 -1 src/sys/dev/cs/if_cs.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:04:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33ADE16A4CF; Fri, 13 Aug 2004 23:04:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1324343D49; Fri, 13 Aug 2004 23:04:15 +0000 (GMT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DN4Ewg008666; Fri, 13 Aug 2004 23:04:14 GMT (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DN4Eje008665; Fri, 13 Aug 2004 23:04:14 GMT (envelope-from bmah) Message-Id: <200408132304.i7DN4Eje008665@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 13 Aug 2004 23:04:14 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/release/doc/en_US.ISO8859-1/relnotes/common new.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:04:15 -0000 bmah 2004-08-13 23:04:14 UTC FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Wordsmithing on the GEOM_STRIPE, MSDOSFS_LARGE, and portaudit notes. Revision Changes Path 1.761 +19 -19 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:04:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5CCD516A4D0; Fri, 13 Aug 2004 23:04:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AD2E43D39; Fri, 13 Aug 2004 23:04:24 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DN4ORe008700; Fri, 13 Aug 2004 23:04:24 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DN4Ott008699; Fri, 13 Aug 2004 23:04:24 GMT (envelope-from rwatson) Message-Id: <200408132304.i7DN4Ott008699@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:04:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ed if_ed.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:04:24 -0000 rwatson 2004-08-13 23:04:24 UTC FreeBSD src repository Modified files: sys/dev/ed if_ed.c Log: Since if_ed doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.233 +2 -2 src/sys/dev/ed/if_ed.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:06:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 83E1516A4CE; Fri, 13 Aug 2004 23:06:19 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63AF543D3F; Fri, 13 Aug 2004 23:06:19 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DN6JlK008877; Fri, 13 Aug 2004 23:06:19 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DN6JPU008876; Fri, 13 Aug 2004 23:06:19 GMT (envelope-from krion) Message-Id: <200408132306.i7DN6JPU008876@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 13 Aug 2004 23:06:19 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/nut Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:06:19 -0000 krion 2004-08-13 23:06:19 UTC FreeBSD ports repository Modified files: misc/nut Makefile distinfo Log: Update to 10.1 Revision Changes Path 1.34 +3 -2 ports/misc/nut/Makefile 1.30 +2 -2 ports/misc/nut/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:06:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3B3B116A4CE; Fri, 13 Aug 2004 23:06:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 195CD43D3F; Fri, 13 Aug 2004 23:06:56 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DN6tYV008930; Fri, 13 Aug 2004 23:06:56 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DN6tA3008929; Fri, 13 Aug 2004 23:06:55 GMT (envelope-from rwatson) Message-Id: <200408132306.i7DN6tA3008929@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:06:55 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ex if_ex.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:06:56 -0000 rwatson 2004-08-13 23:06:55 UTC FreeBSD src repository Modified files: sys/dev/ex if_ex.c Log: Since if_ex doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Note: there are locking macros in if_exreg.h, but they appear to be unused. Revision Changes Path 1.53 +2 -1 src/sys/dev/ex/if_ex.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:08:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D910816A4DD; Fri, 13 Aug 2004 23:08:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B927043D46; Fri, 13 Aug 2004 23:08:08 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DN880b008985; Fri, 13 Aug 2004 23:08:08 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DN88jp008984; Fri, 13 Aug 2004 23:08:08 GMT (envelope-from rwatson) Message-Id: <200408132308.i7DN88jp008984@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:08:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fe if_fe.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:08:09 -0000 rwatson 2004-08-13 23:08:08 UTC FreeBSD src repository Modified files: sys/dev/fe if_fe.c Log: Since if_fe doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.86 +2 -1 src/sys/dev/fe/if_fe.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:09:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB03116A4CE; Fri, 13 Aug 2004 23:09:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B967E43D41; Fri, 13 Aug 2004 23:09:41 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DN9f6i009027; Fri, 13 Aug 2004 23:09:41 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DN9fJM009026; Fri, 13 Aug 2004 23:09:41 GMT (envelope-from rwatson) Message-Id: <200408132309.i7DN9fJM009026@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:09:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/firewire if_fwip.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:09:42 -0000 rwatson 2004-08-13 23:09:41 UTC FreeBSD src repository Modified files: sys/dev/firewire if_fwip.c Log: Since if_fwip doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Approved by: dfr Revision Changes Path 1.5 +2 -1 src/sys/dev/firewire/if_fwip.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:10:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0E0C16A4CF; Fri, 13 Aug 2004 23:10:08 +0000 (GMT) Received: from fillmore.dyndns.org (port-212-202-50-15.dynamic.qsc.de [212.202.50.15]) by mx1.FreeBSD.org (Postfix) with ESMTP id 850DA43D45; Fri, 13 Aug 2004 23:10:08 +0000 (GMT) (envelope-from eikemeier@fillmore-labs.com) Received: from dhcp-13.local ([172.16.0.13]) by fillmore.dyndns.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.41 (FreeBSD)) id 1BvlBV-000HS5-DR; Sat, 14 Aug 2004 01:10:07 +0200 Date: Sat, 14 Aug 2004 01:11:46 +0200 Content-Type: text/plain; charset=US-ASCII; format=flowed Mime-Version: 1.0 (Apple Message framework v482) To: Dan Langille From: Oliver Eikemeier In-Reply-To: <20040813141719.J90265@xeon.unixathome.org> Message-Id: <25BE300E-ED7E-11D8-87C4-00039312D914@fillmore-labs.com> Content-Transfer-Encoding: 7bit User-Agent: KMail/1.5.9 cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: format of ports/UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:10:08 -0000 Dan Langille wrote: > If changes to the format of /usr/ports/UPDATING are going to be made, > I'd > appreciate knowing in advance. FreshPorts now parses this file and > includes the results under the relevant port[s], if that can be > determined. > > We are doing pretty well so far. FreshPorts can handle the shell globs > which have been used, although it could not handle the (x11/kdebase3) > which occurred in the most recent commit. > > The perl script is available at: > > http://beta.freshports.org/process_updating.pl > > but you'll have to comment out some calls if you're going to get it to > run > outside the FreshPorts environment. Did anyone ever say `thank you' for your continued support of the FreeBSD project and your very useful tools? THANK YOU -Oliver From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:11:12 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9129616A4CE; Fri, 13 Aug 2004 23:11:12 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7049D43D3F; Fri, 13 Aug 2004 23:11:12 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNBCml009170; Fri, 13 Aug 2004 23:11:12 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNBC0L009169; Fri, 13 Aug 2004 23:11:12 GMT (envelope-from krion) Message-Id: <200408132311.i7DNBC0L009169@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 13 Aug 2004 23:11:12 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/ipsumdump Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:11:12 -0000 krion 2004-08-13 23:11:12 UTC FreeBSD ports repository Modified files: net/ipsumdump Makefile distinfo Log: Update to 1.39 o Support new-style ERF/DAG dumps. Revision Changes Path 1.11 +1 -1 ports/net/ipsumdump/Makefile 1.7 +2 -2 ports/net/ipsumdump/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:11:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC4E716A4CE; Fri, 13 Aug 2004 23:11:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABBE843D41; Fri, 13 Aug 2004 23:11:24 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNBOUD009204; Fri, 13 Aug 2004 23:11:24 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNBOjU009203; Fri, 13 Aug 2004 23:11:24 GMT (envelope-from rwatson) Message-Id: <200408132311.i7DNBOjU009203@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:11:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/gem if_gem.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:11:24 -0000 rwatson 2004-08-13 23:11:24 UTC FreeBSD src repository Modified files: sys/dev/gem if_gem.c Log: Since if_gem doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.27 +2 -1 src/sys/dev/gem/if_gem.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:12:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A838E16A4CE; Fri, 13 Aug 2004 23:12:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 882E843D39; Fri, 13 Aug 2004 23:12:25 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNCPqQ009252; Fri, 13 Aug 2004 23:12:25 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNCP0x009251; Fri, 13 Aug 2004 23:12:25 GMT (envelope-from pav) Message-Id: <200408132312.i7DNCP0x009251@repoman.freebsd.org> From: Pav Lucistnik Date: Fri, 13 Aug 2004 23:12:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/gtkhtml/files patch-components::http-editor::popup.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:12:25 -0000 pav 2004-08-13 23:12:25 UTC FreeBSD ports repository Added files: www/gtkhtml/files patch-components::http-editor::popup.c Log: - Fix build with gcc-3.4 Revision Changes Path 1.1 +10 -0 ports/www/gtkhtml/files/patch-components::http-editor::popup.c (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:14:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D24BA16A4CE; Fri, 13 Aug 2004 23:14:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1E1A43D49; Fri, 13 Aug 2004 23:14:50 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNEoaq009315; Fri, 13 Aug 2004 23:14:50 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNEoUb009314; Fri, 13 Aug 2004 23:14:50 GMT (envelope-from rwatson) Message-Id: <200408132314.i7DNEoUb009314@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:14:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/hme if_hme.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:14:51 -0000 rwatson 2004-08-13 23:14:50 UTC FreeBSD src repository Modified files: sys/dev/hme if_hme.c Log: Since if_hme doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.31 +2 -1 src/sys/dev/hme/if_hme.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:15:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1213316A4CF; Fri, 13 Aug 2004 23:15:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E26B043D54; Fri, 13 Aug 2004 23:15:44 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNFiGL009426; Fri, 13 Aug 2004 23:15:44 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNFicT009425; Fri, 13 Aug 2004 23:15:44 GMT (envelope-from rwatson) Message-Id: <200408132315.i7DNFicT009425@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:15:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ie if_ie.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:15:45 -0000 rwatson 2004-08-13 23:15:44 UTC FreeBSD src repository Modified files: sys/dev/ie if_ie.c Log: Since if_ie doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.100 +2 -1 src/sys/dev/ie/if_ie.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:16:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 96EC816A4CE; Fri, 13 Aug 2004 23:16:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 770C943D39; Fri, 13 Aug 2004 23:16:25 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNGP0R009480; Fri, 13 Aug 2004 23:16:25 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNGPIg009479; Fri, 13 Aug 2004 23:16:25 GMT (envelope-from krion) Message-Id: <200408132316.i7DNGPIg009479@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 13 Aug 2004 23:16:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/fprobe Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:16:25 -0000 krion 2004-08-13 23:16:25 UTC FreeBSD ports repository Modified files: net-mgmt/fprobe Makefile distinfo Log: Update to 1.0.5 Revision Changes Path 1.10 +5 -6 ports/net-mgmt/fprobe/Makefile 1.7 +2 -2 ports/net-mgmt/fprobe/distinfo From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:16:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6701C16A4CE; Fri, 13 Aug 2004 23:16:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 46BCD43D46; Fri, 13 Aug 2004 23:16:44 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNGiJg009514; Fri, 13 Aug 2004 23:16:44 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNGi7B009513; Fri, 13 Aug 2004 23:16:44 GMT (envelope-from rwatson) Message-Id: <200408132316.i7DNGi7B009513@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:16:44 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/iicbus if_ic.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:16:44 -0000 rwatson 2004-08-13 23:16:44 UTC FreeBSD src repository Modified files: sys/dev/iicbus if_ic.c Log: Since if_ic doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.21 +2 -1 src/sys/dev/iicbus/if_ic.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:18:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D7BC16A4CE; Fri, 13 Aug 2004 23:18:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DD2D43D3F; Fri, 13 Aug 2004 23:18:02 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNI1IL009561; Fri, 13 Aug 2004 23:18:01 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNI1P1009560; Fri, 13 Aug 2004 23:18:01 GMT (envelope-from rwatson) Message-Id: <200408132318.i7DNI1P1009560@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:18:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/lge if_lge.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:18:02 -0000 rwatson 2004-08-13 23:18:01 UTC FreeBSD src repository Modified files: sys/dev/lge if_lge.c Log: Since if_lge doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.34 +2 -1 src/sys/dev/lge/if_lge.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:20:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9A40B16A4CE; Fri, 13 Aug 2004 23:20:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 798BE43D2D; Fri, 13 Aug 2004 23:20:50 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNKoI3009705; Fri, 13 Aug 2004 23:20:50 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNKo3V009704; Fri, 13 Aug 2004 23:20:50 GMT (envelope-from rwatson) Message-Id: <200408132320.i7DNKo3V009704@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:20:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/lnc if_lnc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:20:50 -0000 rwatson 2004-08-13 23:20:50 UTC FreeBSD src repository Modified files: sys/dev/lnc if_lnc.c Log: Since if_lnc doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.110 +2 -1 src/sys/dev/lnc/if_lnc.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:21:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C3ACC16A4CE; Fri, 13 Aug 2004 23:21:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B64F643D2D; Fri, 13 Aug 2004 23:21:14 +0000 (GMT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNLEZk009795; Fri, 13 Aug 2004 23:21:14 GMT (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNLEJQ009794; Fri, 13 Aug 2004 23:21:14 GMT (envelope-from pav) Message-Id: <200408132321.i7DNLEJQ009794@repoman.freebsd.org> From: Pav Lucistnik Date: Fri, 13 Aug 2004 23:21:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/php-gtk Makefile distinfo pkg-message pkg-plist ports/x11-toolkits/php-gtk/files patch-build2::build2.mk patch-generator_generator.php php.ini-dist ports/x11-toolkits/php-gtk/scripts memlim.php X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:21:14 -0000 pav 2004-08-13 23:21:14 UTC FreeBSD ports repository Modified files: x11-toolkits/php-gtk Makefile distinfo pkg-plist Removed files: x11-toolkits/php-gtk pkg-message x11-toolkits/php-gtk/files patch-build2::build2.mk patch-generator_generator.php php.ini-dist x11-toolkits/php-gtk/scripts memlim.php Log: - Update to 1.0.1 PR: ports/70383 Submitted by: Alex Kiesel (maintainer) Revision Changes Path 1.19 +13 -23 ports/x11-toolkits/php-gtk/Makefile 1.4 +2 -2 ports/x11-toolkits/php-gtk/distinfo 1.2 +0 -11 ports/x11-toolkits/php-gtk/files/patch-build2::build2.mk (dead) 1.2 +0 -14 ports/x11-toolkits/php-gtk/files/patch-generator_generator.php (dead) 1.3 +0 -789 ports/x11-toolkits/php-gtk/files/php.ini-dist (dead) 1.4 +0 -7 ports/x11-toolkits/php-gtk/pkg-message (dead) 1.5 +0 -2 ports/x11-toolkits/php-gtk/pkg-plist 1.3 +0 -21 ports/x11-toolkits/php-gtk/scripts/memlim.php (dead) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:21:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFE6E16A4D0; Fri, 13 Aug 2004 23:21:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD35743D2D; Fri, 13 Aug 2004 23:21:21 +0000 (GMT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNLLjr009840; Fri, 13 Aug 2004 23:21:21 GMT (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNLLL2009839; Fri, 13 Aug 2004 23:21:21 GMT (envelope-from markus) Message-Id: <200408132321.i7DNLLL2009839@repoman.freebsd.org> From: Markus Brueffer Date: Fri, 13 Aug 2004 23:21:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/filelight/files patch-canvas.hpatch-filemap.h patch-scanmanager.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:21:22 -0000 markus 2004-08-13 23:21:21 UTC FreeBSD ports repository Added files: sysutils/filelight/files patch-canvas.h patch-filemap.h patch-scanmanager.h Log: Fix build with gcc 3.4 Reported by: pointyhat via kris Hans Lambermont Revision Changes Path 1.1 +11 -0 ports/sysutils/filelight/files/patch-canvas.h (new) 1.1 +11 -0 ports/sysutils/filelight/files/patch-filemap.h (new) 1.1 +11 -0 ports/sysutils/filelight/files/patch-scanmanager.h (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:22:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6DEE016A4CE; Fri, 13 Aug 2004 23:22:38 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D22643D45; Fri, 13 Aug 2004 23:22:38 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNMcCC009891; Fri, 13 Aug 2004 23:22:38 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNMcH8009890; Fri, 13 Aug 2004 23:22:38 GMT (envelope-from stefanf) Message-Id: <200408132322.i7DNMcH8009890@repoman.freebsd.org> From: Stefan Farfeleder Date: Fri, 13 Aug 2004 23:22:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/rpc clnt_vc.c svc_vc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:22:38 -0000 stefanf 2004-08-13 23:22:38 UTC FreeBSD src repository Modified files: lib/libc/rpc clnt_vc.c svc_vc.c Log: Avoid using void pointers in additive expressions. PR: 56653 (libc/rpc bits) Approved by: alfred Revision Changes Path 1.16 +1 -1 src/lib/libc/rpc/clnt_vc.c 1.23 +1 -1 src/lib/libc/rpc/svc_vc.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:22:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E22E16A4CE; Fri, 13 Aug 2004 23:22:53 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D60C43D2D; Fri, 13 Aug 2004 23:22:53 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNMr6n009920; Fri, 13 Aug 2004 23:22:53 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNMrcR009919; Fri, 13 Aug 2004 23:22:53 GMT (envelope-from rwatson) Message-Id: <200408132322.i7DNMrcR009919@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:22:53 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/nge if_nge.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:22:53 -0000 rwatson 2004-08-13 23:22:53 UTC FreeBSD src repository Modified files: sys/dev/nge if_nge.c Log: Since if_nge doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Note: this driver does declare and occasionally reference mutexes, but I believe not nearly enough to provide safety. Revision Changes Path 1.65 +2 -1 src/sys/dev/nge/if_nge.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:32:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0BBC316A4CE; Fri, 13 Aug 2004 23:32:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF9E643D1D; Fri, 13 Aug 2004 23:32:17 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNWH9v010187; Fri, 13 Aug 2004 23:32:17 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNWHFF010186; Fri, 13 Aug 2004 23:32:17 GMT (envelope-from rwatson) Message-Id: <200408132332.i7DNWHFF010186@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:32:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ppbus if_plip.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:32:18 -0000 rwatson 2004-08-13 23:32:17 UTC FreeBSD src repository Modified files: sys/dev/ppbus if_plip.c Log: Since if_plip doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.35 +2 -1 src/sys/dev/ppbus/if_plip.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:38:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 716E616A4CE; Fri, 13 Aug 2004 23:38:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F93343D49; Fri, 13 Aug 2004 23:38:44 +0000 (GMT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNciBl010451; Fri, 13 Aug 2004 23:38:44 GMT (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNciE9010450; Fri, 13 Aug 2004 23:38:44 GMT (envelope-from markus) Message-Id: <200408132338.i7DNciE9010450@repoman.freebsd.org> From: Markus Brueffer Date: Fri, 13 Aug 2004 23:38:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/fung-calc Makefileports/math/fung-calc/files patch-src-libfungcalc-fparser-fparser.cc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:38:44 -0000 markus 2004-08-13 23:38:44 UTC FreeBSD ports repository Modified files: math/fung-calc Makefile Added files: math/fung-calc/files patch-src-libfungcalc-fparser-fparser.cc Log: - Fix build with gcc 3.4 [1] - Fix build on amd64 Reported by: pointyhat via kris [1] Revision Changes Path 1.15 +1 -1 ports/math/fung-calc/Makefile 1.1 +29 -0 ports/math/fung-calc/files/patch-src-libfungcalc-fparser-fparser.cc (new) From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:39:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E14B516A4CE; Fri, 13 Aug 2004 23:39:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C016543D39; Fri, 13 Aug 2004 23:39:07 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNd7PV010489; Fri, 13 Aug 2004 23:39:07 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNd7Un010488; Fri, 13 Aug 2004 23:39:07 GMT (envelope-from rwatson) Message-Id: <200408132339.i7DNd7Un010488@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:39:07 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ray if_ray.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:39:08 -0000 rwatson 2004-08-13 23:39:07 UTC FreeBSD src repository Modified files: sys/dev/ray if_ray.c Log: Since if_ray doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.72 +2 -1 src/sys/dev/ray/if_ray.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:41:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B540316A4CE; Fri, 13 Aug 2004 23:41:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 938ED43D2F; Fri, 13 Aug 2004 23:41:00 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNf0CX010617; Fri, 13 Aug 2004 23:41:00 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNf0Qr010616; Fri, 13 Aug 2004 23:41:00 GMT (envelope-from rwatson) Message-Id: <200408132341.i7DNf0Qr010616@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:41:00 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sbni if_sbni.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:41:00 -0000 rwatson 2004-08-13 23:41:00 UTC FreeBSD src repository Modified files: sys/dev/sbni if_sbni.c Log: Since if_sbni doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.18 +2 -1 src/sys/dev/sbni/if_sbni.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:47:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CCD4216A4CE; Fri, 13 Aug 2004 23:47:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAF8543D45; Fri, 13 Aug 2004 23:47:01 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNl1eE010787; Fri, 13 Aug 2004 23:47:01 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNl1eT010786; Fri, 13 Aug 2004 23:47:01 GMT (envelope-from rwatson) Message-Id: <200408132347.i7DNl1eT010786@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:47:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/snc dp83932.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:47:02 -0000 rwatson 2004-08-13 23:47:01 UTC FreeBSD src repository Modified files: sys/dev/snc dp83932.c Log: Since if_snc doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.15 +1 -1 src/sys/dev/snc/dp83932.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:49:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1B76616A4CE; Fri, 13 Aug 2004 23:49:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDB5B43D2F; Fri, 13 Aug 2004 23:49:48 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNnmFd010843; Fri, 13 Aug 2004 23:49:48 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNnmMj010842; Fri, 13 Aug 2004 23:49:48 GMT (envelope-from rwatson) Message-Id: <200408132349.i7DNnmMj010842@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:49:48 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sr if_sr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:49:49 -0000 rwatson 2004-08-13 23:49:48 UTC FreeBSD src repository Modified files: sys/dev/sr if_sr.c Log: Since if_sr doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.63 +2 -1 src/sys/dev/sr/if_sr.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:52:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 808E416A4CE; Fri, 13 Aug 2004 23:52:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E58443D1D; Fri, 13 Aug 2004 23:52:34 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNqYhI010996; Fri, 13 Aug 2004 23:52:34 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNqYZo010995; Fri, 13 Aug 2004 23:52:34 GMT (envelope-from rwatson) Message-Id: <200408132352.i7DNqYZo010995@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:52:34 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/tx if_tx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:52:34 -0000 rwatson 2004-08-13 23:52:34 UTC FreeBSD src repository Modified files: sys/dev/tx if_tx.c Log: Since if_tx doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.86 +1 -1 src/sys/dev/tx/if_tx.c From owner-cvs-all@FreeBSD.ORG Fri Aug 13 23:53:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5D7C416A4CE; Fri, 13 Aug 2004 23:53:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CDD843D2F; Fri, 13 Aug 2004 23:53:36 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7DNra0b011046; Fri, 13 Aug 2004 23:53:36 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7DNrakG011045; Fri, 13 Aug 2004 23:53:36 GMT (envelope-from rwatson) Message-Id: <200408132353.i7DNrakG011045@repoman.freebsd.org> From: Robert Watson Date: Fri, 13 Aug 2004 23:53:36 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/txp if_txp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 13 Aug 2004 23:53:36 -0000 rwatson 2004-08-13 23:53:36 UTC FreeBSD src repository Modified files: sys/dev/txp if_txp.c Log: Since if_txp doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Note: mutexes are initialized in the softc for this driver, but the locking appears inadequate to allow Giant-free operation. Revision Changes Path 1.27 +2 -1 src/sys/dev/txp/if_txp.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 00:01:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D39FE16A4CE; Sat, 14 Aug 2004 00:01:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE6C343D1D; Sat, 14 Aug 2004 00:01:06 +0000 (GMT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E016U7011532; Sat, 14 Aug 2004 00:01:06 GMT (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E016Q7011531; Sat, 14 Aug 2004 00:01:06 GMT (envelope-from markus) Message-Id: <200408140001.i7E016Q7011531@repoman.freebsd.org> From: Markus Brueffer Date: Sat, 14 Aug 2004 00:01:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/kimagemapeditor Makefile ports/graphics/kimagemapeditor/files patch-kimagemapeditor.cpp patch-kimearea.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 00:01:07 -0000 markus 2004-08-14 00:01:06 UTC FreeBSD ports repository Modified files: graphics/kimagemapeditor Makefile Added files: graphics/kimagemapeditor/files patch-kimagemapeditor.cpp patch-kimearea.cpp Log: - Fix build with gcc 3.4 [1] - Fix build on amd64 Reported by: pointyhat via kris [1] Revision Changes Path 1.14 +1 -1 ports/graphics/kimagemapeditor/Makefile 1.1 +11 -0 ports/graphics/kimagemapeditor/files/patch-kimagemapeditor.cpp (new) 1.1 +11 -0 ports/graphics/kimagemapeditor/files/patch-kimearea.cpp (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 00:08:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E180716A4CE; Sat, 14 Aug 2004 00:08:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C166643D2F; Sat, 14 Aug 2004 00:08:31 +0000 (GMT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E08V54012088; Sat, 14 Aug 2004 00:08:31 GMT (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E08Vc1012087; Sat, 14 Aug 2004 00:08:31 GMT (envelope-from markus) Message-Id: <200408140008.i7E08Vc1012087@repoman.freebsd.org> From: Markus Brueffer Date: Sat, 14 Aug 2004 00:08:31 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 00:08:32 -0000 markus 2004-08-14 00:08:31 UTC FreeBSD ports repository Modified files: . modules Log: Fix typo: s/kimagemapeiditor/kimagemapeditor/ Revision Changes Path 1.10890 +1 -1 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Aug 14 00:12:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4874816A4CE; Sat, 14 Aug 2004 00:12:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27C8F43D48; Sat, 14 Aug 2004 00:12:43 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E0Ch8P012231; Sat, 14 Aug 2004 00:12:43 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E0Chm9012230; Sat, 14 Aug 2004 00:12:43 GMT (envelope-from rwatson) Message-Id: <200408140012.i7E0Chm9012230@repoman.freebsd.org> From: Robert Watson Date: Sat, 14 Aug 2004 00:12:43 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/vx if_vx.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 00:12:43 -0000 rwatson 2004-08-14 00:12:43 UTC FreeBSD src repository Modified files: sys/dev/vx if_vx.c Log: Since if_vx doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.51 +2 -1 src/sys/dev/vx/if_vx.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 00:15:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3F07716A4CE; Sat, 14 Aug 2004 00:15:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D5A843D2D; Sat, 14 Aug 2004 00:15:27 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E0FRRm012320; Sat, 14 Aug 2004 00:15:27 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E0FRZD012319; Sat, 14 Aug 2004 00:15:27 GMT (envelope-from rwatson) Message-Id: <200408140015.i7E0FRZD012319@repoman.freebsd.org> From: Robert Watson Date: Sat, 14 Aug 2004 00:15:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/xe if_xe.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 00:15:27 -0000 rwatson 2004-08-14 00:15:26 UTC FreeBSD src repository Modified files: sys/dev/xe if_xe.c Log: Since if_xe doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.52 +2 -1 src/sys/dev/xe/if_xe.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 00:17:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9927616A4CF; Sat, 14 Aug 2004 00:17:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 781E743D39; Sat, 14 Aug 2004 00:17:04 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E0H4Zq012419; Sat, 14 Aug 2004 00:17:04 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E0H4fC012418; Sat, 14 Aug 2004 00:17:04 GMT (envelope-from rwatson) Message-Id: <200408140017.i7E0H4fC012418@repoman.freebsd.org> From: Robert Watson Date: Sat, 14 Aug 2004 00:17:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ixgb if_ixgb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 00:17:05 -0000 rwatson 2004-08-14 00:17:04 UTC FreeBSD src repository Modified files: sys/dev/ixgb if_ixgb.c Log: Since if_ixgb doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.3 +2 -1 src/sys/dev/ixgb/if_ixgb.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 00:19:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5C09216A4CE; Sat, 14 Aug 2004 00:19:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ACC843D49; Sat, 14 Aug 2004 00:19:08 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E0J8E7012498; Sat, 14 Aug 2004 00:19:08 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E0J82C012497; Sat, 14 Aug 2004 00:19:08 GMT (envelope-from rwatson) Message-Id: <200408140019.i7E0J82C012497@repoman.freebsd.org> From: Robert Watson Date: Sat, 14 Aug 2004 00:19:08 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/contrib/dev/oltr if_oltr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 00:19:08 -0000 rwatson 2004-08-14 00:19:08 UTC FreeBSD src repository Modified files: sys/contrib/dev/oltr if_oltr.c Log: Since if_oltr doesn't contain locking or run with INTR_MPSAFE, mark the interface as IFF_NEEDSGIANT so if_start is run holding Giant. Revision Changes Path 1.35 +1 -1 src/sys/contrib/dev/oltr/if_oltr.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 00:19:30 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5EDBD16A4CE; Sat, 14 Aug 2004 00:19:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B25743D39; Sat, 14 Aug 2004 00:19:30 +0000 (GMT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E0JUgA012548; Sat, 14 Aug 2004 00:19:30 GMT (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E0JUMK012547; Sat, 14 Aug 2004 00:19:30 GMT (envelope-from markus) Message-Id: <200408140019.i7E0JUMK012547@repoman.freebsd.org> From: Markus Brueffer Date: Sat, 14 Aug 2004 00:19:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/deskutils/krefty Makefileports/deskutils/krefty/files patch-krefty_part.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 00:19:30 -0000 markus 2004-08-14 00:19:30 UTC FreeBSD ports repository Modified files: deskutils/krefty Makefile Added files: deskutils/krefty/files patch-krefty_part.cpp Log: - Fix build with gcc 3.4 [1] - Fix build on amd64 Reported by: pointyhat via kris [1] Revision Changes Path 1.7 +1 -1 ports/deskutils/krefty/Makefile 1.1 +10 -0 ports/deskutils/krefty/files/patch-krefty_part.cpp (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 00:33:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36B7716A4CE; Sat, 14 Aug 2004 00:33:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13C1943D1D; Sat, 14 Aug 2004 00:33:58 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E0XvWB012947; Sat, 14 Aug 2004 00:33:57 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E0Xv3V012945; Sat, 14 Aug 2004 00:33:57 GMT (envelope-from marcus) Message-Id: <200408140033.i7E0Xv3V012945@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 14 Aug 2004 00:33:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/ethereal Makefile distinfo pkg-plist ports/net/ethereal/files patch-configure X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 00:33:58 -0000 marcus 2004-08-14 00:33:57 UTC FreeBSD ports repository Modified files: net/ethereal Makefile distinfo pkg-plist net/ethereal/files patch-configure Log: Update to 0.10.6. The release notes can be found at http://www.ethereal.com/news/item_20040812_01.html. Approved by: billf (maintainer) Revision Changes Path 1.76 +3 -5 ports/net/ethereal/Makefile 1.45 +2 -2 ports/net/ethereal/distinfo 1.2 +8 -8 ports/net/ethereal/files/patch-configure 1.21 +3 -0 ports/net/ethereal/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 00:45:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7DA4C16A4CE; Sat, 14 Aug 2004 00:45:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5815643D41; Sat, 14 Aug 2004 00:45:45 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E0jj3m013307; Sat, 14 Aug 2004 00:45:45 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E0jjZm013306; Sat, 14 Aug 2004 00:45:45 GMT (envelope-from marcus) Message-Id: <200408140045.i7E0jjZm013306@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 14 Aug 2004 00:45:45 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gdl/files patch-symbol-browser-control_symbol-browser.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 00:45:45 -0000 marcus 2004-08-14 00:45:45 UTC FreeBSD ports repository Added files: x11-toolkits/gdl/files patch-symbol-browser-control_symbol-browser.c Log: Fix build with GCC 3.4.2. Reported by: pointyhat Revision Changes Path 1.1 +10 -0 ports/x11-toolkits/gdl/files/patch-symbol-browser-control_symbol-browser.c (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 01:26:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7A40F16A4CE; Sat, 14 Aug 2004 01:26:19 +0000 (GMT) Received: from bast.unixathome.org (bast.unixathome.org [66.11.174.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2138643D2F; Sat, 14 Aug 2004 01:26:19 +0000 (GMT) (envelope-from dan@langille.org) Received: from xeon (xeon.unixathome.org [192.168.0.18]) by bast.unixathome.org (Postfix) with ESMTP id 4B57D3D3D; Fri, 13 Aug 2004 21:26:13 -0400 (EDT) Date: Fri, 13 Aug 2004 21:26:13 -0400 (EDT) From: Dan Langille X-X-Sender: dan@xeon.unixathome.org To: Oliver Eikemeier In-Reply-To: <25BE300E-ED7E-11D8-87C4-00039312D914@fillmore-labs.com> Message-ID: <20040813212331.K90265@xeon.unixathome.org> References: <25BE300E-ED7E-11D8-87C4-00039312D914@fillmore-labs.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: format of ports/UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 01:26:19 -0000 On Sat, 14 Aug 2004, Oliver Eikemeier wrote: > Dan Langille wrote: > > > If changes to the format of /usr/ports/UPDATING are going to be made, > > I'd > > appreciate knowing in advance. FreshPorts now parses this file and > > includes the results under the relevant port[s], if that can be > > determined. > > > > We are doing pretty well so far. FreshPorts can handle the shell globs > > which have been used, although it could not handle the (x11/kdebase3) > > which occurred in the most recent commit. > > > > The perl script is available at: > > > > http://beta.freshports.org/process_updating.pl > > > > but you'll have to comment out some calls if you're going to get it to > > run > > outside the FreshPorts environment. > > Did anyone ever say `thank you' for your continued support of the > FreeBSD project and your very useful tools? Yes, I do get thanks. It shows up in many forms. From private messages to public acknowledgements. Not to mention donations of hardware and cash. These latter items have special significance in light of my extreme underemployment. Cheers -- Dan Langille - http://www.langille.org/ From owner-cvs-all@FreeBSD.ORG Sat Aug 14 02:48:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 14E7716A4CE; Sat, 14 Aug 2004 02:48:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EADC243D1F; Sat, 14 Aug 2004 02:48:13 +0000 (GMT) (envelope-from ambrisko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E2mD3u016132; Sat, 14 Aug 2004 02:48:13 GMT (envelope-from ambrisko@repoman.freebsd.org) Received: (from ambrisko@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E2mD8G016131; Sat, 14 Aug 2004 02:48:13 GMT (envelope-from ambrisko) Message-Id: <200408140248.i7E2mD8G016131@repoman.freebsd.org> From: Doug Ambrisko Date: Sat, 14 Aug 2004 02:48:13 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/amr amr_pci.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 02:48:14 -0000 ambrisko 2004-08-14 02:48:13 UTC FreeBSD src repository Modified files: sys/dev/amr amr_pci.c Log: Add new PCI device ID for PERC4/DI. Revision Changes Path 1.23 +3 -1 src/sys/dev/amr/amr_pci.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 03:23:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0C1B016A4CE; Sat, 14 Aug 2004 03:23:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E00D743D1D; Sat, 14 Aug 2004 03:23:24 +0000 (GMT) (envelope-from kan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E3NOTp017322; Sat, 14 Aug 2004 03:23:24 GMT (envelope-from kan@repoman.freebsd.org) Received: (from kan@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E3NOR2017321; Sat, 14 Aug 2004 03:23:24 GMT (envelope-from kan) Message-Id: <200408140323.i7E3NOR2017321@repoman.freebsd.org> From: Alexander Kabaev Date: Sat, 14 Aug 2004 03:23:24 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/gnu/lib Makefile src/gnu/lib/libgcov Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 03:23:25 -0000 kan 2004-08-14 03:23:24 UTC FreeBSD src repository Modified files: gnu/lib Makefile Added files: gnu/lib/libgcov Makefile Log: Add libgcov, a runtime support library for binaries compiled for basic block profiling. Revision Changes Path 1.40 +1 -1 src/gnu/lib/Makefile 1.1 +45 -0 src/gnu/lib/libgcov/Makefile (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 03:43:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8D39A16A4CE; Sat, 14 Aug 2004 03:43:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6EA4D43D4C; Sat, 14 Aug 2004 03:43:35 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E3hZ9T017871; Sat, 14 Aug 2004 03:43:35 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E3hZMM017870; Sat, 14 Aug 2004 03:43:35 GMT (envelope-from kientzle) Message-Id: <200408140343.i7E3hZMM017870@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 14 Aug 2004 03:43:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive archive_write.c configure.ac.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 03:43:35 -0000 kientzle 2004-08-14 03:43:35 UTC FreeBSD src repository Modified files: lib/libarchive archive_write.c configure.ac.in Log: We don't need , so don't bother including it. Revision Changes Path 1.12 +0 -1 src/lib/libarchive/archive_write.c 1.2 +1 -1 src/lib/libarchive/configure.ac.in From owner-cvs-all@FreeBSD.ORG Sat Aug 14 03:43:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AAF3D16A4CE; Sat, 14 Aug 2004 03:43:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FB0143D3F; Sat, 14 Aug 2004 03:43:49 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E3hnfF017906; Sat, 14 Aug 2004 03:43:49 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E3hndj017905; Sat, 14 Aug 2004 03:43:49 GMT (envelope-from rwatson) Message-Id: <200408140343.i7E3hndj017905@repoman.freebsd.org> From: Robert Watson Date: Sat, 14 Aug 2004 03:43:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern uipc_usrreq.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 03:43:49 -0000 rwatson 2004-08-14 03:43:49 UTC FreeBSD src repository Modified files: sys/kern uipc_usrreq.c Log: After completing a name lookup for a target UNIX domain socket to connect to, re-check that the local UNIX domain socket hasn't been closed while we slept, and if so, return EINVAL. This affects the system running both with and without Giant over the network stack, and recent ULE changes appear to cause it to trigger more frequently than previously under load. While here, improve catching of possibly closed UNIX domain sockets in one or two additional circumstances. I have a much larger set of related changes in Perforce, but they require more testing before they can be merged. One debugging printf is left in place to indicate when such a race takes place: this is typically triggered by a buggy application that simultaenously connect()'s and close()'s a UNIX domain socket file descriptor. I'll remove this at some point in the future, but am interested in seeing how frequently this is reported. In the case of Martin's reported problem, it appears to be a result of a non-thread safe syslog() implementation in the C library, which does not synchronize access to its logging file descriptor. Reported by: mbr Revision Changes Path 1.136 +18 -5 src/sys/kern/uipc_usrreq.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 03:45:45 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAF1616A4CE; Sat, 14 Aug 2004 03:45:45 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEFFB43D55; Sat, 14 Aug 2004 03:45:45 +0000 (GMT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E3jjBJ018055; Sat, 14 Aug 2004 03:45:45 GMT (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E3jjvc018054; Sat, 14 Aug 2004 03:45:45 GMT (envelope-from kientzle) Message-Id: <200408140345.i7E3jjvc018054@repoman.freebsd.org> From: Tim Kientzle Date: Sat, 14 Aug 2004 03:45:45 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libarchive Makefile archive_private.h archive_read_support_compression_compress.c archive_read_support_format_cpio.c archive_read_support_format_tar.c archive_string.c archive_string_sprintf.c archive_util.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 03:45:46 -0000 kientzle 2004-08-14 03:45:45 UTC FreeBSD src repository Modified files: lib/libarchive Makefile archive_private.h archive_read.c archive_read_support_compression_bzip2.c archive_read_support_compression_compress.c archive_read_support_compression_gzip.c archive_read_support_format_cpio.c archive_read_support_format_tar.c archive_string.c archive_string_sprintf.c archive_util.c Log: Eliminate reliance on non-portable by implementing a very simple errx() function. Improve behavior when bzlib/zlib are missing by detecting and issuing an error message on attempts to read gzip/bzip2 compressed archives. Revision Changes Path 1.20 +1 -1 src/lib/libarchive/Makefile 1.15 +2 -0 src/lib/libarchive/archive_private.h 1.12 +8 -7 src/lib/libarchive/archive_read.c 1.6 +32 -9 src/lib/libarchive/archive_read_support_compression_bzip2.c 1.2 +2 -4 src/lib/libarchive/archive_read_support_compression_compress.c 1.7 +34 -10 src/lib/libarchive/archive_read_support_compression_gzip.c 1.11 +0 -1 src/lib/libarchive/archive_read_support_format_cpio.c 1.26 +10 -3 src/lib/libarchive/archive_read_support_format_tar.c 1.5 +4 -2 src/lib/libarchive/archive_string.c 1.4 +0 -1 src/lib/libarchive/archive_string_sprintf.c 1.8 +11 -1 src/lib/libarchive/archive_util.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 04:30:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 178E516A4CE; Sat, 14 Aug 2004 04:30:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED68343D3F; Sat, 14 Aug 2004 04:30:27 +0000 (GMT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E4URYc019223; Sat, 14 Aug 2004 04:30:27 GMT (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E4URkg019222; Sat, 14 Aug 2004 04:30:27 GMT (envelope-from kensmith) Message-Id: <200408140430.i7E4URkg019222@repoman.freebsd.org> From: Ken Smith Date: Sat, 14 Aug 2004 04:30:27 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/share/sgml mirrors.xml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 04:30:28 -0000 kensmith 2004-08-14 04:30:27 UTC FreeBSD doc repository Modified files: share/sgml mirrors.xml Log: Remove cvsup4.nl - admin reports he wants to shut it down. Revision Changes Path 1.31 +0 -4 doc/share/sgml/mirrors.xml From owner-cvs-all@FreeBSD.ORG Sat Aug 14 04:48:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AD07A16A4CE; Sat, 14 Aug 2004 04:48:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DBC543D2F; Sat, 14 Aug 2004 04:48:26 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E4mQE7019750; Sat, 14 Aug 2004 04:48:26 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E4mQ0G019749; Sat, 14 Aug 2004 04:48:26 GMT (envelope-from marcus) Message-Id: <200408140448.i7E4mQ0G019749@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 14 Aug 2004 04:48:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/dbus Makefile distinfo pkg-plist ports/devel/dbus/files patch-configure ports/devel/py-dbus Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 04:48:26 -0000 marcus 2004-08-14 04:48:26 UTC FreeBSD ports repository Modified files: devel/dbus Makefile distinfo pkg-plist devel/dbus/files patch-configure devel/py-dbus Makefile Log: Update to 0.22. Revision Changes Path 1.5 +2 -2 ports/devel/dbus/Makefile 1.2 +2 -2 ports/devel/dbus/distinfo 1.3 +3 -24 ports/devel/dbus/files/patch-configure 1.2 +3 -0 ports/devel/dbus/pkg-plist 1.4 +3 -1 ports/devel/py-dbus/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 05:00:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A18B116A4D1; Sat, 14 Aug 2004 05:00:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E64C43D2D; Sat, 14 Aug 2004 05:00:38 +0000 (GMT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E50cAW020051; Sat, 14 Aug 2004 05:00:38 GMT (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E50cqV020050; Sat, 14 Aug 2004 05:00:38 GMT (envelope-from marcel) Message-Id: <200408140500.i7E50cqV020050@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 14 Aug 2004 05:00:38 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/ia64/ia64 unwind.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 05:00:41 -0000 marcel 2004-08-14 05:00:37 UTC FreeBSD src repository Modified files: sys/ia64/ia64 unwind.c Log: Allocate memory in the unwinder with M_NOWAIT. We may need to provide backtraces with locks held. Revision Changes Path 1.12 +1 -1 src/sys/ia64/ia64/unwind.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 05:02:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CBA1816A4CE; Sat, 14 Aug 2004 05:02:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C09C543D2F; Sat, 14 Aug 2004 05:02:24 +0000 (GMT) (envelope-from metal@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E52O53020215; Sat, 14 Aug 2004 05:02:24 GMT (envelope-from metal@repoman.freebsd.org) Received: (from metal@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E52Otf020214; Sat, 14 Aug 2004 05:02:24 GMT (envelope-from metal) Message-Id: <200408140502.i7E52Otf020214@repoman.freebsd.org> From: SUZUKI Koichi Date: Sat, 14 Aug 2004 05:02:24 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/ja_JP.eucJP/man/man1 cdcontrol.1 colldef.1 f77.1 gcc.1 gprof.1 gzip.1 host.1 ident.1 indent.1 od.1 tail.1 tcsh.1 vi.1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 05:02:25 -0000 metal 2004-08-14 05:02:24 UTC FreeBSD doc repository Modified files: ja_JP.eucJP/man/man1 cdcontrol.1 colldef.1 f77.1 gcc.1 gprof.1 gzip.1 host.1 ident.1 indent.1 od.1 tail.1 tcsh.1 vi.1 Log: Delete unnecessary ","s in Japanese sentence. Delete duplicate FILES section in od.1. Submitted by: Nobuyuki Koganemaru Approved by: kuriyama (mentor/implicitly) Revision Changes Path 1.29 +1 -1 doc/ja_JP.eucJP/man/man1/cdcontrol.1 1.14 +1 -1 doc/ja_JP.eucJP/man/man1/colldef.1 1.9 +2 -2 doc/ja_JP.eucJP/man/man1/f77.1 1.19 +1 -2 doc/ja_JP.eucJP/man/man1/gcc.1 1.16 +1 -1 doc/ja_JP.eucJP/man/man1/gprof.1 1.11 +1 -1 doc/ja_JP.eucJP/man/man1/gzip.1 1.16 +1 -1 doc/ja_JP.eucJP/man/man1/host.1 1.9 +2 -2 doc/ja_JP.eucJP/man/man1/ident.1 1.14 +1 -1 doc/ja_JP.eucJP/man/man1/indent.1 1.17 +0 -3 doc/ja_JP.eucJP/man/man1/od.1 1.15 +1 -1 doc/ja_JP.eucJP/man/man1/tail.1 1.26 +1 -1 doc/ja_JP.eucJP/man/man1/tcsh.1 1.17 +1 -1 doc/ja_JP.eucJP/man/man1/vi.1 From owner-cvs-all@FreeBSD.ORG Sat Aug 14 05:17:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AEE4816A4CE; Sat, 14 Aug 2004 05:17:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F8C043D45; Sat, 14 Aug 2004 05:17:02 +0000 (GMT) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E5H22Q020648; Sat, 14 Aug 2004 05:17:02 GMT (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E5H2sw020647; Sat, 14 Aug 2004 05:17:02 GMT (envelope-from perky) Message-Id: <200408140517.i7E5H2sw020647@repoman.freebsd.org> From: Hye-Shik Chang Date: Sat, 14 Aug 2004 05:17:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/py-gdchart/files patch-gdc_py.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 05:17:03 -0000 perky 2004-08-14 05:17:02 UTC FreeBSD ports repository Modified files: graphics/py-gdchart/files patch-gdc_py.c Log: Fix build for gcc 3.4. Spotted by: kris Revision Changes Path 1.3 +10 -1 ports/graphics/py-gdchart/files/patch-gdc_py.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 05:32:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2EA7516A4CE; Sat, 14 Aug 2004 05:32:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C11643D46; Sat, 14 Aug 2004 05:32:43 +0000 (GMT) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E5WgWq021045; Sat, 14 Aug 2004 05:32:42 GMT (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E5Wg2x021044; Sat, 14 Aug 2004 05:32:42 GMT (envelope-from perky) Message-Id: <200408140532.i7E5Wg2x021044@repoman.freebsd.org> From: Hye-Shik Chang Date: Sat, 14 Aug 2004 05:32:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/archivers/py-lzma/files patch-RangeCoderBit.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 05:32:43 -0000 perky 2004-08-14 05:32:42 UTC FreeBSD ports repository Added files: archivers/py-lzma/files patch-RangeCoderBit.h Log: Fix build for gcc 3.4. Spotted by: kris Revision Changes Path 1.1 +20 -0 ports/archivers/py-lzma/files/patch-RangeCoderBit.h (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 05:57:04 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 948B716A4CE; Sat, 14 Aug 2004 05:57:04 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88EEC43D48; Sat, 14 Aug 2004 05:57:04 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E5v2d7021788; Sat, 14 Aug 2004 05:57:02 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E5v2vO021787; Sat, 14 Aug 2004 05:57:02 GMT (envelope-from maho) Message-Id: <200408140557.i7E5v2vO021787@repoman.freebsd.org> From: Maho Nakata Date: Sat, 14 Aug 2004 05:57:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese Makefile ports/japanese/ipa-ttfonts Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist ports/japanese/ipa-ttfonts/files fonts.alias.ipa fonts.dir.ipa X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 05:57:04 -0000 maho 2004-08-14 05:57:02 UTC FreeBSD ports repository Modified files: japanese Makefile Added files: japanese/ipa-ttfonts Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist japanese/ipa-ttfonts/files fonts.alias.ipa fonts.dir.ipa Log: Add High quality Japanese font named IPA fonts, (Infomation-technology Promotion Agency) freely available but re-distribution is restricted. Revision Changes Path 1.543 +1 -0 ports/japanese/Makefile 1.1 +72 -0 ports/japanese/ipa-ttfonts/Makefile (new) 1.1 +2 -0 ports/japanese/ipa-ttfonts/distinfo (new) 1.1 +60 -0 ports/japanese/ipa-ttfonts/files/fonts.alias.ipa (new) 1.1 +151 -0 ports/japanese/ipa-ttfonts/files/fonts.dir.ipa (new) 1.1 +15 -0 ports/japanese/ipa-ttfonts/pkg-deinstall (new) 1.1 +5 -0 ports/japanese/ipa-ttfonts/pkg-descr (new) 1.1 +20 -0 ports/japanese/ipa-ttfonts/pkg-install (new) 1.1 +22 -0 ports/japanese/ipa-ttfonts/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 05:57:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 33D4716A4CE; Sat, 14 Aug 2004 05:57:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 141E543D1F; Sat, 14 Aug 2004 05:57:15 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E5vEcI021834; Sat, 14 Aug 2004 05:57:14 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E5vEoO021833; Sat, 14 Aug 2004 05:57:14 GMT (envelope-from maho) Message-Id: <200408140557.i7E5vEoO021833@repoman.freebsd.org> From: Maho Nakata Date: Sat, 14 Aug 2004 05:57:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 05:57:15 -0000 maho 2004-08-14 05:57:14 UTC FreeBSD ports repository Modified files: . modules Log: ja-ipa-ttfonts --> ports/japanese/ipa-ttfonts Revision Changes Path 1.10891 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Aug 14 06:01:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 20FA016A4CE; Sat, 14 Aug 2004 06:01:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0062943D48; Sat, 14 Aug 2004 06:01:43 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E61g79021982; Sat, 14 Aug 2004 06:01:42 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E61gNx021981; Sat, 14 Aug 2004 06:01:42 GMT (envelope-from marcus) Message-Id: <200408140601.i7E61gNx021981@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 14 Aug 2004 06:01:42 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/gnome/docs faq2.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 06:01:43 -0000 marcus 2004-08-14 06:01:42 UTC FreeBSD doc repository Modified files: en/gnome/docs faq2.sgml Log: * Be a little more clear that the Tinderbox packages are up-to-date * Remove a section about bad thread ports that is no longer true * Remove around "X" since it made the X appear lowercase Revision Changes Path 1.74 +5 -10 www/en/gnome/docs/faq2.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 14 06:03:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D55A816A4CE; Sat, 14 Aug 2004 06:03:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B53EB43D2F; Sat, 14 Aug 2004 06:03:44 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E63iIO022031; Sat, 14 Aug 2004 06:03:44 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E63iZ7022030; Sat, 14 Aug 2004 06:03:44 GMT (envelope-from maho) Message-Id: <200408140603.i7E63iZ7022030@repoman.freebsd.org> From: Maho Nakata Date: Sat, 14 Aug 2004 06:03:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports LEGAL X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 06:03:45 -0000 maho 2004-08-14 06:03:44 UTC FreeBSD ports repository Modified files: . LEGAL Log: Add ipa-ttfonts. Currently cannot distribute fonts itself. Revision Changes Path 1.358 +2 -1 ports/LEGAL From owner-cvs-all@FreeBSD.ORG Sat Aug 14 06:06:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 512BB16A4CE; Sat, 14 Aug 2004 06:06:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4567C43D31; Sat, 14 Aug 2004 06:06:22 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E66MJA022225; Sat, 14 Aug 2004 06:06:22 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E66Mrg022224; Sat, 14 Aug 2004 06:06:22 GMT (envelope-from krion) Message-Id: <200408140606.i7E66Mrg022224@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 06:06:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/finance/qhacc Makefile distinfo pkg-plist ports/finance/qhacc/files patch-Makefile.in patch-lib::plugins.h patch-lib::qhacc.cpp patch-lib::qhacc.h patch-lib::qhacctable.h patch-src::Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 06:06:22 -0000 krion 2004-08-14 06:06:22 UTC FreeBSD ports repository Modified files: finance/qhacc Makefile distinfo pkg-plist finance/qhacc/files patch-Makefile.in patch-lib::qhacc.cpp patch-plugins::mysql::Makefile.in patch-src::Makefile.in Removed files: finance/qhacc/files patch-lib::plugins.h patch-lib::qhacc.h patch-lib::qhacctable.h patch-ltmain.sh Log: Update to version 3.2 PR: ports/70408 Submitted by: Ports Fury Revision Changes Path 1.51 +4 -4 ports/finance/qhacc/Makefile 1.35 +2 -2 ports/finance/qhacc/distinfo 1.2 +4 -4 ports/finance/qhacc/files/patch-Makefile.in 1.2 +0 -10 ports/finance/qhacc/files/patch-lib::plugins.h (dead) 1.2 +11 -11 ports/finance/qhacc/files/patch-lib::qhacc.cpp 1.2 +0 -10 ports/finance/qhacc/files/patch-lib::qhacc.h (dead) 1.2 +0 -10 ports/finance/qhacc/files/patch-lib::qhacctable.h (dead) 1.3 +0 -33 ports/finance/qhacc/files/patch-ltmain.sh (dead) 1.2 +9 -11 ports/finance/qhacc/files/patch-plugins::mysql::Makefile.in 1.3 +8 -9 ports/finance/qhacc/files/patch-src::Makefile.in 1.14 +16 -16 ports/finance/qhacc/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 06:07:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26ACA16A4CF; Sat, 14 Aug 2004 06:07:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BFD243D2D; Sat, 14 Aug 2004 06:07:34 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E67YAw022307; Sat, 14 Aug 2004 06:07:34 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E67XS7022306; Sat, 14 Aug 2004 06:07:33 GMT (envelope-from krion) Message-Id: <200408140607.i7E67XS7022306@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 06:07:33 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/finance/khacc Makefile distinfo ports/finance/khacc/files patch-configure patch-khacc::Makefile.am patch-khacc::Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 06:07:34 -0000 krion 2004-08-14 06:07:33 UTC FreeBSD ports repository Modified files: finance/khacc Makefile distinfo Added files: finance/khacc/files patch-khacc::Makefile.am Removed files: finance/khacc/files patch-configure patch-khacc::Makefile.in Log: Update to version 3.2 PR: ports/70408 Submitted by: Ports Fury Revision Changes Path 1.15 +14 -7 ports/finance/khacc/Makefile 1.11 +2 -2 ports/finance/khacc/distinfo 1.3 +0 -19 ports/finance/khacc/files/patch-configure (dead) 1.1 +148 -0 ports/finance/khacc/files/patch-khacc::Makefile.am (new) 1.8 +0 -1496 ports/finance/khacc/files/patch-khacc::Makefile.in (dead) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 06:16:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DB8EF16A4CF; Sat, 14 Aug 2004 06:16:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DD7A43D5F; Sat, 14 Aug 2004 06:16:49 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E6GnXb022574; Sat, 14 Aug 2004 06:16:49 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E6GnBq022573; Sat, 14 Aug 2004 06:16:49 GMT (envelope-from krion) Message-Id: <200408140616.i7E6GnBq022573@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 06:16:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/news/newsstar Makefile ports/news/newsstar/files patch-newsstar.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 06:16:50 -0000 krion 2004-08-14 06:16:49 UTC FreeBSD ports repository Modified files: news/newsstar Makefile news/newsstar/files patch-newsstar.in Log: Change option WITH_SN to WITH_INN and remove RUN_DEPENDS. Add s-news to COMMENT. Fix autosearch paths to newsservers. Fix running overview program if using s-news. Fix path to sendmail. Bump portrevision. PR: ports/70437 Submitted by: maintainer Revision Changes Path 1.4 +6 -7 ports/news/newsstar/Makefile 1.2 +87 -1 ports/news/newsstar/files/patch-newsstar.in From owner-cvs-all@FreeBSD.ORG Sat Aug 14 06:29:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4B1FB16A4CE; Sat, 14 Aug 2004 06:29:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D0AE43D41; Sat, 14 Aug 2004 06:29:18 +0000 (GMT) (envelope-from schweikh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E6TI8w022852; Sat, 14 Aug 2004 06:29:18 GMT (envelope-from schweikh@repoman.freebsd.org) Received: (from schweikh@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E6TI6b022851; Sat, 14 Aug 2004 06:29:18 GMT (envelope-from schweikh) Message-Id: <200408140629.i7E6TI6b022851@repoman.freebsd.org> From: Jens Schweikhardt Date: Sat, 14 Aug 2004 06:29:18 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/games/fortune/datfiles fortunes2-o X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 06:29:18 -0000 schweikh 2004-08-14 06:29:18 UTC FreeBSD src repository Modified files: games/fortune/datfiles fortunes2-o Log: Correct grammo. Revision Changes Path 1.28 +1 -1 src/games/fortune/datfiles/fortunes2-o From owner-cvs-all@FreeBSD.ORG Sat Aug 14 06:50:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B75FF16A4CE; Sat, 14 Aug 2004 06:50:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9816843D1D; Sat, 14 Aug 2004 06:50:05 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E6o59k023368; Sat, 14 Aug 2004 06:50:05 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E6o5Ba023367; Sat, 14 Aug 2004 06:50:05 GMT (envelope-from krion) Message-Id: <200408140650.i7E6o5Ba023367@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 06:50:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/xxkb/files patch-resource.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 06:50:05 -0000 krion 2004-08-14 06:50:05 UTC FreeBSD ports repository Modified files: x11/xxkb/files patch-resource.c Log: Handle 'default' in switch more neatly. Submitted by: Andrey Slusar Revision Changes Path 1.2 +6 -4 ports/x11/xxkb/files/patch-resource.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 06:58:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EA8B216A4CE; Sat, 14 Aug 2004 06:58:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA36043D31; Sat, 14 Aug 2004 06:58:14 +0000 (GMT) (envelope-from lev@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E6wEFe023635; Sat, 14 Aug 2004 06:58:14 GMT (envelope-from lev@repoman.freebsd.org) Received: (from lev@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E6wETX023634; Sat, 14 Aug 2004 06:58:14 GMT (envelope-from lev) Message-Id: <200408140658.i7E6wETX023634@repoman.freebsd.org> From: "Lev A. Serebryakov" Date: Sat, 14 Aug 2004 06:58:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/msp430-binutils/files patch-ld::ld.1 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 06:58:15 -0000 lev 2004-08-14 06:58:14 UTC FreeBSD ports repository Removed files: devel/msp430-binutils/files patch-ld::ld.1 Log: Remove bad patch. It should be deleted in previous commit. Revision Changes Path 1.2 +0 -15 ports/devel/msp430-binutils/files/patch-ld::ld.1 (dead) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 07:08:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6E85016A4CE; Sat, 14 Aug 2004 07:08:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FBB843D1F; Sat, 14 Aug 2004 07:08:56 +0000 (GMT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E78uAW024019; Sat, 14 Aug 2004 07:08:56 GMT (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E78uNK024018; Sat, 14 Aug 2004 07:08:56 GMT (envelope-from thierry) Message-Id: <200408140708.i7E78uNK024018@repoman.freebsd.org> From: Thierry Thomas Date: Sat, 14 Aug 2004 07:08:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/spambnc Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 07:08:56 -0000 thierry 2004-08-14 07:08:56 UTC FreeBSD ports repository Modified files: mail/spambnc Makefile distinfo Log: Upgrade to 20040813. Revision Changes Path 1.46 +1 -1 ports/mail/spambnc/Makefile 1.41 +3 -3 ports/mail/spambnc/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 14 07:21:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 511E416A4CE; Sat, 14 Aug 2004 07:21:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32FDC43D2D; Sat, 14 Aug 2004 07:21:21 +0000 (GMT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E7LK0I024440; Sat, 14 Aug 2004 07:21:21 GMT (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E7LKEE024439; Sat, 14 Aug 2004 07:21:20 GMT (envelope-from julian) Message-Id: <200408140721.i7E7LKEE024439@repoman.freebsd.org> From: Julian Elischer Date: Sat, 14 Aug 2004 07:21:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_thread.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 07:21:21 -0000 julian 2004-08-14 07:21:20 UTC FreeBSD src repository Modified files: sys/kern kern_thread.c Log: Whitespace nit. Revision Changes Path 1.193 +1 -1 src/sys/kern/kern_thread.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 07:42:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3D5DE16A4CE; Sat, 14 Aug 2004 07:42:34 +0000 (GMT) Received: from ylpvm01.prodigy.net (ylpvm01-ext.prodigy.net [207.115.57.32]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA60643D31; Sat, 14 Aug 2004 07:42:33 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (adsl-67-115-74-195.dsl.lsan03.pacbell.net [67.115.74.195]) i7E7gQZn011899; Sat, 14 Aug 2004 03:42:31 -0400 Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 1D4E751373; Sat, 14 Aug 2004 00:42:24 -0700 (PDT) Date: Sat, 14 Aug 2004 00:42:24 -0700 From: Kris Kennaway To: Roman Bogorodskiy Message-ID: <20040814074223.GJ47343@xor.obsecurity.org> References: <200408130822.i7D8MwpC075567@repoman.freebsd.org> <20040813085837.GA4524@xor.obsecurity.org> <20040813152049.GA664@lame.novel.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="MzdA25v054BPvyZa" Content-Disposition: inline In-Reply-To: <20040813152049.GA664@lame.novel.ru> User-Agent: Mutt/1.4.2.1i cc: cvs-ports@FreeBSD.org cc: Kris Kennaway cc: ports-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: ports/devel/clanlib-devel Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 07:42:34 -0000 --MzdA25v054BPvyZa Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Aug 13, 2004 at 07:20:50PM +0400, Roman Bogorodskiy wrote: > Kris wrote: >=20 > > Note to maintainer: you are blocking my email because you claim it is > > spam. This is annoying :-) >=20 > It's not my fault but fault but mail.ru's one, I can't do anything with > it. The really annoying thing is that their "see this page for more details" links to a form you can fill out if you're not actually a spammer -- but it's only in russian. I need a way to contact you that doesn't rely on spamming public email lists. Kris --MzdA25v054BPvyZa Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBHcJeWry0BWjoQKURAhZOAJ46aSlvPjfHKOap7YGh5Jh85xzDoACgrMax zduyxpi/QZvialjSoEftQe0= =NRlv -----END PGP SIGNATURE----- --MzdA25v054BPvyZa-- From owner-cvs-all@FreeBSD.ORG Sat Aug 14 07:44:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A2DEA16A4CE; Sat, 14 Aug 2004 07:44:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8356943D4C; Sat, 14 Aug 2004 07:44:35 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E7iZ6j025066; Sat, 14 Aug 2004 07:44:35 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E7iZTS025065; Sat, 14 Aug 2004 07:44:35 GMT (envelope-from jkoshy) Message-Id: <200408140744.i7E7iZTS025065@repoman.freebsd.org> From: Joseph Koshy Date: Sat, 14 Aug 2004 07:44:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/xaos Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 07:44:35 -0000 jkoshy 2004-08-14 07:44:35 UTC FreeBSD ports repository Modified files: graphics/xaos Makefile Log: Unbreak on -CURRENT [with gcc 3.4.2]. Revision Changes Path 1.22 +5 -0 ports/graphics/xaos/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 07:45:44 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ED91216A4CE; Sat, 14 Aug 2004 07:45:44 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDD7E43D2F; Sat, 14 Aug 2004 07:45:44 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E7jiBb025167; Sat, 14 Aug 2004 07:45:44 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E7jis2025166; Sat, 14 Aug 2004 07:45:44 GMT (envelope-from kris) Message-Id: <200408140745.i7E7jis2025166@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 14 Aug 2004 07:45:44 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/gld Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 07:45:45 -0000 kris 2004-08-14 07:45:44 UTC FreeBSD ports repository Modified files: mail/gld Makefile distinfo Log: Update to gld-1.3. Submitted by: maintainer Revision Changes Path 1.2 +1 -1 ports/mail/gld/Makefile 1.2 +2 -2 ports/mail/gld/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 14 07:52:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 30BA216A4CE; Sat, 14 Aug 2004 07:52:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F60743D1F; Sat, 14 Aug 2004 07:52:48 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E7qlm5025370; Sat, 14 Aug 2004 07:52:47 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E7qlVk025369; Sat, 14 Aug 2004 07:52:47 GMT (envelope-from marcus) Message-Id: <200408140752.i7E7qlVk025369@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 14 Aug 2004 07:52:47 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/gnome-cups-manager Makefile pkg-plist ports/print/gnome-cups-manager/files patch-icons_Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 07:52:48 -0000 marcus 2004-08-14 07:52:47 UTC FreeBSD ports repository Modified files: print/gnome-cups-manager Makefile pkg-plist print/gnome-cups-manager/files patch-icons_Makefile.in Log: Fix a typo that caused two files to be installed in /. Revision Changes Path 1.9 +1 -0 ports/print/gnome-cups-manager/Makefile 1.3 +1 -1 ports/print/gnome-cups-manager/files/patch-icons_Makefile.in 1.5 +2 -0 ports/print/gnome-cups-manager/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 08:19:02 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DF58916A4CE; Sat, 14 Aug 2004 08:19:02 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5D6443D2F; Sat, 14 Aug 2004 08:19:02 +0000 (GMT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E8J2w5028083; Sat, 14 Aug 2004 08:19:02 GMT (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E8J2Et028082; Sat, 14 Aug 2004 08:19:02 GMT (envelope-from ijliao) Message-Id: <200408140819.i7E8J2Et028082@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sat, 14 Aug 2004 08:19:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/cppunit Makefile distinfo pkg-plist patch-doc::Makefile.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 08:19:03 -0000 ijliao 2004-08-14 08:19:02 UTC FreeBSD ports repository Modified files: devel/cppunit Makefile distinfo pkg-plist devel/cppunit/files patch-doc::Makefile.in Added files: devel/cppunit/files patch-config::ltmain.sh Log: upgrade to 1.10.2 PR: 68759 Approved by: maintainer Revision Changes Path 1.5 +23 -21 ports/devel/cppunit/Makefile 1.4 +2 -2 ports/devel/cppunit/distinfo 1.1 +15 -0 ports/devel/cppunit/files/patch-config::ltmain.sh (new) 1.2 +4 -13 ports/devel/cppunit/files/patch-doc::Makefile.in 1.3 +2 -451 ports/devel/cppunit/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 08:33:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 08B4816A4CE; Sat, 14 Aug 2004 08:33:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DED2343D39; Sat, 14 Aug 2004 08:33:49 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E8Xnn2028533; Sat, 14 Aug 2004 08:33:49 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E8XnCg028532; Sat, 14 Aug 2004 08:33:49 GMT (envelope-from phk) Message-Id: <200408140833.i7E8XnCg028532@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 14 Aug 2004 08:33:49 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_tc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 08:33:50 -0000 phk 2004-08-14 08:33:49 UTC FreeBSD src repository Modified files: sys/kern kern_tc.c Log: Add some KASSERTS. Revision Changes Path 1.162 +3 -0 src/sys/kern/kern_tc.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 08:36:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5FD3016A4CE; Sat, 14 Aug 2004 08:36:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F75243D2F; Sat, 14 Aug 2004 08:36:35 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E8aZIa028681; Sat, 14 Aug 2004 08:36:35 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E8aZSK028680; Sat, 14 Aug 2004 08:36:35 GMT (envelope-from phk) Message-Id: <200408140836.i7E8aZSK028680@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 14 Aug 2004 08:36:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/routed if.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 08:36:35 -0000 phk 2004-08-14 08:36:35 UTC FreeBSD src repository Modified files: sbin/routed if.c Log: Don't declare everything we find on a loopback interface for passive: Only the actual loopback address should be declared passive, other addresses are very likely to be desirable to announce. Check for IFF_LOOPBACK instead of IFF_PASSIVE to determine if we have an unknown interface type. Revision Changes Path 1.14 +9 -3 src/sbin/routed/if.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 08:38:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC0C716A4CF; Sat, 14 Aug 2004 08:38:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BFDB43D45; Sat, 14 Aug 2004 08:38:17 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E8cHCu028756; Sat, 14 Aug 2004 08:38:17 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E8cHHf028755; Sat, 14 Aug 2004 08:38:17 GMT (envelope-from phk) Message-Id: <200408140838.i7E8cHHf028755@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 14 Aug 2004 08:38:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/linux linux_stats.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 08:38:17 -0000 phk 2004-08-14 08:38:17 UTC FreeBSD src repository Modified files: sys/compat/linux linux_stats.c Log: Add XXX comment about findcdev() misuse. Revision Changes Path 1.61 +6 -0 src/sys/compat/linux/linux_stats.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 08:45:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7298E16A4CE; Sat, 14 Aug 2004 08:45:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6636943D4C; Sat, 14 Aug 2004 08:45:42 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E8jgT8029066; Sat, 14 Aug 2004 08:45:42 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E8jg0M029065; Sat, 14 Aug 2004 08:45:42 GMT (envelope-from maho) Message-Id: <200408140845.i7E8jg0M029065@repoman.freebsd.org> From: Maho Nakata Date: Sat, 14 Aug 2004 08:45:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/science Makefile ports/science/abinit Makefile distinfo pkg-descr pkg-plist ports/science/abinit/files makefile_macros X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 08:45:42 -0000 maho 2004-08-14 08:45:42 UTC FreeBSD ports repository Modified files: science Makefile Added files: science/abinit Makefile distinfo pkg-descr pkg-plist science/abinit/files makefile_macros Log: Add abinit, calculates total energy, charge density and electronic structure of systems. Revision Changes Path 1.46 +1 -0 ports/science/Makefile 1.1 +90 -0 ports/science/abinit/Makefile (new) 1.1 +2 -0 ports/science/abinit/distinfo (new) 1.1 +50 -0 ports/science/abinit/files/makefile_macros (new) 1.1 +7 -0 ports/science/abinit/pkg-descr (new) 1.1 +304 -0 ports/science/abinit/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 08:45:54 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2D96516A4CE; Sat, 14 Aug 2004 08:45:54 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EDA143D53; Sat, 14 Aug 2004 08:45:54 +0000 (GMT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E8jr6v029112; Sat, 14 Aug 2004 08:45:53 GMT (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E8jrv4029111; Sat, 14 Aug 2004 08:45:53 GMT (envelope-from maho) Message-Id: <200408140845.i7E8jrv4029111@repoman.freebsd.org> From: Maho Nakata Date: Sat, 14 Aug 2004 08:45:53 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 08:45:54 -0000 maho 2004-08-14 08:45:53 UTC FreeBSD ports repository Modified files: . modules Log: abinit --> ports/science/abinit Revision Changes Path 1.10892 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Aug 14 08:58:24 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2861A16A4CE; Sat, 14 Aug 2004 08:58:24 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0941643D5D; Sat, 14 Aug 2004 08:58:24 +0000 (GMT) (envelope-from markm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E8wNVe029463; Sat, 14 Aug 2004 08:58:23 GMT (envelope-from markm@repoman.freebsd.org) Received: (from markm@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E8wNjb029462; Sat, 14 Aug 2004 08:58:23 GMT (envelope-from markm) Message-Id: <200408140858.i7E8wNjb029462@repoman.freebsd.org> From: Mark Murray Date: Sat, 14 Aug 2004 08:58:23 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT exclude X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 08:58:24 -0000 markm 2004-08-14 08:58:23 UTC FreeBSD src repository Modified files: . exclude Log: Exclude openssl from RCS requirements. 0.9.5 stuff is being surgically attached. Revision Changes Path 1.115 +3 -0 CVSROOT/exclude From owner-cvs-all@FreeBSD.ORG Sat Aug 14 09:21:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B428816A4CE; Sat, 14 Aug 2004 09:21:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94FBA43D5E; Sat, 14 Aug 2004 09:21:00 +0000 (GMT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E9L09N030164; Sat, 14 Aug 2004 09:21:00 GMT (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E9L0tw030163; Sat, 14 Aug 2004 09:21:00 GMT (envelope-from bland) Message-Id: <200408140921.i7E9L0tw030163@repoman.freebsd.org> From: Alexander Nedotsukov Date: Sat, 14 Aug 2004 09:21:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc Makefile ports/textproc/libxml++26 Makefile distinfo pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 09:21:01 -0000 bland 2004-08-14 09:21:00 UTC FreeBSD ports repository Modified files: textproc Makefile textproc/libxml++26 Makefile distinfo pkg-plist Log: Add libxml++ 2.6.1 after repocopy from libxml++, XML API for C++. Revision Changes Path 1.741 +1 -0 ports/textproc/Makefile 1.31 +12 -10 ports/textproc/libxml++26/Makefile 1.21 +2 -2 ports/textproc/libxml++26/distinfo 1.18 +34 -34 ports/textproc/libxml++26/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 09:23:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF79816A4CE; Sat, 14 Aug 2004 09:23:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91E2443D2D; Sat, 14 Aug 2004 09:23:43 +0000 (GMT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E9NhNp030230; Sat, 14 Aug 2004 09:23:43 GMT (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E9NhaZ030229; Sat, 14 Aug 2004 09:23:43 GMT (envelope-from bland) Message-Id: <200408140923.i7E9NhaZ030229@repoman.freebsd.org> From: Alexander Nedotsukov Date: Sat, 14 Aug 2004 09:23:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 09:23:43 -0000 bland 2004-08-14 09:23:43 UTC FreeBSD ports repository Modified files: . modules Log: libxml++26 --> ports/textproc/libxml++26 Revision Changes Path 1.10893 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Aug 14 09:28:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 342BA16A4CE; Sat, 14 Aug 2004 09:28:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1530D43D45; Sat, 14 Aug 2004 09:28:52 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E9SpXX030378; Sat, 14 Aug 2004 09:28:51 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E9SpjX030377; Sat, 14 Aug 2004 09:28:51 GMT (envelope-from arved) Message-Id: <200408140928.i7E9SpjX030377@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 14 Aug 2004 09:28:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/steghide/files patch-AuSampleValues.cc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 09:28:52 -0000 arved 2004-08-14 09:28:51 UTC FreeBSD ports repository Added files: security/steghide/files patch-AuSampleValues.cc Log: Fix build with gcc 3.4 Revision Changes Path 1.1 +28 -0 ports/security/steghide/files/patch-AuSampleValues.cc (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 09:35:33 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1A04816A4CF; Sat, 14 Aug 2004 09:35:33 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEC2143D41; Sat, 14 Aug 2004 09:35:32 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E9ZWAo030616; Sat, 14 Aug 2004 09:35:32 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E9ZWwm030615; Sat, 14 Aug 2004 09:35:32 GMT (envelope-from arved) Message-Id: <200408140935.i7E9ZWwm030615@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 14 Aug 2004 09:35:32 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/expect Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 09:35:33 -0000 arved 2004-08-14 09:35:32 UTC FreeBSD ports repository Modified files: lang/expect Makefile Log: Touch configure, because Makefile.in is patched after configure (patch-ac vs patch-aa), which confuses configure Reported by: pointyhat Revision Changes Path 1.65 +3 -0 ports/lang/expect/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 09:48:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1BA816A4CE; Sat, 14 Aug 2004 09:48:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A344343D48; Sat, 14 Aug 2004 09:48:27 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E9mRbo030972; Sat, 14 Aug 2004 09:48:27 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E9mRnQ030971; Sat, 14 Aug 2004 09:48:27 GMT (envelope-from arved) Message-Id: <200408140948.i7E9mRnQ030971@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 14 Aug 2004 09:48:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/IglooFTP Makefile ports/ftp/IglooFTP/files patch-ftp_tree.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 09:48:27 -0000 arved 2004-08-14 09:48:27 UTC FreeBSD ports repository Modified files: ftp/IglooFTP Makefile Added files: ftp/IglooFTP/files patch-ftp_tree.h Log: Fix build with gcc 3.4 Reported by: pointyhat Mark IGNORE on amd64, crahes on startup. Probably broken on other 64bit archs too, because of a lot of LP64-warnings. Revision Changes Path 1.18 +7 -1 ports/ftp/IglooFTP/Makefile 1.1 +15 -0 ports/ftp/IglooFTP/files/patch-ftp_tree.h (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 09:56:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F5C416A4CE; Sat, 14 Aug 2004 09:56:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 712C943D46; Sat, 14 Aug 2004 09:56:17 +0000 (GMT) (envelope-from le@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7E9uHFr031229; Sat, 14 Aug 2004 09:56:17 GMT (envelope-from le@repoman.freebsd.org) Received: (from le@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7E9uHF9031228; Sat, 14 Aug 2004 09:56:17 GMT (envelope-from le) Message-Id: <200408140956.i7E9uHF9031228@repoman.freebsd.org> From: Lukas Ertl Date: Sat, 14 Aug 2004 09:56:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/geom/vinum geom_vinum_state.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 09:56:17 -0000 le 2004-08-14 09:56:17 UTC FreeBSD src repository Modified files: sys/geom/vinum geom_vinum_state.c Log: Make informational output look less like an accident. Revision Changes Path 1.2 +2 -2 src/sys/geom/vinum/geom_vinum_state.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 10:13:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 52CD216A4CE; Sat, 14 Aug 2004 10:13:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 306E543D1F; Sat, 14 Aug 2004 10:13:16 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EADGBR031675; Sat, 14 Aug 2004 10:13:16 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EADGmS031674; Sat, 14 Aug 2004 10:13:16 GMT (envelope-from arved) Message-Id: <200408141013.i7EADGmS031674@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 14 Aug 2004 10:13:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/chasen-base/files patch-dartsdic.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 10:13:16 -0000 arved 2004-08-14 10:13:16 UTC FreeBSD ports repository Added files: japanese/chasen-base/files patch-dartsdic.cpp Log: Fix build with gcc 3.4 Obtained from: chasen cvs Revision Changes Path 1.1 +11 -0 ports/japanese/chasen-base/files/patch-dartsdic.cpp (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 10:31:51 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1599F16A4CE; Sat, 14 Aug 2004 10:31:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC5EA43D46; Sat, 14 Aug 2004 10:31:50 +0000 (GMT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EAVoOp032179; Sat, 14 Aug 2004 10:31:50 GMT (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EAVoTK032178; Sat, 14 Aug 2004 10:31:50 GMT (envelope-from arved) Message-Id: <200408141031.i7EAVoTK032178@repoman.freebsd.org> From: Tilman Linneweh Date: Sat, 14 Aug 2004 10:31:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/white_dune/files patch-src::Array.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 10:31:51 -0000 arved 2004-08-14 10:31:50 UTC FreeBSD ports repository Added files: graphics/white_dune/files patch-src::Array.h Log: Fix build with gcc 3.4 Revision Changes Path 1.1 +11 -0 ports/graphics/white_dune/files/patch-src::Array.h (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 10:45:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66BED16A4CE; Sat, 14 Aug 2004 10:45:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4784A43D39; Sat, 14 Aug 2004 10:45:16 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EAjGRb032574; Sat, 14 Aug 2004 10:45:16 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EAjGiC032573; Sat, 14 Aug 2004 10:45:16 GMT (envelope-from krion) Message-Id: <200408141045.i7EAjGiC032573@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 10:45:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/xxkb/files patch-resource.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 10:45:16 -0000 krion 2004-08-14 10:45:16 UTC FreeBSD ports repository Modified files: x11/xxkb/files patch-resource.c Log: Restore break. Submitted by: Andrey Slusar Revision Changes Path 1.3 +5 -6 ports/x11/xxkb/files/patch-resource.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 10:52:25 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 70DE316A4CE; Sat, 14 Aug 2004 10:52:25 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5330543D2D; Sat, 14 Aug 2004 10:52:25 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EAqP75032757; Sat, 14 Aug 2004 10:52:25 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EAqPGC032756; Sat, 14 Aug 2004 10:52:25 GMT (envelope-from ceri) Message-Id: <200408141052.i7EAqPGC032756@repoman.freebsd.org> From: Ceri Davies Date: Sat, 14 Aug 2004 10:52:25 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/mac chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 10:52:25 -0000 ceri 2004-08-14 10:52:25 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/mac chapter.sgml Log: Rename a section id that conflicts with ongoing glossary work: id attributes in glossterm elements conflict with section id attributes, and therefore all id attributes in the glossary are being renamed to, for example, acpi-glossary. Revision Changes Path 1.16 +1 -1 doc/en_US.ISO8859-1/books/handbook/mac/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 14 11:49:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3577D16A4CE; Sat, 14 Aug 2004 11:49:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 184AA43D1D; Sat, 14 Aug 2004 11:49:52 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EBnpWZ034191; Sat, 14 Aug 2004 11:49:51 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EBnpCp034190; Sat, 14 Aug 2004 11:49:51 GMT (envelope-from krion) Message-Id: <200408141149.i7EBnpCp034190@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 11:49:51 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/dns/dnsmasq Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 11:49:52 -0000 krion 2004-08-14 11:49:51 UTC FreeBSD ports repository Modified files: dns/dnsmasq Makefile distinfo Log: Update to 2.13 PR: ports/70448 Submitted by: maintainer Revision Changes Path 1.15 +2 -2 ports/dns/dnsmasq/Makefile 1.13 +2 -2 ports/dns/dnsmasq/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 14 12:20:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2372316A4CE; Sat, 14 Aug 2004 12:20:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06AFE43D55; Sat, 14 Aug 2004 12:20:07 +0000 (GMT) (envelope-from demon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ECK6Qg034949; Sat, 14 Aug 2004 12:20:06 GMT (envelope-from demon@repoman.freebsd.org) Received: (from demon@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ECK6Xf034948; Sat, 14 Aug 2004 12:20:06 GMT (envelope-from demon) Message-Id: <200408141220.i7ECK6Xf034948@repoman.freebsd.org> From: Dmitry Sivachenko Date: Sat, 14 Aug 2004 12:20:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/p5-CGI.pm Makefile distinfo X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 12:20:07 -0000 demon 2004-08-14 12:20:06 UTC FreeBSD ports repository Modified files: www/p5-CGI.pm Makefile distinfo Log: Update to version 3.05. This is the version shipped with perl 5.8.5. Revision Changes Path 1.12 +1 -1 ports/www/p5-CGI.pm/Makefile 1.10 +2 -2 ports/www/p5-CGI.pm/distinfo From owner-cvs-all@FreeBSD.ORG Sat Aug 14 12:37:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4E39716A4CE; Sat, 14 Aug 2004 12:37:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F59443D2F; Sat, 14 Aug 2004 12:37:07 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ECb7Tt035410; Sat, 14 Aug 2004 12:37:07 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ECb7ih035409; Sat, 14 Aug 2004 12:37:07 GMT (envelope-from skv) Message-Id: <200408141237.i7ECb7ih035409@repoman.freebsd.org> From: Sergey Skvortsov Date: Sat, 14 Aug 2004 12:37:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/p5-Net-ext Makefile distinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 12:37:07 -0000 skv 2004-08-14 12:37:07 UTC FreeBSD ports repository Modified files: net/p5-Net-ext Makefile distinfo pkg-descr Log: Update to 1.011, assign MAINTAINER to perl@FreeBSD.org Revision Changes Path 1.8 +4 -9 ports/net/p5-Net-ext/Makefile 1.4 +2 -2 ports/net/p5-Net-ext/distinfo 1.2 +1 -2 ports/net/p5-Net-ext/pkg-descr From owner-cvs-all@FreeBSD.ORG Sat Aug 14 13:02:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0674C16A4CE; Sat, 14 Aug 2004 13:02:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD2E843D49; Sat, 14 Aug 2004 13:02:20 +0000 (GMT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ED2KdK039503; Sat, 14 Aug 2004 13:02:20 GMT (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ED2KBb039502; Sat, 14 Aug 2004 13:02:20 GMT (envelope-from skv) Message-Id: <200408141302.i7ED2KBb039502@repoman.freebsd.org> From: Sergey Skvortsov Date: Sat, 14 Aug 2004 13:02:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/p5-Apache-Peek Makefile pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 13:02:21 -0000 skv 2004-08-14 13:02:18 UTC FreeBSD ports repository Modified files: www/p5-Apache-Peek Makefile pkg-descr Log: * unbreak build * add dependency on Devel::Peek if perl < 5.6 * take maintainership Revision Changes Path 1.10 +13 -3 ports/www/p5-Apache-Peek/Makefile 1.3 +8 -4 ports/www/p5-Apache-Peek/pkg-descr From owner-cvs-all@FreeBSD.ORG Sat Aug 14 13:21:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 36CBC16A4CE; Sat, 14 Aug 2004 13:21:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1872443D1F; Sat, 14 Aug 2004 13:21:01 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EDL0OB039988; Sat, 14 Aug 2004 13:21:00 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EDL0sZ039987; Sat, 14 Aug 2004 13:21:00 GMT (envelope-from ceri) Message-Id: <200408141321.i7EDL0sZ039987@repoman.freebsd.org> From: Ceri Davies Date: Sat, 14 Aug 2004 13:21:00 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD 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.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 13:21:01 -0000 ceri 2004-08-14 13:21:00 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml Log: KAME is not an acronym. Revision Changes Path 1.340 +1 -1 doc/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 14 13:27:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4005216A4CE; Sat, 14 Aug 2004 13:27:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21E9443D2D; Sat, 14 Aug 2004 13:27:03 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EDR3I0040128; Sat, 14 Aug 2004 13:27:03 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EDR3aj040127; Sat, 14 Aug 2004 13:27:03 GMT (envelope-from ceri) Message-Id: <200408141327.i7EDR3aj040127@repoman.freebsd.org> From: Ceri Davies Date: Sat, 14 Aug 2004 13:27:03 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/mac chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 13:27:03 -0000 ceri 2004-08-14 13:27:03 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/mac chapter.sgml Log: "ID" isn't an acronym. Revision Changes Path 1.17 +1 -1 doc/en_US.ISO8859-1/books/handbook/mac/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 14 13:38:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 39AFB16A4CE; Sat, 14 Aug 2004 13:38:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AE9E43D5E; Sat, 14 Aug 2004 13:38:36 +0000 (GMT) (envelope-from markm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EDcZNI040443; Sat, 14 Aug 2004 13:38:35 GMT (envelope-from markm@repoman.freebsd.org) Received: (from markm@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EDcZTE040442; Sat, 14 Aug 2004 13:38:35 GMT (envelope-from markm) Message-Id: <200408141338.i7EDcZTE040442@repoman.freebsd.org> From: Mark Murray Date: Sat, 14 Aug 2004 13:38:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/crypto/openssl/crypto/engine eng_all.ceng_padlock.c src/secure/lib/libcrypto Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 13:38:36 -0000 markm 2004-08-14 13:38:35 UTC FreeBSD src repository Modified files: crypto/openssl/crypto/engine eng_all.c eng_padlock.c secure/lib/libcrypto Makefile Log: Add support for C3 Nehemiah ACE ("Padlock") AES crypto. This comes from OpenSSL 0.9.5 (yet to be released), and is pretty complete. Revision Changes Path 1.2 +9 -6 src/crypto/openssl/crypto/engine/eng_all.c 1.2 +1 -1 src/crypto/openssl/crypto/engine/eng_padlock.c 1.69 +1 -1 src/secure/lib/libcrypto/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 13:59:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D408816A4CE; Sat, 14 Aug 2004 13:59:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B78E543D2F; Sat, 14 Aug 2004 13:59:08 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EDx8DD040944; Sat, 14 Aug 2004 13:59:08 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EDx8xI040943; Sat, 14 Aug 2004 13:59:08 GMT (envelope-from ceri) Message-Id: <200408141359.i7EDx8xI040943@repoman.freebsd.org> From: Ceri Davies Date: Sat, 14 Aug 2004 13:59:08 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/share/sgml trademarks.ent X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 13:59:09 -0000 ceri 2004-08-14 13:59:08 UTC FreeBSD doc repository Modified files: share/sgml trademarks.ent Log: Add some trademarks that will be used in the upcoming glossary commit. Revision Changes Path 1.21 +3 -1 doc/share/sgml/trademarks.ent From owner-cvs-all@FreeBSD.ORG Sat Aug 14 14:21:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6D4416A4CE; Sat, 14 Aug 2004 14:21:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAFFD43D31; Sat, 14 Aug 2004 14:21:09 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EEL9fs041564; Sat, 14 Aug 2004 14:21:09 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EEL9gq041563; Sat, 14 Aug 2004 14:21:09 GMT (envelope-from phk) Message-Id: <200408141421.i7EEL9gq041563@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 14 Aug 2004 14:21:09 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libalias alias.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 14:21:09 -0000 phk 2004-08-14 14:21:09 UTC FreeBSD src repository Modified files: lib/libalias alias.c Log: Fix outgoing ICMP on global instance. Revision Changes Path 1.49 +5 -5 src/lib/libalias/alias.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 14:51:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4740A16A4CE; Sat, 14 Aug 2004 14:51:11 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AD0243D31; Sat, 14 Aug 2004 14:51:11 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EEpBus042364; Sat, 14 Aug 2004 14:51:11 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EEpB8j042363; Sat, 14 Aug 2004 14:51:11 GMT (envelope-from krion) Message-Id: <200408141451.i7EEpB8j042363@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 14:51:11 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/crossgo32/files patch-functions.def X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 14:51:11 -0000 krion 2004-08-14 14:51:11 UTC FreeBSD ports repository Modified files: devel/crossgo32/files patch-functions.def Log: Fix build with gcc 3.4 PR: ports/70455 Submitted by: Andrey Slusar Revision Changes Path 1.2 +4 -4 ports/devel/crossgo32/files/patch-functions.def From owner-cvs-all@FreeBSD.ORG Sat Aug 14 14:55:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6C4916A4CF; Sat, 14 Aug 2004 14:55:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C844243D39; Sat, 14 Aug 2004 14:55:27 +0000 (GMT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EEtRIw042489; Sat, 14 Aug 2004 14:55:27 GMT (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EEtRDP042488; Sat, 14 Aug 2004 14:55:27 GMT (envelope-from jkoshy) Message-Id: <200408141455.i7EEtRDP042488@repoman.freebsd.org> From: Joseph Koshy Date: Sat, 14 Aug 2004 14:55:27 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/ocaml-ocamlgraph Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 14:55:28 -0000 jkoshy 2004-08-14 14:55:27 UTC FreeBSD ports repository Modified files: math/ocaml-ocamlgraph Makefile distinfo pkg-descr pkg-plist Log: Upgrade to v0.81. Unbreak on -CURRENT. Add real content to pkg-descr [*blush*]. Revision Changes Path 1.2 +1 -1 ports/math/ocaml-ocamlgraph/Makefile 1.2 +2 -2 ports/math/ocaml-ocamlgraph/distinfo 1.2 +5 -1 ports/math/ocaml-ocamlgraph/pkg-descr 1.2 +66 -0 ports/math/ocaml-ocamlgraph/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 15:19:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F0D216A4CE; Sat, 14 Aug 2004 15:19:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0815D43D53; Sat, 14 Aug 2004 15:19:06 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EFJ5sx043118; Sat, 14 Aug 2004 15:19:05 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EFJ5dW043117; Sat, 14 Aug 2004 15:19:05 GMT (envelope-from ceri) Message-Id: <200408141519.i7EFJ5dW043117@repoman.freebsd.org> From: Ceri Davies Date: Sat, 14 Aug 2004 15:19:05 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/share/sgml/glossary freebsd-glossary.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 15:19:06 -0000 ceri 2004-08-14 15:19:05 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/share/sgml/glossary freebsd-glossary.sgml Log: o Add an example to the top of this file to help out anyone trying to add new content. o Add a glossary entry for every acronym present in the Handbook. [1] Except for "US", which I believe is self-explanatory. o Add additional glossterms for each unexpanded acronym, linking to the expanded term. Many thanks to Warren for this. [1]: PR: docs/69646 Submitted by: Warren Block Revision Changes Path 1.15 +1655 -137 doc/en_US.ISO8859-1/share/sgml/glossary/freebsd-glossary.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 14 15:21:38 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C042516A4CE; Sat, 14 Aug 2004 15:21:38 +0000 (GMT) Received: from shrike.submonkey.net (cpc2-cdif3-6-0-cust204.cdif.cable.ntl.com [81.103.67.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7777843D1F; Sat, 14 Aug 2004 15:21:38 +0000 (GMT) (envelope-from setantae@submonkey.net) Received: from setantae by shrike.submonkey.net with local (Exim 4.41 (FreeBSD)) id 1Bw0Lh-000JJz-QJ; Sat, 14 Aug 2004 16:21:37 +0100 Date: Sat, 14 Aug 2004 16:21:37 +0100 From: Ceri Davies To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040814152137.GR87690@submonkey.net> Mail-Followup-To: Ceri Davies , doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org References: <200408141519.i7EFJ5dW043117@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Z2IdzX9mnvzeYuwT" Content-Disposition: inline In-Reply-To: <200408141519.i7EFJ5dW043117@repoman.freebsd.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.6i Sender: Ceri Davies Subject: Re: cvs commit: doc/en_US.ISO8859-1/share/sgml/glossary freebsd-glossary.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 15:21:38 -0000 --Z2IdzX9mnvzeYuwT Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Aug 14, 2004 at 03:19:05PM +0000, Ceri Davies wrote: > ceri 2004-08-14 15:19:05 UTC >=20 > FreeBSD doc repository >=20 > Modified files: > en_US.ISO8859-1/share/sgml/glossary freebsd-glossary.sgml=20 > Log: > o Add an example to the top of this file to help out anyone trying to > add new content. > =20 > o Add a glossary entry for every acronym present in the Handbook. [1] > Except for "US", which I believe is self-explanatory. > =20 > o Add additional glossterms for each unexpanded acronym, linking to > the expanded term. The vast majority of the terms need the glossdef elements filling in - I was told that it was preferable for me to commit this in this state over waiting for me to fill them all in; if everybody takes a letter =66rom their surname and fills those ones in then we'll have this populated in no time. Ceri --=20 It is not tinfoil, it is my new skin. I am a robot. --Z2IdzX9mnvzeYuwT Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBHi4BocfcwTS3JF8RAqrTAKCzmbrEJTwHbnSZfeJ40xl7xRs+HgCgraod 5zCCYjetpzRXOUFY6TaRRqE= =2+50 -----END PGP SIGNATURE----- --Z2IdzX9mnvzeYuwT-- From owner-cvs-all@FreeBSD.ORG Sat Aug 14 15:24:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 679C416A4CE; Sat, 14 Aug 2004 15:24:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B7B043D3F; Sat, 14 Aug 2004 15:24:20 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EFOKSY043303; Sat, 14 Aug 2004 15:24:20 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EFOKTa043302; Sat, 14 Aug 2004 15:24:20 GMT (envelope-from krion) Message-Id: <200408141524.i7EFOKTa043302@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 15:24:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/fftw3 pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 15:24:20 -0000 krion 2004-08-14 15:24:20 UTC FreeBSD ports repository Modified files: math/fftw3 pkg-plist Log: Add missing file to plist. Revision Changes Path 1.8 +1 -0 ports/math/fftw3/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 15:32:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B5BEE16A4CE; Sat, 14 Aug 2004 15:32:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9443F43D1D; Sat, 14 Aug 2004 15:32:20 +0000 (GMT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EFWKED043670; Sat, 14 Aug 2004 15:32:20 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EFWKAT043669; Sat, 14 Aug 2004 15:32:20 GMT (envelope-from dwmalone) Message-Id: <200408141532.i7EFWKAT043669@repoman.freebsd.org> From: David Malone Date: Sat, 14 Aug 2004 15:32:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES options src/sys/modules/ip_mroute_mod Makefile src/sys/netinet ip_id.c ip_input.c ip_mroute.c ip_output.c ip_var.h raw_ip.c tcp_syncache.c tcp_usrreq.c src/sys/netinet6 frag6.c in6_pcb.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 15:32:20 -0000 dwmalone 2004-08-14 15:32:20 UTC FreeBSD src repository Modified files: sys/conf NOTES options sys/modules/ip_mroute_mod Makefile sys/netinet ip_mroute.c ip_input.c ip_output.c raw_ip.c ip_var.h ip_id.c tcp_syncache.c tcp_usrreq.c sys/netinet6 in6_pcb.c frag6.c in6_proto.c ip6_input.c ip6_output.c ip6_id.c ip6_var.h ipsec.c sys/netipsec xform_ipip.c Log: Get rid of the RANDOM_IP_ID option and make it a sysctl. NetBSD have already done this, so I have styled the patch on their work: 1) introduce a ip_newid() static inline function that checks the sysctl and then decides if it should return a sequential or random IP ID. 2) named the sysctl net.inet.ip.random_id 3) IPv6 flow IDs and fragment IDs are now always random. Flow IDs and frag IDs are significantly less common in the IPv6 world (ie. rarely generated per-packet), so there should be smaller performance concerns. The sysctl defaults to 0 (sequential IP IDs). Reviewed by: andre, silby, mlaier, ume Based on: NetBSD MFC after: 2 months Revision Changes Path 1.1259 +1 -8 src/sys/conf/NOTES 1.473 +0 -1 src/sys/conf/options 1.12 +1 -9 src/sys/modules/ip_mroute_mod/Makefile 1.5 +0 -3 src/sys/netinet/ip_id.c 1.282 +5 -3 src/sys/netinet/ip_input.c 1.105 +2 -11 src/sys/netinet/ip_mroute.c 1.224 +1 -6 src/sys/netinet/ip_output.c 1.88 +13 -6 src/sys/netinet/ip_var.h 1.140 +1 -6 src/sys/netinet/raw_ip.c 1.65 +0 -5 src/sys/netinet/tcp_syncache.c 1.106 +1 -6 src/sys/netinet/tcp_usrreq.c 1.24 +0 -5 src/sys/netinet6/frag6.c 1.59 +0 -5 src/sys/netinet6/in6_pcb.c 1.29 +0 -7 src/sys/netinet6/in6_proto.c 1.6 +0 -6 src/sys/netinet6/ip6_id.c 1.75 +0 -4 src/sys/netinet6/ip6_input.c 1.82 +0 -5 src/sys/netinet6/ip6_output.c 1.27 +0 -8 src/sys/netinet6/ip6_var.h 1.36 +1 -6 src/sys/netinet6/ipsec.c 1.9 +1 -6 src/sys/netipsec/xform_ipip.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 15:32:40 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D31C116A4CE; Sat, 14 Aug 2004 15:32:40 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA39A43D41; Sat, 14 Aug 2004 15:32:40 +0000 (GMT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EFWeIo043733; Sat, 14 Aug 2004 15:32:40 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EFWeXe043732; Sat, 14 Aug 2004 15:32:40 GMT (envelope-from dwmalone) Message-Id: <200408141532.i7EFWeXe043732@repoman.freebsd.org> From: David Malone Date: Sat, 14 Aug 2004 15:32:40 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/contrib/pf/net if_pfsync.c pf_norm.c src/sys/modules/pf Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 15:32:41 -0000 dwmalone 2004-08-14 15:32:40 UTC FreeBSD src repository Modified files: sys/contrib/pf/net if_pfsync.c pf_norm.c sys/modules/pf Makefile Log: Get rid of the RANDOM_IP_ID option and make it a sysctl. NetBSD have already done this, so I have styled the patch on their work: 1) introduce a ip_newid() static inline function that checks the sysctl and then decides if it should return a sequential or random IP ID. 2) named the sysctl net.inet.ip.random_id 3) IPv6 flow IDs and fragment IDs are now always random. Flow IDs and frag IDs are significantly less common in the IPv6 world (ie. rarely generated per-packet), so there should be smaller performance concerns. The sysctl defaults to 0 (sequential IP IDs). Reviewed by: andre, silby, mlaier, ume Based on: NetBSD MFC after: 2 months Revision Changes Path 1.11 +0 -5 src/sys/contrib/pf/net/if_pfsync.c 1.10 +0 -4 src/sys/contrib/pf/net/pf_norm.c 1.4 +2 -5 src/sys/modules/pf/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 15:35:55 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1FDC216A4CE; Sat, 14 Aug 2004 15:35:55 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 022A243D1F; Sat, 14 Aug 2004 15:35:55 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EFZsXc043927; Sat, 14 Aug 2004 15:35:54 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EFZs8m043926; Sat, 14 Aug 2004 15:35:54 GMT (envelope-from ceri) Message-Id: <200408141535.i7EFZs8m043926@repoman.freebsd.org> From: Ceri Davies Date: Sat, 14 Aug 2004 15:35:54 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/security chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 15:35:55 -0000 ceri 2004-08-14 15:35:54 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/security chapter.sgml Log: Reformat a funny looking listitem. Revision Changes Path 1.211 +1 -1 doc/en_US.ISO8859-1/books/handbook/security/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 14 15:38:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BD7116A4CE; Sat, 14 Aug 2004 15:38:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6FAF043D3F; Sat, 14 Aug 2004 15:38:21 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EFcLFW043999; Sat, 14 Aug 2004 15:38:21 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EFcLhx043998; Sat, 14 Aug 2004 15:38:21 GMT (envelope-from krion) Message-Id: <200408141538.i7EFcLhx043998@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 15:38:21 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/astro/gpsdrive pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 15:38:21 -0000 krion 2004-08-14 15:38:21 UTC FreeBSD ports repository Modified files: astro/gpsdrive pkg-plist Log: Fix plist. Revision Changes Path 1.8 +3 -0 ports/astro/gpsdrive/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 15:49:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3447C16A4CE; Sat, 14 Aug 2004 15:49:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1888C43D49; Sat, 14 Aug 2004 15:49:06 +0000 (GMT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EFn5hB044316; Sat, 14 Aug 2004 15:49:05 GMT (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EFn5pu044315; Sat, 14 Aug 2004 15:49:05 GMT (envelope-from kuriyama) Message-Id: <200408141549.i7EFn5pu044315@repoman.freebsd.org> From: Jun Kuriyama Date: Sat, 14 Aug 2004 15:49:05 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT access X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 15:49:06 -0000 kuriyama 2004-08-14 15:49:05 UTC FreeBSD doc repository Modified files: . access Log: Forced commit to note that metal@ is now released from requiring my approval for commit. Revision Changes Path 1.522 +0 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Sat Aug 14 15:51:07 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EDAC516A4CE; Sat, 14 Aug 2004 15:51:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D177643D48; Sat, 14 Aug 2004 15:51:07 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EFp7BS044459; Sat, 14 Aug 2004 15:51:07 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EFp794044458; Sat, 14 Aug 2004 15:51:07 GMT (envelope-from krion) Message-Id: <200408141551.i7EFp794044458@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 15:51:07 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/haproxy pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 15:51:08 -0000 krion 2004-08-14 15:51:07 UTC FreeBSD ports repository Modified files: net/haproxy pkg-plist Log: Fix plist. Revision Changes Path 1.4 +1 -0 ports/net/haproxy/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 15:57:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C6D6716A4CE; Sat, 14 Aug 2004 15:57:20 +0000 (GMT) Received: from kaiser.sig11.org (host104-117.pool8250.interbusiness.it [82.50.117.104]) by mx1.FreeBSD.org (Postfix) with ESMTP id DCC0243D1D; Sat, 14 Aug 2004 15:57:15 +0000 (GMT) (envelope-from rionda@riondato.com) Received: by kaiser.sig11.org (Postfix, from userid 1000) id 5990C21E; Sat, 14 Aug 2004 17:57:54 +0200 (CEST) From: Matteo Riondato To: David Malone In-Reply-To: <200408141532.i7EFWKAT043669@repoman.freebsd.org> References: <200408141532.i7EFWKAT043669@repoman.freebsd.org> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-d8SsZVFoJw83l4lq/E3d" Message-Id: <1092499073.15845.1.camel@kaiser.sig11.org> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Sat, 14 Aug 2004 17:57:54 +0200 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf NOTES optionsip_input.ctcp_usrreq.c src/sys/netinet6 frag6.c in6_pcb.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 15:57:20 -0000 --=-d8SsZVFoJw83l4lq/E3d Content-Type: text/plain Content-Transfer-Encoding: quoted-printable Il Sab, 2004-08-14 alle 17:32, David Malone ha scritto: > . > =20 > 2) named the sysctl net.inet.ip.random_id > =20 > The sysctl defaults to 0 (sequential IP IDs). Wouldn't it be safer to have the sysctl defaults to 1 ? Best Regards --=20 Rionda aka Matteo Riondato GUFI Staff Member (http://www.gufi.org) BSD-FAQ-it Main Developer (http://www.gufi.org/~rionda) FreeSBIE BugMeister (http://www.freesbie.org) GPG key at: http://www.riondabsd.net/riondagpg.asc Sent from: kaiser.sig11.org running FreeBSD-5.2-CURRENT --=-d8SsZVFoJw83l4lq/E3d Content-Type: application/pgp-signature; name=signature.asc Content-Description: Questa parte del messaggio =?ISO-8859-1?Q?=E8?= firmata -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBBHjaB2Mp4pR7Fa+wRAgAfAJ9uAQFaeQyCU+eBl04khfcXZhn+2ACeLbNO ITfcryoP3PrCcdPIrglUBmw= =BQ7f -----END PGP SIGNATURE----- --=-d8SsZVFoJw83l4lq/E3d-- From owner-cvs-all@FreeBSD.ORG Sat Aug 14 16:00:13 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5DD4516A4CE for ; Sat, 14 Aug 2004 16:00:13 +0000 (GMT) Received: from mail.freebsd.org.cn (dns3.freebsd.org.cn [61.129.66.75]) by mx1.FreeBSD.org (Postfix) with SMTP id C49D343D41 for ; Sat, 14 Aug 2004 16:00:10 +0000 (GMT) (envelope-from delphij@frontfree.net) Received: (qmail 26214 invoked by uid 0); 14 Aug 2004 15:57:29 -0000 Received: from unknown (HELO beastie.frontfree.net) (219.239.98.7) by mail.freebsd.org.cn with SMTP; 14 Aug 2004 15:57:29 -0000 Received: from localhost (localhost.frontfree.net [127.0.0.1]) by beastie.frontfree.net (Postfix) with ESMTP id F275511FDF; Sat, 14 Aug 2004 23:42:09 +0800 (CST) Received: from beastie.frontfree.net ([127.0.0.1]) by localhost (beastie.frontfree.net [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 01766-10; Sat, 14 Aug 2004 23:42:07 +0800 (CST) Received: by beastie.frontfree.net (Postfix, from userid 1001) id EEA0A11DDD; Sat, 14 Aug 2004 23:42:01 +0800 (CST) Date: Sat, 14 Aug 2004 23:42:01 +0800 From: Xin LI To: David Malone Message-ID: <20040814154201.GA306@frontfree.net> References: <200408141532.i7EFWKAT043669@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cmJC7u66zC7hs+87" Content-Disposition: inline In-Reply-To: <200408141532.i7EFWKAT043669@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i X-GPG-key-ID/Fingerprint: 0xCAEEB8C0 / 43B8 B703 B8DD 0231 B333 DC28 39FB 93A0 CAEE B8C0 X-GPG-Public-Key: http://www.delphij.net/delphij.asc X-Operating-System: FreeBSD beastie.frontfree.net 5.2-delphij FreeBSD 5.2-delphij #3: Fri Jul 30 20:01:43 CST 2004 delphij@beastie.frontfree.net:/usr/obj/usr/src/sys/BEASTIE i386 X-URL: http://www.delphij.net X-By: delphij@beastie.frontfree.net X-Location: Beijing, China X-Virus-Scanned: by amavisd-new at frontfree.net cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf NOTES options src/sys/modules/ip_mroute_mod Makefile src/sys/netinet ip_id.c ip_input.c ip_mroute.c ip_output.c ip_var.h raw_ip.c tcp_syncache.c tcp_usrreq.c src/sys/netinet6 frag6.c in6_pcb.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 16:00:13 -0000 --cmJC7u66zC7hs+87 Content-Type: multipart/mixed; boundary="HlL+5n6rz5pIUxbD" Content-Disposition: inline --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Aug 14, 2004 at 03:32:20PM +0000, David Malone wrote: > dwmalone 2004-08-14 15:32:20 UTC >=20 > FreeBSD src repository >=20 > Modified files: > sys/conf NOTES options=20 > sys/modules/ip_mroute_mod Makefile=20 > sys/netinet ip_mroute.c ip_input.c ip_output.c=20 > raw_ip.c ip_var.h ip_id.c tcp_syncache.c=20 > tcp_usrreq.c=20 > sys/netinet6 in6_pcb.c frag6.c in6_proto.c ip6_input.c=20 > ip6_output.c ip6_id.c ip6_var.h ipsec.c=20 > sys/netipsec xform_ipip.c=20 > Log: > Get rid of the RANDOM_IP_ID option and make it a sysctl. NetBSD > have already done this, so I have styled the patch on their work: Thanks! What about having an UPDATING entry for this? Cheers, --=20 Xin LI http://www.delphij.net/ See complete headers for GPG key and other information. --HlL+5n6rz5pIUxbD Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename=patch-UPDATING Content-Transfer-Encoding: quoted-printable Index: UPDATING =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /home/fcvs/src/UPDATING,v retrieving revision 1.341 diff -u -r1.341 UPDATING --- UPDATING 13 Aug 2004 13:14:05 -0000 1.341 +++ UPDATING 14 Aug 2004 15:39:23 -0000 @@ -21,6 +21,12 @@ developers choose to disable these features on build machines to maximize performance. =20 +20040814: + RANDOM_IP_ID is now a sysctl and hence no longer necessary in + kernel options. Please adjust your /etc/sysctl.conf and add + net.inet.ip.random_id=3D1 if you need it, as it was turned off + by default. + 20040807: The size of 'struct ifnet' has changed due to the addition of the if_carp placeholder. All kernel modules implementing network --HlL+5n6rz5pIUxbD-- --cmJC7u66zC7hs+87 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQFBHjLJOfuToMruuMARAk5MAJ4/pVmhW61BP6LMmiU64cM3+ZW/TwCfUa3F Gqlxrp0Bi9aU0fwsx1cVvso= =Iclx -----END PGP SIGNATURE----- --cmJC7u66zC7hs+87-- From owner-cvs-all@FreeBSD.ORG Sat Aug 14 16:05:39 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0863316A4CE; Sat, 14 Aug 2004 16:05:39 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E008343D2F; Sat, 14 Aug 2004 16:05:38 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EG5cMt044879; Sat, 14 Aug 2004 16:05:38 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EG5cAu044878; Sat, 14 Aug 2004 16:05:38 GMT (envelope-from krion) Message-Id: <200408141605.i7EG5cAu044878@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 16:05:38 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/comms/kallers pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 16:05:39 -0000 krion 2004-08-14 16:05:38 UTC FreeBSD ports repository Modified files: comms/kallers pkg-plist Log: Fix plist. Revision Changes Path 1.2 +11 -0 ports/comms/kallers/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 16:09:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EE0F16A4CE; Sat, 14 Aug 2004 16:09:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8805343D1F; Sat, 14 Aug 2004 16:09:15 +0000 (GMT) (envelope-from hq@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EG9FBR044988; Sat, 14 Aug 2004 16:09:15 GMT (envelope-from hq@repoman.freebsd.org) Received: (from hq@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EG9FQn044987; Sat, 14 Aug 2004 16:09:15 GMT (envelope-from hq) Message-Id: <200408141609.i7EG9FQn044987@repoman.freebsd.org> From: Herve Quiroz Date: Sat, 14 Aug 2004 16:09:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jakarta-commons-collections Makefiledistinfo pkg-descr X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 16:09:15 -0000 hq 2004-08-14 16:09:15 UTC FreeBSD ports repository Modified files: java/jakarta-commons-collections Makefile distinfo pkg-descr Log: - Update to 3.1 - Use USE_ANT - Use %%JAVAJARDIR%% - Use ${INSTALL_DATA} and ${CPIO} rather than ${CP} [1] - ECHO_CMD -> ECHO_MSG - Fix homepage in pkg-descr (and arrange the text a little) - Add 'devel' category PR: 70213 Submitted by: me Reviewed by: glewis [1] Approved by: glewis (mentor), znerd (maintainer) Revision Changes Path 1.7 +15 -23 ports/java/jakarta-commons-collections/Makefile 1.5 +2 -2 ports/java/jakarta-commons-collections/distinfo 1.2 +8 -10 ports/java/jakarta-commons-collections/pkg-descr From owner-cvs-all@FreeBSD.ORG Sat Aug 14 16:09:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76E5F16A4CE; Sat, 14 Aug 2004 16:09:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59DB443D2F; Sat, 14 Aug 2004 16:09:37 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EG9bU1045026; Sat, 14 Aug 2004 16:09:37 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EG9bDC045025; Sat, 14 Aug 2004 16:09:37 GMT (envelope-from krion) Message-Id: <200408141609.i7EG9bDC045025@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 16:09:37 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/klondike pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 16:09:37 -0000 krion 2004-08-14 16:09:37 UTC FreeBSD ports repository Modified files: games/klondike pkg-plist Log: Fix plist. Revision Changes Path 1.4 +1 -1 ports/games/klondike/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 16:10:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 13FCB16A4CE; Sat, 14 Aug 2004 16:10:20 +0000 (GMT) Received: from moutng.kundenserver.de (moutng.kundenserver.de [212.227.126.186]) by mx1.FreeBSD.org (Postfix) with ESMTP id A793043D2F; Sat, 14 Aug 2004 16:10:19 +0000 (GMT) (envelope-from max@love2party.net) Received: from [212.227.126.160] (helo=mrelayng.kundenserver.de) by moutng.kundenserver.de with esmtp (Exim 3.35 #1) id 1Bw16o-0003qI-00; Sat, 14 Aug 2004 18:10:18 +0200 Received: from [217.83.5.147] (helo=donor.laier.local) by mrelayng.kundenserver.de with asmtp (TLSv1:RC4-MD5:128) (Exim 3.35 #1) id 1Bw16n-0005Tr-00; Sat, 14 Aug 2004 18:10:18 +0200 From: Max Laier To: Matteo Riondato Date: Sat, 14 Aug 2004 18:08:07 +0200 User-Agent: KMail/1.6.2 References: <200408141532.i7EFWKAT043669@repoman.freebsd.org> <1092499073.15845.1.camel@kaiser.sig11.org> In-Reply-To: <1092499073.15845.1.camel@kaiser.sig11.org> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_+jjHB/R+OHiJnFt"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200408141808.31032.max@love2party.net> X-Provags-ID: kundenserver.de abuse@kundenserver.de auth:61c499deaeeba3ba5be80f48ecc83056 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: David Malone cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/conf NOTES options src/sys/modules/ip_mroute_mod Makefile src/sys/netinet ip_id.c ip_input.c ip_mroute.c ip_output.c ip_var.h raw_ip.c tcp_syncache.c tcp_usrreq.c src/sys/netinet6 frag6.c in6_pcb.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 16:10:20 -0000 --Boundary-02=_+jjHB/R+OHiJnFt Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Saturday 14 August 2004 17:57, Matteo Riondato wrote: > Il Sab, 2004-08-14 alle 17:32, David Malone ha scritto: > > . > > > > 2) named the sysctl net.inet.ip.random_id > > > > > > The sysctl defaults to 0 (sequential IP IDs). > > Wouldn't it be safer to have the sysctl defaults to 1 ? Safer - maybe. More convenient - no. "option RANDOM_IP_ID" has not been in= =20 GENERIC for a reason (too short id reuse cycle for highspeed links). Now th= at=20 it is a sysctl there is even less reason to turn it on by default. =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 --Boundary-02=_+jjHB/R+OHiJnFt Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.5 (FreeBSD) iD8DBQBBHjj+XyyEoT62BG0RAuzQAJ4q/p8sx7ybaSt5XylxZaCBA4z3egCfZvlf K45EhS6xuBJ+3m55a5yJqiI= =qZPM -----END PGP SIGNATURE----- --Boundary-02=_+jjHB/R+OHiJnFt-- From owner-cvs-all@FreeBSD.ORG Sat Aug 14 16:14:14 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8F6CC16A4CE; Sat, 14 Aug 2004 16:14:14 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 719DA43D39; Sat, 14 Aug 2004 16:14:14 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EGEEZT045185; Sat, 14 Aug 2004 16:14:14 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EGEEcr045184; Sat, 14 Aug 2004 16:14:14 GMT (envelope-from krion) Message-Id: <200408141614.i7EGEEcr045184@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 16:14:14 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/libfwbuilder pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 16:14:14 -0000 krion 2004-08-14 16:14:14 UTC FreeBSD ports repository Modified files: security/libfwbuilder pkg-plist Log: Fix plist. Revision Changes Path 1.6 +3 -1 ports/security/libfwbuilder/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 16:16:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CE7D716A4CE; Sat, 14 Aug 2004 16:16:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0CF343D39; Sat, 14 Aug 2004 16:16:01 +0000 (GMT) (envelope-from dwmalone@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EGG1mS045298; Sat, 14 Aug 2004 16:16:01 GMT (envelope-from dwmalone@repoman.freebsd.org) Received: (from dwmalone@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EGG1i8045297; Sat, 14 Aug 2004 16:16:01 GMT (envelope-from dwmalone) Message-Id: <200408141616.i7EGG1i8045297@repoman.freebsd.org> From: David Malone Date: Sat, 14 Aug 2004 16:16:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 16:16:02 -0000 dwmalone 2004-08-14 16:16:01 UTC FreeBSD src repository Modified files: . UPDATING Log: Add a note about RANDOM_IP_ID. Revision Changes Path 1.342 +5 -0 src/UPDATING From owner-cvs-all@FreeBSD.ORG Sat Aug 14 16:26:27 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 150EE16A4CE; Sat, 14 Aug 2004 16:26:27 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB77A43D1F; Sat, 14 Aug 2004 16:26:26 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EGQQ5P045574; Sat, 14 Aug 2004 16:26:26 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EGQQSS045573; Sat, 14 Aug 2004 16:26:26 GMT (envelope-from krion) Message-Id: <200408141626.i7EGQQSS045573@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 16:26:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/libprelude pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 16:26:27 -0000 krion 2004-08-14 16:26:26 UTC FreeBSD ports repository Modified files: security/libprelude pkg-plist Log: Fix plist. Revision Changes Path 1.5 +3 -2 ports/security/libprelude/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 16:28:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 87DC516A4CE; Sat, 14 Aug 2004 16:28:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69EEA43D1F; Sat, 14 Aug 2004 16:28:18 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EGSIRn045629; Sat, 14 Aug 2004 16:28:18 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EGSIcg045628; Sat, 14 Aug 2004 16:28:18 GMT (envelope-from krion) Message-Id: <200408141628.i7EGSIcg045628@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 16:28:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/libsectok Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 16:28:18 -0000 krion 2004-08-14 16:28:18 UTC FreeBSD ports repository Modified files: security/libsectok Makefile pkg-plist Log: Fix plist. Pet portlint. Revision Changes Path 1.2 +2 -2 ports/security/libsectok/Makefile 1.2 +1 -1 ports/security/libsectok/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 17:02:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C387516A4CE; Sat, 14 Aug 2004 17:02:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6C5143D49; Sat, 14 Aug 2004 17:02:06 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EH2636046909; Sat, 14 Aug 2004 17:02:06 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EH26tb046887; Sat, 14 Aug 2004 17:02:06 GMT (envelope-from krion) Message-Id: <200408141702.i7EH26tb046887@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 17:02:05 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/ntfsprogs Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 17:02:06 -0000 krion 2004-08-14 17:02:05 UTC FreeBSD ports repository Modified files: sysutils/ntfsprogs Makefile Log: Add missing manpage. Revision Changes Path 1.5 +2 -1 ports/sysutils/ntfsprogs/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 17:03:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A790E16A4CE; Sat, 14 Aug 2004 17:03:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EED743D41; Sat, 14 Aug 2004 17:03:58 +0000 (GMT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EH3w1d048699; Sat, 14 Aug 2004 17:03:58 GMT (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EH3w0B048698; Sat, 14 Aug 2004 17:03:58 GMT (envelope-from green) Message-Id: <200408141703.i7EH3w0B048698@repoman.freebsd.org> From: Brian Feldman Date: Sat, 14 Aug 2004 17:03:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/xmms-imms Makefile distinfo ports/audio/xmms-imms/files patch-configure.ac patch-correlate.cc patch-imms.cc patch-picker.cc patch-plugin.h patch-utils.cc patch-vars.mk.in X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 17:03:58 -0000 green 2004-08-14 17:03:58 UTC FreeBSD ports repository Modified files: audio/xmms-imms Makefile distinfo audio/xmms-imms/files patch-configure.ac patch-picker.cc patch-plugin.h patch-vars.mk.in Added files: audio/xmms-imms/files patch-correlate.cc patch-utils.cc Removed files: audio/xmms-imms/files patch-imms.cc Log: Update to IMMS 1.1 and fix for newer GCC. Revision Changes Path 1.9 +2 -2 ports/audio/xmms-imms/Makefile 1.3 +2 -2 ports/audio/xmms-imms/distinfo 1.2 +23 -7 ports/audio/xmms-imms/files/patch-configure.ac 1.1 +9 -0 ports/audio/xmms-imms/files/patch-correlate.cc (new) 1.2 +0 -34 ports/audio/xmms-imms/files/patch-imms.cc (dead) 1.2 +20 -6 ports/audio/xmms-imms/files/patch-picker.cc 1.2 +4 -4 ports/audio/xmms-imms/files/patch-plugin.h 1.1 +26 -0 ports/audio/xmms-imms/files/patch-utils.cc (new) 1.4 +12 -10 ports/audio/xmms-imms/files/patch-vars.mk.in From owner-cvs-all@FreeBSD.ORG Sat Aug 14 17:06:01 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ECA1016A4CE; Sat, 14 Aug 2004 17:06:01 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFAF243D1D; Sat, 14 Aug 2004 17:06:01 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EH61w5049367; Sat, 14 Aug 2004 17:06:01 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EH610P049366; Sat, 14 Aug 2004 17:06:01 GMT (envelope-from krion) Message-Id: <200408141706.i7EH610P049366@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 17:06:01 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/openntpd pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 17:06:02 -0000 krion 2004-08-14 17:06:01 UTC FreeBSD ports repository Modified files: net/openntpd pkg-plist Log: Fix plist. Revision Changes Path 1.2 +2 -1 ports/net/openntpd/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 17:15:17 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 29B8816A4CE; Sat, 14 Aug 2004 17:15:17 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 227F043D1D; Sat, 14 Aug 2004 17:15:17 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EHFHG6049585; Sat, 14 Aug 2004 17:15:17 GMT (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EHFH16049584; Sat, 14 Aug 2004 17:15:17 GMT (envelope-from rwatson) Message-Id: <200408141715.i7EHFH16049584@repoman.freebsd.org> From: Robert Watson Date: Sat, 14 Aug 2004 17:15:17 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/kern kern_proc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 17:15:17 -0000 rwatson 2004-08-14 17:15:16 UTC FreeBSD src repository Modified files: sys/kern kern_proc.c Log: Cause pfind() not to return processes in the PRS_NEW state. As a result, threads consuming the result of pfind() will not need to check for a NULL credential pointer or other signs of an incompletely created process. However, this also means that pfind() cannot be used to test for the existence or find such a process. Annotate pfind() to indicate that this is the case. A review of curent consumers seems to indicate that this is not a problem for any of them. This closes a number of race conditions that could result in NULL pointer dereferences and related failure modes. Other related races continue to exist, especially during iteration of the allproc list without due caution. Discussed with: tjr, green Revision Changes Path 1.215 +8 -1 src/sys/kern/kern_proc.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 17:33:31 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A753816A4CE; Sat, 14 Aug 2004 17:33:31 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B3A343D48; Sat, 14 Aug 2004 17:33:31 +0000 (GMT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EHXV2l050018; Sat, 14 Aug 2004 17:33:31 GMT (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EHXVdu050017; Sat, 14 Aug 2004 17:33:31 GMT (envelope-from blackend) Message-Id: <200408141733.i7EHXVdu050017@repoman.freebsd.org> From: Marc Fonvieille Date: Sat, 14 Aug 2004 17:33:31 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/books/handbook/multimedia chapter.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 17:33:31 -0000 blackend 2004-08-14 17:33:31 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/multimedia chapter.sgml Log: Remove a duplicate word. Revision Changes Path 1.91 +1 -1 doc/en_US.ISO8859-1/books/handbook/multimedia/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Aug 14 17:34:42 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 77E9416A4CE; Sat, 14 Aug 2004 17:34:42 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A29543D31; Sat, 14 Aug 2004 17:34:42 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EHYgfK050077; Sat, 14 Aug 2004 17:34:42 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EHYg5m050076; Sat, 14 Aug 2004 17:34:42 GMT (envelope-from krion) Message-Id: <200408141734.i7EHYg5m050076@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 17:34:42 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/smoke/files patch-src_stroke.cc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 17:34:42 -0000 krion 2004-08-14 17:34:42 UTC FreeBSD ports repository Added files: graphics/smoke/files patch-src_stroke.cc Log: Fix build with gcc-3.4 PR: ports/70456 Submitted by: maintainer Revision Changes Path 1.1 +10 -0 ports/graphics/smoke/files/patch-src_stroke.cc (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 17:46:11 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EB1DE16A4CE; Sat, 14 Aug 2004 17:46:10 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3A0F43D58; Sat, 14 Aug 2004 17:46:10 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EHkAKn050498; Sat, 14 Aug 2004 17:46:10 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EHkAJ5050497; Sat, 14 Aug 2004 17:46:10 GMT (envelope-from stefanf) Message-Id: <200408141746.i7EHkAJ5050497@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 14 Aug 2004 17:46:10 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libc/gen opendir.c src/lib/libc_r/uthread uthread_write.c uthread_writev.c src/sbin/ldconfig ldconfig.c src/sbin/ping ping.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 17:46:11 -0000 stefanf 2004-08-14 17:46:10 UTC FreeBSD src repository Modified files: lib/libc/gen opendir.c lib/libc_r/uthread uthread_write.c uthread_writev.c sbin/ldconfig ldconfig.c sbin/ping ping.c Log: Avoid using void pointers in additive expressions. PR: 56653 Revision Changes Path 1.22 +1 -1 src/lib/libc/gen/opendir.c 1.24 +2 -1 src/lib/libc_r/uthread/uthread_write.c 1.22 +3 -1 src/lib/libc_r/uthread/uthread_writev.c 1.41 +2 -2 src/sbin/ldconfig/ldconfig.c 1.105 +1 -1 src/sbin/ping/ping.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 17:49:06 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5B1AD16A4CE; Sat, 14 Aug 2004 17:49:06 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C4E243D55; Sat, 14 Aug 2004 17:49:06 +0000 (GMT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EHn6IJ050575; Sat, 14 Aug 2004 17:49:06 GMT (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EHn61F050574; Sat, 14 Aug 2004 17:49:06 GMT (envelope-from bland) Message-Id: <200408141749.i7EHn61F050574@repoman.freebsd.org> From: Alexander Nedotsukov Date: Sat, 14 Aug 2004 17:49:06 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gtk20 Makefile ports/x11-toolkits/gtk20/files patch-al X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 17:49:06 -0000 bland 2004-08-14 17:49:06 UTC FreeBSD ports repository Modified files: x11-toolkits/gtk20 Makefile Added files: x11-toolkits/gtk20/files patch-al Log: Fix a bug in GtkFileChooser which prevent files to be opened. Obtained from: GNOME Bugzilla (#150099) Revision Changes Path 1.134 +1 -0 ports/x11-toolkits/gtk20/Makefile 1.1 +69 -0 ports/x11-toolkits/gtk20/files/patch-al (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 17:55:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AB2E16A4CE; Sat, 14 Aug 2004 17:55:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F314843D45; Sat, 14 Aug 2004 17:55:15 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EHtFAN050787; Sat, 14 Aug 2004 17:55:15 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EHtFQl050786; Sat, 14 Aug 2004 17:55:15 GMT (envelope-from stefanf) Message-Id: <200408141755.i7EHtFQl050786@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 14 Aug 2004 17:55:15 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include complex.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 17:55:16 -0000 stefanf 2004-08-14 17:55:15 UTC FreeBSD src repository Modified files: include complex.h Log: Use tabulators after '#define'. Revision Changes Path 1.5 +5 -5 src/include/complex.h From owner-cvs-all@FreeBSD.ORG Sat Aug 14 18:03:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1384516A4CE; Sat, 14 Aug 2004 18:03:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E954343D45; Sat, 14 Aug 2004 18:03:21 +0000 (GMT) (envelope-from stefanf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EI3LIA050988; Sat, 14 Aug 2004 18:03:21 GMT (envelope-from stefanf@repoman.freebsd.org) Received: (from stefanf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EI3Lbd050987; Sat, 14 Aug 2004 18:03:21 GMT (envelope-from stefanf) Message-Id: <200408141803.i7EI3Lbd050987@repoman.freebsd.org> From: Stefan Farfeleder Date: Sat, 14 Aug 2004 18:03:21 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/include complex.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 18:03:22 -0000 stefanf 2004-08-14 18:03:21 UTC FreeBSD src repository Modified files: include complex.h Log: Stop defining '_Complex' in a C99 environment, it is supposed to be a keyword. Revision Changes Path 1.6 +2 -0 src/include/complex.h From owner-cvs-all@FreeBSD.ORG Sat Aug 14 18:33:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BC1CC16A4CE; Sat, 14 Aug 2004 18:33:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E15243D31; Sat, 14 Aug 2004 18:33:26 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EIXQ8L051791; Sat, 14 Aug 2004 18:33:26 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EIXQ1i051790; Sat, 14 Aug 2004 18:33:26 GMT (envelope-from oliver) Message-Id: <200408141833.i7EIXQ1i051790@repoman.freebsd.org> From: Oliver Lehmann Date: Sat, 14 Aug 2004 18:33:26 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/libuta Makefile ports/devel/libuta/files patch-uta::blitters.cc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 18:33:26 -0000 oliver 2004-08-14 18:33:26 UTC FreeBSD ports repository Modified files: devel/libuta Makefile devel/libuta/files patch-uta::blitters.cc Log: fix build Noted By: bento Revision Changes Path 1.27 +1 -1 ports/devel/libuta/Makefile 1.4 +2 -2 ports/devel/libuta/files/patch-uta::blitters.cc From owner-cvs-all@FreeBSD.ORG Sat Aug 14 18:43:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C96A716A4CE; Sat, 14 Aug 2004 18:43:56 +0000 (GMT) Received: from kane.otenet.gr (kane.otenet.gr [195.170.0.27]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1ECB643D1F; Sat, 14 Aug 2004 18:43:54 +0000 (GMT) (envelope-from keramida@ceid.upatras.gr) Received: from gothmog.gr (patr530-b169.otenet.gr [212.205.244.177]) i7EIhop9006460; Sat, 14 Aug 2004 21:43:51 +0300 Received: from gothmog.gr (gothmog [127.0.0.1]) by gothmog.gr (8.13.1/8.13.1) with ESMTP id i7EIgjHV000864; Sat, 14 Aug 2004 21:42:45 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Received: (from giorgos@localhost) by gothmog.gr (8.13.1/8.13.1/Submit) id i7EIgikC000863; Sat, 14 Aug 2004 21:42:44 +0300 (EEST) (envelope-from keramida@ceid.upatras.gr) Date: Sat, 14 Aug 2004 21:42:44 +0300 From: Giorgos Keramidas To: Ceri Davies , doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040814184244.GA836@gothmog.gr> References: <200408141519.i7EFJ5dW043117@repoman.freebsd.org> <20040814152137.GR87690@submonkey.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040814152137.GR87690@submonkey.net> Subject: Re: cvs commit: doc/en_US.ISO8859-1/share/sgml/glossary freebsd-glossary.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 18:43:57 -0000 On 2004-08-14 16:21, Ceri Davies wrote: > if everybody takes a letter from their surname and fills those ones in > then we'll have this populated in no time. HEH :-) Nice idea. From owner-cvs-all@FreeBSD.ORG Sat Aug 14 18:54:03 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1464216A4CF; Sat, 14 Aug 2004 18:54:03 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7E4543D49; Sat, 14 Aug 2004 18:54:02 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EIs23c052358; Sat, 14 Aug 2004 18:54:02 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EIs2XP052357; Sat, 14 Aug 2004 18:54:02 GMT (envelope-from marcus) Message-Id: <200408141854.i7EIs2XP052357@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 14 Aug 2004 18:54:02 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.gnome.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 18:54:03 -0000 marcus 2004-08-14 18:54:02 UTC FreeBSD ports repository Modified files: Mk bsd.gnome.mk Log: Add a desktopfileutils component that adds a RUN_DEPENDS on devel/desktop-file-utils. This is needed for the new MIME system in the upcoming GNOME 2.8. Revision Changes Path 1.78 +6 -2 ports/Mk/bsd.gnome.mk From owner-cvs-all@FreeBSD.ORG Sat Aug 14 18:56:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1AC8A16A4CE; Sat, 14 Aug 2004 18:56:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F166D43D2F; Sat, 14 Aug 2004 18:56:20 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EIuKuw052488; Sat, 14 Aug 2004 18:56:20 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EIuKJX052487; Sat, 14 Aug 2004 18:56:20 GMT (envelope-from marcus) Message-Id: <200408141856.i7EIuKJX052487@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 14 Aug 2004 18:56:20 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/galeon2 Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 18:56:21 -0000 marcus 2004-08-14 18:56:20 UTC FreeBSD ports repository Modified files: www/galeon2 Makefile pkg-plist Log: Add a dependency on desktopfileutils, and make sure update-desktop-database is run after installation. Submitted by: Koop Mast Revision Changes Path 1.151 +2 -1 ports/www/galeon2/Makefile 1.54 +2 -0 ports/www/galeon2/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 18:57:41 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EBDED16A4D0; Sat, 14 Aug 2004 18:57:41 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDE6843D46; Sat, 14 Aug 2004 18:57:41 +0000 (GMT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EIvfht052539; Sat, 14 Aug 2004 18:57:41 GMT (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EIvfx7052538; Sat, 14 Aug 2004 18:57:41 GMT (envelope-from alc) Message-Id: <200408141857.i7EIvfx7052538@repoman.freebsd.org> From: Alan Cox Date: Sat, 14 Aug 2004 18:57:41 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/vm vm_map.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 18:57:42 -0000 alc 2004-08-14 18:57:41 UTC FreeBSD src repository Modified files: sys/vm vm_map.c Log: Remove spl calls. Revision Changes Path 1.358 +2 -19 src/sys/vm/vm_map.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 19:00:00 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5F55516A4CF; Sat, 14 Aug 2004 19:00:00 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FD8A43D41; Sat, 14 Aug 2004 19:00:00 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EJ00fA052604; Sat, 14 Aug 2004 19:00:00 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EJ00Xu052603; Sat, 14 Aug 2004 19:00:00 GMT (envelope-from krion) Message-Id: <200408141900.i7EJ00Xu052603@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 14 Aug 2004 19:00:00 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/racoon/files patch-kmpstat.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 19:00:00 -0000 krion 2004-08-14 19:00:00 UTC FreeBSD ports repository Added files: security/racoon/files patch-kmpstat.c Log: Fix build with gcc-3.4 Revision Changes Path 1.1 +14 -0 ports/security/racoon/files/patch-kmpstat.c (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 20:34:30 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 91EA916A4CE; Sat, 14 Aug 2004 20:34:30 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 888D043D1D; Sat, 14 Aug 2004 20:34:30 +0000 (GMT) (envelope-from sf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EKYUfi056389; Sat, 14 Aug 2004 20:34:30 GMT (envelope-from sf@repoman.freebsd.org) Received: (from sf@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EKYUXL056388; Sat, 14 Aug 2004 20:34:30 GMT (envelope-from sf) Message-Id: <200408142034.i7EKYUXL056388@repoman.freebsd.org> From: FUJISHIMA Satsuki Date: Sat, 14 Aug 2004 20:34:30 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators/xsystem35 Makefile distinfo pkg-descr pkg-plist ports/emulators/xsystem35/files patch-configure.in patch-soundcard.h patch-src_font_freetype2.c patch-src_tempname.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 20:34:30 -0000 sf 2004-08-14 20:34:30 UTC FreeBSD ports repository Modified files: emulators/xsystem35 Makefile distinfo pkg-descr pkg-plist emulators/xsystem35/files patch-configure.in patch-soundcard.h Added files: emulators/xsystem35/files patch-src_font_freetype2.c patch-src_tempname.c Log: o update to 1.7.2. o catch up comment/descr. o make freetype support non-optional. o drop broken SDL support. Revision Changes Path 1.43 +27 -55 ports/emulators/xsystem35/Makefile 1.16 +2 -2 ports/emulators/xsystem35/distinfo 1.2 +2 -2 ports/emulators/xsystem35/files/patch-configure.in 1.2 +0 -26 ports/emulators/xsystem35/files/patch-soundcard.h 1.1 +12 -0 ports/emulators/xsystem35/files/patch-src_font_freetype2.c (new) 1.1 +11 -0 ports/emulators/xsystem35/files/patch-src_tempname.c (new) 1.7 +2 -5 ports/emulators/xsystem35/pkg-descr 1.10 +72 -35 ports/emulators/xsystem35/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 20:36:15 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C85C116A4CE; Sat, 14 Aug 2004 20:36:15 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC89A43D54; Sat, 14 Aug 2004 20:36:15 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EKaFa7056520; Sat, 14 Aug 2004 20:36:15 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EKaF9k056519; Sat, 14 Aug 2004 20:36:15 GMT (envelope-from lofi) Message-Id: <200408142036.i7EKaF9k056519@repoman.freebsd.org> From: Michael Nottebrock Date: Sat, 14 Aug 2004 20:36:15 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/tse3/files patch-src_tse3_Midi.h patch-src_tse3_Mutex.hpatch-src_tse3_app_Record.h patch-src_tse3_plt_Arts.cpp patch-src_tse3_util_MulDiv.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 20:36:15 -0000 lofi 2004-08-14 20:36:15 UTC FreeBSD ports repository Added files: audio/tse3/files patch-src_tse3_Midi.h patch-src_tse3_Mutex.h patch-src_tse3_Notifier.h patch-src_tse3_app_Application.h patch-src_tse3_app_Record.h patch-src_tse3_plt_Arts.cpp patch-src_tse3_util_MulDiv.h Log: Fix build on gcc 3.4. Revision Changes Path 1.1 +10 -0 ports/audio/tse3/files/patch-src_tse3_Midi.h (new) 1.1 +11 -0 ports/audio/tse3/files/patch-src_tse3_Mutex.h (new) 1.1 +29 -0 ports/audio/tse3/files/patch-src_tse3_Notifier.h (new) 1.1 +17 -0 ports/audio/tse3/files/patch-src_tse3_app_Application.h (new) 1.1 +11 -0 ports/audio/tse3/files/patch-src_tse3_app_Record.h (new) 1.1 +11 -0 ports/audio/tse3/files/patch-src_tse3_plt_Arts.cpp (new) 1.1 +12 -0 ports/audio/tse3/files/patch-src_tse3_util_MulDiv.h (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 20:49:52 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 645DC16A4CE; Sat, 14 Aug 2004 20:49:52 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4675043D39; Sat, 14 Aug 2004 20:49:52 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EKnqeq057056; Sat, 14 Aug 2004 20:49:52 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EKnqZt057055; Sat, 14 Aug 2004 20:49:52 GMT (envelope-from kris) Message-Id: <200408142049.i7EKnqZt057055@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 14 Aug 2004 20:49:52 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators/basiliskII Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 20:49:52 -0000 kris 2004-08-14 20:49:52 UTC FreeBSD ports repository Modified files: emulators/basiliskII Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.18 +2 -0 ports/emulators/basiliskII/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 20:57:59 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6447216A4CE; Sat, 14 Aug 2004 20:57:59 +0000 (GMT) Received: from pimout1-ext.prodigy.net (pimout1-ext.prodigy.net [207.115.63.77]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C9CE43D46; Sat, 14 Aug 2004 20:57:59 +0000 (GMT) (envelope-from julian@elischer.org) Received: from elischer.org (adsl-68-124-233-133.dsl.snfc21.pacbell.net [68.124.233.133])i7EKvu5C080514; Sat, 14 Aug 2004 16:57:57 -0400 Message-ID: <411E7CD4.7010504@elischer.org> Date: Sat, 14 Aug 2004 13:57:56 -0700 From: Julian Elischer User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4b) Gecko/20030524 X-Accept-Language: en, hu MIME-Version: 1.0 To: Robert Watson References: <200408141715.i7EHFH16049584@repoman.freebsd.org> In-Reply-To: <200408141715.i7EHFH16049584@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_proc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 20:57:59 -0000 Robert Watson wrote: > rwatson 2004-08-14 17:15:16 UTC > > FreeBSD src repository > > Modified files: > sys/kern kern_proc.c > Log: > Cause pfind() not to return processes in the PRS_NEW state. As a result, > threads consuming the result of pfind() will not need to check for a NULL > credential pointer or other signs of an incompletely created process. > However, this also means that pfind() cannot be used to test for the > existence or find such a process. Annotate pfind() to indicate that this > is the case. A review of curent consumers seems to indicate that this is > not a problem for any of them. This closes a number of race conditions > that could result in NULL pointer dereferences and related failure modes. > Other related races continue to exist, especially during iteration of the > allproc list without due caution. possibly part of the answer would be to not put the proc on any queues until it is more set up.. > > Discussed with: tjr, green > > Revision Changes Path > 1.215 +8 -1 src/sys/kern/kern_proc.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:01:47 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7E2CC16A4CF; Sat, 14 Aug 2004 21:01:47 +0000 (GMT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 261CA43D41; Sat, 14 Aug 2004 21:01:47 +0000 (GMT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.11/8.12.11) with ESMTP id i7EL00H2031165; Sat, 14 Aug 2004 17:00:00 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i7EL00nc031162; Sat, 14 Aug 2004 17:00:00 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Sat, 14 Aug 2004 16:59:59 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Julian Elischer In-Reply-To: <411E7CD4.7010504@elischer.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/kern kern_proc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:01:47 -0000 On Sat, 14 Aug 2004, Julian Elischer wrote: > > Cause pfind() not to return processes in the PRS_NEW state. As a result, > > threads consuming the result of pfind() will not need to check for a NULL > > credential pointer or other signs of an incompletely created process. > > However, this also means that pfind() cannot be used to test for the > > existence or find such a process. Annotate pfind() to indicate that this > > is the case. A review of curent consumers seems to indicate that this is > > not a problem for any of them. This closes a number of race conditions > > that could result in NULL pointer dereferences and related failure modes. > > Other related races continue to exist, especially during iteration of the > > allproc list without due caution. > > possibly part of the answer would be to not put the proc on any queues > until it is more set up.. Tim had a set of modifications to keep them on a separate list, but I think he also decided it was quite a bit more complicated than they had hoped. Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Principal Research Scientist, McAfee Research From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:25:36 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 67B3016A4CE; Sat, 14 Aug 2004 21:25:36 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4970743D46; Sat, 14 Aug 2004 21:25:36 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELPaPn058120; Sat, 14 Aug 2004 21:25:36 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELPapQ058119; Sat, 14 Aug 2004 21:25:36 GMT (envelope-from kris) Message-Id: <200408142125.i7ELPapQ058119@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 14 Aug 2004 21:25:36 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/beav Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:25:36 -0000 kris 2004-08-14 21:25:36 UTC FreeBSD ports repository Modified files: editors/beav Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.26 +2 -0 ports/editors/beav/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:29:09 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7AF7216A4CE; Sat, 14 Aug 2004 21:29:09 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5857843D58; Sat, 14 Aug 2004 21:29:09 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELT9oj058188; Sat, 14 Aug 2004 21:29:09 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELT9qP058187; Sat, 14 Aug 2004 21:29:09 GMT (envelope-from kris) Message-Id: <200408142129.i7ELT9qP058187@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 14 Aug 2004 21:29:09 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/blast Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:29:09 -0000 kris 2004-08-14 21:29:09 UTC FreeBSD ports repository Modified files: x11/blast Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.20 +2 -0 ports/x11/blast/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:30:29 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A139216A4CE; Sat, 14 Aug 2004 21:30:29 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 81D7E43D2D; Sat, 14 Aug 2004 21:30:29 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELUTaC058299; Sat, 14 Aug 2004 21:30:29 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELUTNB058298; Sat, 14 Aug 2004 21:30:29 GMT (envelope-from kris) Message-Id: <200408142130.i7ELUTNB058298@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 14 Aug 2004 21:30:29 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/clarence Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:30:29 -0000 kris 2004-08-14 21:30:29 UTC FreeBSD ports repository Modified files: math/clarence Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.14 +2 -0 ports/math/clarence/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:34:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CF2F616A4CF; Sat, 14 Aug 2004 21:34:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9568443D49; Sat, 14 Aug 2004 21:34:35 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELYZ8t058402; Sat, 14 Aug 2004 21:34:35 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELYZl9058401; Sat, 14 Aug 2004 21:34:35 GMT (envelope-from kris) Message-Id: <200408142134.i7ELYZl9058401@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 14 Aug 2004 21:34:35 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/xautolock Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:34:35 -0000 kris 2004-08-14 21:34:35 UTC FreeBSD ports repository Modified files: x11/xautolock Makefile Log: Reset maintainer: auto-responds with a request to check a website that is not configured. Revision Changes Path 1.15 +1 -1 ports/x11/xautolock/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:35:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2045916A4CE; Sat, 14 Aug 2004 21:35:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 026D343D1F; Sat, 14 Aug 2004 21:35:26 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELZPAT058492; Sat, 14 Aug 2004 21:35:25 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELZPSn058491; Sat, 14 Aug 2004 21:35:25 GMT (envelope-from kris) Message-Id: <200408142135.i7ELZPSn058491@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 14 Aug 2004 21:35:25 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/irc/ctrlproxy Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:35:26 -0000 kris 2004-08-14 21:35:25 UTC FreeBSD ports repository Modified files: irc/ctrlproxy Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.8 +2 -0 ports/irc/ctrlproxy/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:36:08 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 49DA216A4CE; Sat, 14 Aug 2004 21:36:08 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 29CF643D45; Sat, 14 Aug 2004 21:36:08 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELa8UP058561; Sat, 14 Aug 2004 21:36:08 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELa8as058560; Sat, 14 Aug 2004 21:36:08 GMT (envelope-from kris) Message-Id: <200408142136.i7ELa8as058560@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 14 Aug 2004 21:36:08 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/clip Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:36:08 -0000 kris 2004-08-14 21:36:08 UTC FreeBSD ports repository Modified files: databases/clip Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.30 +2 -0 ports/databases/clip/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:38:18 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6EA2716A4CF; Sat, 14 Aug 2004 21:38:18 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DC3B43D49; Sat, 14 Aug 2004 21:38:18 +0000 (GMT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELcIZr058666; Sat, 14 Aug 2004 21:38:18 GMT (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELcIOF058665; Sat, 14 Aug 2004 21:38:18 GMT (envelope-from marcus) Message-Id: <200408142138.i7ELcIOF058665@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 14 Aug 2004 21:38:18 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gtk20 Makefile distinfo ports/x11-toolkits/gtk20/files patch-al X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:38:18 -0000 marcus 2004-08-14 21:38:18 UTC FreeBSD ports repository Modified files: x11-toolkits/gtk20 Makefile distinfo Removed files: x11-toolkits/gtk20/files patch-al Log: Update to 2.4.7 which has the fix for the FileSelector bug as well as a potential crash when trying to get a user's home directory. Revision Changes Path 1.135 +1 -2 ports/x11-toolkits/gtk20/Makefile 1.70 +2 -2 ports/x11-toolkits/gtk20/distinfo 1.2 +0 -69 ports/x11-toolkits/gtk20/files/patch-al (dead) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:38:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 072E316A4CE; Sat, 14 Aug 2004 21:38:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDE0343D39; Sat, 14 Aug 2004 21:38:57 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELcvxx058704; Sat, 14 Aug 2004 21:38:57 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELcvKI058703; Sat, 14 Aug 2004 21:38:57 GMT (envelope-from kris) Message-Id: <200408142138.i7ELcvKI058703@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 14 Aug 2004 21:38:57 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/goggles Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:38:58 -0000 kris 2004-08-14 21:38:57 UTC FreeBSD ports repository Modified files: multimedia/goggles Makefile Log: BROKEN: Size mismatch Revision Changes Path 1.23 +2 -0 ports/multimedia/goggles/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:39:43 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 69AA316A4CE; Sat, 14 Aug 2004 21:39:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B81543D2D; Sat, 14 Aug 2004 21:39:43 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELdha6058746; Sat, 14 Aug 2004 21:39:43 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELdhKH058745; Sat, 14 Aug 2004 21:39:43 GMT (envelope-from kris) Message-Id: <200408142139.i7ELdhKH058745@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 14 Aug 2004 21:39:43 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/gtklp Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:39:43 -0000 kris 2004-08-14 21:39:43 UTC FreeBSD ports repository Modified files: print/gtklp Makefile Log: BROKEN: Size mismatch Revision Changes Path 1.14 +2 -0 ports/print/gtklp/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:40:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 98AD816A4CE; Sat, 14 Aug 2004 21:40:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 76E7E43D54; Sat, 14 Aug 2004 21:40:28 +0000 (GMT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELeSIh058839; Sat, 14 Aug 2004 21:40:28 GMT (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELeS8H058838; Sat, 14 Aug 2004 21:40:28 GMT (envelope-from phk) Message-Id: <200408142140.i7ELeS8H058838@repoman.freebsd.org> From: Poul-Henning Kamp Date: Sat, 14 Aug 2004 21:40:28 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/fdc fdc.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:40:28 -0000 phk 2004-08-14 21:40:28 UTC FreeBSD src repository Modified files: sys/dev/fdc fdc.c Log: Remove confused comment. Revision Changes Path 1.283 +0 -4 src/sys/dev/fdc/fdc.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:40:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 733F416A4CE; Sat, 14 Aug 2004 21:40:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5567243D1F; Sat, 14 Aug 2004 21:40:50 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELeoTk058895; Sat, 14 Aug 2004 21:40:50 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELeoDM058894; Sat, 14 Aug 2004 21:40:50 GMT (envelope-from kris) Message-Id: <200408142140.i7ELeoDM058894@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 14 Aug 2004 21:40:50 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/hs-alex Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:40:50 -0000 kris 2004-08-14 21:40:50 UTC FreeBSD ports repository Modified files: devel/hs-alex Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.13 +2 -0 ports/devel/hs-alex/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:41:58 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6789C16A4CE; Sat, 14 Aug 2004 21:41:58 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48E5843D3F; Sat, 14 Aug 2004 21:41:58 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELfwHG058943; Sat, 14 Aug 2004 21:41:58 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELfwS8058941; Sat, 14 Aug 2004 21:41:58 GMT (envelope-from kris) Message-Id: <200408142141.i7ELfwS8058941@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 14 Aug 2004 21:41:58 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/libjtree Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:41:58 -0000 kris 2004-08-14 21:41:58 UTC FreeBSD ports repository Modified files: x11-toolkits/libjtree Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.16 +2 -0 ports/x11-toolkits/libjtree/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:42:49 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A8BF216A4CE; Sat, 14 Aug 2004 21:42:49 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88E8D43D39; Sat, 14 Aug 2004 21:42:49 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELgno2058987; Sat, 14 Aug 2004 21:42:49 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELgnAb058986; Sat, 14 Aug 2004 21:42:49 GMT (envelope-from kris) Message-Id: <200408142142.i7ELgnAb058986@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 14 Aug 2004 21:42:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/mkvtoolnix Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:42:49 -0000 kris 2004-08-14 21:42:49 UTC FreeBSD ports repository Modified files: multimedia/mkvtoolnix Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.11 +2 -0 ports/multimedia/mkvtoolnix/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:43:37 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9740816A4CE; Sat, 14 Aug 2004 21:43:37 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D1A143D46; Sat, 14 Aug 2004 21:43:37 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELhbqO059079; Sat, 14 Aug 2004 21:43:37 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELhbHY059078; Sat, 14 Aug 2004 21:43:37 GMT (envelope-from marius) Message-Id: <200408142143.i7ELhbHY059078@repoman.freebsd.org> From: Marius Strobl Date: Sat, 14 Aug 2004 21:43:37 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pci if_dc.c src/sys/sparc64/include ofw_machdep.h src/sys/sparc64/sparc64 ofw_machdep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:43:37 -0000 marius 2004-08-14 21:43:37 UTC FreeBSD src repository Modified files: sys/pci if_dc.c sys/sparc64/include ofw_machdep.h sys/sparc64/sparc64 ofw_machdep.c Log: - Make OF_getetheraddr() honour the "local-mac-address?" system config variable. If set to "true" OF_getetheraddr() will now return the unique MAC address stored in the "local-mac-address" property of the device's OFW node if present and the host address/system default MAC address if the node doesn't doesn't have such a property. If set to "false" the host address will be returned for all devices like before this change. This brings the behaviour of device drivers for NICs with OFW support/ FCode, i.e. dc(4) for on-board DM9102A on Sun machines, gem(4) and hme(4), regarding "local-mac-address?" in line with NetBSD and Solaris. The man pages of the respective drivers will be updated separately to reflect this change. - Remove OF_getetheraddr2() which was used as a stopgap in dc(4). Its functionality is now part of OF_getetheraddr(). Revision Changes Path 1.148 +1 -1 src/sys/pci/if_dc.c 1.5 +0 -1 src/sys/sparc64/include/ofw_machdep.h 1.11 +11 -11 src/sys/sparc64/sparc64/ofw_machdep.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:43:50 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1C6A416A4CE; Sat, 14 Aug 2004 21:43:50 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F184943D1D; Sat, 14 Aug 2004 21:43:49 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELhnnh059117; Sat, 14 Aug 2004 21:43:49 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELhnIo059116; Sat, 14 Aug 2004 21:43:49 GMT (envelope-from kris) Message-Id: <200408142143.i7ELhnIo059116@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 14 Aug 2004 21:43:49 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/offlineimap Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:43:50 -0000 kris 2004-08-14 21:43:49 UTC FreeBSD ports repository Modified files: mail/offlineimap Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.22 +2 -0 ports/mail/offlineimap/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:44:35 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9399216A4CE; Sat, 14 Aug 2004 21:44:35 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7320E43D31; Sat, 14 Aug 2004 21:44:35 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELiZZ2059162; Sat, 14 Aug 2004 21:44:35 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELiZ7Y059161; Sat, 14 Aug 2004 21:44:35 GMT (envelope-from marius) Message-Id: <200408142144.i7ELiZ7Y059161@repoman.freebsd.org> From: Marius Strobl Date: Sat, 14 Aug 2004 21:44:35 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/man/man4 dc.4 gem.4 hme.4 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:44:35 -0000 marius 2004-08-14 21:44:35 UTC FreeBSD src repository Modified files: share/man/man4 dc.4 gem.4 hme.4 Log: - Capitalize Ethernet and Fast Ethernet. - Add a NOTES section with information regarding the "local-mac-address?" system configuration variable on sparc64 and add a reference to eeprom(8) for using it. Dump document date for this. - In dc.4, add the on-board DM9102A on Sun Netra X1 and Sun Fire V100 to the list of known working devices. Revision Changes Path 1.28 +34 -6 src/share/man/man4/dc.4 1.3 +28 -3 src/share/man/man4/gem.4 1.4 +25 -1 src/share/man/man4/hme.4 From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:46:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABB4916A4CE; Sat, 14 Aug 2004 21:46:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B0EA43D4C; Sat, 14 Aug 2004 21:46:28 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELkSVR059297; Sat, 14 Aug 2004 21:46:28 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELkSxI059296; Sat, 14 Aug 2004 21:46:28 GMT (envelope-from kris) Message-Id: <200408142146.i7ELkSxI059296@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 14 Aug 2004 21:46:28 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/py-psycopg Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:46:28 -0000 kris 2004-08-14 21:46:28 UTC FreeBSD ports repository Modified files: databases/py-psycopg Makefile Log: BROKEN: Unfetchable Revision Changes Path 1.14 +2 -0 ports/databases/py-psycopg/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:51:16 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A3FC816A4CE; Sat, 14 Aug 2004 21:51:16 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8636743D41; Sat, 14 Aug 2004 21:51:16 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELpGRp059486; Sat, 14 Aug 2004 21:51:16 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELpGob059485; Sat, 14 Aug 2004 21:51:16 GMT (envelope-from oliver) Message-Id: <200408142151.i7ELpGob059485@repoman.freebsd.org> From: Oliver Lehmann Date: Sat, 14 Aug 2004 21:51:16 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/atlas pkg-plist ports/multimedia/xawtv pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:51:16 -0000 oliver 2004-08-14 21:51:16 UTC FreeBSD ports repository Modified files: devel/atlas pkg-plist multimedia/xawtv pkg-plist Log: add some extra files/directories Revision Changes Path 1.9 +1 -0 ports/devel/atlas/pkg-plist 1.17 +2 -0 ports/multimedia/xawtv/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:51:22 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 544F116A4DA; Sat, 14 Aug 2004 21:51:22 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3555843D1D; Sat, 14 Aug 2004 21:51:22 +0000 (GMT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELpMQQ059518; Sat, 14 Aug 2004 21:51:22 GMT (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELpMr3059517; Sat, 14 Aug 2004 21:51:22 GMT (envelope-from kris) Message-Id: <200408142151.i7ELpMr3059517@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 14 Aug 2004 21:51:22 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/geist Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:51:22 -0000 kris 2004-08-14 21:51:22 UTC FreeBSD ports repository Modified files: graphics/geist Makefile Log: BROKEN: Does not build Revision Changes Path 1.11 +2 -0 ports/graphics/geist/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:53:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABED616A4CE; Sat, 14 Aug 2004 21:53:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8313C43D39; Sat, 14 Aug 2004 21:53:23 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELrNbr059590; Sat, 14 Aug 2004 21:53:23 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELrNQR059589; Sat, 14 Aug 2004 21:53:23 GMT (envelope-from oliver) Message-Id: <200408142153.i7ELrNQR059589@repoman.freebsd.org> From: Oliver Lehmann Date: Sat, 14 Aug 2004 21:53:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/varconf Makefile pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:53:23 -0000 oliver 2004-08-14 21:53:23 UTC FreeBSD ports repository Modified files: devel/varconf Makefile pkg-plist Log: USE_LIBTOOL_VER 13 -> 15 Bump PORTREVISION Don't create share/doc/$PORTNAME-$PORTVERSION add an extra file, and take care of libdata/pkgconfig Revision Changes Path 1.10 +6 -3 ports/devel/varconf/Makefile 1.7 +2 -1 ports/devel/varconf/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 21:57:56 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8B9116A4CE; Sat, 14 Aug 2004 21:57:56 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C053743D41; Sat, 14 Aug 2004 21:57:56 +0000 (GMT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ELvubc059828; Sat, 14 Aug 2004 21:57:56 GMT (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ELvurH059827; Sat, 14 Aug 2004 21:57:56 GMT (envelope-from oliver) Message-Id: <200408142157.i7ELvurH059827@repoman.freebsd.org> From: Oliver Lehmann Date: Sat, 14 Aug 2004 21:57:56 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/spirit pkg-plist ports/security/libntlm pkg-plist ports/math/cln pkg-plist ports/graphics/lcms pkg-plist ports/devel/libassa pkg-plist ports/audio/libcdaudio pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 21:57:56 -0000 oliver 2004-08-14 21:57:56 UTC FreeBSD ports repository Modified files: devel/spirit pkg-plist security/libntlm pkg-plist math/cln pkg-plist graphics/lcms pkg-plist devel/libassa pkg-plist audio/libcdaudio pkg-plist Log: take care of $PREFIX/libdata/pkgconfig Revision Changes Path 1.7 +1 -0 ports/audio/libcdaudio/pkg-plist 1.2 +1 -0 ports/devel/libassa/pkg-plist 1.3 +1 -0 ports/devel/spirit/pkg-plist 1.8 +1 -0 ports/graphics/lcms/pkg-plist 1.7 +1 -0 ports/math/cln/pkg-plist 1.3 +1 -0 ports/security/libntlm/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Aug 14 22:03:48 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7265416A4CF; Sat, 14 Aug 2004 22:03:48 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 523D943D45; Sat, 14 Aug 2004 22:03:48 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EM3mKN060049; Sat, 14 Aug 2004 22:03:48 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EM3m4h060048; Sat, 14 Aug 2004 22:03:48 GMT (envelope-from lofi) Message-Id: <200408142203.i7EM3m4h060048@repoman.freebsd.org> From: Michael Nottebrock Date: Sat, 14 Aug 2004 22:03:48 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/libtunepimp Makefileports/audio/libtunepimp/files patch-lib_mp3_trm.cpp X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 22:03:48 -0000 lofi 2004-08-14 22:03:48 UTC FreeBSD ports repository Modified files: audio/libtunepimp Makefile Added files: audio/libtunepimp/files patch-lib_mp3_trm.cpp Log: Respect PTHREAD_LIBS, fix build on -STABLE. Revision Changes Path 1.2 +3 -0 ports/audio/libtunepimp/Makefile 1.1 +10 -0 ports/audio/libtunepimp/files/patch-lib_mp3_trm.cpp (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 22:10:26 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 889AE16A4CE; Sat, 14 Aug 2004 22:10:26 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FEAB43D1D; Sat, 14 Aug 2004 22:10:26 +0000 (GMT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EMAQok060334; Sat, 14 Aug 2004 22:10:26 GMT (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EMAQtT060333; Sat, 14 Aug 2004 22:10:26 GMT (envelope-from imp) Message-Id: <200408142210.i7EMAQtT060333@repoman.freebsd.org> From: Warner Losh Date: Sat, 14 Aug 2004 22:10:26 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/usb uhub.c usb_port.h usb_subr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 22:10:26 -0000 imp 2004-08-14 22:10:26 UTC FreeBSD src repository Modified files: sys/dev/usb uhub.c usb_port.h usb_subr.c Log: Next step in making usb more newbus: o reprobe children when a new driver is added to uhub o fix the usbd_probe_and_attach to set the ivars to a malloc'd area, as well as freeing the ivars on child destruction. o Don't delete children that don't attach. Evidentally, the need to do this is a common misconception. o minor formatting foo that may violate style(9) at the moment, but keeps the diffs against my p4 tree smaller. This does not solve the ugen gobbling things up problem, but the fixes I have for that expose bugs in other parts of the tree... Revision Changes Path 1.61 +14 -26 src/sys/dev/usb/uhub.c 1.66 +5 -1 src/sys/dev/usb/usb_port.h 1.68 +31 -37 src/sys/dev/usb/usb_subr.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 22:38:21 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 12FCB16A4CE; Sat, 14 Aug 2004 22:38:21 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A31343D39; Sat, 14 Aug 2004 22:38:21 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EMcKOW061059; Sat, 14 Aug 2004 22:38:20 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EMcKV0061058; Sat, 14 Aug 2004 22:38:20 GMT (envelope-from marius) Message-Id: <200408142238.i7EMcKV0061058@repoman.freebsd.org> From: Marius Strobl Date: Sat, 14 Aug 2004 22:38:20 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/hme if_hme_pci.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 22:38:21 -0000 marius 2004-08-14 22:38:20 UTC FreeBSD src repository Modified files: sys/dev/hme if_hme_pci.c Log: Make hme(4), i.e. the PCI-variant, MI by reading the MAC address on sytems without Open Firmware directly instead of using OF_getetheraddr(). This is a bit painful though, as the MAC address is contained in the NA field of the VPD of the EBus bridge, which is is another function of the same chip. To make it worse, the VPD of the EBus bridge can't be accessed via the PCI capability pointer but has to be digged out from the Boot PROM and has a non-standard format. The PCI VPD struct and macros used here should be part of the FreeBSD PCI code nevertheless. Approved by: tmm Based on: NetBSD Tested with: Sun X1032A (hme(4)-isp(4)-combo card) on alpha and i386 Revision Changes Path 1.15 +152 -3 src/sys/dev/hme/if_hme_pci.c From owner-cvs-all@FreeBSD.ORG Sat Aug 14 22:38:51 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2071B16A4CE; Sat, 14 Aug 2004 22:38:51 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0085143D49; Sat, 14 Aug 2004 22:38:51 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EMcoZq061098; Sat, 14 Aug 2004 22:38:50 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EMcoLl061097; Sat, 14 Aug 2004 22:38:50 GMT (envelope-from marius) Message-Id: <200408142238.i7EMcoLl061097@repoman.freebsd.org> From: Marius Strobl Date: Sat, 14 Aug 2004 22:38:50 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf NOTES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 22:38:51 -0000 marius 2004-08-14 22:38:50 UTC FreeBSD src repository Modified files: sys/conf NOTES Log: Add hme(4) here now that it's MI. Revision Changes Path 1.1260 +2 -0 src/sys/conf/NOTES From owner-cvs-all@FreeBSD.ORG Sat Aug 14 22:40:20 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 21E4816A4D9; Sat, 14 Aug 2004 22:40:20 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EB8B543D48; Sat, 14 Aug 2004 22:40:19 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7EMeGQ1061200; Sat, 14 Aug 2004 22:40:16 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7EMeGk1061199; Sat, 14 Aug 2004 22:40:16 GMT (envelope-from marius) Message-Id: <200408142240.i7EMeGk1061199@repoman.freebsd.org> From: Marius Strobl Date: Sat, 14 Aug 2004 22:40:16 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules Makefile src/sys/modules/hme Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 22:40:21 -0000 marius 2004-08-14 22:40:16 UTC FreeBSD src repository Modified files: sys/modules Makefile sys/modules/hme Makefile Log: Now that hme(4) is MI build its module on all platforms. Tested by: `make universe` and powerpc cross-build on i386 Revision Changes Path 1.392 +1 -2 src/sys/modules/Makefile 1.3 +5 -2 src/sys/modules/hme/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 23:34:23 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7514216A4CF; Sat, 14 Aug 2004 23:34:23 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4ACB043D3F; Sat, 14 Aug 2004 23:34:23 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ENYNYC062653; Sat, 14 Aug 2004 23:34:23 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ENYNZn062652; Sat, 14 Aug 2004 23:34:23 GMT (envelope-from lofi) Message-Id: <200408142334.i7ENYNZn062652@repoman.freebsd.org> From: Michael Nottebrock Date: Sat, 14 Aug 2004 23:34:23 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio Makefile ports/audio/anthem Makefile distinfo pkg-descr pkg-plist ports/audio/anthem/files patch-FilteredKListView.cpppatch-RubberSelectionBox.cpp ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 23:34:23 -0000 lofi 2004-08-14 23:34:23 UTC FreeBSD ports repository Modified files: audio Makefile Added files: audio/anthem Makefile distinfo pkg-descr pkg-plist audio/anthem/files patch-Actions.cpp patch-ClockWidget.cpp patch-FilteredKListView.cpp patch-KeyWidgets.cpp patch-PhraseSelectWidget.cpp patch-RubberSelectionBox.cpp patch-SnapWidget.cpp patch-VoiceWidget.cpp patch-anthem_misc_Clipboard.cpp patch-anthem_settings_Instrument.cpp patch-anthem_songwindow_SongWindow.cpp patch-artInsertActionWidget.cpp patch-configure patch-debug.cpp patch-dpcolourwidget.cpp Log: Add anthem, a KDE midi sequencer. PR: ports/59243 Submitted by: Mathew Kanner Revision Changes Path 1.548 +1 -0 ports/audio/Makefile 1.1 +37 -0 ports/audio/anthem/Makefile (new) 1.1 +2 -0 ports/audio/anthem/distinfo (new) 1.1 +36 -0 ports/audio/anthem/files/patch-Actions.cpp (new) 1.1 +21 -0 ports/audio/anthem/files/patch-ClockWidget.cpp (new) 1.1 +19 -0 ports/audio/anthem/files/patch-FilteredKListView.cpp (new) 1.1 +19 -0 ports/audio/anthem/files/patch-KeyWidgets.cpp (new) 1.1 +36 -0 ports/audio/anthem/files/patch-PhraseSelectWidget.cpp (new) 1.1 +36 -0 ports/audio/anthem/files/patch-RubberSelectionBox.cpp (new) 1.1 +19 -0 ports/audio/anthem/files/patch-SnapWidget.cpp (new) 1.1 +36 -0 ports/audio/anthem/files/patch-VoiceWidget.cpp (new) 1.1 +11 -0 ports/audio/anthem/files/patch-anthem_misc_Clipboard.cpp (new) 1.1 +11 -0 ports/audio/anthem/files/patch-anthem_settings_Instrument.cpp (new) 1.1 +11 -0 ports/audio/anthem/files/patch-anthem_songwindow_SongWindow.cpp (new) 1.1 +19 -0 ports/audio/anthem/files/patch-artInsertActionWidget.cpp (new) 1.1 +19 -0 ports/audio/anthem/files/patch-configure (new) 1.1 +31 -0 ports/audio/anthem/files/patch-debug.cpp (new) 1.1 +21 -0 ports/audio/anthem/files/patch-dpcolourwidget.cpp (new) 1.1 +10 -0 ports/audio/anthem/pkg-descr (new) 1.1 +56 -0 ports/audio/anthem/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sat Aug 14 23:34:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E145F16A4D0; Sat, 14 Aug 2004 23:34:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C21AE43D2F; Sat, 14 Aug 2004 23:34:34 +0000 (GMT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ENYYqF062699; Sat, 14 Aug 2004 23:34:34 GMT (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ENYYlA062698; Sat, 14 Aug 2004 23:34:34 GMT (envelope-from lofi) Message-Id: <200408142334.i7ENYYlA062698@repoman.freebsd.org> From: Michael Nottebrock Date: Sat, 14 Aug 2004 23:34:34 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 23:34:35 -0000 lofi 2004-08-14 23:34:34 UTC FreeBSD ports repository Modified files: . modules Log: anthem --> ports/audio/anthem Revision Changes Path 1.10894 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Aug 14 23:53:05 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 19ADA16A4CE; Sat, 14 Aug 2004 23:53:05 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE02F43D31; Sat, 14 Aug 2004 23:53:04 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ENr4RH063236; Sat, 14 Aug 2004 23:53:04 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ENr41U063235; Sat, 14 Aug 2004 23:53:04 GMT (envelope-from marius) Message-Id: <200408142353.i7ENr41U063235@repoman.freebsd.org> From: Marius Strobl Date: Sat, 14 Aug 2004 23:53:04 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/conf kmod.mk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 23:53:05 -0000 marius 2004-08-14 23:53:04 UTC FreeBSD src repository Modified files: sys/conf kmod.mk Log: Add sparc64/pci/ofw_pci_if.m to the list of MFILES so modules can use sparc64/pci/ofw_pci.h. This is a bit messy right now but (hopefully) will get better once the MI OFW PCI code has moved from sparc64/pci to dev/ofw. Revision Changes Path 1.166 +2 -1 src/sys/conf/kmod.mk From owner-cvs-all@FreeBSD.ORG Sat Aug 14 23:54:28 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 297E016A4CE; Sat, 14 Aug 2004 23:54:28 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DC7243D1F; Sat, 14 Aug 2004 23:54:28 +0000 (GMT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ENsSbo063322; Sat, 14 Aug 2004 23:54:28 GMT (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ENsS7a063321; Sat, 14 Aug 2004 23:54:28 GMT (envelope-from marius) Message-Id: <200408142354.i7ENsS7a063321@repoman.freebsd.org> From: Marius Strobl Date: Sat, 14 Aug 2004 23:54:27 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/uart uart_bus_isa.c uart_cpu.h uart_cpu_alpha.c uart_cpu_amd64.c uart_cpu_i386.c uart_cpu_ia64.c uart_cpu_pc98.c uart_cpu_sparc64.c src/sys/modules/uart Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 23:54:28 -0000 marius 2004-08-14 23:54:27 UTC FreeBSD src repository Modified files: sys/dev/uart uart_bus_isa.c uart_cpu.h uart_cpu_alpha.c uart_cpu_amd64.c uart_cpu_i386.c uart_cpu_ia64.c uart_cpu_pc98.c uart_cpu_sparc64.c sys/modules/uart Makefile Log: - Introduce an uart_cpu_identify() which is implemented in uart_cpu_.c and that can be used as an identify function for all kinds of busses on a certain platform. Expect for sparc64 these are only stubs right now. [1] - For sparc64, add code to its uart_cpu_identify() for registering the on- board ISA UARTs and their resources based on information obtained from Open Firmware. It would be better if this would be done in the OFW ISA code. However, due to the common FreeBSD ISA code and PNP-IDs not always being present in the properties of the ISA nodes there seems to be no good way to implement that. Therefore special casing UARTs as the sole really relevant ISA devices on sparc64 seemed reasonable. [2] Approved by: marcel Discussed with: marcel [1], tmm [2] Tested by: make universe Revision Changes Path 1.3 +2 -0 src/sys/dev/uart/uart_bus_isa.c 1.6 +1 -0 src/sys/dev/uart/uart_cpu.h 1.8 +6 -0 src/sys/dev/uart/uart_cpu_alpha.c 1.8 +6 -0 src/sys/dev/uart/uart_cpu_amd64.c 1.8 +6 -0 src/sys/dev/uart/uart_cpu_i386.c 1.8 +6 -0 src/sys/dev/uart/uart_cpu_ia64.c 1.12 +6 -0 src/sys/dev/uart/uart_cpu_pc98.c 1.11 +46 -0 src/sys/dev/uart/uart_cpu_sparc64.c 1.11 +7 -2 src/sys/modules/uart/Makefile From owner-cvs-all@FreeBSD.ORG Sat Aug 14 23:59:34 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF33F16A4CE; Sat, 14 Aug 2004 23:59:34 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9068643D46; Sat, 14 Aug 2004 23:59:34 +0000 (GMT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i7ENxYOJ063502; Sat, 14 Aug 2004 23:59:34 GMT (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i7ENxYQN063501; Sat, 14 Aug 2004 23:59:34 GMT (envelope-from ceri) Message-Id: <200408142359.i7ENxYQN063501@repoman.freebsd.org> From: Ceri Davies Date: Sat, 14 Aug 2004 23:59:34 +0000 (UTC) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/en_US.ISO8859-1/share/sgml/glossary freebsd-glossary.sgml X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 14 Aug 2004 23:59:34 -0000 ceri 2004-08-14 23:59:34 UTC FreeBSD doc repository Modified files: en_US.ISO8859-1/share/sgml/glossary freebsd-glossary.sgml Log: Add an entry for TSC. Approved by: dg Revision Changes Path 1.16 +15 -0 doc/en_US.ISO8859-1/share/sgml/glossary/freebsd-glossary.sgml