From owner-cvs-all@FreeBSD.ORG Sun Apr 11 00:02: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 854F316A4CE; Sun, 11 Apr 2004 00:02:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65B8343D41; Sun, 11 Apr 2004 00:02:50 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3B72oGe081396; Sun, 11 Apr 2004 00:02:50 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3B72oeY081395; Sun, 11 Apr 2004 00:02:50 -0700 (PDT) (envelope-from imp) Message-Id: <200404110702.i3B72oeY081395@repoman.freebsd.org> From: Warner Losh Date: Sun, 11 Apr 2004 00:02:50 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pci 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: Sun, 11 Apr 2004 07:02:50 -0000 imp 2004/04/11 00:02:50 PDT FreeBSD src repository Modified files: sys/dev/pci pci.c Log: Add system tunable to turn off power state changes. Default to off until we get the resource allocation stuff hammered out. Fix and off by one error that caused unnecessary filtering of valid BARs for only 4 bytes than ICH3 and other PCI IDE controllers have. Andrew Gallatin submitted this, although it doesn't solve the problems ICH3 controllers have with the new code, it does restore the former resource list on the probe line. Revision Changes Path 1.240 +48 -15 src/sys/dev/pci/pci.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 00:50: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 EAA6C16A4CE; Sun, 11 Apr 2004 00:50:09 -0700 (PDT) Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.157.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id D576943D2D; Sun, 11 Apr 2004 00:50:04 -0700 (PDT) (envelope-from mark@grondar.org) Received: from storm.FreeBSD.org.uk (Ugrondar@localhost [127.0.0.1]) i3B7o3kX053391; Sun, 11 Apr 2004 08:50:03 +0100 (BST) (envelope-from mark@grondar.org) Received: (from Ugrondar@localhost)i3B7o32Y053390; Sun, 11 Apr 2004 08:50:03 +0100 (BST) (envelope-from mark@grondar.org) X-Authentication-Warning: storm.FreeBSD.org.uk: Ugrondar set sender to mark@grondar.org using -f Received: from grondar.org (localhost [127.0.0.1])i3B7kiIn075106; Sun, 11 Apr 2004 08:46:44 +0100 (BST) (envelope-from mark@grondar.org) From: Mark Murray Message-Id: <200404110746.i3B7kiIn075106@grimreaper.grondar.org> To: Nate Lawson In-Reply-To: Your message of "Sat, 10 Apr 2004 16:01:01 PDT." <20040410155637.Q58852@root.org> Date: Sun, 11 Apr 2004 08:46:43 +0100 Sender: mark@grondar.org X-Spam-Score: 4 (****) FROM_NO_LOWER,MSGID_FROM_MTA_SHORT X-Scanned-By: MIMEDefang 2.39 cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/modules/random Makefile src/sys/dev/random harvest.c hash.c hash.h nehemiah.c nehemiah.h probe.c randomdev.c randomdev.h randomdev_soft.c randomdev_soft.h yar X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 07:50:10 -0000 Nate Lawson writes: > > Still, opinion seems to be in favour of further postprocessing, so I'll > > do it. > I haven't looked at the FreeBSD PRNG yet but why not seed Yarrow? Yarrow's entropy accumulation and PRNG generator parts are disconnected (that is part of its point), so there is no connection between the number of bytes harvested and the number of bytes supplied. This makes a very long armoured pipeline between accumulation and issue, which seems like overkill when the suppied entropy is 99% OK (far better than Yarrow currently ever gets, BTW). In adding a PRNG to the output of the nehemiah generator, I'd want to make something like output = hash(nehemiah_output()); So that 1) the real entropy bytes are used almost immediately and 2) the number of bytes supplied to the user can be very tightly known. Yarrow is unsuitable for this purpose; it is a great generator when you have a low-entropy environment and you need to protect against attackers having potential knowledge of the inputs. I'm looking at options right now. M -- Mark Murray iumop ap!sdn w,I idlaH From owner-cvs-all@FreeBSD.ORG Sun Apr 11 00:53: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 502AD16A4CE; Sun, 11 Apr 2004 00:53:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31F8F43D3F; Sun, 11 Apr 2004 00:53:50 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3B7rnGe098348; Sun, 11 Apr 2004 00:53:49 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3B7rnhU098347; Sun, 11 Apr 2004 00:53:49 -0700 (PDT) (envelope-from blackend) Message-Id: <200404110753.i3B7rnhU098347@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 11 Apr 2004 00:53:49 -0700 (PDT) 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/boot 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, 11 Apr 2004 07:53:50 -0000 blackend 2004/04/11 00:53:49 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/boot chapter.sgml Log: Punctuation and a /Uppercase/lowercase/ fixes. Revision Changes Path 1.56 +3 -3 doc/en_US.ISO8859-1/books/handbook/boot/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 00:56: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 B2C2916A4CE; Sun, 11 Apr 2004 00:56:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9343443D31; Sun, 11 Apr 2004 00:56:37 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3B7ubGe098493; Sun, 11 Apr 2004 00:56:37 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3B7ubWp098492; Sun, 11 Apr 2004 00:56:37 -0700 (PDT) (envelope-from blackend) Message-Id: <200404110756.i3B7ubWp098492@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 11 Apr 2004 00:56:37 -0700 (PDT) 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/boot 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, 11 Apr 2004 07:56:37 -0000 blackend 2004/04/11 00:56:37 PDT FreeBSD doc repository Modified files: fr_FR.ISO8859-1/books/handbook/boot chapter.sgml Log: - Typos and translations fixes [1] - MFen 1.55 --> 1.56 Submitted by: Philippe Batailler [1] Revision Changes Path 1.9 +18 -18 doc/fr_FR.ISO8859-1/books/handbook/boot/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 01:07: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 C1F7216A4CE; Sun, 11 Apr 2004 01:07:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A471343D48; Sun, 11 Apr 2004 01:07:22 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3B87MGe001711; Sun, 11 Apr 2004 01:07:22 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3B87M1r001710; Sun, 11 Apr 2004 01:07:22 -0700 (PDT) (envelope-from marcus) Message-Id: <200404110807.i3B87M1r001710@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 11 Apr 2004 01:07:22 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/share/timedef 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, 11 Apr 2004 08:07:22 -0000 marcus 2004/04/11 01:07:22 PDT FreeBSD src repository (doc,ports committer) Modified files: share/timedef Makefile Log: Move en_CA from US_LINKS to GB_LINKS. Submitted by: adamw Approved by: ache Committed by: me since adamw should be studying for exams Revision Changes Path 1.43 +2 -2 src/share/timedef/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 01: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 3C70E16A4CE; Sun, 11 Apr 2004 01:38:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 345D843D3F; Sun, 11 Apr 2004 01:38:43 -0700 (PDT) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3B8chGe007742; Sun, 11 Apr 2004 01:38:43 -0700 (PDT) (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3B8cgMk007741; Sun, 11 Apr 2004 01:38:42 -0700 (PDT) (envelope-from mheinen) Message-Id: <200404110838.i3B8cgMk007741@repoman.freebsd.org> From: Martin Heinen Date: Sun, 11 Apr 2004 01:38:42 -0700 (PDT) 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/dev-model book.sgml doc/en_US.ISO8859-1/books/arch-handbook/pccard 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: Sun, 11 Apr 2004 08:38:43 -0000 mheinen 2004/04/11 01:38:42 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/dev-model book.sgml en_US.ISO8859-1/books/arch-handbook/pccard chapter.sgml en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml Log: Fix some typos. Revision Changes Path 1.9 +1 -1 doc/en_US.ISO8859-1/books/arch-handbook/pccard/chapter.sgml 1.2 +1 -1 doc/en_US.ISO8859-1/books/dev-model/book.sgml 1.292 +3 -3 doc/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 01:40: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 588EE16A4CE; Sun, 11 Apr 2004 01:40:12 -0700 (PDT) Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.157.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id C030643D53; Sun, 11 Apr 2004 01:40:11 -0700 (PDT) (envelope-from mark@grondar.org) Received: from storm.FreeBSD.org.uk (Ugrondar@localhost [127.0.0.1]) i3B8e9V4054137; Sun, 11 Apr 2004 09:40:09 +0100 (BST) (envelope-from mark@grondar.org) Received: (from Ugrondar@localhost)i3B8e9I1054136; Sun, 11 Apr 2004 09:40:09 +0100 (BST) (envelope-from mark@grondar.org) X-Authentication-Warning: storm.FreeBSD.org.uk: Ugrondar set sender to mark@grondar.org using -f Received: from grondar.org (localhost [127.0.0.1])i3B8cRIn075336; Sun, 11 Apr 2004 09:38:28 +0100 (BST) (envelope-from mark@grondar.org) From: Mark Murray Message-Id: <200404110838.i3B8cRIn075336@grimreaper.grondar.org> To: Nate Lawson In-Reply-To: Your message of "Sat, 10 Apr 2004 15:55:42 PDT." <20040410155306.W58852@root.org> Date: Sun, 11 Apr 2004 09:38:27 +0100 Sender: mark@grondar.org X-Spam-Score: 4 (****) FROM_NO_LOWER,MSGID_FROM_MTA_SHORT X-Scanned-By: MIMEDefang 2.39 cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/modules/random Makefile src/sys/dev/random harvest.c hash.c hash.h nehemiah.c nehemiah.h probe.c randomdev.c randomdev.h randomdev_soft.c randomdev_soft.h yar X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 08:40:12 -0000 Nate Lawson writes: > > Cryptographic strength is of lesser importance here, as the key > > input is Very Nicely Random(tm), however AES's speed and spectral > > qualities make it a good choice. It is important to remember that > > the hash is purely there to destroy any trends/tendencies that the > > hardware generator may have, and for that purpose an LFSR may work > > just fine. The hash is a "Whitener", and its requirements here are > > that its output spectrum is flat. > > An LFSR is not a cryptographic hash function. Do not use one to implement > a PRNG. The input is 99% random. It follows that if the hash/whitener is done properly the output should be 99% random. LFSR was an illustration; the intent is to use AES. M -- Mark Murray iumop ap!sdn w,I idlaH From owner-cvs-all@FreeBSD.ORG Sun Apr 11 01: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 3BD3A16A4CE; Sun, 11 Apr 2004 01:50:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C1AB43D49; Sun, 11 Apr 2004 01:50:04 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3B8o3Ge009807; Sun, 11 Apr 2004 01:50:03 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3B8o3lq009806; Sun, 11 Apr 2004 01:50:03 -0700 (PDT) (envelope-from blackend) Message-Id: <200404110850.i3B8o3lq009806@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 11 Apr 2004 01:50:03 -0700 (PDT) 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/mail 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, 11 Apr 2004 08:50:04 -0000 blackend 2004/04/11 01:50:03 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/mail chapter.sgml Log: - s/it's/its - Add some colons where needed Revision Changes Path 1.104 +3 -3 doc/en_US.ISO8859-1/books/handbook/mail/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 02:13: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 61E0816A4CE; Sun, 11 Apr 2004 02:13:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43D9B43D46; Sun, 11 Apr 2004 02:13:43 -0700 (PDT) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3B9DhGe016665; Sun, 11 Apr 2004 02:13:43 -0700 (PDT) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3B9DhqZ016664; Sun, 11 Apr 2004 02:13:43 -0700 (PDT) (envelope-from nyan) Message-Id: <200404110913.i3B9DhqZ016664@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Sun, 11 Apr 2004 02:13:43 -0700 (PDT) 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 probe.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 09:13:43 -0000 nyan 2004/04/11 02:13:43 PDT FreeBSD src repository Modified files: sys/dev/random probe.c Log: Fix pc98 build. Revision Changes Path 1.2 +3 -3 src/sys/dev/random/probe.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 02:40: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 EBAAE16A4CE; Sun, 11 Apr 2004 02:40:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAB4743D46; Sun, 11 Apr 2004 02:40:52 -0700 (PDT) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3B9eqGe020917; Sun, 11 Apr 2004 02:40:52 -0700 (PDT) (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3B9eqkg020916; Sun, 11 Apr 2004 02:40:52 -0700 (PDT) (envelope-from mheinen) Message-Id: <200404110940.i3B9eqkg020916@repoman.freebsd.org> From: Martin Heinen Date: Sun, 11 Apr 2004 02:40:52 -0700 (PDT) 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-primer 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, 11 Apr 2004 09:40:53 -0000 mheinen 2004/04/11 02:40:52 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/fdp-primer/sgml-primer chapter.sgml Log: Add a missing ";". Revision Changes Path 1.38 +1 -1 doc/en_US.ISO8859-1/books/fdp-primer/sgml-primer/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 03: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 D844B16A4CE; Sun, 11 Apr 2004 03:44:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEF8243D45; Sun, 11 Apr 2004 03:44:37 -0700 (PDT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BAibGe036603; Sun, 11 Apr 2004 03:44:37 -0700 (PDT) (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BAibYJ036602; Sun, 11 Apr 2004 03:44:37 -0700 (PDT) (envelope-from skv) Message-Id: <200404111044.i3BAibYJ036602@repoman.freebsd.org> From: Sergey Skvortsov Date: Sun, 11 Apr 2004 03:44:37 -0700 (PDT) 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-XML-SAX-ExpatXS Makefile distinfo pkg-deinstall pkg-descr pkg-install 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, 11 Apr 2004 10:44:38 -0000 skv 2004/04/11 03:44:37 PDT FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/p5-XML-SAX-ExpatXS Makefile distinfo pkg-deinstall pkg-descr pkg-install pkg-plist Log: add p5-XML-SAX-ExpatXS 0.98, perlSAX2 XS extension to Expat parser. Revision Changes Path 1.676 +1 -0 ports/textproc/Makefile 1.1 +28 -0 ports/textproc/p5-XML-SAX-ExpatXS/Makefile (new) 1.1 +2 -0 ports/textproc/p5-XML-SAX-ExpatXS/distinfo (new) 1.1 +6 -0 ports/textproc/p5-XML-SAX-ExpatXS/pkg-deinstall (new) 1.1 +6 -0 ports/textproc/p5-XML-SAX-ExpatXS/pkg-descr (new) 1.1 +6 -0 ports/textproc/p5-XML-SAX-ExpatXS/pkg-install (new) 1.1 +29 -0 ports/textproc/p5-XML-SAX-ExpatXS/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Apr 11 03:44: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 D9F5D16A4CE; Sun, 11 Apr 2004 03:44:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7C8643D49; Sun, 11 Apr 2004 03:44:54 -0700 (PDT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BAisGe036656; Sun, 11 Apr 2004 03:44:54 -0700 (PDT) (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BAisfu036655; Sun, 11 Apr 2004 03:44:54 -0700 (PDT) (envelope-from skv) Message-Id: <200404111044.i3BAisfu036655@repoman.freebsd.org> From: Sergey Skvortsov Date: Sun, 11 Apr 2004 03:44:54 -0700 (PDT) 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, 11 Apr 2004 10:44:55 -0000 skv 2004/04/11 03:44:54 PDT FreeBSD ports repository Modified files: . modules Log: p5-XML-SAX-ExpatXS --> ports/textproc/p5-XML-SAX-ExpatXS Revision Changes Path 1.9885 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Apr 11 04:10: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 9C41816A4CF; Sun, 11 Apr 2004 04:10:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D53743D2D; Sun, 11 Apr 2004 04:10:34 -0700 (PDT) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BBAYGe042151; Sun, 11 Apr 2004 04:10:34 -0700 (PDT) (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BBAXLM042150; Sun, 11 Apr 2004 04:10:33 -0700 (PDT) (envelope-from gerald) Message-Id: <200404111110.i3BBAXLM042150@repoman.freebsd.org> From: Gerald Pfeifer Date: Sun, 11 Apr 2004 04:10:33 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc32 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, 11 Apr 2004 11:10:34 -0000 gerald 2004/04/11 04:10:33 PDT FreeBSD ports repository Modified files: lang/gcc32 Makefile Log: This old version of GCC really only makes sense on i386 at this point (if at all), so use ONLY_FOR_ARCHS=i386. Drop maintainership. Revision Changes Path 1.166 +3 -5 ports/lang/gcc32/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 04:13: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 A5A8216A4CF; Sun, 11 Apr 2004 04:13:43 -0700 (PDT) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.131.111.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52D0943D1D; Sun, 11 Apr 2004 04:13:43 -0700 (PDT) (envelope-from gerald@pfeifer.com) Received: from [128.131.111.60] (acrux [128.131.111.60]) by vexpert.dbai.tuwien.ac.at (Postfix) with ESMTP id 0468413799; Sun, 11 Apr 2004 13:13:42 +0200 (CEST) Date: Sun, 11 Apr 2004 13:13:44 +0200 (CEST) From: Gerald Pfeifer To: Dirk Meyer In-Reply-To: <200404111110.i3BBAXLM042150@repoman.freebsd.org> Message-ID: References: <200404111110.i3BBAXLM042150@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/lang/gcc32 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, 11 Apr 2004 11:13:43 -0000 On Sun, 11 Apr 2004, Gerald Pfeifer wrote: > Modified files: > lang/gcc32 Makefile > Log: > This old version of GCC really only makes sense on i386 at this point (if at > all), so use ONLY_FOR_ARCHS=i386. Drop maintainership. Dirk, I strongly recommend that you update the gnustep-objc port to gcc33. In general, I suggest to get rid of at least gcc30 and gcc31 in the mid term. Gerald -- Gerald Pfeifer (Jerry) gerald@pfeifer.com http://www.pfeifer.com/gerald/ From owner-cvs-all@FreeBSD.ORG Sun Apr 11 04: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 3C12F16A4D2; Sun, 11 Apr 2004 04:50:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2631143D5A; Sun, 11 Apr 2004 04:50:18 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BBoHGe056196; Sun, 11 Apr 2004 04:50:17 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BBoH5w056195; Sun, 11 Apr 2004 04:50:17 -0700 (PDT) (envelope-from hrs) Message-Id: <200404111150.i3BBoH5w056195@repoman.freebsd.org> From: Hiroki Sato Date: Sun, 11 Apr 2004 04:50:17 -0700 (PDT) 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/share/sgml release.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: Sun, 11 Apr 2004 11:50:32 -0000 hrs 2004/04/11 04:50:17 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/share/sgml release.ent Log: The next release is 4.10, not 4.9.1. Approved by: re (implicitly) Revision Changes Path 1.1.2.25 +1 -1 src/release/doc/share/sgml/release.ent From owner-cvs-all@FreeBSD.ORG Sun Apr 11 05:00: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 0C5F816A4CE; Sun, 11 Apr 2004 05:00:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E230343D5C; Sun, 11 Apr 2004 05:00:45 -0700 (PDT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BC0jGe058321; Sun, 11 Apr 2004 05:00:45 -0700 (PDT) (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BC0jWe058320; Sun, 11 Apr 2004 05:00:45 -0700 (PDT) (envelope-from skv) Message-Id: <200404111200.i3BC0jWe058320@repoman.freebsd.org> From: Sergey Skvortsov Date: Sun, 11 Apr 2004 05:00:45 -0700 (PDT) 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-LibXML 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, 11 Apr 2004 12:00:46 -0000 skv 2004/04/11 05:00:45 PDT FreeBSD ports repository Modified files: textproc/p5-XML-LibXML Makefile distinfo Log: Updated to 1.58 Revision Changes Path 1.20 +3 -2 ports/textproc/p5-XML-LibXML/Makefile 1.13 +2 -2 ports/textproc/p5-XML-LibXML/distinfo From owner-cvs-all@FreeBSD.ORG Sun Apr 11 05:34: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 9736616A4CF; Sun, 11 Apr 2004 05:34:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7899743D53; Sun, 11 Apr 2004 05:34:55 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BCYtGe066957; Sun, 11 Apr 2004 05:34:55 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BCYtlN066956; Sun, 11 Apr 2004 05:34:55 -0700 (PDT) (envelope-from kris) Message-Id: <200404111234.i3BCYtlN066956@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 05:34:55 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/nl-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: Sun, 11 Apr 2004 12:34:55 -0000 kris 2004/04/11 05:34:55 PDT FreeBSD ports repository Modified files: textproc/nl-ispell Makefile Log: BROKEN: Install fails Revision Changes Path 1.5 +3 -1 ports/textproc/nl-ispell/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 06: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 C883516A4CE; Sun, 11 Apr 2004 06:25:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABE5843D31; Sun, 11 Apr 2004 06:25:23 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BDPNGe077912; Sun, 11 Apr 2004 06:25:23 -0700 (PDT) (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BDPNLw077911; Sun, 11 Apr 2004 06:25:23 -0700 (PDT) (envelope-from vanilla) Message-Id: <200404111325.i3BDPNLw077911@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Sun, 11 Apr 2004 06:25:23 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/chinese/irssi Makefile ports/chinese/irssi/files patch-src::fe-text::term-terminfo.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 13:25:24 -0000 vanilla 2004/04/11 06:25:23 PDT FreeBSD ports repository Modified files: chinese/irssi Makefile chinese/irssi/files patch-src::fe-text::term-terminfo.c Log: Fix pasting bug(>128bytes). Submitted by: kcwu via #bsdchat Revision Changes Path 1.22 +1 -1 ports/chinese/irssi/Makefile 1.5 +10 -1 ports/chinese/irssi/files/patch-src::fe-text::term-terminfo.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 06:30: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 4747516A4CF; Sun, 11 Apr 2004 06:30:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C52A43D1F; Sun, 11 Apr 2004 06:30:21 -0700 (PDT) (envelope-from peadar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BDULGe078088; Sun, 11 Apr 2004 06:30:21 -0700 (PDT) (envelope-from peadar@repoman.freebsd.org) Received: (from peadar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BDUKU6078087; Sun, 11 Apr 2004 06:30:20 -0700 (PDT) (envelope-from peadar) Message-Id: <200404111330.i3BDUKU6078087@repoman.freebsd.org> From: Peter Edwards Date: Sun, 11 Apr 2004 06:30:20 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfsclient nfs.h nfs_nfsiod.c nfs_node.c nfs_subs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 13:30:21 -0000 peadar 2004/04/11 06:30:20 PDT FreeBSD src repository Modified files: sys/nfsclient nfs.h nfs_nfsiod.c nfs_node.c nfs_subs.c Log: Clean up properly when unloading NFS client module. This includes a modified form of some code from Thomas Moestl (tmm@) to properly clean up the UMA zone and the "nfsnodehashtbl" hash table. Reviewed By: iedowse PR: 16299 Revision Changes Path 1.81 +2 -0 src/sys/nfsclient/nfs.h 1.81 +4 -2 src/sys/nfsclient/nfs_nfsiod.c 1.67 +10 -0 src/sys/nfsclient/nfs_node.c 1.126 +19 -0 src/sys/nfsclient/nfs_subs.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 06:33: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 1C79016A4CE; Sun, 11 Apr 2004 06:33:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01D8143D41; Sun, 11 Apr 2004 06:33:35 -0700 (PDT) (envelope-from peadar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BDXYGe079947; Sun, 11 Apr 2004 06:33:34 -0700 (PDT) (envelope-from peadar@repoman.freebsd.org) Received: (from peadar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BDXYjR079946; Sun, 11 Apr 2004 06:33:34 -0700 (PDT) (envelope-from peadar) Message-Id: <200404111333.i3BDXYjR079946@repoman.freebsd.org> From: Peter Edwards Date: Sun, 11 Apr 2004 06:33:34 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfsserver nfs.h nfs_srvsubs.c nfs_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, 11 Apr 2004 13:33:35 -0000 peadar 2004/04/11 06:33:34 PDT FreeBSD src repository Modified files: sys/nfsserver nfs.h nfs_srvsubs.c nfs_syscalls.c Log: Don't let the NFS server module be unloaded as long as there are nfsd processes running Reviewed By: iedowse PR: 16299 Revision Changes Path 1.74 +1 -0 src/sys/nfsserver/nfs.h 1.126 +2 -0 src/sys/nfsserver/nfs_srvsubs.c 1.97 +3 -3 src/sys/nfsserver/nfs_syscalls.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 06: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 2528A16A4CE; Sun, 11 Apr 2004 06:36:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B74B43D46; Sun, 11 Apr 2004 06:36:54 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BDarGe080144; Sun, 11 Apr 2004 06:36:53 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BDarMA080143; Sun, 11 Apr 2004 06:36:53 -0700 (PDT) (envelope-from ru) Message-Id: <200404111336.i3BDarMA080143@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 11 Apr 2004 06:36:53 -0700 (PDT) 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.h src/sbin/ifconfig ifconfig.8 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: Sun, 11 Apr 2004 13:36:54 -0000 ru 2004/04/11 06:36:53 PDT FreeBSD src repository Modified files: sys/net if.h sbin/ifconfig ifconfig.8 ifconfig.c Log: Added the new interface capability option for drivers that implement user-configurable polling(4) support. Make ifconfig(8) aware of it. Suggested by: luigi Revision Changes Path 1.78 +9 -1 src/sbin/ifconfig/ifconfig.8 1.102 +3 -1 src/sbin/ifconfig/ifconfig.c 1.85 +1 -0 src/sys/net/if.h From owner-cvs-all@FreeBSD.ORG Sun Apr 11 06:44: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 D75F016A4CE; Sun, 11 Apr 2004 06:44:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBE0043D1D; Sun, 11 Apr 2004 06:44:57 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BDivGe082124; Sun, 11 Apr 2004 06:44:57 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BDivg2082123; Sun, 11 Apr 2004 06:44:57 -0700 (PDT) (envelope-from ru) Message-Id: <200404111344.i3BDivg2082123@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 11 Apr 2004 06:44:57 -0700 (PDT) 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.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: Sun, 11 Apr 2004 13:44:58 -0000 ru 2004/04/11 06:44:57 PDT FreeBSD src repository Modified files: sbin/ifconfig ifconfig.8 Log: Document that -m also causes the capability list to be displayed. Revision Changes Path 1.79 +1 -1 src/sbin/ifconfig/ifconfig.8 From owner-cvs-all@FreeBSD.ORG Sun Apr 11 06:47: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 0502B16A4CE; Sun, 11 Apr 2004 06:47:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC13D43D46; Sun, 11 Apr 2004 06:47:15 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BDlFGe082242; Sun, 11 Apr 2004 06:47:15 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BDlFsm082241; Sun, 11 Apr 2004 06:47:15 -0700 (PDT) (envelope-from ru) Message-Id: <200404111347.i3BDlFsm082241@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 11 Apr 2004 06:47:15 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 13:47:16 -0000 ru 2004/04/11 06:47:15 PDT FreeBSD src repository Modified files: sys/pci if_dc.c Log: First driver with user-configurable polling(4). Revision Changes Path 1.142 +13 -1 src/sys/pci/if_dc.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 06:56: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 3D20416A4CE; Sun, 11 Apr 2004 06:56:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21B9B43D46; Sun, 11 Apr 2004 06:56:58 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BDuvGe084269; Sun, 11 Apr 2004 06:56:57 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BDuvmh084268; Sun, 11 Apr 2004 06:56:57 -0700 (PDT) (envelope-from blackend) Message-Id: <200404111356.i3BDuvmh084268@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 11 Apr 2004 06:56:57 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/share/sgml man-refs.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: Sun, 11 Apr 2004 13:56:58 -0000 blackend 2004/04/11 06:56:57 PDT FreeBSD doc repository Modified files: share/sgml man-refs.ent Log: Add vendor attribute for my previous addition. Spotted by: ceri Revision Changes Path 1.272 +1 -1 doc/share/sgml/man-refs.ent From owner-cvs-all@FreeBSD.ORG Sun Apr 11 07: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 D762D16A4CE; Sun, 11 Apr 2004 07:02:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A27043D1D; Sun, 11 Apr 2004 07:02:54 -0700 (PDT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BE2sGe086193; Sun, 11 Apr 2004 07:02:54 -0700 (PDT) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BE2sae086192; Sun, 11 Apr 2004 07:02:54 -0700 (PDT) (envelope-from nork) Message-Id: <200404111402.i3BE2sae086192@repoman.freebsd.org> From: Norikatsu Shigemura Date: Sun, 11 Apr 2004 07:02:54 -0700 (PDT) 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: Sun, 11 Apr 2004 14:02:55 -0000 nork 2004/04/11 07:02:54 PDT FreeBSD ports repository Modified files: net/liveMedia Makefile distinfo Log: Update to 2004.04.09. Revision Changes Path 1.98 +1 -1 ports/net/liveMedia/Makefile 1.90 +2 -2 ports/net/liveMedia/distinfo From owner-cvs-all@FreeBSD.ORG Sun Apr 11 07:03: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 6C33516A4CE; Sun, 11 Apr 2004 07:03:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52D0C43D2F; Sun, 11 Apr 2004 07:03:46 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BE3kGe087165; Sun, 11 Apr 2004 07:03:46 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BE3j0M087164; Sun, 11 Apr 2004 07:03:45 -0700 (PDT) (envelope-from krion) Message-Id: <200404111403.i3BE3j0M087164@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 11 Apr 2004 07:03:45 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/musicpd Makefile distinfo 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, 11 Apr 2004 14:03:46 -0000 krion 2004/04/11 07:03:45 PDT FreeBSD ports repository Modified files: audio/musicpd Makefile distinfo pkg-message pkg-plist Log: - Update to 0.10.3 PR: ports/65417 Submitted by: maintainer Revision Changes Path 1.13 +5 -9 ports/audio/musicpd/Makefile 1.7 +2 -2 ports/audio/musicpd/distinfo 1.3 +3 -3 ports/audio/musicpd/pkg-message 1.3 +2 -2 ports/audio/musicpd/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Apr 11 07:12: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 4539316A4CE; Sun, 11 Apr 2004 07:12:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BD8143D54; Sun, 11 Apr 2004 07:12:04 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BEC3Ge088934; Sun, 11 Apr 2004 07:12:03 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BEC3ie088930; Sun, 11 Apr 2004 07:12:03 -0700 (PDT) (envelope-from krion) Message-Id: <200404111412.i3BEC3ie088930@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 11 Apr 2004 07:12:03 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/howl 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, 11 Apr 2004 14:12:04 -0000 krion 2004/04/11 07:12:03 PDT FreeBSD ports repository Modified files: net/howl Makefile distinfo pkg-plist Log: - Update to 0.9.4 PR: ports/65418 Submitted by: maintainer Revision Changes Path 1.8 +3 -2 ports/net/howl/Makefile 1.5 +2 -2 ports/net/howl/distinfo 1.4 +39 -44 ports/net/howl/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Apr 11 07: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 90BED16A4CE; Sun, 11 Apr 2004 07:18:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7669643D49; Sun, 11 Apr 2004 07:18:00 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BEI0Ge089724; Sun, 11 Apr 2004 07:18:00 -0700 (PDT) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BEI0aR089723; Sun, 11 Apr 2004 07:18:00 -0700 (PDT) (envelope-from lioux) Message-Id: <200404111418.i3BEI0aR089723@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sun, 11 Apr 2004 07:18:00 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/mpeg4ip Makefile distinfo pkg-plist ports/multimedia/mpeg4ip/files patch-config.h.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, 11 Apr 2004 14:18:00 -0000 lioux 2004/04/11 07:18:00 PDT FreeBSD ports repository Modified files: multimedia/mpeg4ip Makefile distinfo pkg-plist multimedia/mpeg4ip/files patch-config.h.in Log: Update to 1.0 Revision Changes Path 1.36 +4 -3 ports/multimedia/mpeg4ip/Makefile 1.8 +2 -2 ports/multimedia/mpeg4ip/distinfo 1.2 +0 -29 ports/multimedia/mpeg4ip/files/patch-config.h.in 1.6 +31 -9 ports/multimedia/mpeg4ip/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Apr 11 07:18: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 4C61A16A4CF; Sun, 11 Apr 2004 07:18:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 335FB43D2D; Sun, 11 Apr 2004 07:18:04 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BEI3Ge089775; Sun, 11 Apr 2004 07:18:03 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BEI3MV089774; Sun, 11 Apr 2004 07:18:03 -0700 (PDT) (envelope-from krion) Message-Id: <200404111418.i3BEI3MV089774@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 11 Apr 2004 07:18:03 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/treewm Makefile ports/x11-wm/treewm/files patch-resmanager.cc patch-uehandler.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, 11 Apr 2004 14:18:04 -0000 krion 2004/04/11 07:18:03 PDT FreeBSD ports repository Modified files: x11-wm/treewm Makefile Added files: x11-wm/treewm/files patch-resmanager.cc patch-uehandler.cc Log: - Handle both submenus correctly case-insensitively PR: ports/65434 Submitted by: maintainer Revision Changes Path 1.4 +1 -1 ports/x11-wm/treewm/Makefile 1.1 +10 -0 ports/x11-wm/treewm/files/patch-resmanager.cc (new) 1.1 +10 -0 ports/x11-wm/treewm/files/patch-uehandler.cc (new) From owner-cvs-all@FreeBSD.ORG Sun Apr 11 07:19: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 A5EA516A4CE; Sun, 11 Apr 2004 07:19:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B96943D39; Sun, 11 Apr 2004 07:19:26 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BEJQGe089871; Sun, 11 Apr 2004 07:19:26 -0700 (PDT) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BEJQQA089870; Sun, 11 Apr 2004 07:19:26 -0700 (PDT) (envelope-from lioux) Message-Id: <200404111419.i3BEJQQA089870@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Sun, 11 Apr 2004 07:19:26 -0700 (PDT) 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-config.h.in patch-mpeg4ip_config.h.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, 11 Apr 2004 14:19:26 -0000 lioux 2004/04/11 07:19:26 PDT FreeBSD ports repository Added files: multimedia/mpeg4ip/files patch-mpeg4ip_config.h.in Removed files: multimedia/mpeg4ip/files patch-config.h.in Log: Update to 1.0 Revision Changes Path 1.3 +0 -0 ports/multimedia/mpeg4ip/files/patch-config.h.in (dead) 1.1 +24 -0 ports/multimedia/mpeg4ip/files/patch-mpeg4ip_config.h.in (new) From owner-cvs-all@FreeBSD.ORG Sun Apr 11 07: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 C910B16A4F9; Sun, 11 Apr 2004 07:19:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC2A943D1D; Sun, 11 Apr 2004 07:19:37 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BEJbGe089906; Sun, 11 Apr 2004 07:19:37 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BEJb3T089905; Sun, 11 Apr 2004 07:19:37 -0700 (PDT) (envelope-from hrs) Message-Id: <200404111419.i3BEJb3T089905@repoman.freebsd.org> From: Hiroki Sato Date: Sun, 11 Apr 2004 07:19:37 -0700 (PDT) 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: Sun, 11 Apr 2004 14:19:40 -0000 hrs 2004/04/11 07:19:37 PDT FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release note: 04:06.ipv6. Revision Changes Path 1.709 +10 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 07:21: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 9439F16A4CE; Sun, 11 Apr 2004 07:21:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A31F43D2F; Sun, 11 Apr 2004 07:21:05 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BEL4Ge090016; Sun, 11 Apr 2004 07:21:04 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BEL43C090015; Sun, 11 Apr 2004 07:21:04 -0700 (PDT) (envelope-from krion) Message-Id: <200404111421.i3BEL43C090015@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 11 Apr 2004 07:21:04 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/mplusfonts 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, 11 Apr 2004 14:21:05 -0000 krion 2004/04/11 07:21:04 PDT FreeBSD ports repository Modified files: japanese/mplusfonts Makefile distinfo Log: - Update to 2.2.0 PR: ports/65437 Submitted by: maintainer Revision Changes Path 1.10 +1 -1 ports/japanese/mplusfonts/Makefile 1.9 +2 -2 ports/japanese/mplusfonts/distinfo From owner-cvs-all@FreeBSD.ORG Sun Apr 11 07:39: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 56CC116A4CE; Sun, 11 Apr 2004 07:39:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DA6443D48; Sun, 11 Apr 2004 07:39:27 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BEdQGe093940; Sun, 11 Apr 2004 07:39:26 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BEdQJM093939; Sun, 11 Apr 2004 07:39:26 -0700 (PDT) (envelope-from krion) Message-Id: <200404111439.i3BEdQJM093939@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 11 Apr 2004 07:39:25 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/astro/gpsdrive 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, 11 Apr 2004 14:39:27 -0000 krion 2004/04/11 07:39:25 PDT FreeBSD ports repository Modified files: astro/gpsdrive Makefile distinfo Log: - Use gcc33 for OSVERSION > 501103 - SIZE'ify PR: ports/65421 Submitted by: michael johnson Revision Changes Path 1.20 +10 -2 ports/astro/gpsdrive/Makefile 1.8 +1 -0 ports/astro/gpsdrive/distinfo From owner-cvs-all@FreeBSD.ORG Sun Apr 11 07:42: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 2E7B216A4CE; Sun, 11 Apr 2004 07:42:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 144D443D45; Sun, 11 Apr 2004 07:42:27 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BEgQGe095550; Sun, 11 Apr 2004 07:42:26 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BEgQWj095537; Sun, 11 Apr 2004 07:42:26 -0700 (PDT) (envelope-from ru) Message-Id: <200404111442.i3BEgQWj095537@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 11 Apr 2004 07:42:25 -0700 (PDT) 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_ste.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 14:42:27 -0000 ru 2004/04/11 07:42:25 PDT FreeBSD src repository Modified files: sys/pci if_ste.c Log: Implemented per-interface polling(4) control. Revision Changes Path 1.72 +13 -1 src/sys/pci/if_ste.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 08: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 A936216A4CE; Sun, 11 Apr 2004 08:18:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 913D143D54; Sun, 11 Apr 2004 08:18:09 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BFI9Ge003161; Sun, 11 Apr 2004 08:18:09 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BFI9IK003160; Sun, 11 Apr 2004 08:18:09 -0700 (PDT) (envelope-from ru) Message-Id: <200404111518.i3BFI9IK003160@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 11 Apr 2004 08:18:09 -0700 (PDT) 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: Sun, 11 Apr 2004 15:18:09 -0000 ru 2004/04/11 08:18:09 PDT FreeBSD src repository Modified files: sys/pci if_vr.c Log: Implemented per-interface polling(4) control. Revision Changes Path 1.83 +13 -1 src/sys/pci/if_vr.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 08:29: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 B347716A4CE; Sun, 11 Apr 2004 08:29:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A8D443D48; Sun, 11 Apr 2004 08:29:07 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BFT7Ge005218; Sun, 11 Apr 2004 08:29:07 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BFT7Hk005217; Sun, 11 Apr 2004 08:29:07 -0700 (PDT) (envelope-from hrs) Message-Id: <200404111529.i3BFT7Hk005217@repoman.freebsd.org> From: Hiroki Sato Date: Sun, 11 Apr 2004 08:29:07 -0700 (PDT) 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: Sun, 11 Apr 2004 15:29:07 -0000 hrs 2004/04/11 08:29:07 PDT FreeBSD doc repository Modified files: en/releng index.sgml Log: RELENG_4 is now frozen. Submitted by: simon Revision Changes Path 1.99 +6 -4 www/en/releng/index.sgml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 08:35: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 0924E16A4CE; Sun, 11 Apr 2004 08:35:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E55DF43D46; Sun, 11 Apr 2004 08:35:49 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BFZnGe007202; Sun, 11 Apr 2004 08:35:49 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BFZnGO007201; Sun, 11 Apr 2004 08:35:49 -0700 (PDT) (envelope-from ru) Message-Id: <200404111535.i3BFZnGO007201@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 11 Apr 2004 08:35:49 -0700 (PDT) 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: Sun, 11 Apr 2004 15:35:50 -0000 ru 2004/04/11 08:35:49 PDT FreeBSD src repository Modified files: sys/dev/fxp if_fxp.c Log: Implemented per-interface polling(4) control. Revision Changes Path 1.203 +16 -1 src/sys/dev/fxp/if_fxp.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 08:40: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 6B35616A4CE; Sun, 11 Apr 2004 08:40:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52ED343D53; Sun, 11 Apr 2004 08:40:19 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BFeJGe007364; Sun, 11 Apr 2004 08:40:19 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BFeIRm007363; Sun, 11 Apr 2004 08:40:18 -0700 (PDT) (envelope-from marcel) Message-Id: <200404111540.i3BFeIRm007363@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Apr 2004 08:40:18 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/modules/random 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, 11 Apr 2004 15:40:19 -0000 marcel 2004/04/11 08:40:18 PDT FreeBSD src repository Modified files: sys/modules/random Makefile Log: Include nehemiah.c only on i386, as is done for the non-modules build. Revision Changes Path 1.15 +2 -0 src/sys/modules/random/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 08:50: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 CE71416A4CE; Sun, 11 Apr 2004 08:50:22 -0700 (PDT) Received: from electra.cse.Buffalo.EDU (electra.cse.Buffalo.EDU [128.205.32.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FE6543D55; Sun, 11 Apr 2004 08:50:22 -0700 (PDT) (envelope-from kensmith@cse.Buffalo.EDU) Received: from electra.cse.Buffalo.EDU (kensmith@localhost [127.0.0.1]) i3BFoL8o007454; Sun, 11 Apr 2004 11:50:21 -0400 (EDT) Received: (from kensmith@localhost) by electra.cse.Buffalo.EDU (8.12.10/8.12.9/Submit) id i3BFoLoQ007453; Sun, 11 Apr 2004 11:50:21 -0400 (EDT) Date: Sun, 11 Apr 2004 11:50:21 -0400 From: Ken Smith To: Joe Marcus Clarke Message-ID: <20040411155021.GA7324@electra.cse.Buffalo.EDU> References: <200404110807.i3B87M1r001710@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404110807.i3B87M1r001710@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/share/timedef 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, 11 Apr 2004 15:50:23 -0000 On Sun, Apr 11, 2004 at 01:07:22AM -0700, Joe Marcus Clarke wrote: > marcus 2004/04/11 01:07:22 PDT > > FreeBSD src repository (doc,ports committer) > > Modified files: > share/timedef Makefile > Log: > Move en_CA from US_LINKS to GB_LINKS. > > Submitted by: adamw > Approved by: ache > Committed by: me since adamw should be studying for exams > > Revision Changes Path > 1.43 +2 -2 src/share/timedef/Makefile We can temporarily deactivate his FreeBSD account if it would help him study for exams... -- 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 Sun Apr 11 08:53: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 1BD7916A4CE; Sun, 11 Apr 2004 08:53:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0474F43D46; Sun, 11 Apr 2004 08:53:42 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BFrfGe017208; Sun, 11 Apr 2004 08:53:41 -0700 (PDT) (envelope-from olgeni@repoman.freebsd.org) Received: (from olgeni@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BFrfKo017207; Sun, 11 Apr 2004 08:53:41 -0700 (PDT) (envelope-from olgeni) Message-Id: <200404111553.i3BFrfKo017207@repoman.freebsd.org> From: Jimmy Olgeni Date: Sun, 11 Apr 2004 08:53:41 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/webmin 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, 11 Apr 2004 15:53:42 -0000 olgeni 2004/04/11 08:53:41 PDT FreeBSD ports repository Modified files: sysutils/webmin Makefile distinfo Log: Upgrade to version 1.140 (with apache-1.140-1 and cpan-1.140-1). Revision Changes Path 1.202 +3 -12 ports/sysutils/webmin/Makefile 1.164 +6 -22 ports/sysutils/webmin/distinfo From owner-cvs-all@FreeBSD.ORG Sun Apr 11 08: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 D39A516A4CE; Sun, 11 Apr 2004 08:56:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D04DD43D55; Sun, 11 Apr 2004 08:56:05 -0700 (PDT) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BFu5Ge017364; Sun, 11 Apr 2004 08:56:05 -0700 (PDT) (envelope-from nobutaka@repoman.freebsd.org) Received: (from nobutaka@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BFu5lS017363; Sun, 11 Apr 2004 08:56:05 -0700 (PDT) (envelope-from nobutaka) Message-Id: <200404111556.i3BFu5lS017363@repoman.freebsd.org> From: MANTANI Nobutaka Date: Sun, 11 Apr 2004 08:56:05 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/libxine Makefile distinfo pkg-plist extra-patch-src:demuxers:demux_ogg.c extra-patch-src:video_out:Makefile.in extra-patch-src:xine-engine:metronom.c extra-patch-src:xine-engine:video_out.cpatch-src:video_out: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, 11 Apr 2004 15:56:06 -0000 nobutaka 2004/04/11 08:56:05 PDT FreeBSD ports repository Modified files: multimedia/libxine Makefile distinfo pkg-plist multimedia/libxine/files extra-patch-src:xine-engine:audio_out.c Added files: multimedia/libxine/files extra-patch-src:demuxers:demux_ogg.c extra-patch-src:xine-engine:metronom.c extra-patch-src:xine-engine:video_out.c patch-src:video_out:Makefile.in Removed files: multimedia/libxine/files extra-patch-src:video_out:Makefile.in patch-src:audio_out:audio_arts_out.c Log: * Update to 1-rc3c. * Use lthack. [1] PR: ports/65114 [1] Submitted by: michael johnson [1] Revision Changes Path 1.59 +10 -15 ports/multimedia/libxine/Makefile 1.21 +2 -2 ports/multimedia/libxine/distinfo 1.1 +115 -0 ports/multimedia/libxine/files/extra-patch-src:demuxers:demux_ogg.c (new) 1.2 +0 -10 ports/multimedia/libxine/files/extra-patch-src:video_out:Makefile.in (dead) 1.3 +20 -10 ports/multimedia/libxine/files/extra-patch-src:xine-engine:audio_out.c 1.1 +172 -0 ports/multimedia/libxine/files/extra-patch-src:xine-engine:metronom.c (new) 1.1 +88 -0 ports/multimedia/libxine/files/extra-patch-src:xine-engine:video_out.c (new) 1.2 +0 -22 ports/multimedia/libxine/files/patch-src:audio_out:audio_arts_out.c (dead) 1.1 +11 -0 ports/multimedia/libxine/files/patch-src:video_out:Makefile.in (new) 1.25 +8 -23 ports/multimedia/libxine/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Apr 11 09:04: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 AED1516A4CE; Sun, 11 Apr 2004 09:04:02 -0700 (PDT) Received: from mail-gw1.york.ac.uk (mail-gw1.york.ac.uk [144.32.128.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id CED2643D41; Sun, 11 Apr 2004 09:04:01 -0700 (PDT) (envelope-from gavin@ury.york.ac.uk) Received: from ury.york.ac.uk (ury.york.ac.uk [144.32.108.81]) by mail-gw1.york.ac.uk (8.12.10/8.12.10) with ESMTP id i3BG3rCw018482; Sun, 11 Apr 2004 17:03:53 +0100 (BST) Received: from ury.york.ac.uk (localhost.york.ac.uk [127.0.0.1]) by ury.york.ac.uk (8.12.9p2/8.12.9) with ESMTP id i3BG3r5U014851; Sun, 11 Apr 2004 17:03:53 +0100 (BST) (envelope-from gavin@ury.york.ac.uk) Received: from localhost (gavin@localhost)i3BG3qDY014848; Sun, 11 Apr 2004 17:03:52 +0100 (BST) (envelope-from gavin@ury.york.ac.uk) Date: Sun, 11 Apr 2004 17:03:52 +0100 (BST) From: Gavin Atkinson To: Ken Smith In-Reply-To: <20040411155021.GA7324@electra.cse.Buffalo.EDU> Message-ID: <20040411170132.L14825@ury.york.ac.uk> References: <200404110807.i3B87M1r001710@repoman.freebsd.org> <20040411155021.GA7324@electra.cse.Buffalo.EDU> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-York-MailScanner: Found to be clean cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/share/timedef 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, 11 Apr 2004 16:04:02 -0000 On Sun, 11 Apr 2004, Ken Smith wrote: > On Sun, Apr 11, 2004 at 01:07:22AM -0700, Joe Marcus Clarke wrote: > > marcus 2004/04/11 01:07:22 PDT > > > > Modified files: > > share/timedef Makefile > > Log: > > Move en_CA from US_LINKS to GB_LINKS. > > > > Submitted by: adamw > > Approved by: ache > > Committed by: me since adamw should be studying for exams > > We can temporarily deactivate his FreeBSD account if it would help > him study for exams... Check out CVSROOT-doc/access 1.510 :) Gavin From owner-cvs-all@FreeBSD.ORG Sun Apr 11 09: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 F397B16A4CE; Sun, 11 Apr 2004 09:08:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA04F43D5A; Sun, 11 Apr 2004 09:08:24 -0700 (PDT) (envelope-from nobutaka@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BG8OGe020671; Sun, 11 Apr 2004 09:08:24 -0700 (PDT) (envelope-from nobutaka@repoman.freebsd.org) Received: (from nobutaka@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BG8O4m020670; Sun, 11 Apr 2004 09:08:24 -0700 (PDT) (envelope-from nobutaka) Message-Id: <200404111608.i3BG8O4m020670@repoman.freebsd.org> From: MANTANI Nobutaka Date: Sun, 11 Apr 2004 09:08:24 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/xine Makefile pkg-plist ports/multimedia/xine/files patch-misc: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, 11 Apr 2004 16:08:25 -0000 nobutaka 2004/04/11 09:08:24 PDT FreeBSD ports repository Modified files: multimedia/xine Makefile pkg-plist Added files: multimedia/xine/files patch-misc:Makefile.in Log: Stop installing xine-bugreport and xine-check that have insecure temporary file creation problem. Remove FORBIDDEN mark. Revision Changes Path 1.53 +1 -3 ports/multimedia/xine/Makefile 1.1 +10 -0 ports/multimedia/xine/files/patch-misc:Makefile.in (new) 1.26 +0 -2 ports/multimedia/xine/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Apr 11 09: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 D619216A4CE; Sun, 11 Apr 2004 09:23:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD3A843D2F; Sun, 11 Apr 2004 09:23:16 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BGNGGe024652; Sun, 11 Apr 2004 09:23:16 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BGNG6S024651; Sun, 11 Apr 2004 09:23:16 -0700 (PDT) (envelope-from ru) Message-Id: <200404111623.i3BGNG6S024651@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 11 Apr 2004 09:23:16 -0700 (PDT) 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: Sun, 11 Apr 2004 16:23:17 -0000 ru 2004/04/11 09:23:16 PDT FreeBSD src repository Modified files: sys/pci if_rl.c Log: Implemented per-interface polling(4) control. Revision Changes Path 1.135 +12 -1 src/sys/pci/if_rl.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 09:25: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 11A7016A4CF; Sun, 11 Apr 2004 09:25:07 -0700 (PDT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 545CF43D3F; Sun, 11 Apr 2004 09:25:06 -0700 (PDT) (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 i3BGThTH081651 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 11 Apr 2004 19:29:45 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i3BGOxQU000349; Sun, 11 Apr 2004 19:24:59 +0300 (EEST) (envelope-from ru) Date: Sun, 11 Apr 2004 19:24:58 +0300 From: Ruslan Ermilov To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040411162458.GA281@ip.net.ua> References: <200404111623.i3BGNG6S024651@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="CE+1k2dSO48ffgeK" Content-Disposition: inline In-Reply-To: <200404111623.i3BGNG6S024651@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) Subject: Re: 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: Sun, 11 Apr 2004 16:25:07 -0000 --CE+1k2dSO48ffgeK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Apr 11, 2004 at 09:23:16AM -0700, Ruslan Ermilov wrote: > ru 2004/04/11 09:23:16 PDT >=20 > FreeBSD src repository >=20 > Modified files: > sys/pci if_rl.c=20 > Log: > Implemented per-interface polling(4) control. > =20 > Revision Changes Path > 1.135 +12 -1 src/sys/pci/if_rl.c >=20 This has actually been tested on a RELENG_4 box, meaning that this feature can also be MFC'ed. ;) Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --CE+1k2dSO48ffgeK Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAeXFaUkv4P6juNwoRAsiyAJ9z+ZGtD/bl7hJ3s/e5CO/XVp0xbwCggxEh VZv5AWwv020XfGsOAcxfzNc= =zzxs -----END PGP SIGNATURE----- --CE+1k2dSO48ffgeK-- From owner-cvs-all@FreeBSD.ORG Sun Apr 11 09:26: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 5B56416A4CE; Sun, 11 Apr 2004 09:26:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 423E543D46; Sun, 11 Apr 2004 09:26:40 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BGQeGe024831; Sun, 11 Apr 2004 09:26:40 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BGQdhE024830; Sun, 11 Apr 2004 09:26:39 -0700 (PDT) (envelope-from rwatson) Message-Id: <200404111626.i3BGQdhE024830@repoman.freebsd.org> From: Robert Watson Date: Sun, 11 Apr 2004 09:26:39 -0700 (PDT) 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: Sun, 11 Apr 2004 16:26:40 -0000 rwatson 2004/04/11 09:26:39 PDT FreeBSD src repository Modified files: sys/dev/nge if_nge.c Log: Compare IFF_POLLING flag with ifp->if_flags rather than ifp->if_ipending, which was almost certainly a bug since polling support was introduced in this driver. Found during discussion with: mlaier Revision Changes Path 1.56 +3 -3 src/sys/dev/nge/if_nge.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 09: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 E85AC16A4CE; Sun, 11 Apr 2004 09:34:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF40143D58; Sun, 11 Apr 2004 09:34:29 -0700 (PDT) (envelope-from rsm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BGYTGe026848; Sun, 11 Apr 2004 09:34:29 -0700 (PDT) (envelope-from rsm@repoman.freebsd.org) Received: (from rsm@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BGYTtO026847; Sun, 11 Apr 2004 09:34:29 -0700 (PDT) (envelope-from rsm) Message-Id: <200404111634.i3BGYTtO026847@repoman.freebsd.org> From: Scott Mitchell Date: Sun, 11 Apr 2004 09:34:29 -0700 (PDT) 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_pccard.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 16:34:30 -0000 rsm 2004/04/11 09:34:29 PDT FreeBSD src repository Modified files: sys/dev/xe if_xe_pccard.c Log: Stop xe claiming ownership of every card passed to xe_pccard_match. Found by: Pete Carss Reviewed by: imp (mentor) Pointy hat to: rsm Revision Changes Path 1.17 +1 -1 src/sys/dev/xe/if_xe_pccard.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 09: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 996B616A4CE; Sun, 11 Apr 2004 09:35:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8174F43D53; Sun, 11 Apr 2004 09:35:53 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BGZrGe026982; Sun, 11 Apr 2004 09:35:53 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BGZr8D026981; Sun, 11 Apr 2004 09:35:53 -0700 (PDT) (envelope-from rwatson) Message-Id: <200404111635.i3BGZr8D026981@repoman.freebsd.org> From: Robert Watson Date: Sun, 11 Apr 2004 09:35:53 -0700 (PDT) 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_var.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, 11 Apr 2004 16:35:53 -0000 rwatson 2004/04/11 09:35:53 PDT FreeBSD src repository Modified files: sys/net if_var.h Log: In 4.x, if_ipending is used to track network interrupt state. In 5.x, it is no longer used, so GC the ifnet.if_ipending field. Revision Changes Path 1.68 +0 -7 src/sys/net/if_var.h From owner-cvs-all@FreeBSD.ORG Sun Apr 11 10: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 06B8616A4CE; Sun, 11 Apr 2004 10:06:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2CD743D5C; Sun, 11 Apr 2004 10:06:29 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BH6TGe034107; Sun, 11 Apr 2004 10:06:29 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BH6Tm0034106; Sun, 11 Apr 2004 10:06:29 -0700 (PDT) (envelope-from hrs) Message-Id: <200404111706.i3BH6Tm0034106@repoman.freebsd.org> From: Hiroki Sato Date: Sun, 11 Apr 2004 10:06:29 -0700 (PDT) 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: Sun, 11 Apr 2004 17:06:30 -0000 hrs 2004/04/11 10:06:29 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Some style fixes. Approved by: re (implicitly) Revision Changes Path 1.22.2.404 +5 -7 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 10: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 D785A16A4CE; Sun, 11 Apr 2004 10:15:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFC6743D48; Sun, 11 Apr 2004 10:15:36 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BHFaGe036173; Sun, 11 Apr 2004 10:15:36 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BHFa3Q036172; Sun, 11 Apr 2004 10:15:36 -0700 (PDT) (envelope-from marcel) Message-Id: <200404111715.i3BHFa3Q036172@repoman.freebsd.org> From: Marcel Moolenaar Date: Sun, 11 Apr 2004 10:15:36 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfsclient nfs_subs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 17:15:37 -0000 marcel 2004/04/11 10:15:36 PDT FreeBSD src repository Modified files: sys/nfsclient nfs_subs.c Log: Unbreak build: s/TAILQ_ISEMPTY/TAILQ_EMPTY/g Revision Changes Path 1.127 +1 -1 src/sys/nfsclient/nfs_subs.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 10: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 4243E16A4CE; Sun, 11 Apr 2004 10:23:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AA6F43D55; Sun, 11 Apr 2004 10:23:31 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BHNVGe038097; Sun, 11 Apr 2004 10:23:31 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BHNUip038096; Sun, 11 Apr 2004 10:23:30 -0700 (PDT) (envelope-from blackend) Message-Id: <200404111723.i3BHNUip038096@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 11 Apr 2004 10:23:30 -0700 (PDT) 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/mail 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, 11 Apr 2004 17:23:31 -0000 blackend 2004/04/11 10:23:30 PDT FreeBSD doc repository Modified files: fr_FR.ISO8859-1/books/handbook/mail chapter.sgml Log: Add fetchmail and procmail sections. Revision Changes Path 1.13 +214 -0 doc/fr_FR.ISO8859-1/books/handbook/mail/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 10:28: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 153D516A4CE; Sun, 11 Apr 2004 10:28:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1487A43D1F; Sun, 11 Apr 2004 10:28:39 -0700 (PDT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BHScGe038477; Sun, 11 Apr 2004 10:28:38 -0700 (PDT) (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BHScD0038474; Sun, 11 Apr 2004 10:28:38 -0700 (PDT) (envelope-from mlaier) Message-Id: <200404111728.i3BHScD0038474@repoman.freebsd.org> From: Max Laier Date: Sun, 11 Apr 2004 10:28:38 -0700 (PDT) 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/net - 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: Sun, 11 Apr 2004 17:28:39 -0000 mlaier 2004/04/11 10:28:37 PDT FreeBSD src repository src/sys/contrib/pf/net - Imported sources Update of /home/ncvs/src/sys/contrib/pf/net In directory repoman.freebsd.org:/tmp/cvs-serv38357 Log Message: Import another fix from the OpenBSD-Stable branch: Fix by dhartmei@ and mcbride@ 1.433 Properly m_copyback() modified TCP sequence number after demodulation 1.432 Fix icmp checksum when sequence number modlation is being used. Also fix a daddr vs saddr cut-n-paste error in ICMP error handling. Fixes PR 3724 Status: Vendor Tag: OPENBSD Release Tags: pf_openbsd_3_4_002 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 U 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 1 conflicts created by this import. Use the following command to help the merge: cvs checkout -jOPENBSD:yesterday -jOPENBSD src/sys/contrib/pf/net From owner-cvs-all@FreeBSD.ORG Sun Apr 11 10:32: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 A519D16A4CE; Sun, 11 Apr 2004 10:32:54 -0700 (PDT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE3F243D60; Sun, 11 Apr 2004 10:32:53 -0700 (PDT) (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 i3BHbU4q083652 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 11 Apr 2004 20:37:32 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i3BHWjcp000664; Sun, 11 Apr 2004 20:32:45 +0300 (EEST) (envelope-from ru) Date: Sun, 11 Apr 2004 20:32:45 +0300 From: Ruslan Ermilov To: Robert Watson Message-ID: <20040411173245.GB281@ip.net.ua> References: <200404111626.i3BGQdhE024830@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="XF85m9dhOBO43t/C" Content-Disposition: inline In-Reply-To: <200404111626.i3BGQdhE024830@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: 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: Sun, 11 Apr 2004 17:32:54 -0000 --XF85m9dhOBO43t/C Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Apr 11, 2004 at 09:26:39AM -0700, Robert Watson wrote: > rwatson 2004/04/11 09:26:39 PDT >=20 > FreeBSD src repository >=20 > Modified files: > sys/dev/nge if_nge.c=20 > Log: > Compare IFF_POLLING flag with ifp->if_flags rather than ifp->if_ipendin= g, > which was almost certainly a bug since polling support was introduced > in this driver. > =20 > Found during discussion with: mlaier > =20 > Revision Changes Path > 1.56 +3 -3 src/sys/dev/nge/if_nge.c >=20 Thanks! Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --XF85m9dhOBO43t/C Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAeYE9Ukv4P6juNwoRAiRwAJ96ag3QwYOEY3SKTWfncEhVXdY5JgCfam9U Ix4FJVYgfR8kQmRyDjz+HMY= =iUSe -----END PGP SIGNATURE----- --XF85m9dhOBO43t/C-- From owner-cvs-all@FreeBSD.ORG Sun Apr 11 10: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 114E316A4CE; Sun, 11 Apr 2004 10:35:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE61443D48; Sun, 11 Apr 2004 10:35:41 -0700 (PDT) (envelope-from mlaier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BHZfGe040527; Sun, 11 Apr 2004 10:35:41 -0700 (PDT) (envelope-from mlaier@repoman.freebsd.org) Received: (from mlaier@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BHZfYL040526; Sun, 11 Apr 2004 10:35:41 -0700 (PDT) (envelope-from mlaier) Message-Id: <200404111735.i3BHZfYL040526@repoman.freebsd.org> From: Max Laier Date: Sun, 11 Apr 2004 10:35:41 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 17:35:42 -0000 mlaier 2004/04/11 10:35:41 PDT FreeBSD src repository Modified files: sys/contrib/pf/net pf.c Log: Commit import of OpenBSD-stable fix: Fix by dhartmei@ and mcbride@ 1.433 Properly m_copyback() modified TCP sequence number after demodulation 1.432 Fix icmp checksum when sequence number modlation is being used. Also fix a daddr vs saddr cut-n-paste error in ICMP error handling. Fixes PR 3724 Obtained from: OpenBSD Reviewed by: dhartmei Approved by: rwatson Revision Changes Path 1.7 +11 -6 src/sys/contrib/pf/net/pf.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 10:36: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 9B7A916A4CE; Sun, 11 Apr 2004 10:36:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82EAA43D53; Sun, 11 Apr 2004 10:36:18 -0700 (PDT) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BHaIGe040603; Sun, 11 Apr 2004 10:36:18 -0700 (PDT) (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BHaITm040602; Sun, 11 Apr 2004 10:36:18 -0700 (PDT) (envelope-from mheinen) Message-Id: <200404111736.i3BHaITm040602@repoman.freebsd.org> From: Martin Heinen Date: Sun, 11 Apr 2004 10:36:18 -0700 (PDT) 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/mail 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, 11 Apr 2004 17:36:18 -0000 mheinen 2004/04/11 10:36:17 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/disks chapter.sgml en_US.ISO8859-1/books/handbook/mail chapter.sgml Log: Replace consecutive screen elements with one screen element. The screens shown belong to the same session. Revision Changes Path 1.195 +4 -4 doc/en_US.ISO8859-1/books/handbook/disks/chapter.sgml 1.105 +2 -2 doc/en_US.ISO8859-1/books/handbook/mail/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 11: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 3839616A4CE; Sun, 11 Apr 2004 11:01:50 -0700 (PDT) Received: from electra.cse.Buffalo.EDU (electra.cse.Buffalo.EDU [128.205.32.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id BABC943D55; Sun, 11 Apr 2004 11:01:49 -0700 (PDT) (envelope-from kensmith@cse.Buffalo.EDU) Received: from electra.cse.Buffalo.EDU (kensmith@localhost [127.0.0.1]) i3BI1m8o010138; Sun, 11 Apr 2004 14:01:48 -0400 (EDT) Received: (from kensmith@localhost) by electra.cse.Buffalo.EDU (8.12.10/8.12.9/Submit) id i3BI1mQT010137; Sun, 11 Apr 2004 14:01:48 -0400 (EDT) Date: Sun, 11 Apr 2004 14:01:48 -0400 From: Ken Smith To: Gavin Atkinson Message-ID: <20040411180148.GC8573@electra.cse.Buffalo.EDU> References: <200404110807.i3B87M1r001710@repoman.freebsd.org> <20040411155021.GA7324@electra.cse.Buffalo.EDU> <20040411170132.L14825@ury.york.ac.uk> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040411170132.L14825@ury.york.ac.uk> User-Agent: Mutt/1.4.1i cc: cvs-src@freebsd.org cc: Ken Smith cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/share/timedef 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, 11 Apr 2004 18:01:50 -0000 On Sun, Apr 11, 2004 at 05:03:52PM +0100, Gavin Atkinson wrote: > > On Sun, 11 Apr 2004, Ken Smith wrote: > > > On Sun, Apr 11, 2004 at 01:07:22AM -0700, Joe Marcus Clarke wrote: > > > marcus 2004/04/11 01:07:22 PDT > > > > > > Modified files: > > > share/timedef Makefile > > > Log: > > > Move en_CA from US_LINKS to GB_LINKS. > > > > > > Submitted by: adamw > > > Approved by: ache > > > Committed by: me since adamw should be studying for exams > > > > We can temporarily deactivate his FreeBSD account if it would help > > him study for exams... > > Check out CVSROOT-doc/access 1.510 :) > > Gavin Yeah, but I figured if he's still being distracted enough to ask marcus to do stuff maybe stronger measures are needed... :-))) -- 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 Sun Apr 11 11:20: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 3835416A4CE; Sun, 11 Apr 2004 11:20:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F66D43D41; Sun, 11 Apr 2004 11:20:59 -0700 (PDT) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BIKwGe049782; Sun, 11 Apr 2004 11:20:58 -0700 (PDT) (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BIKwjN049781; Sun, 11 Apr 2004 11:20:58 -0700 (PDT) (envelope-from mheinen) Message-Id: <200404111820.i3BIKwjN049781@repoman.freebsd.org> From: Martin Heinen Date: Sun, 11 Apr 2004 11:20:58 -0700 (PDT) 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/mail chapter.sgml 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: Sun, 11 Apr 2004 18:20:59 -0000 mheinen 2004/04/11 11:20:58 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/mail chapter.sgml en_US.ISO8859-1/books/handbook/security chapter.sgml Log: Add an id attribute to the SSH tunneling section. Link to this section with an xref element instead of using ulink. Revision Changes Path 1.106 +2 -3 doc/en_US.ISO8859-1/books/handbook/mail/chapter.sgml 1.203 +1 -1 doc/en_US.ISO8859-1/books/handbook/security/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 11:26: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 21E0A16A4CE; Sun, 11 Apr 2004 11:26:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06F9143D45; Sun, 11 Apr 2004 11:26:39 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BIQcGe051634; Sun, 11 Apr 2004 11:26:38 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BIQcxU051633; Sun, 11 Apr 2004 11:26:38 -0700 (PDT) (envelope-from blackend) Message-Id: <200404111826.i3BIQcxU051633@repoman.freebsd.org> From: Marc Fonvieille Date: Sun, 11 Apr 2004 11:26:38 -0700 (PDT) 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/mail 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, 11 Apr 2004 18:26:39 -0000 blackend 2004/04/11 11:26:38 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/mail chapter.sgml Log: - A little rewording - Use of literal tags instead of quotes to avoid confusion - Some punctuation fixes. Revision Changes Path 1.107 +7 -7 doc/en_US.ISO8859-1/books/handbook/mail/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 11:28: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 AA6D416A4CE; Sun, 11 Apr 2004 11:28:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F77143D39; Sun, 11 Apr 2004 11:28:14 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BISEGe051709; Sun, 11 Apr 2004 11:28:14 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BISEOY051708; Sun, 11 Apr 2004 11:28:14 -0700 (PDT) (envelope-from ru) Message-Id: <200404111828.i3BISEOY051708@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 11 Apr 2004 11:28:14 -0700 (PDT) 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: Sun, 11 Apr 2004 18:28:14 -0000 ru 2004/04/11 11:28:14 PDT FreeBSD src repository Modified files: sys/dev/nge if_nge.c Log: Fixed resetting of the watchdog timer and queue full flag. Revision Changes Path 1.57 +4 -7 src/sys/dev/nge/if_nge.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 11:33: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 1551116A4CE; Sun, 11 Apr 2004 11:33:48 -0700 (PDT) Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id A96A643D2F; Sun, 11 Apr 2004 11:33:47 -0700 (PDT) (envelope-from danfe@regency.nsu.ru) Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 4.30) id 1BCjoZ-00038Y-FD; Mon, 12 Apr 2004 01:36:19 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.10/8.12.10) with ESMTP id i3BIY0Gt095993; Mon, 12 Apr 2004 01:34:00 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.10/8.12.10/Submit) id i3BIY0v4095895; Mon, 12 Apr 2004 01:34:00 +0700 (NOVST) (envelope-from danfe) Date: Mon, 12 Apr 2004 01:33:59 +0700 From: Alexey Dokuchaev To: Ruslan Ermilov Message-ID: <20040411183359.GA90344@regency.nsu.ru> References: <200404111623.i3BGNG6S024651@repoman.freebsd.org> <20040411162458.GA281@ip.net.ua> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040411162458.GA281@ip.net.ua> 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/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: Sun, 11 Apr 2004 18:33:48 -0000 On Sun, Apr 11, 2004 at 07:24:58PM +0300, Ruslan Ermilov wrote: > On Sun, Apr 11, 2004 at 09:23:16AM -0700, Ruslan Ermilov wrote: > > ru 2004/04/11 09:23:16 PDT > > > > FreeBSD src repository > > > > Modified files: > > sys/pci if_rl.c > > Log: > > Implemented per-interface polling(4) control. > > > > Revision Changes Path > > 1.135 +12 -1 src/sys/pci/if_rl.c > > > This has actually been tested on a RELENG_4 box, meaning > that this feature can also be MFC'ed. ;) Yeah, please go for it! ;-) ./danfe From owner-cvs-all@FreeBSD.ORG Sun Apr 11 11:56: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 7A57C16A4CE; Sun, 11 Apr 2004 11:56:29 -0700 (PDT) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7E6643D31; Sun, 11 Apr 2004 11:56:28 -0700 (PDT) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.12.11/8.12.10) with ESMTP id i3BIuRQc001443; Sun, 11 Apr 2004 22:56:27 +0400 (MSD) (envelope-from marck@rinet.ru) Date: Sun, 11 Apr 2004 22:56:27 +0400 (MSD) From: Dmitry Morozovsky To: Ruslan Ermilov In-Reply-To: <20040411162458.GA281@ip.net.ua> Message-ID: <20040411225532.Y1407@woozle.rinet.ru> References: <200404111623.i3BGNG6S024651@repoman.freebsd.org> <20040411162458.GA281@ip.net.ua> X-NCC-RegID: ru.rinet 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/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: Sun, 11 Apr 2004 18:56:29 -0000 On Sun, 11 Apr 2004, Ruslan Ermilov wrote: RE> > ru 2004/04/11 09:23:16 PDT RE> > RE> > FreeBSD src repository RE> > RE> > Modified files: RE> > sys/pci if_rl.c RE> > Log: RE> > Implemented per-interface polling(4) control. RE> > RE> > Revision Changes Path RE> > 1.135 +12 -1 src/sys/pci/if_rl.c RE> > RE> This has actually been tested on a RELENG_4 box, meaning RE> that this feature can also be MFC'ed. ;) Yoo-hoo! The go for it (and if possible for if_fxp.c too)! Thanks! Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ From owner-cvs-all@FreeBSD.ORG Sun Apr 11 11:59: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 8F66D16A4CE; Sun, 11 Apr 2004 11:59:16 -0700 (PDT) Received: from machdep.com (machdep.com [64.191.136.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 39CB443D45; Sun, 11 Apr 2004 11:59:16 -0700 (PDT) (envelope-from drhodus@machdep.com) Received: from [192.168.1.96] (adsl-068-209-168-006.sip.bgk.bellsouth.net [68.209.168.6]) by machdep.com (8.12.10/8.12.9) with ESMTP id i3C0BNHK026350; Sun, 11 Apr 2004 20:11:24 -0400 (EDT) (envelope-from drhodus@machdep.com) In-Reply-To: <200404041224.i34CO5xJ098253@repoman.freebsd.org> References: <200404041224.i34CO5xJ098253@repoman.freebsd.org> Mime-Version: 1.0 (Apple Message framework v613) Content-Type: text/plain; charset=US-ASCII; format=flowed Message-Id: <4CA93FA0-8BEA-11D8-986C-000A959B213E@machdep.com> Content-Transfer-Encoding: 7bit From: David Rhodus Date: Sun, 11 Apr 2004 14:59:03 -0400 To: "Tim J. Robbins" X-Mailer: Apple Mail (2.613) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/share/colldef Makefile src/share/monetdef Makefile src/share/msgdef Makefile src/share/numericdef Makefile src/share/timedef 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, 11 Apr 2004 18:59:16 -0000 On Apr 4, 2004, at 8:24 AM, Tim J. Robbins wrote: > tjr 2004/04/04 05:24:05 PDT > > FreeBSD src repository > > Modified files: > share/colldef Makefile > share/monetdef Makefile > share/msgdef Makefile > share/numericdef Makefile > share/timedef Makefile > Log: > Add data for missing categories to zh_HK.Big5HKSCS locale. > > Revision Changes Path > 1.65 +1 -1 src/share/colldef/Makefile > 1.57 +2 -0 src/share/monetdef/Makefile > 1.55 +2 -0 src/share/msgdef/Makefile > 1.54 +1 -1 src/share/numericdef/Makefile > 1.42 +2 -0 src/share/timedef/Makefile The buildworld is broken here on my 5.2.1-RELEASE machine. Did you forget to add some new files in perhaps ? Here are the changes that allow the buildworld to proceed on my machine. -DR Index: mklocale/Makefile =================================================================== RCS file: /f/FreeBSD/src/share/mklocale/Makefile,v retrieving revision 1.59 diff -u -r1.59 Makefile --- mklocale/Makefile 27 Mar 2004 08:14:14 -0000 1.59 +++ mklocale/Makefile 11 Apr 2004 17:53:30 -0000 @@ -29,7 +29,6 @@ zh_CN.GB18030 \ zh_CN.GB2312 \ zh_CN.GBK \ - zh_HK.Big5HKSCS \ zh_TW.Big5 LOCALEDIR= ${DESTDIR}/usr/share/locale Index: monetdef/Makefile =================================================================== RCS file: /f/FreeBSD/src/share/monetdef/Makefile,v retrieving revision 1.57 diff -u -r1.57 Makefile --- monetdef/Makefile 4 Apr 2004 12:24:04 -0000 1.57 +++ monetdef/Makefile 11 Apr 2004 17:55:23 -0000 @@ -6,7 +6,6 @@ LOCALES= af_ZA.ISO8859-1 \ am_ET.UTF-8 \ be_BY.CP1131 \ - be_BY.CP1251 \ be_BY.ISO8859-5 \ be_BY.UTF-8 \ bg_BG.CP1251 \ Index: msgdef/Makefile =================================================================== RCS file: /f/FreeBSD/src/share/msgdef/Makefile,v retrieving revision 1.55 diff -u -r1.55 Makefile --- msgdef/Makefile 4 Apr 2004 12:24:05 -0000 1.55 +++ msgdef/Makefile 11 Apr 2004 17:55:44 -0000 @@ -6,7 +6,6 @@ LOCALES= af_ZA.ISO8859-1 \ am_ET.UTF-8 \ be_BY.CP1131 \ - be_BY.CP1251 \ be_BY.ISO8859-5 \ be_BY.UTF-8 \ bg_BG.CP1251 \ Index: syscons/keymaps/Makefile =================================================================== RCS file: /f/FreeBSD/src/share/syscons/keymaps/Makefile,v retrieving revision 1.68 diff -u -r1.68 Makefile --- syscons/keymaps/Makefile 15 Mar 2004 20:34:18 -0000 1.68 +++ syscons/keymaps/Makefile 11 Apr 2004 17:56:44 -0000 @@ -4,7 +4,7 @@ be.iso.kbd be.iso.acc.kbd \ bg.bds.ctrlcaps.kbd bg.phonetic.ctrlcaps.kbd \ br275.iso.kbd br275.iso.acc.kbd br275.cp850.kbd \ - by.cp1131.kbd by.cp1251.kbd by.iso5.kbd \ + by.cp1251.kbd \ ce.iso2.kbd \ cs.latin2.qwertz.kbd \ cz.iso2.kbd \ From owner-cvs-all@FreeBSD.ORG Sun Apr 11 12:22: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 54FD216A4CE; Sun, 11 Apr 2004 12:22:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31F4243D3F; Sun, 11 Apr 2004 12:22:26 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BJMPGe064537; Sun, 11 Apr 2004 12:22:25 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BJMP8R064536; Sun, 11 Apr 2004 12:22:25 -0700 (PDT) (envelope-from imp) Message-Id: <200404111922.i3BJMP8R064536@repoman.freebsd.org> From: Warner Losh Date: Sun, 11 Apr 2004 12:22:25 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/cardbus cardbus_cis.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 19:22:26 -0000 imp 2004/04/11 12:22:25 PDT FreeBSD src repository Modified files: sys/dev/cardbus cardbus_cis.c Log: Add note about why we're ignoring the below 1MB bit. Revision Changes Path 1.46 +19 -0 src/sys/dev/cardbus/cardbus_cis.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 12:25: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 8936616A4CE; Sun, 11 Apr 2004 12:25:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E7B643D41; Sun, 11 Apr 2004 12:25:56 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BJPuGe064679; Sun, 11 Apr 2004 12:25:56 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BJPuEE064678; Sun, 11 Apr 2004 12:25:56 -0700 (PDT) (envelope-from ru) Message-Id: <200404111925.i3BJPuEE064678@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 11 Apr 2004 12:25:56 -0700 (PDT) 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: Sun, 11 Apr 2004 19:25:56 -0000 ru 2004/04/11 12:25:56 PDT FreeBSD src repository Modified files: sys/dev/nge if_nge.c Log: Implemented per-interface polling(4) control. Revision Changes Path 1.58 +12 -1 src/sys/dev/nge/if_nge.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 12: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 9D7A316A4CE; Sun, 11 Apr 2004 12:32:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9977743D46; Sun, 11 Apr 2004 12:32:20 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BJWKGe066660; Sun, 11 Apr 2004 12:32:20 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BJWKIp066656; Sun, 11 Apr 2004 12:32:20 -0700 (PDT) (envelope-from imp) Message-Id: <200404111932.i3BJWKIp066656@repoman.freebsd.org> From: Warner Losh Date: Sun, 11 Apr 2004 12:32:20 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sx cd1865.h sx.c sx.h sx_pci.c sx_util.c sx_util.h sxvar.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, 11 Apr 2004 19:32:20 -0000 imp 2004/04/11 12:32:20 PDT FreeBSD src repository Added files: sys/dev/sx cd1865.h sx.c sx.h sx_pci.c sx_util.c sx_util.h sxvar.h Log: Frank Mayhar's sx driver for older Specialix I/O8+ and I/O4+ intelligent serial controllers. si is for completely different hardware, also made by Specialix. Revision Changes Path 1.1 +313 -0 src/sys/dev/sx/cd1865.h (new) 1.1 +2039 -0 src/sys/dev/sx/sx.c (new) 1.1 +210 -0 src/sys/dev/sx/sx.h (new) 1.1 +166 -0 src/sys/dev/sx/sx_pci.c (new) 1.1 +260 -0 src/sys/dev/sx/sx_util.c (new) 1.1 +159 -0 src/sys/dev/sx/sx_util.h (new) 1.1 +83 -0 src/sys/dev/sx/sxvar.h (new) From owner-cvs-all@FreeBSD.ORG Sun Apr 11 12: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 BFC1316A4CE; Sun, 11 Apr 2004 12:38:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5D3643D41; Sun, 11 Apr 2004 12:38:56 -0700 (PDT) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BJcuGe066945; Sun, 11 Apr 2004 12:38:56 -0700 (PDT) (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BJcudP066944; Sun, 11 Apr 2004 12:38:56 -0700 (PDT) (envelope-from mheinen) Message-Id: <200404111938.i3BJcudP066944@repoman.freebsd.org> From: Martin Heinen Date: Sun, 11 Apr 2004 12:38:56 -0700 (PDT) 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/mail 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, 11 Apr 2004 19:38:56 -0000 mheinen 2004/04/11 12:38:56 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/mail chapter.sgml Log: Add userinput tags to the mail(1) screens. Fix line breaks in the reply to example. Revision Changes Path 1.108 +9 -7 doc/en_US.ISO8859-1/books/handbook/mail/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 12: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 5E5B816A4CF; Sun, 11 Apr 2004 12:45:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4449343D60; Sun, 11 Apr 2004 12:45:06 -0700 (PDT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BJj6Ge068884; Sun, 11 Apr 2004 12:45:06 -0700 (PDT) (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BJj5qT068883; Sun, 11 Apr 2004 12:45:05 -0700 (PDT) (envelope-from eik) Message-Id: <200404111945.i3BJj5qT068883@repoman.freebsd.org> From: Oliver Eikemeier Date: Sun, 11 Apr 2004 12:45:05 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/openldap22-server 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, 11 Apr 2004 19:45:06 -0000 eik 2004/04/11 12:45:05 PDT FreeBSD ports repository Modified files: net/openldap22-server Makefile Log: bdb backend requires Berkeley DB >= 4.2 since 2.2.3beta Noticed by: Michael Reifenberger Revision Changes Path 1.90 +1 -1 ports/net/openldap22-server/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 12:57: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 DF76216A4D0; Sun, 11 Apr 2004 12:57:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2A3843D4C; Sun, 11 Apr 2004 12:57:13 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BJvDGe076942; Sun, 11 Apr 2004 12:57:13 -0700 (PDT) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BJvCQB076941; Sun, 11 Apr 2004 12:57:12 -0700 (PDT) (envelope-from alc) Message-Id: <200404111957.i3BJvCQB076941@repoman.freebsd.org> From: Alan Cox Date: Sun, 11 Apr 2004 12:57:12 -0700 (PDT) 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_exec.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 19:57:14 -0000 alc 2004/04/11 12:57:12 PDT FreeBSD src repository Modified files: sys/kern kern_exec.c Log: Use vm_page_hold() rather than vm_page_wire() for short-duration page wiring. The reason being that vm_page_hold() is cheaper. Revision Changes Path 1.242 +2 -2 src/sys/kern/kern_exec.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 13: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 6C75A16A4CE; Sun, 11 Apr 2004 13:01:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52C8C43D53; Sun, 11 Apr 2004 13:01:19 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BK1JGe077184; Sun, 11 Apr 2004 13:01:19 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BK1JFA077183; Sun, 11 Apr 2004 13:01:19 -0700 (PDT) (envelope-from imp) Message-Id: <200404112001.i3BK1JFA077183@repoman.freebsd.org> From: Warner Losh Date: Sun, 11 Apr 2004 13:01:19 -0700 (PDT) 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 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: Sun, 11 Apr 2004 20:01:19 -0000 imp 2004/04/11 13:01:19 PDT FreeBSD src repository Modified files: sys/conf files options Log: Add glue for new sx driver. Revision Changes Path 1.885 +4 -0 src/sys/conf/files 1.440 +1 -0 src/sys/conf/options From owner-cvs-all@FreeBSD.ORG Sun Apr 11 13:15: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 1C17E16A4CE; Sun, 11 Apr 2004 13:15:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0163A43D68; Sun, 11 Apr 2004 13:15:16 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BKFFGe081999; Sun, 11 Apr 2004 13:15:15 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BKFFMO081998; Sun, 11 Apr 2004 13:15:15 -0700 (PDT) (envelope-from imp) Message-Id: <200404112015.i3BKFFMO081998@repoman.freebsd.org> From: Warner Losh Date: Sun, 11 Apr 2004 13:15:15 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sx sx.c sx_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: Sun, 11 Apr 2004 20:15:16 -0000 imp 2004/04/11 13:15:15 PDT FreeBSD src repository Modified files: sys/dev/sx sx.c sx_pci.c Log: Update to recent driver api changes. Revision Changes Path 1.2 +10 -24 src/sys/dev/sx/sx.c 1.2 +1 -1 src/sys/dev/sx/sx_pci.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 13: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 8250016A4CE; Sun, 11 Apr 2004 13:17:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68AA243D39; Sun, 11 Apr 2004 13:17:35 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BKHZGe082109; Sun, 11 Apr 2004 13:17:35 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BKHZ4K082108; Sun, 11 Apr 2004 13:17:35 -0700 (PDT) (envelope-from imp) Message-Id: <200404112017.i3BKHZ4K082108@repoman.freebsd.org> From: Warner Losh Date: Sun, 11 Apr 2004 13:17:35 -0700 (PDT) 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: Sun, 11 Apr 2004 20:17:35 -0000 imp 2004/04/11 13:17:35 PDT FreeBSD src repository Modified files: sys/conf NOTES Log: Add sx driver, since it looks like it should work on all architectures. Revision Changes Path 1.1213 +2 -0 src/sys/conf/NOTES From owner-cvs-all@FreeBSD.ORG Sun Apr 11 13: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 4A62E16A4CF; Sun, 11 Apr 2004 13:34:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30A7A43D2F; Sun, 11 Apr 2004 13:34:09 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BKY9Ge086014; Sun, 11 Apr 2004 13:34:09 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BKY8bx086013; Sun, 11 Apr 2004 13:34:08 -0700 (PDT) (envelope-from ru) Message-Id: <200404112034.i3BKY8bx086013@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 11 Apr 2004 13:34:08 -0700 (PDT) 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_sis.c src/sys/dev/re if_re.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 20:34:09 -0000 ru 2004/04/11 13:34:08 PDT FreeBSD src repository Modified files: sys/pci if_sis.c sys/dev/re if_re.c Log: Implemented per-interface polling(4) control. Revision Changes Path 1.20 +9 -1 src/sys/dev/re/if_re.c 1.97 +14 -1 src/sys/pci/if_sis.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 14:01: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 9E0F616A4CE; Sun, 11 Apr 2004 14:01:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8180E43D3F; Sun, 11 Apr 2004 14:01:13 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BL1DGe090326; Sun, 11 Apr 2004 14:01:13 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BL1Dme090325; Sun, 11 Apr 2004 14:01:13 -0700 (PDT) (envelope-from ru) Message-Id: <200404112101.i3BL1Dme090325@repoman.freebsd.org> From: Ruslan Ermilov Date: Sun, 11 Apr 2004 14:01:13 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/em if_em.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 21:01:13 -0000 ru 2004/04/11 14:01:13 PDT FreeBSD src repository Modified files: sys/dev/em if_em.c Log: Implemented per-interface polling(4) control. Revision Changes Path 1.39 +13 -5 src/sys/dev/em/if_em.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 14:03: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 EEBBD16A4CE; Sun, 11 Apr 2004 14:03:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D331E43D31; Sun, 11 Apr 2004 14:03:37 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BL3bGe093017; Sun, 11 Apr 2004 14:03:37 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BL3bUv093016; Sun, 11 Apr 2004 14:03:37 -0700 (PDT) (envelope-from marcus) Message-Id: <200404112103.i3BL3bUv093016@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 11 Apr 2004 14:03:37 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/news/pan2 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, 11 Apr 2004 21:03:38 -0000 marcus 2004/04/11 14:03:37 PDT FreeBSD ports repository Modified files: news/pan2 Makefile Log: Make gtkspell support optional (defaults to on), and add OPTIONS support. Based on patch by: Herbert J. Skuhra Revision Changes Path 1.94 +12 -3 ports/news/pan2/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 14: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 1CA0C16A4CE; Sun, 11 Apr 2004 14:07:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00E5D43D3F; Sun, 11 Apr 2004 14:07:27 -0700 (PDT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BL7QGe093217; Sun, 11 Apr 2004 14:07:26 -0700 (PDT) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BL7QBN093216; Sun, 11 Apr 2004 14:07:26 -0700 (PDT) (envelope-from mux) Message-Id: <200404112107.i3BL7QBN093216@repoman.freebsd.org> From: Maxime Henrion Date: Sun, 11 Apr 2004 14:07:26 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/smbfs/mount_smbfs mount_smbfs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 21:07:27 -0000 mux 2004/04/11 14:07:26 PDT FreeBSD src repository Modified files: contrib/smbfs/mount_smbfs mount_smbfs.c Log: Sync with other mount_*fs(8) utilities; we don't need to try to load the smbfs module because the mount(2) syscall will do it if it's needed. Revision Changes Path 1.3 +3 -13 src/contrib/smbfs/mount_smbfs/mount_smbfs.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 14: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 E1F8016A4CE; Sun, 11 Apr 2004 14:09:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C651343D46; Sun, 11 Apr 2004 14:09:22 -0700 (PDT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BL9MGe093281; Sun, 11 Apr 2004 14:09:22 -0700 (PDT) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BL9M7F093280; Sun, 11 Apr 2004 14:09:22 -0700 (PDT) (envelope-from mux) Message-Id: <200404112109.i3BL9M7F093280@repoman.freebsd.org> From: Maxime Henrion Date: Sun, 11 Apr 2004 14:09:22 -0700 (PDT) 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: Sun, 11 Apr 2004 21:09:23 -0000 mux 2004/04/11 14:09:22 PDT FreeBSD src repository Modified files: sys/kern vfs_subr.c Log: Put deprecated sysctl code inside BURN_BRIDGES. Revision Changes Path 1.490 +5 -3 src/sys/kern/vfs_subr.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 14:12: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 82CA816A4CE; Sun, 11 Apr 2004 14:12:55 -0700 (PDT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83E3D43D41; Sun, 11 Apr 2004 14:12:54 -0700 (PDT) (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 i3BLHQRg093826 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 12 Apr 2004 00:17:27 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i3BLCeuU001851; Mon, 12 Apr 2004 00:12:40 +0300 (EEST) (envelope-from ru) Date: Mon, 12 Apr 2004 00:12:39 +0300 From: Ruslan Ermilov To: Dmitry Morozovsky Message-ID: <20040411211239.GA1636@ip.net.ua> References: <200404111623.i3BGNG6S024651@repoman.freebsd.org> <20040411162458.GA281@ip.net.ua> <20040411225532.Y1407@woozle.rinet.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="cWoXeonUoKmBZSoM" Content-Disposition: inline In-Reply-To: <20040411225532.Y1407@woozle.rinet.ru> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: 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: Sun, 11 Apr 2004 21:12:55 -0000 --cWoXeonUoKmBZSoM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Apr 11, 2004 at 10:56:27PM +0400, Dmitry Morozovsky wrote: > On Sun, 11 Apr 2004, Ruslan Ermilov wrote: >=20 > RE> > ru 2004/04/11 09:23:16 PDT > RE> > > RE> > FreeBSD src repository > RE> > > RE> > Modified files: > RE> > sys/pci if_rl.c > RE> > Log: > RE> > Implemented per-interface polling(4) control. > RE> > > RE> > Revision Changes Path > RE> > 1.135 +12 -1 src/sys/pci/if_rl.c > RE> > > RE> This has actually been tested on a RELENG_4 box, meaning > RE> that this feature can also be MFC'ed. ;) >=20 > Yoo-hoo! The go for it (and if possible for if_fxp.c too)! >=20 OK. I've now implemented the per-interface polling(4) control for all drivers that support polling(4) in HEAD. I'll prepare the patchset for RELENG_4 tomorrow, and make it available for testing. I'll post the URL on the stable@ mailing list. Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --cWoXeonUoKmBZSoM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAebTHUkv4P6juNwoRAo8JAJ49w0wtJwZNG06NvT6uDVrAjlWlNgCcCvdr D0t0XXxDCbp2Hqm6n5Wdd28= =byD6 -----END PGP SIGNATURE----- --cWoXeonUoKmBZSoM-- From owner-cvs-all@FreeBSD.ORG Sun Apr 11 14:25: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 B625616A4CE; Sun, 11 Apr 2004 14:25:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C34943D2F; Sun, 11 Apr 2004 14:25:51 -0700 (PDT) (envelope-from sergei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BLPpGe097227; Sun, 11 Apr 2004 14:25:51 -0700 (PDT) (envelope-from sergei@repoman.freebsd.org) Received: (from sergei@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BLPpV4097226; Sun, 11 Apr 2004 14:25:51 -0700 (PDT) (envelope-from sergei) Message-Id: <200404112125.i3BLPpV4097226@repoman.freebsd.org> From: Sergei Kolobov Date: Sun, 11 Apr 2004 14:25:51 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/snort 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, 11 Apr 2004 21:25:51 -0000 sergei 2004/04/11 14:25:51 PDT FreeBSD ports repository Modified files: security/snort Makefile distinfo Log: - Update to 2.1.2 PR: ports/65373 Submitted by: Linh Pham Revision Changes Path 1.50 +3 -3 ports/security/snort/Makefile 1.28 +4 -2 ports/security/snort/distinfo From owner-cvs-all@FreeBSD.ORG Sun Apr 11 14:26: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 4398E16A4CE; Sun, 11 Apr 2004 14:26:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 212F943D45; Sun, 11 Apr 2004 14:26:08 -0700 (PDT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BLQ7Ge097267; Sun, 11 Apr 2004 14:26:07 -0700 (PDT) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BLQ77F097266; Sun, 11 Apr 2004 14:26:07 -0700 (PDT) (envelope-from mux) Message-Id: <200404112126.i3BLQ77F097266@repoman.freebsd.org> From: Maxime Henrion Date: Sun, 11 Apr 2004 14:26:07 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys mount.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, 11 Apr 2004 21:26:08 -0000 mux 2004/04/11 14:26:07 PDT FreeBSD src repository Modified files: sys/sys mount.h Log: Put struct ovfsconf inside BURN_BRIDGES as well. Revision Changes Path 1.160 +2 -0 src/sys/sys/mount.h From owner-cvs-all@FreeBSD.ORG Sun Apr 11 14: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 465C516A4CE; Sun, 11 Apr 2004 14:36:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A42E43D2D; Sun, 11 Apr 2004 14:36:32 -0700 (PDT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BLaVGe099407; Sun, 11 Apr 2004 14:36:31 -0700 (PDT) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BLaVxM099406; Sun, 11 Apr 2004 14:36:31 -0700 (PDT) (envelope-from mux) Message-Id: <200404112136.i3BLaVxM099406@repoman.freebsd.org> From: Maxime Henrion Date: Sun, 11 Apr 2004 14:36:31 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/sys mount.h src/lib/libc/gen Makefile.inc getvfsent.3 getvfsent.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 21:36:32 -0000 mux 2004/04/11 14:36:31 PDT FreeBSD src repository Modified files: sys/sys mount.h lib/libc/gen Makefile.inc Removed files: lib/libc/gen getvfsent.3 getvfsent.c Log: Belatedly remove the getvfsent(3) API. All the consumers have been updated to use getvfsbyname(3) or the vfs.conflist sysctl since a long time, except mount_smbfs(8) which has just been fixed. Revision Changes Path 1.110 +2 -5 src/lib/libc/gen/Makefile.inc 1.28 +0 -187 src/lib/libc/gen/getvfsent.3 (dead) 1.21 +0 -150 src/lib/libc/gen/getvfsent.c (dead) 1.161 +0 -6 src/sys/sys/mount.h From owner-cvs-all@FreeBSD.ORG Sun Apr 11 14:38: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 663EC16A4CE; Sun, 11 Apr 2004 14:38:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4AB9B43D53; Sun, 11 Apr 2004 14:38:49 -0700 (PDT) (envelope-from sergei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BLcnGe099500; Sun, 11 Apr 2004 14:38:49 -0700 (PDT) (envelope-from sergei@repoman.freebsd.org) Received: (from sergei@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BLcnLS099499; Sun, 11 Apr 2004 14:38:49 -0700 (PDT) (envelope-from sergei) Message-Id: <200404112138.i3BLcnLS099499@repoman.freebsd.org> From: Sergei Kolobov Date: Sun, 11 Apr 2004 14:38:49 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/maildrop 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, 11 Apr 2004 21:38:49 -0000 sergei 2004/04/11 14:38:49 PDT FreeBSD ports repository Modified files: mail/maildrop Makefile Log: - Support sourcing of Makefile.local by including even though I think there are better ways to store per-port configuration: sysutils/penv or sysutils/portupgrade ports or /etc/make.conf file) PR: ports/64660 Submitted by: George Hartzell Revision Changes Path 1.30 +3 -1 ports/mail/maildrop/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 14:43: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 BE48216A4CE; Sun, 11 Apr 2004 14:43:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B934543D3F; Sun, 11 Apr 2004 14:43:24 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BLhOGe001621; Sun, 11 Apr 2004 14:43:24 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BLhO1l001620; Sun, 11 Apr 2004 14:43:24 -0700 (PDT) (envelope-from thierry) Message-Id: <200404112143.i3BLhO1l001620@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 11 Apr 2004 14:43:24 -0700 (PDT) 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/horde-passwd Makefile distinfo pkg-descr pkg-plist ports/www/horde-passwd/files httpd.conf.pwd pkg-message.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, 11 Apr 2004 21:43:24 -0000 thierry 2004/04/11 14:43:24 PDT FreeBSD ports repository Modified files: www Makefile Added files: www/horde-passwd Makefile distinfo pkg-descr pkg-plist www/horde-passwd/files httpd.conf.pwd pkg-message.in Log: Add horde-passwd 2.2.1, a password changing module for Horde. PR: 62745 Submitted by: João Carlos Mendes Luís () Approved by: pav (mentor). Revision Changes Path 1.851 +1 -0 ports/www/Makefile 1.1 +81 -0 ports/www/horde-passwd/Makefile (new) 1.1 +2 -0 ports/www/horde-passwd/distinfo (new) 1.1 +30 -0 ports/www/horde-passwd/files/httpd.conf.pwd (new) 1.1 +33 -0 ports/www/horde-passwd/files/pkg-message.in (new) 1.1 +10 -0 ports/www/horde-passwd/pkg-descr (new) 1.1 +156 -0 ports/www/horde-passwd/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Sun Apr 11 14:43: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 73D0C16A4D5; Sun, 11 Apr 2004 14:43:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57A2843D1F; Sun, 11 Apr 2004 14:43:38 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BLhcGe001669; Sun, 11 Apr 2004 14:43:38 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BLhcAM001668; Sun, 11 Apr 2004 14:43:38 -0700 (PDT) (envelope-from thierry) Message-Id: <200404112143.i3BLhcAM001668@repoman.freebsd.org> From: Thierry Thomas Date: Sun, 11 Apr 2004 14:43:38 -0700 (PDT) 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, 11 Apr 2004 21:43:38 -0000 thierry 2004/04/11 14:43:37 PDT FreeBSD ports repository Modified files: . modules Log: horde-passwd --> ports/www/horde-passwd Revision Changes Path 1.9886 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sun Apr 11 14:53: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 1DA1816A4CE; Sun, 11 Apr 2004 14:53:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 18FC143D31; Sun, 11 Apr 2004 14:53:03 -0700 (PDT) (envelope-from sergei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BLr2Ge003750; Sun, 11 Apr 2004 14:53:02 -0700 (PDT) (envelope-from sergei@repoman.freebsd.org) Received: (from sergei@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BLr2ea003749; Sun, 11 Apr 2004 14:53:02 -0700 (PDT) (envelope-from sergei) Message-Id: <200404112153.i3BLr2ea003749@repoman.freebsd.org> From: Sergei Kolobov Date: Sun, 11 Apr 2004 14:53:02 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/archivemail Makefile pkg-plist ports/mail/archivemail/files patch-archivemail X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Apr 2004 21:53:03 -0000 sergei 2004/04/11 14:53:02 PDT FreeBSD ports repository Modified files: mail/archivemail Makefile pkg-plist Added files: mail/archivemail/files patch-archivemail Log: - This fixes the following warning when you run archivemail with Python 2.3: /usr/local/bin/archivemail:760: SyntaxWarning: assignment to None (None, last_dir) = os.path.split(os.path.dirname(message.fp.name)) The patch was also submitted to upstream (using SF's bug tracking system). PR: ports/64354 Submitted by: Simon Barner - Use DOCSDIR/EXAMPLESDIR macros in pkg-plist - Bump PORTREVISION Revision Changes Path 1.14 +1 -1 ports/mail/archivemail/Makefile 1.1 +11 -0 ports/mail/archivemail/files/patch-archivemail (new) 1.3 +9 -8 ports/mail/archivemail/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Apr 11 14: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 2410316A4CF; Sun, 11 Apr 2004 14:54:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0874B43D46; Sun, 11 Apr 2004 14:54:49 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BLsmGe003845; Sun, 11 Apr 2004 14:54:48 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BLsmbT003844; Sun, 11 Apr 2004 14:54:48 -0700 (PDT) (envelope-from des) Message-Id: <200404112154.i3BLsmbT003844@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Sun, 11 Apr 2004 14:54:48 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/porteasy Makefile ports/misc/porteasy/src porteasy.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, 11 Apr 2004 21:54:49 -0000 des 2004/04/11 14:54:48 PDT FreeBSD ports repository Modified files: misc/porteasy Makefile misc/porteasy/src porteasy.pl Log: Don't require additional command line arguments when -I is specified. Revision Changes Path 1.37 +1 -1 ports/misc/porteasy/Makefile 1.42 +2 -2 ports/misc/porteasy/src/porteasy.pl From owner-cvs-all@FreeBSD.ORG Sun Apr 11 14:57: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 C545916A4CE; Sun, 11 Apr 2004 14:57:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A952B43D55; Sun, 11 Apr 2004 14:57:07 -0700 (PDT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BLv7Ge003991; Sun, 11 Apr 2004 14:57:07 -0700 (PDT) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BLv775003990; Sun, 11 Apr 2004 14:57:07 -0700 (PDT) (envelope-from mux) Message-Id: <200404112157.i3BLv775003990@repoman.freebsd.org> From: Maxime Henrion Date: Sun, 11 Apr 2004 14:57:07 -0700 (PDT) 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, 11 Apr 2004 21:57:08 -0000 mux 2004/04/11 14:57:07 PDT FreeBSD src repository Modified files: sys/sys param.h Log: Bump __FreeBSD_version for getgrent(3) removal. I doubt anything outside of the tree uses it, but it doesn't cost anything. Revision Changes Path 1.190 +1 -1 src/sys/sys/param.h From owner-cvs-all@FreeBSD.ORG Sun Apr 11 15:02: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 B64B516A4CE; Sun, 11 Apr 2004 15:02:49 -0700 (PDT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6848643D41; Sun, 11 Apr 2004 15:02:49 -0700 (PDT) (envelope-from mux@freebsd.org) Received: by elvis.mu.org (Postfix, from userid 1920) id 5690F5C817; Sun, 11 Apr 2004 15:02:49 -0700 (PDT) Date: Mon, 12 Apr 2004 00:02:49 +0200 From: Maxime Henrion To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040411220249.GF4772@elvis.mu.org> References: <200404112157.i3BLv775003990@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404112157.i3BLv775003990@repoman.freebsd.org> User-Agent: Mutt/1.4.2.1i Subject: Re: 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, 11 Apr 2004 22:02:49 -0000 Maxime Henrion wrote: > mux 2004/04/11 14:57:07 PDT > > FreeBSD src repository > > Modified files: > sys/sys param.h > Log: > Bump __FreeBSD_version for getgrent(3) removal. I doubt anything ^^^^^^^^ Oops! Obviously I meant getvfsent(3) here. Sorry for the potential heart attacks I caused :-). Cheers, Maxime From owner-cvs-all@FreeBSD.ORG Sun Apr 11 15:05: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 E540D16A4CE; Sun, 11 Apr 2004 15:05:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA2EC43D49; Sun, 11 Apr 2004 15:05:30 -0700 (PDT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BM5UGe006956; Sun, 11 Apr 2004 15:05:30 -0700 (PDT) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BM5Up8006955; Sun, 11 Apr 2004 15:05:30 -0700 (PDT) (envelope-from mux) Message-Id: <200404112205.i3BM5Up8006955@repoman.freebsd.org> From: Maxime Henrion Date: Sun, 11 Apr 2004 15:05:30 -0700 (PDT) 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, 11 Apr 2004 22:05:31 -0000 mux 2004/04/11 15:05:30 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: Document __FreeBSD_version 502111. Revision Changes Path 1.392 +6 -0 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 15:16: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 B17CC16A4CE; Sun, 11 Apr 2004 15:16:56 -0700 (PDT) Received: from mtaw6.prodigy.net (mtaw6.prodigy.net [64.164.98.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9223443D1D; Sun, 11 Apr 2004 15:16:56 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (4f63d9f41962f355e7c67c6940960322@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw6.prodigy.net (8.12.10/8.12.10) with ESMTP id i3BMFljG022067; Sun, 11 Apr 2004 15:15:47 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id C3B7053902; Sun, 11 Apr 2004 15:16:55 -0700 (PDT) Date: Sun, 11 Apr 2004 15:16:55 -0700 From: Kris Kennaway To: Kirill Ponomarew Message-ID: <20040411221655.GA98536@xor.obsecurity.org> References: <200404111412.i3BEC3ie088930@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="rwEMma7ioTxnRzrJ" Content-Disposition: inline In-Reply-To: <200404111412.i3BEC3ie088930@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/net/howl 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, 11 Apr 2004 22:16:56 -0000 --rwEMma7ioTxnRzrJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sun, Apr 11, 2004 at 07:12:03AM -0700, Kirill Ponomarew wrote: > | @@ -19,6 +18,8 @@ USE_GMAKE= yes > | USE_LIBTOOL_VER=13 > | INSTALLS_SHLIB= yes > | CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL} > | + > | +MAN8= mDNSResponder.8 Looks like it conflicts with the mDNSResponder port. Kris --rwEMma7ioTxnRzrJ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAecPXWry0BWjoQKURArZ8AKDMW8atyb9ayK2hf2Dzb67QTj389QCgqicZ svovXiN8+/oOhJdd6cDxihg= =xjJ4 -----END PGP SIGNATURE----- --rwEMma7ioTxnRzrJ-- From owner-cvs-all@FreeBSD.ORG Sun Apr 11 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 CFB0B16A4CE; Sun, 11 Apr 2004 15:32:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B49B143D58; Sun, 11 Apr 2004 15:32:40 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BMWeGe012865; Sun, 11 Apr 2004 15:32:40 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BMWeBn012864; Sun, 11 Apr 2004 15:32:40 -0700 (PDT) (envelope-from kris) Message-Id: <200404112232.i3BMWeBn012864@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 15:32:40 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/dtv 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, 11 Apr 2004 22:32:41 -0000 kris 2004/04/11 15:32:40 PDT FreeBSD ports repository Modified files: multimedia/dtv Makefile Log: Add a missing USE_XLIB Revision Changes Path 1.7 +1 -0 ports/multimedia/dtv/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 15:38: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 8950F16A4CE; Sun, 11 Apr 2004 15:38:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D85743D41; Sun, 11 Apr 2004 15:38:55 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BMctGe013050; Sun, 11 Apr 2004 15:38:55 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BMctrV013049; Sun, 11 Apr 2004 15:38:55 -0700 (PDT) (envelope-from kris) Message-Id: <200404112238.i3BMctrV013049@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 15:38:55 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/korean/mizifont 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, 11 Apr 2004 22:38:55 -0000 kris 2004/04/11 15:38:55 PDT FreeBSD ports repository Modified files: korean/mizifont Makefile Log: rpm2cpio is an EXTRACT_DEPENDS, not BUILD_DEPENDS Revision Changes Path 1.21 +1 -1 ports/korean/mizifont/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 15:42: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 B8D3116A4CE; Sun, 11 Apr 2004 15:42:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D07143D2D; Sun, 11 Apr 2004 15:42:11 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BMgBGe014760; Sun, 11 Apr 2004 15:42:11 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BMgBka014759; Sun, 11 Apr 2004 15:42:11 -0700 (PDT) (envelope-from kris) Message-Id: <200404112242.i3BMgBka014759@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 15:42:11 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/linux-xmovie 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, 11 Apr 2004 22:42:11 -0000 kris 2004/04/11 15:42:11 PDT FreeBSD ports repository Modified files: multimedia/linux-xmovie Makefile Log: rpm2cpio is an EXTRACT_DEPENDS, not BUILD_DEPENDS Revision Changes Path 1.27 +1 -1 ports/multimedia/linux-xmovie/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 15: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 14BA416A4CE; Sun, 11 Apr 2004 15:45:44 -0700 (PDT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id C29DE43D46; Sun, 11 Apr 2004 15:45:43 -0700 (PDT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.31; FreeBSD) id 1BCnhv-0004vZ-Bi; Mon, 12 Apr 2004 00:45:43 +0200 Date: Mon, 12 Apr 2004 00:45:43 +0200 From: Kirill Ponomarew To: Kris Kennaway Message-ID: <20040411224543.GA18338@voodoo.oberon.net> Mail-Followup-To: Kirill Ponomarew , Kris Kennaway , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200404111412.i3BEC3ie088930@repoman.freebsd.org> <20040411221655.GA98536@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ZPt4rx8FFjLCG7dd" Content-Disposition: inline In-Reply-To: <20040411221655.GA98536@xor.obsecurity.org> X-NCC-Regid: de.oberon Sender: Kirill Ponomarew cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/net/howl 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, 11 Apr 2004 22:45:44 -0000 --ZPt4rx8FFjLCG7dd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Sun, Apr 11, 2004 at 03:16:55PM -0700, Kris Kennaway wrote: > On Sun, Apr 11, 2004 at 07:12:03AM -0700, Kirill Ponomarew wrote: >=20 > > | @@ -19,6 +18,8 @@ USE_GMAKE=3D yes > > | USE_LIBTOOL_VER=3D13 > > | INSTALLS_SHLIB=3D yes > > | CONFIGURE_TARGET=3D --build=3D${MACHINE_ARCH}-portbld-freebsd${OSREL} > > | + > > | +MAN8=3D mDNSResponder.8 >=20 > Looks like it conflicts with the mDNSResponder port. Doesn't seem so. -Kirill --ZPt4rx8FFjLCG7dd Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAecqXQC1G6a60JuURAv8jAJwPtQwozD7zSV1AA1gOFHrzInOTKACgu59/ QHiFaSKRiDvIWbplS+0eVHk= =ycfj -----END PGP SIGNATURE----- --ZPt4rx8FFjLCG7dd-- From owner-cvs-all@FreeBSD.ORG Sun Apr 11 15:51: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 D353316A4CE; Sun, 11 Apr 2004 15:51:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6A7F43D45; Sun, 11 Apr 2004 15:51:50 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BMpoGe016373; Sun, 11 Apr 2004 15:51:50 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BMpoHj016369; Sun, 11 Apr 2004 15:51:50 -0700 (PDT) (envelope-from kris) Message-Id: <200404112251.i3BMpoHj016369@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 15:51:50 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/mozart 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, 11 Apr 2004 22:51:51 -0000 kris 2004/04/11 15:51:49 PDT FreeBSD ports repository Modified files: lang/mozart Makefile distinfo Log: Remove duplicate listing of ${MOZART_DOCS} in ${DISTFILES} to unbreak the checksum listing and fix fetching. Revision Changes Path 1.24 +1 -1 ports/lang/mozart/Makefile 1.9 +0 -2 ports/lang/mozart/distinfo From owner-cvs-all@FreeBSD.ORG Sun Apr 11 15:57: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 97B7916A4CE; Sun, 11 Apr 2004 15:57:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7C27143D53; Sun, 11 Apr 2004 15:57:33 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BMvXGe017119; Sun, 11 Apr 2004 15:57:33 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BMvXsq017118; Sun, 11 Apr 2004 15:57:33 -0700 (PDT) (envelope-from kris) Message-Id: <200404112257.i3BMvXsq017118@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 15:57:33 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/cad/leocad 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, 11 Apr 2004 22:57:33 -0000 kris 2004/04/11 15:57:33 PDT FreeBSD ports repository Modified files: cad/leocad Makefile Log: unzip is an EXTRACT_DEPENDS, not BUILD_DEPENDS Revision Changes Path 1.9 +1 -1 ports/cad/leocad/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 15: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 0F29916A4CE; Sun, 11 Apr 2004 15:59:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8B5A43D41; Sun, 11 Apr 2004 15:59:45 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BMxjGe017262; Sun, 11 Apr 2004 15:59:45 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BMxjaU017261; Sun, 11 Apr 2004 15:59:45 -0700 (PDT) (envelope-from kris) Message-Id: <200404112259.i3BMxjaU017261@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 15:59:45 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/kterm16c 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, 11 Apr 2004 22:59:46 -0000 kris 2004/04/11 15:59:45 PDT FreeBSD ports repository Modified files: japanese/kterm16c Makefile Log: XFree86-4-clients is an EXTRACT_DEPENDS, not BUILD_DEPENDS Revision Changes Path 1.31 +1 -1 ports/japanese/kterm16c/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 16: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 000D716A4CE; Sun, 11 Apr 2004 16:01:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D88EC43D39; Sun, 11 Apr 2004 16:01:23 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BN1NGe017411; Sun, 11 Apr 2004 16:01:23 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BN1NGu017410; Sun, 11 Apr 2004 16:01:23 -0700 (PDT) (envelope-from kris) Message-Id: <200404112301.i3BN1NGu017410@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 16:01:23 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators/p-interp 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, 11 Apr 2004 23:01:24 -0000 kris 2004/04/11 16:01:23 PDT FreeBSD ports repository Modified files: emulators/p-interp Makefile Log: Change post-patch target to pre-build to use BUILD_DEPENDS after it has been installed. Revision Changes Path 1.9 +1 -1 ports/emulators/p-interp/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 16:17: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 296A416A4CE; Sun, 11 Apr 2004 16:17:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CE9243D46; Sun, 11 Apr 2004 16:17:27 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BNHQGe022244; Sun, 11 Apr 2004 16:17:26 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BNHQEE022243; Sun, 11 Apr 2004 16:17:26 -0700 (PDT) (envelope-from kris) Message-Id: <200404112317.i3BNHQEE022243@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 16:17:26 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/pam-mysql 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, 11 Apr 2004 23:17:27 -0000 kris 2004/04/11 16:17:26 PDT FreeBSD ports repository Modified files: security/pam-mysql Makefile Log: Move post-patch target to pre-build so that gmake is used after it is added. Revision Changes Path 1.13 +1 -1 ports/security/pam-mysql/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 16: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 6E65A16A4DB; Sun, 11 Apr 2004 16:17:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51BD843D53; Sun, 11 Apr 2004 16:17:55 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BNHtGe022276; Sun, 11 Apr 2004 16:17:55 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BNHtWW022275; Sun, 11 Apr 2004 16:17:55 -0700 (PDT) (envelope-from kris) Message-Id: <200404112317.i3BNHtWW022275@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 16:17:55 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/nosefart 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, 11 Apr 2004 23:17:55 -0000 kris 2004/04/11 16:17:55 PDT FreeBSD ports repository Modified files: audio/nosefart Makefile Log: Move post-extract to pre-build so that gmake is used after it is added. Revision Changes Path 1.8 +1 -1 ports/audio/nosefart/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 16:18: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 0B2C516A4CE; Sun, 11 Apr 2004 16:18:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E27E143D3F; Sun, 11 Apr 2004 16:18:58 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BNIwGe022321; Sun, 11 Apr 2004 16:18:58 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BNIwIr022320; Sun, 11 Apr 2004 16:18:58 -0700 (PDT) (envelope-from kris) Message-Id: <200404112318.i3BNIwIr022320@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 16:18:58 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/urchin5 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, 11 Apr 2004 23:18:59 -0000 kris 2004/04/11 16:18:58 PDT FreeBSD ports repository Modified files: www/urchin5 Makefile Log: BROKEN: Does not work with read-only ports tree Revision Changes Path 1.4 +2 -0 ports/www/urchin5/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 16:44: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 7F0B716A4CE; Sun, 11 Apr 2004 16:44:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6219943D4C; Sun, 11 Apr 2004 16:44:29 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BNiTGe028210; Sun, 11 Apr 2004 16:44:29 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BNiT6o028209; Sun, 11 Apr 2004 16:44:29 -0700 (PDT) (envelope-from marcus) Message-Id: <200404112344.i3BNiT6o028209@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 11 Apr 2004 16:44:29 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/libXaw 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, 11 Apr 2004 23:44:29 -0000 marcus 2004/04/11 16:44:29 PDT FreeBSD ports repository Modified files: x11-toolkits/libXaw Makefile pkg-plist Log: * Add a missing build dependency on xextensions [1] * Add a man page to MAN3 Reported by: bento via kris [1] Revision Changes Path 1.4 +3 -0 ports/x11-toolkits/libXaw/Makefile 1.2 +0 -1 ports/x11-toolkits/libXaw/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Apr 11 16:49: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 A94B616A4CE; Sun, 11 Apr 2004 16:49:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DBF643D3F; Sun, 11 Apr 2004 16:49:17 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BNnHGe034348; Sun, 11 Apr 2004 16:49:17 -0700 (PDT) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BNnHS1034347; Sun, 11 Apr 2004 16:49:17 -0700 (PDT) (envelope-from bmah) Message-Id: <200404112349.i3BNnHS1034347@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sun, 11 Apr 2004 16:49:17 -0700 (PDT) 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: Sun, 11 Apr 2004 23:49:17 -0000 bmah 2004/04/11 16:49:17 PDT FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Fix some minor grammar nits. Translators can probably ignore this. Revision Changes Path 1.710 +10 -10 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 16: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 D55E416A4CE; Sun, 11 Apr 2004 16:51:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B909843D49; Sun, 11 Apr 2004 16:51:22 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3BNpMGe035269; Sun, 11 Apr 2004 16:51:22 -0700 (PDT) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3BNpMKp035265; Sun, 11 Apr 2004 16:51:22 -0700 (PDT) (envelope-from bmah) Message-Id: <200404112351.i3BNpMKp035265@repoman.freebsd.org> From: "Bruce A. Mah" Date: Sun, 11 Apr 2004 16:51:22 -0700 (PDT) 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: Sun, 11 Apr 2004 23:51:23 -0000 bmah 2004/04/11 16:51:22 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Fix some minor grammar nits. Translators can probably ignore this. Approved by: re (implicitly) Revision Changes Path 1.22.2.405 +5 -5 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 17:13: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 0D05516A4CE; Sun, 11 Apr 2004 17:13:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3AB043D1F; Sun, 11 Apr 2004 17:13:23 -0700 (PDT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C0DNGe041209; Sun, 11 Apr 2004 17:13:23 -0700 (PDT) (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C0DNbt041208; Sun, 11 Apr 2004 17:13:23 -0700 (PDT) (envelope-from kientzle) Message-Id: <200404120013.i3C0DNbt041208@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 11 Apr 2004 17:13:23 -0700 (PDT) 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.c matching.c read.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: Mon, 12 Apr 2004 00:13:24 -0000 kientzle 2004/04/11 17:13:23 PDT FreeBSD src repository Modified files: usr.bin/tar Makefile bsdtar.c matching.c read.c write.c Log: Add DPADD to Makefile (thanks to Andrey for pointing this out). Generally clean up Makefile, remove dmalloc references from source (there are better ways to do this than pollute the FreeBSD src tree). Revision Changes Path 1.2 +2 -12 src/usr.bin/tar/Makefile 1.4 +0 -3 src/usr.bin/tar/bsdtar.c 1.2 +0 -3 src/usr.bin/tar/matching.c 1.2 +0 -3 src/usr.bin/tar/read.c 1.5 +0 -3 src/usr.bin/tar/write.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 17:35: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 7206116A4CE; Sun, 11 Apr 2004 17:35:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B0D643D66; Sun, 11 Apr 2004 17:35:37 -0700 (PDT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C0ZbGe045868; Sun, 11 Apr 2004 17:35:37 -0700 (PDT) (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C0ZbUc045867; Sun, 11 Apr 2004 17:35:37 -0700 (PDT) (envelope-from maho) Message-Id: <200404120035.i3C0ZbUc045867@repoman.freebsd.org> From: Maho Nakata Date: Sun, 11 Apr 2004 17:35:37 -0700 (PDT) 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.0 Makefile ports/editors/openoffice-1.0-ar Makefile ports/editors/openoffice-1.0-dk Makefile ports/editors/openoffice-1.0-it Makefile ports/editors/openoffice-1.0-nl 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, 12 Apr 2004 00:35:37 -0000 maho 2004/04/11 17:35:37 PDT FreeBSD ports repository Modified files: editors/openoffice-1.0 Makefile editors/openoffice-1.0-ar Makefile editors/openoffice-1.0-dk Makefile editors/openoffice-1.0-es Makefile editors/openoffice-1.0-it Makefile editors/openoffice-1.0-nl Makefile editors/openoffice-1.0-se Makefile editors/openoffice-1.0-tr Makefile french/openoffice-1.0 Makefile german/openoffice-1.0 Makefile japanese/openoffice-1.0 Makefile korean/openoffice-1.0 Makefile polish/openoffice-1.0 Makefile portuguese/openoffice-1.0 Makefile russian/openoffice-1.0 Makefile Log: Fix LATEST_LINK conflicts NO_LATEST_LINK=yes for openoffice-1.0 ports since they may be deprecated in future... Pointed out by: kris Revision Changes Path 1.5 +2 -0 ports/editors/openoffice-1.0-ar/Makefile 1.7 +1 -0 ports/editors/openoffice-1.0-dk/Makefile 1.8 +1 -0 ports/editors/openoffice-1.0-es/Makefile 1.8 +1 -0 ports/editors/openoffice-1.0-it/Makefile 1.7 +1 -0 ports/editors/openoffice-1.0-nl/Makefile 1.8 +1 -0 ports/editors/openoffice-1.0-se/Makefile 1.5 +1 -0 ports/editors/openoffice-1.0-tr/Makefile 1.189 +1 -0 ports/editors/openoffice-1.0/Makefile 1.9 +1 -0 ports/french/openoffice-1.0/Makefile 1.14 +1 -0 ports/german/openoffice-1.0/Makefile 1.14 +2 -0 ports/japanese/openoffice-1.0/Makefile 1.7 +1 -0 ports/korean/openoffice-1.0/Makefile 1.8 +1 -0 ports/polish/openoffice-1.0/Makefile 1.9 +1 -0 ports/portuguese/openoffice-1.0/Makefile 1.10 +1 -0 ports/russian/openoffice-1.0/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 17:40: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 EFACD16A4CE; Sun, 11 Apr 2004 17:40:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D326643D54; Sun, 11 Apr 2004 17:40:07 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C0e7Ge046018; Sun, 11 Apr 2004 17:40:07 -0700 (PDT) (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C0e7tB046017; Sun, 11 Apr 2004 17:40:07 -0700 (PDT) (envelope-from kuriyama) Message-Id: <200404120040.i3C0e7tB046017@repoman.freebsd.org> From: Jun Kuriyama Date: Sun, 11 Apr 2004 17:40:07 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 00:40:08 -0000 kuriyama 2004/04/11 17:40:07 PDT FreeBSD ports repository Modified files: net/libpdtp Makefile Log: Fix build on ia64 and amd64. Revision Changes Path 1.2 +1 -0 ports/net/libpdtp/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 17: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 48F5A16A4CE; Sun, 11 Apr 2004 17:41:11 -0700 (PDT) Received: from mtaw4.prodigy.net (mtaw4.prodigy.net [64.164.98.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C06243D54; Sun, 11 Apr 2004 17:41:11 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (1b4c4d3fae957e5d6581500bfc55eefc@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw4.prodigy.net (8.12.10/8.12.10) with ESMTP id i3C0fA1O021177; Sun, 11 Apr 2004 17:41:10 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 48E44533F6; Sun, 11 Apr 2004 17:41:10 -0700 (PDT) Date: Sun, 11 Apr 2004 17:41:10 -0700 From: Kris Kennaway To: Maho Nakata Message-ID: <20040412004110.GA1050@xor.obsecurity.org> References: <200404120035.i3C0ZbUc045867@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="17pEHd4RhPHOinZp" Content-Disposition: inline In-Reply-To: <200404120035.i3C0ZbUc045867@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/editors/openoffice-1.0 Makefile ports/editors/openoffice-1.0-ar Makefile ports/editors/openoffice-1.0-dk Makefile ports/editors/openoffice-1.0-es Makefile ports/editors/openoffice-1.0-it Makefile ports/editors/openoffice-1.0-nl 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, 12 Apr 2004 00:41:11 -0000 --17pEHd4RhPHOinZp Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Apr 11, 2004 at 05:35:37PM -0700, Maho Nakata wrote: > maho 2004/04/11 17:35:37 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > editors/openoffice-1.0 Makefile=20 > editors/openoffice-1.0-ar Makefile=20 > editors/openoffice-1.0-dk Makefile=20 > editors/openoffice-1.0-es Makefile=20 > editors/openoffice-1.0-it Makefile=20 > editors/openoffice-1.0-nl Makefile=20 > editors/openoffice-1.0-se Makefile=20 > editors/openoffice-1.0-tr Makefile=20 > french/openoffice-1.0 Makefile=20 > german/openoffice-1.0 Makefile=20 > japanese/openoffice-1.0 Makefile=20 > korean/openoffice-1.0 Makefile=20 > polish/openoffice-1.0 Makefile=20 > portuguese/openoffice-1.0 Makefile=20 > russian/openoffice-1.0 Makefile=20 > Log: > Fix LATEST_LINK conflicts > NO_LATEST_LINK=3Dyes for openoffice-1.0 ports > since they may be deprecated in future... Thanks! BTW, these ports seem to all have checksum mismatches. Kris --17pEHd4RhPHOinZp Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAeeWlWry0BWjoQKURAsU2AKCcr7odwaa8/KJRZspRPSbzO7DRtwCeOSym h1Flu7Ctor6cS8LNI5+C484= =0g5V -----END PGP SIGNATURE----- --17pEHd4RhPHOinZp-- From owner-cvs-all@FreeBSD.ORG Sun Apr 11 17: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 3121616A4CE; Sun, 11 Apr 2004 17:46:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1509B43D31; Sun, 11 Apr 2004 17:46:04 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C0k3Ge047991; Sun, 11 Apr 2004 17:46:03 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C0k3Mi047990; Sun, 11 Apr 2004 17:46:03 -0700 (PDT) (envelope-from kris) Message-Id: <200404120046.i3C0k3Mi047990@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 17:46:03 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/orion 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, 12 Apr 2004 00:46:04 -0000 kris 2004/04/11 17:46:03 PDT FreeBSD ports repository Modified files: www/orion Makefile Log: BROKEN: Checksum mismatch Revision Changes Path 1.57 +2 -0 ports/www/orion/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 17:47: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 C53C116A4CE; Sun, 11 Apr 2004 17:47:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A832E43D31; Sun, 11 Apr 2004 17:47:17 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C0lHGe048031; Sun, 11 Apr 2004 17:47:17 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C0lHeR048030; Sun, 11 Apr 2004 17:47:17 -0700 (PDT) (envelope-from kris) Message-Id: <200404120047.i3C0lHeR048030@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 17:47:17 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jump 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, 12 Apr 2004 00:47:17 -0000 kris 2004/04/11 17:47:17 PDT FreeBSD ports repository Modified files: java/jump Makefile Log: BROKEN: Checksum mismatch Revision Changes Path 1.15 +2 -0 ports/java/jump/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 17:48: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 847F616A4CE; Sun, 11 Apr 2004 17:48:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67CFC43D46; Sun, 11 Apr 2004 17:48:24 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C0mOGe048075; Sun, 11 Apr 2004 17:48:24 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C0mOSP048074; Sun, 11 Apr 2004 17:48:24 -0700 (PDT) (envelope-from kris) Message-Id: <200404120048.i3C0mOSP048074@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 17:48:24 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/deskutils/moregroupware 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, 12 Apr 2004 00:48:24 -0000 kris 2004/04/11 17:48:24 PDT FreeBSD ports repository Modified files: deskutils/moregroupware Makefile Log: BROKEN: Checksum mismatch Revision Changes Path 1.2 +2 -0 ports/deskutils/moregroupware/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 17:49: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 9AA3D16A4CE; Sun, 11 Apr 2004 17:49:33 -0700 (PDT) Received: from mtaw4.prodigy.net (mtaw4.prodigy.net [64.164.98.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EA9F43D2D; Sun, 11 Apr 2004 17:49:33 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (42e5c74f57866ba441814da37ac7385f@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw4.prodigy.net (8.12.10/8.12.10) with ESMTP id i3C0nW1O000191; Sun, 11 Apr 2004 17:49:32 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id A928C53A5C; Sun, 11 Apr 2004 17:49:32 -0700 (PDT) Date: Sun, 11 Apr 2004 17:49:32 -0700 From: Kris Kennaway To: Jun Kuriyama Message-ID: <20040412004932.GA1203@xor.obsecurity.org> References: <200404120040.i3C0e7tB046017@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ew6BAiZeqk4r7MaW" Content-Disposition: inline In-Reply-To: <200404120040.i3C0e7tB046017@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/net/libpdtp 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, 12 Apr 2004 00:49:33 -0000 --ew6BAiZeqk4r7MaW Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Apr 11, 2004 at 05:40:07PM -0700, Jun Kuriyama wrote: > kuriyama 2004/04/11 17:40:07 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > net/libpdtp Makefile=20 > Log: > Fix build on ia64 and amd64. > | +CFLAGS+=3D -fpic Thanks, but this is the wrong solution since it will also compile the lib.a with -fpic. Kris --ew6BAiZeqk4r7MaW Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAeeecWry0BWjoQKURApzLAKCpFXgJIVkmkBteWrnaWyLByK2+bACffjDX 5CHy7E6lDmTajia59ud0Ugw= =v64W -----END PGP SIGNATURE----- --ew6BAiZeqk4r7MaW-- From owner-cvs-all@FreeBSD.ORG Sun Apr 11 17:52: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 E831216A4CE; Sun, 11 Apr 2004 17:52:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD22B43D4C; Sun, 11 Apr 2004 17:52:05 -0700 (PDT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C0q5Ge049472; Sun, 11 Apr 2004 17:52:05 -0700 (PDT) (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C0q5GH049468; Sun, 11 Apr 2004 17:52:05 -0700 (PDT) (envelope-from maho) Message-Id: <200404120052.i3C0q5GH049468@repoman.freebsd.org> From: Maho Nakata Date: Sun, 11 Apr 2004 17:52:05 -0700 (PDT) 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.0 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, 12 Apr 2004 00:52:06 -0000 maho 2004/04/11 17:52:05 PDT FreeBSD ports repository Modified files: editors/openoffice-1.0 Makefile Log: update MASTER_SITES Reported by: kris Revision Changes Path 1.190 +5 -4 ports/editors/openoffice-1.0/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 18:03: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 CA47716A4CE; Sun, 11 Apr 2004 18:03:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD38D43D1D; Sun, 11 Apr 2004 18:03:34 -0700 (PDT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C13YGe053004; Sun, 11 Apr 2004 18:03:34 -0700 (PDT) (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C13Ypd053003; Sun, 11 Apr 2004 18:03:34 -0700 (PDT) (envelope-from maho) Message-Id: <200404120103.i3C13Ypd053003@repoman.freebsd.org> From: Maho Nakata Date: Sun, 11 Apr 2004 18:03:34 -0700 (PDT) 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 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, 12 Apr 2004 01:03:34 -0000 maho 2004/04/11 18:03:34 PDT FreeBSD ports repository Modified files: editors/openoffice-1.1-devel Makefile editors/openoffice-1.1 Makefile Log: Make (more) use of USE_GNOME Submitted by: adamw Revision Changes Path 1.140 +1 -2 ports/editors/openoffice-1.1-devel/Makefile 1.146 +1 -2 ports/editors/openoffice-1.1/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 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 3815D16A4CE; Sun, 11 Apr 2004 18:06:45 -0700 (PDT) Received: from satie.private.org (25.60.138.210.bn.2iij.net [210.138.60.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0F0043D45; Sun, 11 Apr 2004 18:06:44 -0700 (PDT) (envelope-from chat95@mac.com) Received: from localhost (localhost [127.0.0.1]) by satie.private.org (8.12.10/8.12.10) with ESMTP id i3C16g8E068607; Mon, 12 Apr 2004 10:06:43 +0900 (JST) (envelope-from chat95@mac.com) Date: Mon, 12 Apr 2004 10:06:42 +0900 (JST) Message-Id: <20040412.100642.576047039.chat95@mac.com> To: kris@obsecurity.org From: Nakata Maho In-Reply-To: <20040412004110.GA1050@xor.obsecurity.org> References: <200404120035.i3C0ZbUc045867@repoman.freebsd.org> <20040412004110.GA1050@xor.obsecurity.org> Organization: private X-Mailer: Mew version 3.3 on XEmacs 21.4.14 (Reasonable Discussion) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: maho@FreeBSD.org cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/editors/openoffice-1.0 Makefile ports/editors/openoffice-1.0-ar Makefile ports/editors/openoffice-1.0-dk Makefile ports/editors/openoffice-1.0-es Makefile ports/editors/openoffice-1.0-it Makefile ports/editors/openoffice-1.0-nl 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, 12 Apr 2004 01:06:45 -0000 In Message-ID: <20040412004110.GA1050@xor.obsecurity.org> Kris Kennaway wrote: > Thanks! BTW, these ports seem to all have checksum mismatches. Yes, just fixed :) --nakata maho From owner-cvs-all@FreeBSD.ORG Sun Apr 11 18:07: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 7817F16A4CF; Sun, 11 Apr 2004 18:07:30 -0700 (PDT) Received: from white.imgsrc.co.jp (ns.imgsrc.co.jp [210.226.20.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id A931743D5C; Sun, 11 Apr 2004 18:07:27 -0700 (PDT) (envelope-from kuriyama@imgsrc.co.jp) Received: from localhost (localhost [127.0.0.1]) by white.imgsrc.co.jp (Postfix) with ESMTP id 4E28C2840ED; Mon, 12 Apr 2004 10:07:26 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [IPv6:2001:218:422:2::130]) by white.imgsrc.co.jp (Postfix) with ESMTP id DF6572840D8; Mon, 12 Apr 2004 10:07:24 +0900 (JST) Received: from black.imgsrc.co.jp (black.imgsrc.co.jp [IPv6:2001:218:422:2::130]) by black.imgsrc.co.jp (Postfix) with ESMTP id B21E01E462E; Mon, 12 Apr 2004 10:07:24 +0900 (JST) Date: Mon, 12 Apr 2004 10:07:24 +0900 Message-ID: <7mlll2vwab.wl@black.imgsrc.co.jp> From: Jun Kuriyama To: Kris Kennaway In-Reply-To: <20040412004932.GA1203@xor.obsecurity.org> References: <200404120040.i3C0e7tB046017@repoman.freebsd.org> <20040412004932.GA1203@xor.obsecurity.org> User-Agent: Wanderlust/2.10.1 (Watching The Wheels) SEMI/1.14.5 (Awara-Onsen) FLIM/1.14.5 (Demachiyanagi) APEL/10.6 Emacs/21.3 (i386--freebsd) MULE/5.0 (SAKAKI) MIME-Version: 1.0 (generated by SEMI 1.14.5 - "Awara-Onsen") Content-Type: text/plain; charset=US-ASCII X-Virus-Scanned: by AMaViS snapshot-20020531 cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/net/libpdtp 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, 12 Apr 2004 01:07:30 -0000 At Sun, 11 Apr 2004 17:49:32 -0700, Kris Kennaway wrote: > > Fix build on ia64 and amd64. > > > | +CFLAGS+= -fpic > > Thanks, but this is the wrong solution since it will also compile the > lib.a with -fpic. Hmm, I don't understand what we should do. Should I use -fpic only at building *.o objects, not at linking stage (shared and static)? -- Jun Kuriyama // IMG SRC, Inc. // FreeBSD Project From owner-cvs-all@FreeBSD.ORG Sun Apr 11 18: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 BE9C716A4CE; Sun, 11 Apr 2004 18:16:17 -0700 (PDT) Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2E7743D3F; Sun, 11 Apr 2004 18:16:17 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (2f291912043baef5ed9ef044c2ba90aa@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i3C1GDnr022343; Sun, 11 Apr 2004 18:16:13 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id C9427533F6; Sun, 11 Apr 2004 18:16:12 -0700 (PDT) Date: Sun, 11 Apr 2004 18:16:12 -0700 From: Kris Kennaway To: Jun Kuriyama Message-ID: <20040412011612.GA2031@xor.obsecurity.org> References: <200404120040.i3C0e7tB046017@repoman.freebsd.org> <20040412004932.GA1203@xor.obsecurity.org> <7mlll2vwab.wl@black.imgsrc.co.jp> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="FL5UXtIhxfXey3p5" Content-Disposition: inline In-Reply-To: <7mlll2vwab.wl@black.imgsrc.co.jp> User-Agent: Mutt/1.4.2.1i cc: cvs-ports@FreeBSD.org cc: ports-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: ports/net/libpdtp 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, 12 Apr 2004 01:16:17 -0000 --FL5UXtIhxfXey3p5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 12, 2004 at 10:07:24AM +0900, Jun Kuriyama wrote: > At Sun, 11 Apr 2004 17:49:32 -0700, > Kris Kennaway wrote: > > > Fix build on ia64 and amd64. > >=20 > > > | +CFLAGS+=3D -fpic > >=20 > > Thanks, but this is the wrong solution since it will also compile the > > lib.a with -fpic. >=20 > Hmm, I don't understand what we should do. Should I use -fpic only at > building *.o objects, not at linking stage (shared and static)? You need to make sure that the objects are built separately for the lib.a and lib.so cases, and the latter use -fPIC. I've fixed a number of other ports this way, so you can check the commit logs for pointers to similar fixes. Kris --FL5UXtIhxfXey3p5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAee3cWry0BWjoQKURAjPiAKDj+Snn3vyxMuZr7ai6oavlBUXxmQCePTp/ Cnj2/XkbAR9q+IKXNLKXx4s= =QGrN -----END PGP SIGNATURE----- --FL5UXtIhxfXey3p5-- From owner-cvs-all@FreeBSD.ORG Sun Apr 11 18:16: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 0297616A4CF; Sun, 11 Apr 2004 18:16:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8AEF43D3F; Sun, 11 Apr 2004 18:16:17 -0700 (PDT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C1GHGe055269; Sun, 11 Apr 2004 18:16:17 -0700 (PDT) (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C1GHaT055268; Sun, 11 Apr 2004 18:16:17 -0700 (PDT) (envelope-from kientzle) Message-Id: <200404120116.i3C1GHaT055268@repoman.freebsd.org> From: Tim Kientzle Date: Sun, 11 Apr 2004 18:16:17 -0700 (PDT) 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_check_magic.c archive_entry.3 archive_entry.c archive_entry.h archive_private.h archive_read_data_into_fd.carchive_read_open_file.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 01:16:18 -0000 kientzle 2004/04/11 18:16:17 PDT FreeBSD src repository Modified files: lib/libarchive Makefile archive_check_magic.c archive_entry.3 archive_entry.c archive_entry.h archive_private.h archive_read.c archive_read_data_into_buffer.c archive_read_data_into_fd.c archive_read_extract.c archive_read_open_fd.c archive_read_open_file.c archive_read_support_compression_all.c archive_read_support_compression_bzip2.c archive_read_support_compression_gzip.c archive_read_support_compression_none.c archive_read_support_format_all.c archive_read_support_format_cpio.c archive_read_support_format_tar.c archive_string.c archive_string_sprintf.c archive_util.c archive_write.c archive_write_open_fd.c archive_write_open_file.c archive_write_set_compression_bzip2.c archive_write_set_compression_gzip.c archive_write_set_compression_none.c archive_write_set_format_cpio.c archive_write_set_format_pax.c archive_write_set_format_shar.c archive_write_set_format_ustar.c Removed files: lib/libarchive archive_read_support_format_gnutar.c Log: More work on ACLs: fix error in archive_entry's ACL parsing code, try to set ACLs even if fflag restore fails, first cut at reading Solaris tar ACLs Code improvement: merge gnu tar read support into main tar reader; this eliminates a lot of duplicate code and generalizes the tar reader to handle formats with GNU-like extensions. Style: Makefile cleanup, eliminate 'dmalloc' references, remove 'tartype' from archive_entry (this makes archive_entry more format-agnostic) Thanks to: David Magda for providing Solaris tar test files Revision Changes Path 1.6 +72 -83 src/lib/libarchive/Makefile 1.3 +0 -3 src/lib/libarchive/archive_check_magic.c 1.3 +0 -12 src/lib/libarchive/archive_entry.3 1.6 +13 -23 src/lib/libarchive/archive_entry.c 1.5 +18 -8 src/lib/libarchive/archive_entry.h 1.6 +1 -14 src/lib/libarchive/archive_private.h 1.5 +0 -3 src/lib/libarchive/archive_read.c 1.3 +0 -3 src/lib/libarchive/archive_read_data_into_buffer.c 1.4 +0 -4 src/lib/libarchive/archive_read_data_into_fd.c 1.6 +23 -13 src/lib/libarchive/archive_read_extract.c 1.2 +0 -3 src/lib/libarchive/archive_read_open_fd.c 1.4 +0 -3 src/lib/libarchive/archive_read_open_file.c 1.3 +0 -4 src/lib/libarchive/archive_read_support_compression_all.c 1.3 +0 -3 src/lib/libarchive/archive_read_support_compression_bzip2.c 1.4 +0 -3 src/lib/libarchive/archive_read_support_compression_gzip.c 1.4 +0 -3 src/lib/libarchive/archive_read_support_compression_none.c 1.3 +0 -4 src/lib/libarchive/archive_read_support_format_all.c 1.6 +0 -3 src/lib/libarchive/archive_read_support_format_cpio.c 1.4 +0 -574 src/lib/libarchive/archive_read_support_format_gnutar.c (dead) 1.7 +191 -32 src/lib/libarchive/archive_read_support_format_tar.c 1.4 +0 -3 src/lib/libarchive/archive_string.c 1.3 +0 -3 src/lib/libarchive/archive_string_sprintf.c 1.5 +0 -3 src/lib/libarchive/archive_util.c 1.5 +0 -3 src/lib/libarchive/archive_write.c 1.2 +0 -3 src/lib/libarchive/archive_write_open_fd.c 1.5 +0 -3 src/lib/libarchive/archive_write_open_file.c 1.3 +0 -3 src/lib/libarchive/archive_write_set_compression_bzip2.c 1.3 +0 -3 src/lib/libarchive/archive_write_set_compression_gzip.c 1.3 +0 -3 src/lib/libarchive/archive_write_set_compression_none.c 1.3 +0 -3 src/lib/libarchive/archive_write_set_format_cpio.c 1.7 +2 -6 src/lib/libarchive/archive_write_set_format_pax.c 1.4 +0 -3 src/lib/libarchive/archive_write_set_format_shar.c 1.4 +4 -7 src/lib/libarchive/archive_write_set_format_ustar.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 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 58ADF16A4CE; Sun, 11 Apr 2004 18:33:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B23043D49; Sun, 11 Apr 2004 18:33:05 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C1X5Ge059133; Sun, 11 Apr 2004 18:33:05 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C1X5cl059132; Sun, 11 Apr 2004 18:33:05 -0700 (PDT) (envelope-from kris) Message-Id: <200404120133.i3C1X5cl059132@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 18:33:04 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/cgiparse 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, 12 Apr 2004 01:33:05 -0000 kris 2004/04/11 18:33:04 PDT FreeBSD ports repository Modified files: www/cgiparse Makefile Log: BROKEN on amd64: Does not link (mime port needs to provide libmime.so) Revision Changes Path 1.22 +7 -1 ports/www/cgiparse/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 18:33: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 0CF4116A4CE; Sun, 11 Apr 2004 18:33:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E322843D53; Sun, 11 Apr 2004 18:33:50 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C1XoGe059179; Sun, 11 Apr 2004 18:33:50 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C1XoHX059178; Sun, 11 Apr 2004 18:33:50 -0700 (PDT) (envelope-from kris) Message-Id: <200404120133.i3C1XoHX059178@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 18:33:50 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/archivers/ruby-bz2 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, 12 Apr 2004 01:33:51 -0000 kris 2004/04/11 18:33:50 PDT FreeBSD ports repository Modified files: archivers/ruby-bz2 Makefile Log: BROKEN: Broken pkg-plist Revision Changes Path 1.12 +2 -0 ports/archivers/ruby-bz2/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 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 A621F16A4CE; Sun, 11 Apr 2004 18:34:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87C5F43D1D; Sun, 11 Apr 2004 18:34:16 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C1YGGe059215; Sun, 11 Apr 2004 18:34:16 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C1YGR7059214; Sun, 11 Apr 2004 18:34:16 -0700 (PDT) (envelope-from kris) Message-Id: <200404120134.i3C1YGR7059214@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 18:34:16 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ruby-flex_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, 12 Apr 2004 01:34:16 -0000 kris 2004/04/11 18:34:16 PDT FreeBSD ports repository Modified files: devel/ruby-flex_rb Makefile Log: BROKEN: Does not compile Revision Changes Path 1.6 +2 -0 ports/devel/ruby-flex_rb/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 18:34: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 13E2316A4CE; Sun, 11 Apr 2004 18:34:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA2FA43D45; Sun, 11 Apr 2004 18:34:43 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C1YhGe059247; Sun, 11 Apr 2004 18:34:43 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C1Yhpe059246; Sun, 11 Apr 2004 18:34:43 -0700 (PDT) (envelope-from kris) Message-Id: <200404120134.i3C1Yhpe059246@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 18:34:43 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/ruby-gdchart 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, 12 Apr 2004 01:34:44 -0000 kris 2004/04/11 18:34:43 PDT FreeBSD ports repository Modified files: graphics/ruby-gdchart Makefile Log: BROKEN: Does not compile Revision Changes Path 1.9 +2 -0 ports/graphics/ruby-gdchart/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 18: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 D38E116A4CE; Sun, 11 Apr 2004 18:35:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B507C43D2D; Sun, 11 Apr 2004 18:35:26 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C1ZQGe059356; Sun, 11 Apr 2004 18:35:26 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C1ZQ4m059355; Sun, 11 Apr 2004 18:35:26 -0700 (PDT) (envelope-from kris) Message-Id: <200404120135.i3C1ZQ4m059355@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 18:35:26 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/ruby-math3d 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, 12 Apr 2004 01:35:27 -0000 kris 2004/04/11 18:35:26 PDT FreeBSD ports repository Modified files: math/ruby-math3d Makefile Log: BROKEN: This does not compile on i386 either Revision Changes Path 1.11 +2 -6 ports/math/ruby-math3d/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 18:36: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 CE5B516A4CE; Sun, 11 Apr 2004 18:36:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD34A43D2D; Sun, 11 Apr 2004 18:36:06 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C1a6Ge059400; Sun, 11 Apr 2004 18:36:06 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C1a6kT059399; Sun, 11 Apr 2004 18:36:06 -0700 (PDT) (envelope-from kris) Message-Id: <200404120136.i3C1a6kT059399@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 18:36:06 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ruby-textbuf 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, 12 Apr 2004 01:36:07 -0000 kris 2004/04/11 18:36:06 PDT FreeBSD ports repository Modified files: devel/ruby-textbuf Makefile Log: BROKEN: This is also broken on i386 Revision Changes Path 1.16 +2 -6 ports/devel/ruby-textbuf/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 19: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 C04F116A4CE; Sun, 11 Apr 2004 19:14:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1EF143D2D; Sun, 11 Apr 2004 19:14:27 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C2ERGe068377; Sun, 11 Apr 2004 19:14:27 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C2ER69068376; Sun, 11 Apr 2004 19:14:27 -0700 (PDT) (envelope-from kris) Message-Id: <200404120214.i3C2ER69068376@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 19:14:27 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/httrack 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, 12 Apr 2004 02:14:27 -0000 kris 2004/04/11 19:14:27 PDT FreeBSD ports repository Modified files: www/httrack Makefile Log: BROKEN: Size mismatch Revision Changes Path 1.18 +2 -0 ports/www/httrack/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 19:29: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 E80A816A4CE; Sun, 11 Apr 2004 19:29:49 -0700 (PDT) Received: from smtp01.syd.iprimus.net.au (smtp01.syd.iprimus.net.au [210.50.30.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 228D843D54; Sun, 11 Apr 2004 19:29:49 -0700 (PDT) (envelope-from tim@robbins.dropbear.id.au) Received: from robbins.dropbear.id.au (210.50.41.150) by smtp01.syd.iprimus.net.au (7.0.024) id 402BA927014DD670; Mon, 12 Apr 2004 12:29:48 +1000 Received: by robbins.dropbear.id.au (Postfix, from userid 1000) id 34D7A41DF; Mon, 12 Apr 2004 12:33:36 +1000 (EST) Date: Mon, 12 Apr 2004 12:33:36 +1000 From: Tim Robbins To: David Rhodus Message-ID: <20040412023336.GA67469@cat.robbins.dropbear.id.au> References: <200404041224.i34CO5xJ098253@repoman.freebsd.org> <4CA93FA0-8BEA-11D8-986C-000A959B213E@machdep.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4CA93FA0-8BEA-11D8-986C-000A959B213E@machdep.com> 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/share/colldef Makefile src/share/monetdef Makefile src/share/msgdef Makefile src/share/numericdef Makefile src/share/timedef 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, 12 Apr 2004 02:29:50 -0000 On Sun, Apr 11, 2004 at 02:59:03PM -0400, David Rhodus wrote: > On Apr 4, 2004, at 8:24 AM, Tim J. Robbins wrote: > > >tjr 2004/04/04 05:24:05 PDT > > > > FreeBSD src repository > > > > Modified files: > > share/colldef Makefile > > share/monetdef Makefile > > share/msgdef Makefile > > share/numericdef Makefile > > share/timedef Makefile > > Log: > > Add data for missing categories to zh_HK.Big5HKSCS locale. > > > > Revision Changes Path > > 1.65 +1 -1 src/share/colldef/Makefile > > 1.57 +2 -0 src/share/monetdef/Makefile > > 1.55 +2 -0 src/share/msgdef/Makefile > > 1.54 +1 -1 src/share/numericdef/Makefile > > 1.42 +2 -0 src/share/timedef/Makefile > > The buildworld is broken here on my 5.2.1-RELEASE machine. > Did you forget to add some new files in perhaps ? Here are > the changes that allow the buildworld to proceed on my machine. What is the error message? Tim From owner-cvs-all@FreeBSD.ORG Sun Apr 11 19: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 DB69816A4CE; Sun, 11 Apr 2004 19:36:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE1F843D1F; Sun, 11 Apr 2004 19:36:52 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C2aqGe072435; Sun, 11 Apr 2004 19:36:52 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C2aqTr072434; Sun, 11 Apr 2004 19:36:52 -0700 (PDT) (envelope-from imp) Message-Id: <200404120236.i3C2aqTr072434@repoman.freebsd.org> From: Warner Losh Date: Sun, 11 Apr 2004 19:36:52 -0700 (PDT) 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 src/sys/i386/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: Mon, 12 Apr 2004 02:36:53 -0000 imp 2004/04/11 19:36:52 PDT FreeBSD src repository Modified files: sys/conf NOTES sys/i386/conf NOTES Log: Move sx to i386/NOTES for the moment. I missed the enable/disable_intr() in the code. Revision Changes Path 1.1214 +0 -2 src/sys/conf/NOTES 1.1151 +4 -0 src/sys/i386/conf/NOTES From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20: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 872B616A4CE; Sun, 11 Apr 2004 20:14:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 696CC43D2D; Sun, 11 Apr 2004 20:14:25 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3EPGe081330; Sun, 11 Apr 2004 20:14:25 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3EPni081329; Sun, 11 Apr 2004 20:14:25 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404120314.i3C3EPni081329@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sun, 11 Apr 2004 20:14:24 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/openvrml 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, 12 Apr 2004 03:14:25 -0000 ijliao 2004/04/11 20:14:24 PDT FreeBSD ports repository Modified files: www/openvrml Makefile Log: fix build on -stable by using gcc 3.3 Noticed by: bento via kris Revision Changes Path 1.11 +1 -0 ports/www/openvrml/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20:25: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 589FB16A4CE; Sun, 11 Apr 2004 20:25:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5267D43D2F; Sun, 11 Apr 2004 20:25:50 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3PoGe083386; Sun, 11 Apr 2004 20:25:50 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3Po2M083385; Sun, 11 Apr 2004 20:25:50 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404120325.i3C3Po2M083385@repoman.freebsd.org> From: Ying-Chieh Liao Date: Sun, 11 Apr 2004 20:25:50 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/dprog/files patch-ast_test.ccpatch-cxx_codegen.cc patch-pprint.cc patch-range_checking.cc patch-type_checking.hh X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 03:25:50 -0000 ijliao 2004/04/11 20:25:50 PDT FreeBSD ports repository Modified files: devel/dprog/files patch-type_checking.hh Added files: devel/dprog/files patch-ast_test.cc patch-cxx_codegen.cc patch-pprint.cc patch-range_checking.cc Log: fix build on -stable Noticed by: bento via kris Revision Changes Path 1.1 +10 -0 ports/devel/dprog/files/patch-ast_test.cc (new) 1.1 +19 -0 ports/devel/dprog/files/patch-cxx_codegen.cc (new) 1.1 +10 -0 ports/devel/dprog/files/patch-pprint.cc (new) 1.1 +14 -0 ports/devel/dprog/files/patch-range_checking.cc (new) 1.2 +13 -2 ports/devel/dprog/files/patch-type_checking.hh From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20:30: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 3236A16A4CE; Sun, 11 Apr 2004 20:30:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1302C43D1F; Sun, 11 Apr 2004 20:30:00 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3TxGe083536; Sun, 11 Apr 2004 20:29:59 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3TxKg083535; Sun, 11 Apr 2004 20:29:59 -0700 (PDT) (envelope-from kris) Message-Id: <200404120329.i3C3TxKg083535@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 20:29:59 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mozilla-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: Mon, 12 Apr 2004 03:30:00 -0000 kris 2004/04/11 20:29:59 PDT FreeBSD ports repository Modified files: www/mozilla-devel Makefile Log: This is also BROKEN on alpha Revision Changes Path 1.186 +2 -2 ports/www/mozilla-devel/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20:31: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 A312616A4CE; Sun, 11 Apr 2004 20:31:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86B6843D31; Sun, 11 Apr 2004 20:31:28 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3VSGe084444; Sun, 11 Apr 2004 20:31:28 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3VS68084440; Sun, 11 Apr 2004 20:31:28 -0700 (PDT) (envelope-from kris) Message-Id: <200404120331.i3C3VS68084440@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 20:31:28 -0700 (PDT) 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: Mon, 12 Apr 2004 03:31:28 -0000 kris 2004/04/11 20:31:28 PDT FreeBSD ports repository Modified files: databases/clip Makefile Log: This is broken on i386 as well (broken pkg-plist) Revision Changes Path 1.22 +2 -0 ports/databases/clip/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20:32: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 A1AE816A4CE; Sun, 11 Apr 2004 20:32:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85EA443D2D; Sun, 11 Apr 2004 20:32:23 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3WNGe085282; Sun, 11 Apr 2004 20:32:23 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3WNhr085278; Sun, 11 Apr 2004 20:32:23 -0700 (PDT) (envelope-from kris) Message-Id: <200404120332.i3C3WNhr085278@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 20:32:23 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/zpygresqlda 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, 12 Apr 2004 03:32:23 -0000 kris 2004/04/11 20:32:23 PDT FreeBSD ports repository Modified files: databases/zpygresqlda Makefile Log: BROKEN: Broken dependency Revision Changes Path 1.16 +2 -0 ports/databases/zpygresqlda/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20: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 579BC16A4CE; Sun, 11 Apr 2004 20:33:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B0AB43D2F; Sun, 11 Apr 2004 20:33:50 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3XoGe085463; Sun, 11 Apr 2004 20:33:50 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3Xn4J085462; Sun, 11 Apr 2004 20:33:50 -0700 (PDT) (envelope-from kris) Message-Id: <200404120333.i3C3Xn4J085462@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 20:33:49 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/soundtracker 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, 12 Apr 2004 03:33:50 -0000 kris 2004/04/11 20:33:49 PDT FreeBSD ports repository Modified files: audio/soundtracker pkg-plist Log: Fix plist. Pointy hat to: kris Revision Changes Path 1.9 +13 -13 ports/audio/soundtracker/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20: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 0D0CF16A4CE; Sun, 11 Apr 2004 20:34:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E510C43D45; Sun, 11 Apr 2004 20:34:44 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3YiGe085510; Sun, 11 Apr 2004 20:34:44 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3Yih0085509; Sun, 11 Apr 2004 20:34:44 -0700 (PDT) (envelope-from kris) Message-Id: <200404120334.i3C3Yih0085509@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 20:34:44 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ruby-gconf 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, 12 Apr 2004 03:34:45 -0000 kris 2004/04/11 20:34:44 PDT FreeBSD ports repository Modified files: devel/ruby-gconf Makefile Log: BROKEN: Build fails Revision Changes Path 1.8 +2 -0 ports/devel/ruby-gconf/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20:35: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 E2F6D16A4CE; Sun, 11 Apr 2004 20:35:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4E0643D54; Sun, 11 Apr 2004 20:35:56 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3ZuGe085621; Sun, 11 Apr 2004 20:35:56 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3Zufu085620; Sun, 11 Apr 2004 20:35:56 -0700 (PDT) (envelope-from kris) Message-Id: <200404120335.i3C3Zufu085620@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 20:35:56 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/ruby-rmagick 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, 12 Apr 2004 03:35:57 -0000 kris 2004/04/11 20:35:56 PDT FreeBSD ports repository Modified files: graphics/ruby-rmagick Makefile Log: BROKEN: Does not compile Revision Changes Path 1.16 +2 -0 ports/graphics/ruby-rmagick/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20:36: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 263A916A4CF; Sun, 11 Apr 2004 20:36:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBDAC43D58; Sun, 11 Apr 2004 20:36:40 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3aeGe085679; Sun, 11 Apr 2004 20:36:40 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3aeF9085678; Sun, 11 Apr 2004 20:36:40 -0700 (PDT) (envelope-from kris) Message-Id: <200404120336.i3C3aeF9085678@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 20:36:40 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/ruby-wordnet 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, 12 Apr 2004 03:36:41 -0000 kris 2004/04/11 20:36:40 PDT FreeBSD ports repository Modified files: textproc/ruby-wordnet Makefile Log: BROKEN: Segfault during build Revision Changes Path 1.4 +2 -0 ports/textproc/ruby-wordnet/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20:37: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 3055C16A4CE; Sun, 11 Apr 2004 20:37:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12DCA43D5D; Sun, 11 Apr 2004 20:37:15 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3bEGe085715; Sun, 11 Apr 2004 20:37:14 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3bEt8085714; Sun, 11 Apr 2004 20:37:14 -0700 (PDT) (envelope-from kris) Message-Id: <200404120337.i3C3bEt8085714@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 20:37:14 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/biology/seaview 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, 12 Apr 2004 03:37:15 -0000 kris 2004/04/11 20:37:14 PDT FreeBSD ports repository Modified files: biology/seaview Makefile Log: BROKEN: Checksum mismatch Revision Changes Path 1.26 +2 -0 ports/biology/seaview/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20:40: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 7592216A4CF; Sun, 11 Apr 2004 20:40:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5869143D53; Sun, 11 Apr 2004 20:40:19 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3eJGe085836; Sun, 11 Apr 2004 20:40:19 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3eJFj085835; Sun, 11 Apr 2004 20:40:19 -0700 (PDT) (envelope-from kris) Message-Id: <200404120340.i3C3eJFj085835@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 20:40:19 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ruby-rudl 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, 12 Apr 2004 03:40:19 -0000 kris 2004/04/11 20:40:19 PDT FreeBSD ports repository Modified files: devel/ruby-rudl Makefile Log: BROKEN: Does not build Revision Changes Path 1.16 +2 -0 ports/devel/ruby-rudl/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20:50: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 CF88D16A4CE; Sun, 11 Apr 2004 20:50:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82C2443D46; Sun, 11 Apr 2004 20:50:01 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3o1Ge093829; Sun, 11 Apr 2004 20:50:01 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3o1vG093828; Sun, 11 Apr 2004 20:50:01 -0700 (PDT) (envelope-from kris) Message-Id: <200404120350.i3C3o1vG093828@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 20:50:01 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/swig13 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, 12 Apr 2004 03:50:02 -0000 kris 2004/04/11 20:50:01 PDT FreeBSD ports repository Modified files: devel/swig13 Makefile Log: BROKEN on sparc64: Build fails Revision Changes Path 1.58 +7 -1 ports/devel/swig13/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 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 B3B4416A4CE; Sun, 11 Apr 2004 20:51:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9780D43D39; Sun, 11 Apr 2004 20:51:32 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3pWGe094803; Sun, 11 Apr 2004 20:51:32 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3pW1U094800; Sun, 11 Apr 2004 20:51:32 -0700 (PDT) (envelope-from kris) Message-Id: <200404120351.i3C3pW1U094800@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 20:51:32 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/tkrat2 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, 12 Apr 2004 03:51:32 -0000 kris 2004/04/11 20:51:32 PDT FreeBSD ports repository Modified files: mail/tkrat2 Makefile Log: BROKEN on sparc64: Build fails Revision Changes Path 1.48 +7 -1 ports/mail/tkrat2/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20:52: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 B9D6416A4CE; Sun, 11 Apr 2004 20:52:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B8EF43D31; Sun, 11 Apr 2004 20:52:18 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3qHGe095517; Sun, 11 Apr 2004 20:52:17 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3qHDE095510; Sun, 11 Apr 2004 20:52:17 -0700 (PDT) (envelope-from kris) Message-Id: <200404120352.i3C3qHDE095510@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 20:52:17 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/tkstep80 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, 12 Apr 2004 03:52:18 -0000 kris 2004/04/11 20:52:17 PDT FreeBSD ports repository Modified files: x11-toolkits/tkstep80 Makefile Log: BROKEN on sparc64: Build fails Revision Changes Path 1.40 +7 -1 ports/x11-toolkits/tkstep80/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20:53: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 2E19016A4CE; Sun, 11 Apr 2004 20:53:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1231343D31; Sun, 11 Apr 2004 20:53:59 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3rwGe095784; Sun, 11 Apr 2004 20:53:58 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3rwnu095783; Sun, 11 Apr 2004 20:53:58 -0700 (PDT) (envelope-from kris) Message-Id: <200404120353.i3C3rwnu095783@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 20:53:58 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/aria 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, 12 Apr 2004 03:53:59 -0000 kris 2004/04/11 20:53:58 PDT FreeBSD ports repository Modified files: www/aria Makefile Log: BROKEN on sparc64: Does not compile Revision Changes Path 1.20 +7 -1 ports/www/aria/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20:54: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 0D55416A533; Sun, 11 Apr 2004 20:54:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2C9643D5C; Sun, 11 Apr 2004 20:54:11 -0700 (PDT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3sBGe095819; Sun, 11 Apr 2004 20:54:11 -0700 (PDT) (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3sBNx095818; Sun, 11 Apr 2004 20:54:11 -0700 (PDT) (envelope-from kensmith) Message-Id: <200404120354.i3C3sBNx095818@repoman.freebsd.org> From: Ken Smith Date: Sun, 11 Apr 2004 20:54:11 -0700 (PDT) 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: Mon, 12 Apr 2004 03:54:12 -0000 kensmith 2004/04/11 20:54:11 PDT FreeBSD doc repository Modified files: share/sgml mirrors.xml Log: - Remove several FTP sites that have disappeared. - Add some new CVSUP sites in China - Merge the two South Africa sections into one. New China CVSUP sites provided by Xin Li on behalf of The FreeBSD Simplified Chinese Project. Revision Changes Path 1.16 +30 -33 doc/share/sgml/mirrors.xml From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20: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 0744116A4D5; Sun, 11 Apr 2004 20:54:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBEFD43D55; Sun, 11 Apr 2004 20:54:52 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3sqGe095861; Sun, 11 Apr 2004 20:54:52 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3sqoh095860; Sun, 11 Apr 2004 20:54:52 -0700 (PDT) (envelope-from kris) Message-Id: <200404120354.i3C3sqoh095860@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 20:54:52 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/aria 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, 12 Apr 2004 03:54:53 -0000 kris 2004/04/11 20:54:52 PDT FreeBSD ports repository Modified files: www/aria Makefile Log: Back out previous, looks like it was fixed yesterday. Pointy hat to: kris Revision Changes Path 1.21 +1 -7 ports/www/aria/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20: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 1233A16A4CE; Sun, 11 Apr 2004 20:56:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E86F143D1F; Sun, 11 Apr 2004 20:56:50 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3uoGe095956; Sun, 11 Apr 2004 20:56:50 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3unQZ095955; Sun, 11 Apr 2004 20:56:49 -0700 (PDT) (envelope-from kris) Message-Id: <200404120356.i3C3unQZ095955@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 20:56:49 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/cvsgraph 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, 12 Apr 2004 03:56:51 -0000 kris 2004/04/11 20:56:49 PDT FreeBSD ports repository Modified files: devel/cvsgraph Makefile Log: This only works on architectures where sizeof(int) == sizeof(void*), i.e. i386. Revision Changes Path 1.21 +1 -1 ports/devel/cvsgraph/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 20:58: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 B495C16A4CE; Sun, 11 Apr 2004 20:58:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 977D343D58; Sun, 11 Apr 2004 20:58:15 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C3wFGe096027; Sun, 11 Apr 2004 20:58:15 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C3wE3D096026; Sun, 11 Apr 2004 20:58:14 -0700 (PDT) (envelope-from kris) Message-Id: <200404120358.i3C3wE3D096026@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 20:58:14 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/EZWGL 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, 12 Apr 2004 03:58:15 -0000 kris 2004/04/11 20:58:14 PDT FreeBSD ports repository Modified files: graphics/EZWGL Makefile Log: BROKEN on sparc64: Build fails Revision Changes Path 1.34 +4 -0 ports/graphics/EZWGL/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 21: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 CA6E616A4CE; Sun, 11 Apr 2004 21:00:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93BE943D49; Sun, 11 Apr 2004 21:00:48 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C40mGe096194; Sun, 11 Apr 2004 21:00:48 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C40mXp096193; Sun, 11 Apr 2004 21:00:48 -0700 (PDT) (envelope-from kris) Message-Id: <200404120400.i3C40mXp096193@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 21:00:48 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/mgapdesk 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, 12 Apr 2004 04:00:49 -0000 kris 2004/04/11 21:00:48 PDT FreeBSD ports repository Modified files: x11/mgapdesk Makefile Log: BROKEN on sparc64: Does not compile Revision Changes Path 1.15 +4 -0 ports/x11/mgapdesk/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 21: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 A020E16A4CE; Sun, 11 Apr 2004 21:01:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 842FB43D1D; Sun, 11 Apr 2004 21:01:32 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C41WGe096381; Sun, 11 Apr 2004 21:01:32 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C41Wx1096358; Sun, 11 Apr 2004 21:01:32 -0700 (PDT) (envelope-from kris) Message-Id: <200404120401.i3C41Wx1096358@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 21:01:32 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/STk 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, 12 Apr 2004 04:01:32 -0000 kris 2004/04/11 21:01:32 PDT FreeBSD ports repository Modified files: lang/STk Makefile Log: BROKEN on sparc64: Does not compile Revision Changes Path 1.30 +7 -1 ports/lang/STk/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 21: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 272ED16A4CE; Sun, 11 Apr 2004 21:02:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AB7243D3F; Sun, 11 Apr 2004 21:02:32 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C42VGe097762; Sun, 11 Apr 2004 21:02:31 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C42V1k097761; Sun, 11 Apr 2004 21:02:31 -0700 (PDT) (envelope-from kris) Message-Id: <200404120402.i3C42V1k097761@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 21:02:31 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/chinese/kcfonts 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, 12 Apr 2004 04:02:32 -0000 kris 2004/04/11 21:02:31 PDT FreeBSD ports repository Modified files: chinese/kcfonts Makefile Log: BROKEN on sparc64: Does not build Revision Changes Path 1.15 +4 -0 ports/chinese/kcfonts/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 21: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 6846316A4CE; Sun, 11 Apr 2004 21:03:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C5BA43D31; Sun, 11 Apr 2004 21:03:56 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C43uGe099031; Sun, 11 Apr 2004 21:03:56 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C43ulk099030; Sun, 11 Apr 2004 21:03:56 -0700 (PDT) (envelope-from kris) Message-Id: <200404120403.i3C43ulk099030@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 21:03:56 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/denemo 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, 12 Apr 2004 04:03:56 -0000 kris 2004/04/11 21:03:56 PDT FreeBSD ports repository Modified files: audio/denemo Makefile Log: BROKEN on sparc64: Does not compile Revision Changes Path 1.21 +7 -1 ports/audio/denemo/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 21: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 312AE16A4CE; Sun, 11 Apr 2004 21:15:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14B7143D5D; Sun, 11 Apr 2004 21:15:58 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C4FvGe001373; Sun, 11 Apr 2004 21:15:57 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C4FvfA001372; Sun, 11 Apr 2004 21:15:57 -0700 (PDT) (envelope-from kris) Message-Id: <200404120415.i3C4FvfA001372@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 21:15:57 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/rio500 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, 12 Apr 2004 04:15:58 -0000 kris 2004/04/11 21:15:57 PDT FreeBSD ports repository Modified files: audio/rio500 Makefile Log: BROKEN: Does not compile on sparc64 Revision Changes Path 1.9 +7 -1 ports/audio/rio500/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 21:17: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 E6DC816A4CE; Sun, 11 Apr 2004 21:17:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C976143D1F; Sun, 11 Apr 2004 21:17:17 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C4HHGe001425; Sun, 11 Apr 2004 21:17:17 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C4HH8p001424; Sun, 11 Apr 2004 21:17:17 -0700 (PDT) (envelope-from kris) Message-Id: <200404120417.i3C4HH8p001424@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 21:17:17 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/squeak3 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, 12 Apr 2004 04:17:18 -0000 kris 2004/04/11 21:17:17 PDT FreeBSD ports repository Modified files: lang/squeak3 Makefile Log: BROKEN on sparc64 as well Revision Changes Path 1.30 +2 -2 ports/lang/squeak3/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 21: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 A68C316A4CE; Sun, 11 Apr 2004 21:19:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88C3243D2F; Sun, 11 Apr 2004 21:19:00 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C4J0Ge001469; Sun, 11 Apr 2004 21:19:00 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C4J0B9001468; Sun, 11 Apr 2004 21:19:00 -0700 (PDT) (envelope-from kris) Message-Id: <200404120419.i3C4J0B9001468@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 21:19:00 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/scintilla 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, 12 Apr 2004 04:19:00 -0000 kris 2004/04/11 21:19:00 PDT FreeBSD ports repository Modified files: x11-toolkits/scintilla Makefile Log: BROKEN on sparc64: Does not compile Revision Changes Path 1.26 +7 -1 ports/x11-toolkits/scintilla/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 21:19: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 DB0E216A4CE; Sun, 11 Apr 2004 21:19:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7F7A43D1D; Sun, 11 Apr 2004 21:19:53 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C4JrGe001510; Sun, 11 Apr 2004 21:19:53 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C4JrXU001509; Sun, 11 Apr 2004 21:19:53 -0700 (PDT) (envelope-from kris) Message-Id: <200404120419.i3C4JrXU001509@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 21:19:53 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 04:19:54 -0000 kris 2004/04/11 21:19:53 PDT FreeBSD ports repository Modified files: math/scilab Makefile Log: BROKEN on sparc64: Does not compile Revision Changes Path 1.21 +2 -2 ports/math/scilab/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 21: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 666B416A4CE; Sun, 11 Apr 2004 21:22:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 486F743D1F; Sun, 11 Apr 2004 21:22:16 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C4MGGe003107; Sun, 11 Apr 2004 21:22:16 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C4MGSt003106; Sun, 11 Apr 2004 21:22:16 -0700 (PDT) (envelope-from kris) Message-Id: <200404120422.i3C4MGSt003106@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 21:22:16 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcl 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, 12 Apr 2004 04:22:16 -0000 kris 2004/04/11 21:22:16 PDT FreeBSD ports repository Modified files: lang/gcl Makefile Log: BROKEN on sparc64: Does not compile Revision Changes Path 1.27 +7 -1 ports/lang/gcl/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 21: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 E042516A4CE; Sun, 11 Apr 2004 21:26:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C2BE543D3F; Sun, 11 Apr 2004 21:26:27 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C4QRGe003464; Sun, 11 Apr 2004 21:26:27 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C4QRQO003463; Sun, 11 Apr 2004 21:26:27 -0700 (PDT) (envelope-from kris) Message-Id: <200404120426.i3C4QRQO003463@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 21:26:27 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/dore 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, 12 Apr 2004 04:26:28 -0000 kris 2004/04/11 21:26:27 PDT FreeBSD ports repository Modified files: graphics/dore Makefile Log: BROKEN on sparc64: Does not compile Revision Changes Path 1.20 +7 -1 ports/graphics/dore/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 21:27: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 CB79716A4CE; Sun, 11 Apr 2004 21:27:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD84843D39; Sun, 11 Apr 2004 21:27:24 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C4ROGe003503; Sun, 11 Apr 2004 21:27:24 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C4ROba003502; Sun, 11 Apr 2004 21:27:24 -0700 (PDT) (envelope-from kris) Message-Id: <200404120427.i3C4ROba003502@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 21:27:24 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/lush 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, 12 Apr 2004 04:27:25 -0000 kris 2004/04/11 21:27:24 PDT FreeBSD ports repository Modified files: lang/lush Makefile Log: BROKEN on sparc64: Does not build Revision Changes Path 1.6 +7 -1 ports/lang/lush/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 21: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 17B9A16A4CE; Sun, 11 Apr 2004 21:28:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE30543D49; Sun, 11 Apr 2004 21:28:06 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C4S6Ge003556; Sun, 11 Apr 2004 21:28:06 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C4S6mp003555; Sun, 11 Apr 2004 21:28:06 -0700 (PDT) (envelope-from kris) Message-Id: <200404120428.i3C4S6mp003555@repoman.freebsd.org> From: Kris Kennaway Date: Sun, 11 Apr 2004 21:28:06 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/openquicktime 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, 12 Apr 2004 04:28:07 -0000 kris 2004/04/11 21:28:06 PDT FreeBSD ports repository Modified files: multimedia/openquicktime Makefile Log: BROKEN on sparc64: Does not build Revision Changes Path 1.9 +7 -1 ports/multimedia/openquicktime/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 22:04: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 BB9B716A4CE; Sun, 11 Apr 2004 22:04:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9DDB843D1F; Sun, 11 Apr 2004 22:04:47 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C54lGe012391; Sun, 11 Apr 2004 22:04:47 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C54liS012390; Sun, 11 Apr 2004 22:04:47 -0700 (PDT) (envelope-from njl) Message-Id: <200404120504.i3C54liS012390@repoman.freebsd.org> From: Nate Lawson Date: Sun, 11 Apr 2004 22:04:47 -0700 (PDT) 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: Mon, 12 Apr 2004 05:04:47 -0000 njl 2004/04/11 22:04:47 PDT FreeBSD src repository Modified files: sys/dev/acpica acpi_thermal.c Log: Remove a check for the return value added in rev 1.41. It's not an error to fail to turn off a fan, since the case is that it's usually already off. Revision Changes Path 1.43 +1 -8 src/sys/dev/acpica/acpi_thermal.c From owner-cvs-all@FreeBSD.ORG Sun Apr 11 22:09: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 38EEE16A4CE; Sun, 11 Apr 2004 22:09:59 -0700 (PDT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0446643D53; Sun, 11 Apr 2004 22:09:59 -0700 (PDT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 009B45C7D9; Sun, 11 Apr 2004 22:09:58 -0700 (PDT) Date: Sun, 11 Apr 2004 22:09:58 -0700 From: Alfred Perlstein To: Maxime Henrion Message-ID: <20040412050958.GA96687@elvis.mu.org> References: <200404112157.i3BLv775003990@repoman.freebsd.org> <20040411220249.GF4772@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040411220249.GF4772@elvis.mu.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/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: Mon, 12 Apr 2004 05:09:59 -0000 * Maxime Henrion [040411 15:03] wrote: > Maxime Henrion wrote: > > mux 2004/04/11 14:57:07 PDT > > > > FreeBSD src repository > > > > Modified files: > > sys/sys param.h > > Log: > > Bump __FreeBSD_version for getgrent(3) removal. I doubt anything > ^^^^^^^^ > > Oops! Obviously I meant getvfsent(3) here. Sorry for the potential > heart attacks I caused :-). You owe me a new keyboard. :( I hella spit up my coke all over it. :( -- - Alfred Perlstein - Research Engineering Development Inc. - email: bright@mu.org cell: 408-480-4684 From owner-cvs-all@FreeBSD.ORG Sun Apr 11 22: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 DB95016A4CE; Sun, 11 Apr 2004 22:37:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFC1643D2F; Sun, 11 Apr 2004 22:37:25 -0700 (PDT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C5bPGe018527; Sun, 11 Apr 2004 22:37:25 -0700 (PDT) (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C5bOLG018526; Sun, 11 Apr 2004 22:37:25 -0700 (PDT) (envelope-from den) Message-Id: <200404120537.i3C5bOLG018526@repoman.freebsd.org> From: Denis Peplin Date: Sun, 11 Apr 2004 22:37:24 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/es 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, 12 Apr 2004 05:37:26 -0000 den 2004/04/11 22:37:24 PDT FreeBSD doc repository Modified files: es index.xsl Log: Fix link to Handbook Submitted by: Alejandro 'Lanjoe9' Valenzuela Revision Changes Path 1.2 +3 -3 www/es/index.xsl From owner-cvs-all@FreeBSD.ORG Sun Apr 11 22:39: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 A603A16A4CE; Sun, 11 Apr 2004 22:39:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A3D143D1F; Sun, 11 Apr 2004 22:39:21 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C5dLGe018576; Sun, 11 Apr 2004 22:39:21 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C5dLXi018575; Sun, 11 Apr 2004 22:39:21 -0700 (PDT) (envelope-from krion) Message-Id: <200404120539.i3C5dLXi018575@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 11 Apr 2004 22:39:21 -0700 (PDT) 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 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, 12 Apr 2004 05:39:21 -0000 krion 2004/04/11 22:39:21 PDT FreeBSD ports repository Modified files: net/centericq Makefile pkg-plist Log: - Disable Gadu-Gadu support by default - Add WITHOUT_NLS PR: ports/65381 Submitted by: "Herbert J. Skuhra" Approved by: maintainer Revision Changes Path 1.85 +12 -1 ports/net/centericq/Makefile 1.24 +16 -16 ports/net/centericq/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Apr 11 22:42: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 D7F8C16A4CE; Sun, 11 Apr 2004 22:42:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAB7943D39; Sun, 11 Apr 2004 22:42:06 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C5g6Ge020088; Sun, 11 Apr 2004 22:42:06 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C5g6QE020081; Sun, 11 Apr 2004 22:42:06 -0700 (PDT) (envelope-from krion) Message-Id: <200404120542.i3C5g6QE020081@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 11 Apr 2004 22:42:05 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/zphoto Makefile distinfo ports/graphics/zphoto/files patch-util.c patch-zphoto.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 05:42:07 -0000 krion 2004/04/11 22:42:05 PDT FreeBSD ports repository Modified files: graphics/zphoto Makefile distinfo Added files: graphics/zphoto/files patch-zphoto.c Removed files: graphics/zphoto/files patch-util.c Log: - Update to version 0.9 PR: ports/65450 Submitted by: maintainer Revision Changes Path 1.13 +1 -2 ports/graphics/zphoto/Makefile 1.7 +2 -2 ports/graphics/zphoto/distinfo 1.4 +0 -10 ports/graphics/zphoto/files/patch-util.c (dead) 1.3 +12 -0 ports/graphics/zphoto/files/patch-zphoto.c (new) From owner-cvs-all@FreeBSD.ORG Sun Apr 11 22: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 3938F16A4CE; Sun, 11 Apr 2004 22:46:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D4CB43D53; Sun, 11 Apr 2004 22:46:17 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C5kGGe020627; Sun, 11 Apr 2004 22:46:16 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C5kGYk020626; Sun, 11 Apr 2004 22:46:16 -0700 (PDT) (envelope-from krion) Message-Id: <200404120546.i3C5kGYk020626@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 11 Apr 2004 22:46:16 -0700 (PDT) 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-Net-Netmask 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, 12 Apr 2004 05:46:17 -0000 krion 2004/04/11 22:46:16 PDT FreeBSD ports repository Modified files: net-mgmt/p5-Net-Netmask Makefile distinfo Log: - Update to 1.9008 PR: ports/65445 Submitted by: maintainer Revision Changes Path 1.9 +1 -1 ports/net-mgmt/p5-Net-Netmask/Makefile 1.5 +2 -2 ports/net-mgmt/p5-Net-Netmask/distinfo From owner-cvs-all@FreeBSD.ORG Sun Apr 11 22: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 1BA8316A4CE; Sun, 11 Apr 2004 22:55:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 15F5043D45; Sun, 11 Apr 2004 22:55:15 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C5tEGe022620; Sun, 11 Apr 2004 22:55:14 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C5tEat022610; Sun, 11 Apr 2004 22:55:14 -0700 (PDT) (envelope-from krion) Message-Id: <200404120555.i3C5tEat022610@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 11 Apr 2004 22:55:14 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/freetds 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: Mon, 12 Apr 2004 05:55:15 -0000 krion 2004/04/11 22:55:13 PDT FreeBSD ports repository Modified files: databases/freetds Makefile distinfo pkg-plist Removed files: databases/freetds/files exp-patch-src::tds::read.c patch-doc::Makefile.in Log: - Update to version 0.62.3 PR: ports/65444 Submitted by: maintainer Revision Changes Path 1.37 +3 -6 ports/databases/freetds/Makefile 1.11 +2 -2 ports/databases/freetds/distinfo 1.2 +0 -16 ports/databases/freetds/files/exp-patch-src::tds::read.c (dead) 1.2 +0 -11 ports/databases/freetds/files/patch-doc::Makefile.in (dead) 1.15 +36 -37 ports/databases/freetds/pkg-plist From owner-cvs-all@FreeBSD.ORG Sun Apr 11 22:56: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 2F31016A4CE; Sun, 11 Apr 2004 22:56:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 13DCE43D2F; Sun, 11 Apr 2004 22:56:29 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C5uSGe022694; Sun, 11 Apr 2004 22:56:28 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C5uSpX022693; Sun, 11 Apr 2004 22:56:28 -0700 (PDT) (envelope-from marcus) Message-Id: <200404120556.i3C5uSpX022693@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 11 Apr 2004 22:56:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/nogger 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, 12 Apr 2004 05:56:29 -0000 marcus 2004/04/11 22:56:28 PDT FreeBSD ports repository Modified files: audio/nogger Makefile Log: Teach this port about USE_GNOME, add add the gtk20 component to fix the build with gtk+-2.4. Reported by: bento via kris Revision Changes Path 1.12 +3 -2 ports/audio/nogger/Makefile From owner-cvs-all@FreeBSD.ORG Sun Apr 11 22:58: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 2C4E716A4CE; Sun, 11 Apr 2004 22:58:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 116D043D31; Sun, 11 Apr 2004 22:58:09 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C5w8Ge022778; Sun, 11 Apr 2004 22:58:08 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C5w8d7022777; Sun, 11 Apr 2004 22:58:08 -0700 (PDT) (envelope-from marcus) Message-Id: <200404120558.i3C5w8d7022777@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sun, 11 Apr 2004 22:58:08 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/gnome gnome_upgrade.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, 12 Apr 2004 05:58:09 -0000 marcus 2004/04/11 22:58:08 PDT FreeBSD doc repository Modified files: en/gnome gnome_upgrade.sh Log: Add support for upgrades on 4.10. Revision Changes Path 1.3 +1 -1 www/en/gnome/gnome_upgrade.sh From owner-cvs-all@FreeBSD.ORG Sun Apr 11 23: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 456E116A4D0; Sun, 11 Apr 2004 23:02:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2972C43D45; Sun, 11 Apr 2004 23:02:25 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C62OGe024412; Sun, 11 Apr 2004 23:02:25 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C62OCp024411; Sun, 11 Apr 2004 23:02:24 -0700 (PDT) (envelope-from krion) Message-Id: <200404120602.i3C62OCp024411@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 11 Apr 2004 23:02:24 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/mutt Makefile distinfo ports/japanese/mutt/files patch-ak prepatch-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, 12 Apr 2004 06:02:25 -0000 krion 2004/04/11 23:02:24 PDT FreeBSD ports repository Modified files: japanese/mutt Makefile distinfo Added files: japanese/mutt/files patch-ak Removed files: japanese/mutt/files prepatch-aa Log: - Update to version 1.4.2.1 PR: ports/65447 Submitted by: maintainer Revision Changes Path 1.32 +4 -14 ports/japanese/mutt/Makefile 1.14 +4 -4 ports/japanese/mutt/distinfo 1.1 +12 -0 ports/japanese/mutt/files/patch-ak (new) 1.3 +0 -9 ports/japanese/mutt/files/prepatch-aa (dead) From owner-cvs-all@FreeBSD.ORG Sun Apr 11 23:46: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 A49D616A4CE; Sun, 11 Apr 2004 23:46:45 -0700 (PDT) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id 21AF543D46; Sun, 11 Apr 2004 23:46:45 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from localhost ([192.168.0.5]) (authenticated bits=0) by pittgoth.com (8.12.11/8.12.11) with ESMTP id i3C6khJ2046804 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Mon, 12 Apr 2004 02:46:44 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Mon, 12 Apr 2004 02:47:07 -0400 From: Tom Rhodes To: "Bruce A. Mah" Message-Id: <20040412024707.37bf75ac@localhost> In-Reply-To: <20040408152310.GA94732@tomcat.kitchenlab.org> References: <200404080827.i388RxBN001188@repoman.freebsd.org> <20040408083546.GA45005@phantom.cris.net> <20040408094431.GA78250@abigail.blackend.org> <20040408152310.GA94732@tomcat.kitchenlab.org> X-Mailer: Sylpheed version 0.9.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: bmah@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Alexey Zelkin cc: doc-committers@FreeBSD.org cc: Marc Fonvieille Subject: Re: cvs commit: doc/share/images/articles/releng branches-head.pic branches-releng3.pic branches-releng4.pic X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 06:46:45 -0000 On Thu, 8 Apr 2004 08:23:10 -0700 "Bruce A. Mah" wrote: > > Bruce. > > PS. I think the releng article has mutated (by a lot) from its > original intent and content...we have collectively turned it from a > description of the 4.4 release process into a HOWTO / checklist for > building releases in general. This is not a bad thing but I think > some structural work needs to be done to make this document more > effective. A little off topic from the original discussion of the images: When I was doing the multi-MTA work for sysinstall I built several releases on both the CURRENT and RELENG_4 branches. If anyone wants to 'mutate' this document into a 'how to build a release' article they're free to use my notes. Otherwise I'll either write one from scratch or append to this. -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Sun Apr 11 23:57: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 7CCFC16A4CF; Sun, 11 Apr 2004 23:57:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61C4943D3F; Sun, 11 Apr 2004 23:57:01 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C6v1Ge038637; Sun, 11 Apr 2004 23:57:01 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C6v0J5038634; Sun, 11 Apr 2004 23:57:00 -0700 (PDT) (envelope-from linimon) Message-Id: <200404120657.i3C6v0J5038634@repoman.freebsd.org> From: Mark Linimon Date: Sun, 11 Apr 2004 23:57:00 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/tclX80 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, 12 Apr 2004 06:57:01 -0000 linimon 2004/04/11 23:57:00 PDT FreeBSD ports repository Modified files: lang/tclX80 Makefile Log: Per distfile survey, remove mastersite that disappeared in December 2003. A Google search failed to find an alterative; any suggestions? Revision Changes Path 1.45 +1 -1 ports/lang/tclX80/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 00:02: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 6E05316A4CE; Mon, 12 Apr 2004 00:02:59 -0700 (PDT) Received: from mtaw4.prodigy.net (mtaw4.prodigy.net [64.164.98.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D8BF43D41; Mon, 12 Apr 2004 00:02:59 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (406b9afdceb209b47c98a30671c5c5eb@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw4.prodigy.net (8.12.10/8.12.10) with ESMTP id i3C72w1O017250; Mon, 12 Apr 2004 00:02:58 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 36EE353902; Mon, 12 Apr 2004 00:02:58 -0700 (PDT) Date: Mon, 12 Apr 2004 00:02:58 -0700 From: Kris Kennaway To: Mark Linimon Message-ID: <20040412070258.GA7750@xor.obsecurity.org> References: <200404120657.i3C6v0J5038634@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="xHFwDpU9dbj6ez1V" Content-Disposition: inline In-Reply-To: <200404120657.i3C6v0J5038634@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/lang/tclX80 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, 12 Apr 2004 07:02:59 -0000 --xHFwDpU9dbj6ez1V Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sun, Apr 11, 2004 at 11:57:00PM -0700, Mark Linimon wrote: > linimon 2004/04/11 23:57:00 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > lang/tclX80 Makefile=20 > Log: > Per distfile survey, remove mastersite that disappeared in December 200= 3. > A Google search failed to find an alterative; any suggestions? The port seems to be unused; it can probably be scheduled for removal. Some of the other old tcl/tk ports are also unused or only have one or two dependencies that might be migrated to a later version. Kris --xHFwDpU9dbj6ez1V Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAej8hWry0BWjoQKURAjUfAJ0Qe2Z5kE5kBWD9o8GVAarY+qiRQwCgnlec z/BbCfJlZvQJboNhq8XNnrY= =h16i -----END PGP SIGNATURE----- --xHFwDpU9dbj6ez1V-- From owner-cvs-all@FreeBSD.ORG Mon Apr 12 00:06: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 2009F16A4CE; Mon, 12 Apr 2004 00:06:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0292143D46; Mon, 12 Apr 2004 00:06:49 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C76mGe041668; Mon, 12 Apr 2004 00:06:48 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C76mGK041667; Mon, 12 Apr 2004 00:06:48 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404120706.i3C76mGK041667@repoman.freebsd.org> From: Ying-Chieh Liao Date: Mon, 12 Apr 2004 00:06:48 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/libargparse Makefile distinfo pkg-descr pkg-plist CVSROOT modules ports/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: Mon, 12 Apr 2004 07:06:49 -0000 ijliao 2004/04/12 00:06:48 PDT FreeBSD ports repository Modified files: . modules devel Makefile Removed files: devel/libargparse Makefile distinfo pkg-descr pkg-plist Log: not listed on sourceforge Revision Changes Path 1.9887 +0 -1 CVSROOT/modules 1.1520 +0 -1 ports/devel/Makefile 1.6 +0 -20 ports/devel/libargparse/Makefile (dead) 1.3 +0 -2 ports/devel/libargparse/distinfo (dead) 1.2 +0 -1 ports/devel/libargparse/pkg-descr (dead) 1.2 +0 -2 ports/devel/libargparse/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 00:22: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 C9BB916A4CE; Mon, 12 Apr 2004 00:22:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADF5243D5A; Mon, 12 Apr 2004 00:22:25 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C7MPGe045420; Mon, 12 Apr 2004 00:22:25 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C7MPmV045419; Mon, 12 Apr 2004 00:22:25 -0700 (PDT) (envelope-from linimon) Message-Id: <200404120722.i3C7MPmV045419@repoman.freebsd.org> From: Mark Linimon Date: Mon, 12 Apr 2004 00:22:25 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/tclX80 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, 12 Apr 2004 07:22:26 -0000 linimon 2004/04/12 00:22:25 PDT FreeBSD ports repository Modified files: lang/tclX80 Makefile Log: Per kris' suggestion, mark as deprecated (supplanted by lang/tclX which is at 8.3.5). This port is not used by any other port in the ports tree. Revision Changes Path 1.46 +3 -0 ports/lang/tclX80/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 01:17: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 7667116A4CE; Mon, 12 Apr 2004 01:17:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A64E43D48; Mon, 12 Apr 2004 01:17:20 -0700 (PDT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C8HKGe062608; Mon, 12 Apr 2004 01:17:20 -0700 (PDT) (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C8HKd2062607; Mon, 12 Apr 2004 01:17:20 -0700 (PDT) (envelope-from markus) Message-Id: <200404120817.i3C8HKd2062607@repoman.freebsd.org> From: Markus Brueffer Date: Mon, 12 Apr 2004 01:17:19 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/rosegarden 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, 12 Apr 2004 08:17:20 -0000 markus 2004/04/12 01:17:19 PDT FreeBSD ports repository Modified files: audio/rosegarden pkg-descr Log: Point WWW to new projectsite Approved by: arved (mentor) Revision Changes Path 1.5 +1 -2 ports/audio/rosegarden/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Apr 12 01:20: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 3AE1B16A4CE; Mon, 12 Apr 2004 01:20:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F9D643D2F; Mon, 12 Apr 2004 01:20:26 -0700 (PDT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C8KPGe062756; Mon, 12 Apr 2004 01:20:25 -0700 (PDT) (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C8KPkR062755; Mon, 12 Apr 2004 01:20:25 -0700 (PDT) (envelope-from markus) Message-Id: <200404120820.i3C8KPkR062755@repoman.freebsd.org> From: Markus Brueffer Date: Mon, 12 Apr 2004 01:20:25 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/deskutils/basket Makefile distinfo pkg-plist ports/deskutils/basket/files patch-itemfactory.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, 12 Apr 2004 08:20:26 -0000 markus 2004/04/12 01:20:25 PDT FreeBSD ports repository Modified files: deskutils/basket Makefile distinfo pkg-plist Removed files: deskutils/basket/files patch-itemfactory.cpp Log: Update to version 0.4.0b Approved by: arved (mentor) Revision Changes Path 1.10 +1 -2 ports/deskutils/basket/Makefile 1.7 +2 -2 ports/deskutils/basket/distinfo 1.2 +0 -11 ports/deskutils/basket/files/patch-itemfactory.cpp (dead) 1.3 +2 -0 ports/deskutils/basket/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 01:57: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 512B816A4CE; Mon, 12 Apr 2004 01:57:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35A0243D64; Mon, 12 Apr 2004 01:57:40 -0700 (PDT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C8veGe070614; Mon, 12 Apr 2004 01:57:40 -0700 (PDT) (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C8vdoU070613; Mon, 12 Apr 2004 01:57:39 -0700 (PDT) (envelope-from eik) Message-Id: <200404120857.i3C8vdoU070613@repoman.freebsd.org> From: Oliver Eikemeier Date: Mon, 12 Apr 2004 01:57:39 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 08:57:40 -0000 eik 2004/04/12 01:57:39 PDT FreeBSD ports repository Modified files: security/clamav Makefile Log: Hand maintainership over to Rob Evers. PR: 65182 Submitted by: TERAMOTO Masahiro (maintainer) Revision Changes Path 1.30 +1 -4 ports/security/clamav/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 02:13: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 DB41916A4CE; Mon, 12 Apr 2004 02:13:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0F7643D3F; Mon, 12 Apr 2004 02:13:24 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C9DOGe075452; Mon, 12 Apr 2004 02:13:24 -0700 (PDT) (envelope-from markm@repoman.freebsd.org) Received: (from markm@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C9DOkd075451; Mon, 12 Apr 2004 02:13:24 -0700 (PDT) (envelope-from markm) Message-Id: <200404120913.i3C9DOkd075451@repoman.freebsd.org> From: Mark Murray Date: Mon, 12 Apr 2004 02:13:24 -0700 (PDT) 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.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 09:13:25 -0000 markm 2004/04/12 02:13:24 PDT FreeBSD src repository Modified files: sys/dev/random randomdev.c Log: Fix "sleeping without a mutex" panic. Revision Changes Path 1.50 +6 -3 src/sys/dev/random/randomdev.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 02:38: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 3E30916A4CE; Mon, 12 Apr 2004 02:38:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2207643D31; Mon, 12 Apr 2004 02:38:45 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C9ciGe079629; Mon, 12 Apr 2004 02:38:44 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C9ciSn079628; Mon, 12 Apr 2004 02:38:44 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404120938.i3C9ciSn079628@repoman.freebsd.org> From: Ying-Chieh Liao Date: Mon, 12 Apr 2004 02:38:44 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gai 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, 12 Apr 2004 09:38:45 -0000 ijliao 2004/04/12 02:38:44 PDT FreeBSD ports repository Modified files: x11-toolkits/gai Makefile distinfo Log: upgrade to 0.5.4 Revision Changes Path 1.10 +3 -3 ports/x11-toolkits/gai/Makefile 1.3 +2 -2 ports/x11-toolkits/gai/distinfo From owner-cvs-all@FreeBSD.ORG Mon Apr 12 02:40: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 E019B16A4D1; Mon, 12 Apr 2004 02:40:56 -0700 (PDT) Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.157.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01FDF43D55; Mon, 12 Apr 2004 02:40:52 -0700 (PDT) (envelope-from mark@grondar.org) Received: from storm.FreeBSD.org.uk (Ugrondar@localhost [127.0.0.1]) i3C9epV4048435; Mon, 12 Apr 2004 10:40:51 +0100 (BST) (envelope-from mark@grondar.org) Received: (from Ugrondar@localhost)i3C9epZN048434; Mon, 12 Apr 2004 10:40:51 +0100 (BST) (envelope-from mark@grondar.org) X-Authentication-Warning: storm.FreeBSD.org.uk: Ugrondar set sender to mark@grondar.org using -f Received: from grondar.org (localhost [127.0.0.1])i3C9d5In084576; Mon, 12 Apr 2004 10:39:05 +0100 (BST) (envelope-from mark@grondar.org) From: Mark Murray Message-Id: <200404120939.i3C9d5In084576@grimreaper.grondar.org> To: Takahashi Yoshihiro In-Reply-To: Your message of "Sun, 11 Apr 2004 02:13:43 PDT." <200404110913.i3B9DhqZ016664@repoman.freebsd.org> Date: Mon, 12 Apr 2004 10:39:05 +0100 Sender: mark@grondar.org X-Spam-Score: 4 (****) FROM_NO_LOWER,MSGID_FROM_MTA_SHORT X-Scanned-By: MIMEDefang 2.39 cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/random probe.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 09:40:57 -0000 Takahashi Yoshihiro writes: > Modified files: > sys/dev/random probe.c > Log: > Fix pc98 build. Hi. Will PC98's never have Nehemiah-class CPUs? M -- Mark Murray iumop ap!sdn w,I idlaH From owner-cvs-all@FreeBSD.ORG Mon Apr 12 02: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 2D39616A4CE; Mon, 12 Apr 2004 02:44:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 289FC43D45; Mon, 12 Apr 2004 02:44:32 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C9iVGe081586; Mon, 12 Apr 2004 02:44:31 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C9iVta081585; Mon, 12 Apr 2004 02:44:31 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404120944.i3C9iVta081585@repoman.freebsd.org> From: Ying-Chieh Liao Date: Mon, 12 Apr 2004 02:44:31 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/aqsis Makefile distinfo pkg-plist patch-aqsltell::Makefile.inpatch-libslparse::parsenode.cpp patch-ltmain.sh patch-render::ri.cpp patch-shaders::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, 12 Apr 2004 09:44:32 -0000 ijliao 2004/04/12 02:44:31 PDT FreeBSD ports repository Modified files: graphics/aqsis Makefile distinfo pkg-plist graphics/aqsis/files patch-aqsis::aqsis.cpp patch-ltmain.sh patch-render::ri.cpp Added files: graphics/aqsis/files patch-libdd::dd.cpp Removed files: graphics/aqsis/files patch-aqsltell::Makefile.in patch-libddmsock::ddmsock.cpp patch-libslparse::parsenode.cpp patch-shaders::Makefile.in Log: upgrade to 0.9.1 Revision Changes Path 1.10 +15 -10 ports/graphics/aqsis/Makefile 1.4 +2 -2 ports/graphics/aqsis/distinfo 1.2 +11 -11 ports/graphics/aqsis/files/patch-aqsis::aqsis.cpp 1.2 +0 -11 ports/graphics/aqsis/files/patch-aqsltell::Makefile.in (dead) 1.1 +11 -0 ports/graphics/aqsis/files/patch-libdd::dd.cpp (new) 1.2 +0 -10 ports/graphics/aqsis/files/patch-libddmsock::ddmsock.cpp (dead) 1.2 +0 -11 ports/graphics/aqsis/files/patch-libslparse::parsenode.cpp (dead) 1.2 +4 -30 ports/graphics/aqsis/files/patch-ltmain.sh 1.2 +11 -11 ports/graphics/aqsis/files/patch-render::ri.cpp 1.3 +0 -11 ports/graphics/aqsis/files/patch-shaders::Makefile.in (dead) 1.4 +3 -74 ports/graphics/aqsis/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 02: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 AB36216A4CF; Mon, 12 Apr 2004 02:44:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 91E4343D41; Mon, 12 Apr 2004 02:44:42 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3C9igGe081617; Mon, 12 Apr 2004 02:44:42 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3C9igou081616; Mon, 12 Apr 2004 02:44:42 -0700 (PDT) (envelope-from ru) Message-Id: <200404120944.i3C9igou081616@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 12 Apr 2004 02:44:42 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/netstat 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: Mon, 12 Apr 2004 09:44:42 -0000 ru 2004/04/12 02:44:42 PDT FreeBSD src repository Modified files: usr.bin/netstat if.c Log: Fixed alignment of multicast addresses when printing that got broken in previous revision. Revision Changes Path 1.56 +4 -2 src/usr.bin/netstat/if.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 03: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 4F35C16A4CE; Mon, 12 Apr 2004 03:47:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35B2243D1D; Mon, 12 Apr 2004 03:47:13 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CAlCGe094814; Mon, 12 Apr 2004 03:47:13 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CAlCiD094813; Mon, 12 Apr 2004 03:47:12 -0700 (PDT) (envelope-from krion) Message-Id: <200404121047.i3CAlCiD094813@repoman.freebsd.org> From: Kirill Ponomarew Date: Mon, 12 Apr 2004 03:47:12 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/axis 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, 12 Apr 2004 10:47:13 -0000 krion 2004/04/12 03:47:12 PDT FreeBSD ports repository Modified files: www/axis Makefile Log: - Fix MASTER_SITES PR: ports/65454 Submitted by: maintainer Revision Changes Path 1.7 +2 -3 ports/www/axis/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 03:53: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 8304916A4CE; Mon, 12 Apr 2004 03:53:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6772043D2D; Mon, 12 Apr 2004 03:53:50 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CAroGe096713; Mon, 12 Apr 2004 03:53:50 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CArnok096712; Mon, 12 Apr 2004 03:53:49 -0700 (PDT) (envelope-from krion) Message-Id: <200404121053.i3CArnok096712@repoman.freebsd.org> From: Kirill Ponomarew Date: Mon, 12 Apr 2004 03:53:49 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/xmedcon 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, 12 Apr 2004 10:53:50 -0000 krion 2004/04/12 03:53:49 PDT FreeBSD ports repository Modified files: graphics/xmedcon Makefile distinfo Log: - Update to version 0.9.4 PR: ports/65455 Submitted by: maintainer Revision Changes Path 1.14 +1 -1 ports/graphics/xmedcon/Makefile 1.11 +2 -2 ports/graphics/xmedcon/distinfo From owner-cvs-all@FreeBSD.ORG Mon Apr 12 04:36: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 EE74F16A4CE; Mon, 12 Apr 2004 04:36:40 -0700 (PDT) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by mx1.FreeBSD.org (Postfix) with SMTP id 80F3B43D58; Mon, 12 Apr 2004 04:36:39 -0700 (PDT) (envelope-from dwmalone@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 12 Apr 2004 12:36:38 +0100 (BST) Date: Mon, 12 Apr 2004 12:36:35 +0100 From: David Malone To: Mark Murray Message-ID: <20040412113635.GA38733@walton.maths.tcd.ie> References: <20040410155637.Q58852@root.org> <200404110746.i3B7kiIn075106@grimreaper.grondar.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404110746.i3B7kiIn075106@grimreaper.grondar.org> User-Agent: Mutt/1.5.3i Sender: dwmalone@maths.tcd.ie cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: Nate Lawson Subject: Re: cvs commit: src/sys/modules/random Makefile src/sys/dev/random harvest.c hash.c hash.h nehemiah.c nehemiah.h probe.c randomdev.c randomdev.h randomdev_soft.c randomdev_soft.h yar X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 11:36:41 -0000 On Sun, Apr 11, 2004 at 08:46:43AM +0100, Mark Murray wrote: > Yarrow is unsuitable for this purpose; it is a great generator when > you have a low-entropy environment and you need to protect against > attackers having potential knowledge of the inputs. I still think it would be nice if our random infrastructure had a block-until-accumulated-'enough'-randomness mode, like the old /dev/random had, to avoid some future attack based on Yarrow's fixed size state. I don't think it will be a realistic attack any time soon, but it might be nice for baco-hat types. In the case where high-quality, fast hardware based generators are available, this seems to be a more realistic option though. I'm happy enough to live without this, since we thrashed this out before, but if you're looking at options, you might keep it at the back of your mind. David. From owner-cvs-all@FreeBSD.ORG Mon Apr 12 04:52: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 B07F016A4CE; Mon, 12 Apr 2004 04:52:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9486243D31; Mon, 12 Apr 2004 04:52:39 -0700 (PDT) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CBqdGe015750; Mon, 12 Apr 2004 04:52:39 -0700 (PDT) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CBqd4K015749; Mon, 12 Apr 2004 04:52:39 -0700 (PDT) (envelope-from phantom) Message-Id: <200404121152.i3CBqd4K015749@repoman.freebsd.org> From: Alexey Zelkin Date: Mon, 12 Apr 2004 04:52:38 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/share/mk web.site.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, 12 Apr 2004 11:52:39 -0000 phantom 2004/04/12 04:52:38 PDT FreeBSD doc repository Modified files: share/mk web.site.mk Log: . Fix 'webcheck' target url generation in directories other than 'www/en'. In these cases we get urls like 'http://www.FreeBSD.org///ru//java/', etc. On such urls webcheck fails immediately with 403 error code. So, cleanup multiple slashes. . Make 'checkmissing' output more compact and readable. Avoid printing '===>' in case if current directory does not have anything to report. Also print each missing entry on separate line to make output more readable. Revision Changes Path 1.60 +21 -8 www/share/mk/web.site.mk From owner-cvs-all@FreeBSD.ORG Mon Apr 12 04: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 3417416A4CE; Mon, 12 Apr 2004 04:56:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 196EF43D58; Mon, 12 Apr 2004 04:56:22 -0700 (PDT) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CBuLGe015888; Mon, 12 Apr 2004 04:56:21 -0700 (PDT) (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CBuLt4015887; Mon, 12 Apr 2004 04:56:21 -0700 (PDT) (envelope-from mheinen) Message-Id: <200404121156.i3CBuLt4015887@repoman.freebsd.org> From: Martin Heinen Date: Mon, 12 Apr 2004 04:56:21 -0700 (PDT) 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/mail 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, 12 Apr 2004 11:56:22 -0000 mheinen 2004/04/12 04:56:21 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/mail chapter.sgml Log: Shorten ulink elements by omitting the URL in the link text. Use lower case for the url attribute. Revision Changes Path 1.109 +4 -6 doc/en_US.ISO8859-1/books/handbook/mail/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Apr 12 05:07: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 28E0416A4CE; Mon, 12 Apr 2004 05:07:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0EBED43D49; Mon, 12 Apr 2004 05:07:28 -0700 (PDT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CC7RGe018928; Mon, 12 Apr 2004 05:07:27 -0700 (PDT) (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CC7Reu018927; Mon, 12 Apr 2004 05:07:27 -0700 (PDT) (envelope-from vs) Message-Id: <200404121207.i3CC7Reu018927@repoman.freebsd.org> From: Volker Stolz Date: Mon, 12 Apr 2004 05:07:27 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/palm/synce-librapi2 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, 12 Apr 2004 12:07:28 -0000 vs 2004/04/12 05:07:27 PDT FreeBSD ports repository Modified files: palm/synce-librapi2 Makefile Log: Fix /bin/bash-ism (approved by maintainer) PR: 65359 Submitted by: Antoine Jacoutot Approved by: linimon (mentor) Revision Changes Path 1.6 +8 -0 ports/palm/synce-librapi2/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 05: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 85A4416A4CF; Mon, 12 Apr 2004 05:07:29 -0700 (PDT) Received: from saturn.criticalmagic.com (saturn.criticalmagic.com [68.213.16.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2527F43D49; Mon, 12 Apr 2004 05:07:29 -0700 (PDT) (envelope-from richardcoleman@mindspring.com) Received: from mindspring.com (titan.criticalmagic.com [68.213.16.23]) by saturn.criticalmagic.com (Postfix) with ESMTP id 40D703BD2A; Mon, 12 Apr 2004 08:07:28 -0400 (EDT) Message-ID: <407A868F.8040108@mindspring.com> Date: Mon, 12 Apr 2004 08:07:43 -0400 From: Richard Coleman Organization: Critical Magic, Inc. User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6) Gecko/20040113 X-Accept-Language: en-us, en MIME-Version: 1.0 To: David Malone References: <20040410155637.Q58852@root.org> <200404110746.i3B7kiIn075106@grimreaper.grondar.org> <20040412113635.GA38733@walton.maths.tcd.ie> In-Reply-To: <20040412113635.GA38733@walton.maths.tcd.ie> 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: Mark Murray cc: Nate Lawson Subject: Re: cvs commit: src/sys/modules/random Makefile src/sys/dev/random randomdev.h randomdev_soft.c randomdev_soft.h yar X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: richardcoleman@mindspring.com List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 12:07:29 -0000 David Malone wrote: > On Sun, Apr 11, 2004 at 08:46:43AM +0100, Mark Murray wrote: > >>Yarrow is unsuitable for this purpose; it is a great generator when >>you have a low-entropy environment and you need to protect against >>attackers having potential knowledge of the inputs. > > > I still think it would be nice if our random infrastructure had a > block-until-accumulated-'enough'-randomness mode, like the old > /dev/random had, to avoid some future attack based on Yarrow's fixed > size state. I don't think it will be a realistic attack any time > soon, but it might be nice for baco-hat types. In the case where > high-quality, fast hardware based generators are available, this > seems to be a more realistic option though. > > I'm happy enough to live without this, since we thrashed this out > before, but if you're looking at options, you might keep it at the > back of your mind. > > David. I think the old /dev/random caused more problems than it solved. Most apps just used /dev/urandom to avoid all the end-user questions about the blocking. And the beauty of the Yarrow PRNG is that as long as you have enough initial entropy to get started, you can pull as many bytes as you want and still remain cryptographically strong (within some very high limit of like 2^120 bytes before the next re-keying). Richard Coleman richardcoleman@mindspring.com From owner-cvs-all@FreeBSD.ORG Mon Apr 12 05:25: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 5552F16A4CE; Mon, 12 Apr 2004 05:25:33 -0700 (PDT) Received: from camel.jerocu.net (62-15-142-182.inversas.jazztel.es [62.15.142.182]) by mx1.FreeBSD.org (Postfix) with ESMTP id E178443D4C; Mon, 12 Apr 2004 05:25:31 -0700 (PDT) (envelope-from jesusr@freebsd.org) Received: from camel.jerocu.net (camel.jerocu.net [192.168.1.12]) by camel.jerocu.net (8.12.10/8.12.10) with ESMTP id i3CCLwRO046577; Mon, 12 Apr 2004 14:21:59 +0200 (CEST) (envelope-from jesusr@freebsd.org) Date: Mon, 12 Apr 2004 14:21:58 +0200 (CEST) From: Jesus Rodriguez X-X-Sender: jesusr@camel.jerocu.net To: Denis Peplin In-Reply-To: <200404120537.i3C5bOLG018526@repoman.freebsd.org> Message-ID: <20040412142130.U46191@camel.jerocu.net> References: <200404120537.i3C5bOLG018526@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Spam-Status: No, hits=-2.5 required=5.0 tests=EMAIL_ATTRIBUTION,IN_REP_TO,QUOTED_EMAIL_TEXT,REFERENCES, REPLY_WITH_QUOTES version=2.55 X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: doc-committers@freebsd.org cc: cvs-doc@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: www/es 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, 12 Apr 2004 12:25:33 -0000 On Sun, 11 Apr 2004, Denis Peplin wrote: > den 2004/04/11 22:37:24 PDT > > FreeBSD doc repository > > Modified files: > es index.xsl > Log: > Fix link to Handbook > > Submitted by: Alejandro 'Lanjoe9' Valenzuela > > Revision Changes Path > 1.2 +3 -3 www/es/index.xsl Thanks!. Saludos JesusR. From owner-cvs-all@FreeBSD.ORG Mon Apr 12 05:42: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 998C216A4CE; Mon, 12 Apr 2004 05:42:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F1DF43D4C; Mon, 12 Apr 2004 05:42:19 -0700 (PDT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CCgJGe026670; Mon, 12 Apr 2004 05:42:19 -0700 (PDT) (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CCgJV5026666; Mon, 12 Apr 2004 05:42:19 -0700 (PDT) (envelope-from bland) Message-Id: <200404121242.i3CCgJV5026666@repoman.freebsd.org> From: Alexander Nedotsukov Date: Mon, 12 Apr 2004 05:42:18 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/gdm2 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, 12 Apr 2004 12:42:19 -0000 bland 2004/04/12 05:42:18 PDT FreeBSD ports repository Modified files: x11/gdm2 pkg-message Log: Fix typo. Submitted by: ceri Revision Changes Path 1.10 +1 -1 ports/x11/gdm2/pkg-message From owner-cvs-all@FreeBSD.ORG Mon Apr 12 05: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 1410616A4CE; Mon, 12 Apr 2004 05:51:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F014D43D48; Mon, 12 Apr 2004 05:51:27 -0700 (PDT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CCpRGe027872; Mon, 12 Apr 2004 05:51:27 -0700 (PDT) (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CCpR4q027868; Mon, 12 Apr 2004 05:51:27 -0700 (PDT) (envelope-from netchild) Message-Id: <200404121251.i3CCpR4q027868@repoman.freebsd.org> From: Alexander Leidinger Date: Mon, 12 Apr 2004 05:51:27 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/lame 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, 12 Apr 2004 12:51:28 -0000 netchild 2004/04/12 05:51:27 PDT FreeBSD ports repository Modified files: audio/lame Makefile distinfo pkg-plist Log: Update to 3.96. Revision Changes Path 1.35 +2 -3 ports/audio/lame/Makefile 1.15 +2 -2 ports/audio/lame/distinfo 1.15 +0 -1 ports/audio/lame/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 05:53: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 27A4616A4CE; Mon, 12 Apr 2004 05:53:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 253B843D1D; Mon, 12 Apr 2004 05:53:51 -0700 (PDT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CCroGe028882; Mon, 12 Apr 2004 05:53:50 -0700 (PDT) (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CCronf028881; Mon, 12 Apr 2004 05:53:50 -0700 (PDT) (envelope-from netchild) Message-Id: <200404121253.i3CCronf028881@repoman.freebsd.org> From: Alexander Leidinger Date: Mon, 12 Apr 2004 05:53:50 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/antivir-milter Makefile distinfo ports/security/antivir-milter/files patch-etc::antivir.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, 12 Apr 2004 12:53:51 -0000 netchild 2004/04/12 05:53:50 PDT FreeBSD ports repository Modified files: security/antivir-milter Makefile distinfo security/antivir-milter/files patch-etc::antivir.conf Log: - H+BEDV GmbH released a new tarball of the beta version shipping an updated anti-virus engine (6.23.0.3 -> 6.25.0.2), current virus definition file (6.23.0.49 -> 6.25.0.1) and an updated antivir.conf. If you are using the auto-update facility you should already have the updated AV engine binary and VDF. - Look for the libmilter of the Sendmail port and the GnuPG binary in LOCALBASE instead of PREFIX. Submitted by: Marius Strobl Revision Changes Path 1.8 +4 -3 ports/security/antivir-milter/Makefile 1.6 +2 -2 ports/security/antivir-milter/distinfo 1.3 +12 -4 ports/security/antivir-milter/files/patch-etc::antivir.conf From owner-cvs-all@FreeBSD.ORG Mon Apr 12 05:58: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 0DFAE16A4CE; Mon, 12 Apr 2004 05:58:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E84A843D5A; Mon, 12 Apr 2004 05:58:41 -0700 (PDT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CCwfGe029118; Mon, 12 Apr 2004 05:58:41 -0700 (PDT) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CCwfwm029117; Mon, 12 Apr 2004 05:58:41 -0700 (PDT) (envelope-from tjr) Message-Id: <200404121258.i3CCwfwm029117@repoman.freebsd.org> From: "Tim J. Robbins" Date: Mon, 12 Apr 2004 05:58:41 -0700 (PDT) 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 utf8.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: Mon, 12 Apr 2004 12:58:42 -0000 tjr 2004/04/12 05:58:41 PDT FreeBSD src repository Modified files: lib/libc/locale utf8.5 Log: Remove a nonsensical remark about byte order markers in UTF-8 streams. Revision Changes Path 1.5 +1 -6 src/lib/libc/locale/utf8.5 From owner-cvs-all@FreeBSD.ORG Mon Apr 12 06:02: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 1021D16A4CE; Mon, 12 Apr 2004 06:02:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA21843D2F; Mon, 12 Apr 2004 06:02:21 -0700 (PDT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CD2LGe030802; Mon, 12 Apr 2004 06:02:21 -0700 (PDT) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CD2LUX030798; Mon, 12 Apr 2004 06:02:21 -0700 (PDT) (envelope-from mux) Message-Id: <200404121302.i3CD2LUX030798@repoman.freebsd.org> From: Maxime Henrion Date: Mon, 12 Apr 2004 06:02:21 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfsserver nfs_serv.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 13:02:22 -0000 mux 2004/04/12 06:02:21 PDT FreeBSD src repository Modified files: sys/nfsserver nfs_serv.c Log: Don't send the available space as is in the FSSTAT call. Under FreeBSD, we can have a negative available space value, but the corresponding fields in the NFS protocol are unsigned. So trnucate the value to 0 if it's negative, so that the client doesn't receive absurdly high values. Tested by: cognet Revision Changes Path 1.140 +14 -2 src/sys/nfsserver/nfs_serv.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 06:06: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 0AF4B16A4CE; Mon, 12 Apr 2004 06:06:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6AAC43D5C; Mon, 12 Apr 2004 06:06:47 -0700 (PDT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CD6lGe032202; Mon, 12 Apr 2004 06:06:47 -0700 (PDT) (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CD6l61032201; Mon, 12 Apr 2004 06:06:47 -0700 (PDT) (envelope-from netchild) Message-Id: <200404121306.i3CD6l61032201@repoman.freebsd.org> From: Alexander Leidinger Date: Mon, 12 Apr 2004 06:06:47 -0700 (PDT) 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 pkg-descr.mkisofs pkg-plist ports/sysutils/cdrtools-devel/files patch-ai patch-bb patch-cdda2wav::interface.cpatch-cdda2wav::setuid.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 13:06:48 -0000 netchild 2004/04/12 06:06:47 PDT FreeBSD ports repository Modified files: sysutils/cdrtools-devel Makefile distinfo pkg-descr.mkisofs pkg-plist sysutils/mkisofs-devel Makefile Added files: sysutils/cdrtools-devel/files patch-cdda2wav::interface.c patch-cdda2wav::ioctl.c patch-cdda2wav::mycdrom.h Removed files: sysutils/cdrtools-devel/files patch-ai patch-bb patch-cdda2wav::setuid.c patch-cdrecord::cdrecord.c patch-conf::configure patch-mkisofs::mkisofs.c patch-readcd::readcd.c Log: - Update to 2.01a27. Notes: - Since 2.01a26 cdrecord has a new option "-tao" (Track At Once) for what was the default write mode in previous versions. Currently, cdrecord still falls back to writing in TAO mode if no writing mode has been specified but this might change in a future version (infact, the release notes for 2.01a26 already say that cdrecord won't burn a CD if no write mode has been specified). - Cdrecord 2.01a26 was broken in that it only wrote in TAO mode, which was fixed in 2.01a27. For changes since 2.01a25 see: ftp://ftp.berlios.de/pub/cdrecord/alpha/AN-2.01a26 and ftp://ftp.berlios.de/pub/cdrecord/alpha/AN-2.01a27 - Add a workaround for what appears to be a problem with gmake and certain locales on -current. [1] - Correct a typo in pkg-descr.mkisofs inherited from the cdrtools ABOUT file. - Remove the workaround for the broken mlockall(2) on EOL'ed FreeBSD 5.1. - No longer compile with -DSOURCE_MODIFIED, the cdrecord sources are no longer altered by this port except for changing the location of the configuration file, which is done in compliance with the terms in cdrecord/defaults.c. - Make the direct ATAPI transport (cooked_ioctl interface) of cdda2wav (e.g. when used via `cdda2wav -D /dev/acd0`) work on FreeBSD after ata(4) was GEOM'ifed and the CDIOCREADAUDIO ioctl removed. Note: For qualitiy reasons (e.g. to be able to fix/work around broken TOCs etc.) cdda2wav should be used with its generic_scsi interface (e.g. via `cdda2wav -D 2,0,0` and using atapicam(4) if you have an ATAPI device). However, there are some ATAPI devices around where the latter simply doesn't work (look at e.g. PR 62507 or the audit- trail of PR 60233 for examples). - Properly initialise the verbosity level of cdda2wav when the cooked_ioctl interface is used so it's disabled by default (the outcome of this bug is actually compiler dependend, with GCC 2.95.4 verbosity is off by default, with GCC 3.3.3 it's on). Note: The patches for the last two items where sent to Heiko Eissfeldt, the author of cdda2wav, and from his replies I was of the opinion that he "accepted" them and they would be incorporated in cdrtools 2.01a26. However, they still didn't show up in the cdrtools sources and I so far didn't get any reply to my email asking if there would be anything wrong with them. Requested by: pav [1] Submitted by: maintainer Revision Changes Path 1.58 +14 -13 ports/sysutils/cdrtools-devel/Makefile 1.37 +2 -2 ports/sysutils/cdrtools-devel/distinfo 1.5 +0 -20 ports/sysutils/cdrtools-devel/files/patch-ai (dead) 1.2 +0 -13 ports/sysutils/cdrtools-devel/files/patch-bb (dead) 1.1 +37 -0 ports/sysutils/cdrtools-devel/files/patch-cdda2wav::interface.c (new) 1.1 +88 -0 ports/sysutils/cdrtools-devel/files/patch-cdda2wav::ioctl.c (new) 1.1 +24 -0 ports/sysutils/cdrtools-devel/files/patch-cdda2wav::mycdrom.h (new) 1.2 +0 -38 ports/sysutils/cdrtools-devel/files/patch-cdda2wav::setuid.c (dead) 1.2 +0 -17 ports/sysutils/cdrtools-devel/files/patch-cdrecord::cdrecord.c (dead) 1.3 +0 -19 ports/sysutils/cdrtools-devel/files/patch-conf::configure (dead) 1.2 +0 -17 ports/sysutils/cdrtools-devel/files/patch-mkisofs::mkisofs.c (dead) 1.2 +0 -17 ports/sysutils/cdrtools-devel/files/patch-readcd::readcd.c (dead) 1.4 +1 -1 ports/sysutils/cdrtools-devel/pkg-descr.mkisofs 1.13 +1 -0 ports/sysutils/cdrtools-devel/pkg-plist 1.44 +1 -2 ports/sysutils/mkisofs-devel/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 06: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 DE91516A4CE; Mon, 12 Apr 2004 06:09:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC55743D54; Mon, 12 Apr 2004 06:09:18 -0700 (PDT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CD9IGe032314; Mon, 12 Apr 2004 06:09:18 -0700 (PDT) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CD9IAK032313; Mon, 12 Apr 2004 06:09:18 -0700 (PDT) (envelope-from tjr) Message-Id: <200404121309.i3CD9IAK032313@repoman.freebsd.org> From: "Tim J. Robbins" Date: Mon, 12 Apr 2004 06:09:18 -0700 (PDT) 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 big5.c euc.c gb18030.c gb2312.c gbk.c mskanji.c utf2.c utf8.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 13:09:19 -0000 tjr 2004/04/12 06:09:18 PDT FreeBSD src repository Modified files: lib/libc/locale big5.c euc.c gb18030.c gb2312.c gbk.c mskanji.c utf2.c utf8.c Log: Perform some basic validation of multibyte conversion state objects. Revision Changes Path 1.12 +15 -2 src/lib/libc/locale/big5.c 1.16 +14 -2 src/lib/libc/locale/euc.c 1.5 +14 -2 src/lib/libc/locale/gb18030.c 1.7 +15 -2 src/lib/libc/locale/gb2312.c 1.7 +15 -2 src/lib/libc/locale/gbk.c 1.13 +15 -2 src/lib/libc/locale/mskanji.c 1.12 +14 -2 src/lib/libc/locale/utf2.c 1.7 +14 -2 src/lib/libc/locale/utf8.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 06:13: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 702EB16A4CE; Mon, 12 Apr 2004 06:13:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5643643D2D; Mon, 12 Apr 2004 06:13:18 -0700 (PDT) (envelope-from netchild@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CDDHGe034178; Mon, 12 Apr 2004 06:13:17 -0700 (PDT) (envelope-from netchild@repoman.freebsd.org) Received: (from netchild@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CDDHvp034177; Mon, 12 Apr 2004 06:13:17 -0700 (PDT) (envelope-from netchild) Message-Id: <200404121313.i3CDDHvp034177@repoman.freebsd.org> From: Alexander Leidinger Date: Mon, 12 Apr 2004 06:13:17 -0700 (PDT) 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: Mon, 12 Apr 2004 13:13:18 -0000 netchild 2004/04/12 06:13:17 PDT FreeBSD ports repository Modified files: . LEGAL Log: Add distfiles of lang/compaq-cc. The port is already marked as restricted. Submitted by: Marius Strobl Revision Changes Path 1.346 +4 -1 ports/LEGAL From owner-cvs-all@FreeBSD.ORG Mon Apr 12 06:20: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 6520B16A4CE; Mon, 12 Apr 2004 06:20:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C5F643D3F; Mon, 12 Apr 2004 06:20:18 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CDKIGe034418; Mon, 12 Apr 2004 06:20:18 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CDKHbF034417; Mon, 12 Apr 2004 06:20:17 -0700 (PDT) (envelope-from thierry) Message-Id: <200404121320.i3CDKHbF034417@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 12 Apr 2004 06:20:17 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/benchmarks/scimark2 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, 12 Apr 2004 13:20:18 -0000 thierry 2004/04/12 06:20:17 PDT FreeBSD ports repository Modified files: benchmarks/scimark2 Makefile Log: Since the recent updates, Jikes does not compile this program any more. Approved by: pav (mentor). Revision Changes Path 1.2 +1 -0 ports/benchmarks/scimark2/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 06: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 13C2D16A4CE; Mon, 12 Apr 2004 06:21:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEAC243D2F; Mon, 12 Apr 2004 06:21:47 -0700 (PDT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CDLlGe035605; Mon, 12 Apr 2004 06:21:47 -0700 (PDT) (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CDLlQT035601; Mon, 12 Apr 2004 06:21:47 -0700 (PDT) (envelope-from kensmith) Message-Id: <200404121321.i3CDLlQT035601@repoman.freebsd.org> From: Ken Smith Date: Mon, 12 Apr 2004 06:21:47 -0700 (PDT) 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 menus.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 13:21:48 -0000 kensmith 2004/04/12 06:21:47 PDT FreeBSD src repository Modified files: usr.sbin/sysinstall menus.c Log: Sync list of FTP sites with current reality. MFC after: 1 day Approved by: rwatson (mentor) Revision Changes Path 1.389 +10 -12 src/usr.sbin/sysinstall/menus.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 06:27: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 83D7F16A4CE; Mon, 12 Apr 2004 06:27:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B8F143D55; Mon, 12 Apr 2004 06:27:47 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CDRlGe036387; Mon, 12 Apr 2004 06:27:47 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CDRlfN036386; Mon, 12 Apr 2004 06:27:47 -0700 (PDT) (envelope-from krion) Message-Id: <200404121327.i3CDRlfN036386@repoman.freebsd.org> From: Kirill Ponomarew Date: Mon, 12 Apr 2004 06:27:47 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/squid 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, 12 Apr 2004 13:27:47 -0000 krion 2004/04/12 06:27:47 PDT FreeBSD ports repository Modified files: www/squid Makefile distinfo Log: - Integrate a vendor patch that fixes an assertion caused by truncated DNS replies (squid bug #962) - Bump PORTREVISION PR: ports/65458 Submitted by: maintainer Revision Changes Path 1.119 +3 -2 ports/www/squid/Makefile 1.85 +2 -0 ports/www/squid/distinfo From owner-cvs-all@FreeBSD.ORG Mon Apr 12 06:34: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 E393C16A4CE; Mon, 12 Apr 2004 06:34:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9CF343D49; Mon, 12 Apr 2004 06:34:12 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CDYCGe038330; Mon, 12 Apr 2004 06:34:12 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CDYCkl038329; Mon, 12 Apr 2004 06:34:12 -0700 (PDT) (envelope-from krion) Message-Id: <200404121334.i3CDYCkl038329@repoman.freebsd.org> From: Kirill Ponomarew Date: Mon, 12 Apr 2004 06:34:12 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/gbottler 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, 12 Apr 2004 13:34:13 -0000 krion 2004/04/12 06:34:12 PDT FreeBSD ports repository Modified files: games/gbottler Makefile distinfo pkg-plist Log: - Update to version 0.0.3 PR: ports/65459 Submitted by: maintainer Revision Changes Path 1.2 +1 -1 ports/games/gbottler/Makefile 1.2 +2 -2 ports/games/gbottler/distinfo 1.2 +3 -3 ports/games/gbottler/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 07:04: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 3F1C316A4CE; Mon, 12 Apr 2004 07:04:37 -0700 (PDT) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1061C43D45; Mon, 12 Apr 2004 07:04:36 -0700 (PDT) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.12.11/8.12.10) with ESMTP id i3CE4YqF072581; Mon, 12 Apr 2004 18:04:34 +0400 (MSD) (envelope-from marck@rinet.ru) Date: Mon, 12 Apr 2004 18:04:34 +0400 (MSD) From: Dmitry Morozovsky To: Mark Murray In-Reply-To: <200404120913.i3C9DOkd075451@repoman.freebsd.org> Message-ID: <20040412180334.M70282@woozle.rinet.ru> References: <200404120913.i3C9DOkd075451@repoman.freebsd.org> X-NCC-RegID: ru.rinet 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/dev/random randomdev.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 14:04:37 -0000 On Mon, 12 Apr 2004, Mark Murray wrote: MM> markm 2004/04/12 02:13:24 PDT MM> MM> FreeBSD src repository MM> MM> Modified files: MM> sys/dev/random randomdev.c MM> Log: MM> Fix "sleeping without a mutex" panic. Should it fix panic described in my message to -current? Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ From owner-cvs-all@FreeBSD.ORG Mon Apr 12 07:11: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 B392C16A4CE; Mon, 12 Apr 2004 07:11:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99EAF43D1D; Mon, 12 Apr 2004 07:11:41 -0700 (PDT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CEBfGe046922; Mon, 12 Apr 2004 07:11:41 -0700 (PDT) (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CEBftf046915; Mon, 12 Apr 2004 07:11:41 -0700 (PDT) (envelope-from den) Message-Id: <200404121411.i3CEBftf046915@repoman.freebsd.org> From: Denis Peplin Date: Mon, 12 Apr 2004 07:11:40 -0700 (PDT) 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 chapters.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: Mon, 12 Apr 2004 14:11:41 -0000 den 2004/04/12 07:11:40 PDT FreeBSD doc repository Modified files: ru_RU.KOI8-R/books/handbook chapters.ent Log: Uncomment entity for eresources Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.4 +2 -2 doc/ru_RU.KOI8-R/books/handbook/chapters.ent From owner-cvs-all@FreeBSD.ORG Mon Apr 12 07:12: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 9994B16A4CE; Mon, 12 Apr 2004 07:12:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F5A743D53; Mon, 12 Apr 2004 07:12:30 -0700 (PDT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CECUGe047651; Mon, 12 Apr 2004 07:12:30 -0700 (PDT) (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CECUo6047650; Mon, 12 Apr 2004 07:12:30 -0700 (PDT) (envelope-from den) Message-Id: <200404121412.i3CECUo6047650@repoman.freebsd.org> From: Denis Peplin Date: Mon, 12 Apr 2004 07:12:30 -0700 (PDT) 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/eresources 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, 12 Apr 2004 14:12:30 -0000 den 2004/04/12 07:12:30 PDT FreeBSD doc repository Modified files: ru_RU.KOI8-R/books/handbook/eresources chapter.sgml Log: New translation: sync with English 1.138 Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.3 +1616 -6 doc/ru_RU.KOI8-R/books/handbook/eresources/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Apr 12 07: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 7D35C16A4CE; Mon, 12 Apr 2004 07:32:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6173C43D41; Mon, 12 Apr 2004 07:32:02 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CEW2Ge051478; Mon, 12 Apr 2004 07:32:02 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CEW1IG051465; Mon, 12 Apr 2004 07:32:01 -0700 (PDT) (envelope-from linimon) Message-Id: <200404121432.i3CEW1IG051465@repoman.freebsd.org> From: Mark Linimon Date: Mon, 12 Apr 2004 07:32:01 -0700 (PDT) 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, 12 Apr 2004 14:32:02 -0000 linimon 2004/04/12 07:32:01 PDT FreeBSD ports repository Modified files: textproc/xerces-j Makefile Log: Fix subtle bug in a plist substitution rule that left an unnecessary leading slash in certain filenames (only affected 'make package'). Prompted by: bento via kris Revision Changes Path 1.12 +1 -1 ports/textproc/xerces-j/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 07:35: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 2E67416A4CE; Mon, 12 Apr 2004 07:35:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14A6243D45; Mon, 12 Apr 2004 07:35:34 -0700 (PDT) (envelope-from pb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CEZXGe052016; Mon, 12 Apr 2004 07:35:33 -0700 (PDT) (envelope-from pb@repoman.freebsd.org) Received: (from pb@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CEZXtw052015; Mon, 12 Apr 2004 07:35:33 -0700 (PDT) (envelope-from pb) Message-Id: <200404121435.i3CEZXtw052015@repoman.freebsd.org> From: Pierre Beyssac Date: Mon, 12 Apr 2004 07:35:33 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 14:35:34 -0000 pb 2004/04/12 07:35:33 PDT FreeBSD ports repository Modified files: multimedia/kino Makefile Log: Fix dependencies: - use USE_GNOME as suggested by adamw - remove libICE (implied by USE_X11) Bump PORTREVISION. Revision Changes Path 1.2 +2 -3 ports/multimedia/kino/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 07:40: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 9453216A4CE; Mon, 12 Apr 2004 07:40:11 -0700 (PDT) Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.157.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B31F43D5D; Mon, 12 Apr 2004 07:40:06 -0700 (PDT) (envelope-from mark@grondar.org) Received: from storm.FreeBSD.org.uk (Ugrondar@localhost [127.0.0.1]) i3CEe4a5054259; Mon, 12 Apr 2004 15:40:05 +0100 (BST) (envelope-from mark@grondar.org) Received: (from Ugrondar@localhost)i3CEe4Lx054258; Mon, 12 Apr 2004 15:40:04 +0100 (BST) (envelope-from mark@grondar.org) X-Authentication-Warning: storm.FreeBSD.org.uk: Ugrondar set sender to mark@grondar.org using -f Received: from grondar.org (localhost [127.0.0.1])i3CEZZIn087110; Mon, 12 Apr 2004 15:35:36 +0100 (BST) (envelope-from mark@grondar.org) From: Mark Murray Message-Id: <200404121435.i3CEZZIn087110@grimreaper.grondar.org> To: Dmitry Morozovsky In-Reply-To: Your message of "Mon, 12 Apr 2004 18:04:34 +0400." <20040412180334.M70282@woozle.rinet.ru> Date: Mon, 12 Apr 2004 15:35:35 +0100 Sender: mark@grondar.org X-Spam-Score: 4 (****) FROM_NO_LOWER,MSGID_FROM_MTA_SHORT X-Scanned-By: MIMEDefang 2.39 cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/random randomdev.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 14:40:11 -0000 Dmitry Morozovsky writes: > MM> Fix "sleeping without a mutex" panic. > > Should it fix panic described in my message to -current? Yes. I was able to reproduce the panic, so this fix is good. M -- Mark Murray iumop ap!sdn w,I idlaH From owner-cvs-all@FreeBSD.ORG Mon Apr 12 07:58: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 10C2916A4CE; Mon, 12 Apr 2004 07:58:03 -0700 (PDT) Received: from woozle.rinet.ru (woozle.rinet.ru [195.54.192.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F24943D3F; Mon, 12 Apr 2004 07:58:02 -0700 (PDT) (envelope-from marck@rinet.ru) Received: from localhost (localhost [127.0.0.1]) by woozle.rinet.ru (8.12.11/8.12.10) with ESMTP id i3CEw10e073799; Mon, 12 Apr 2004 18:58:01 +0400 (MSD) (envelope-from marck@rinet.ru) Date: Mon, 12 Apr 2004 18:58:01 +0400 (MSD) From: Dmitry Morozovsky To: Mark Murray In-Reply-To: <200404121435.i3CEZZIn087110@grimreaper.grondar.org> Message-ID: <20040412185740.M70282@woozle.rinet.ru> References: <200404121435.i3CEZZIn087110@grimreaper.grondar.org> X-NCC-RegID: ru.rinet 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/dev/random randomdev.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 14:58:03 -0000 On Mon, 12 Apr 2004, Mark Murray wrote: MM> > MM> Fix "sleeping without a mutex" panic. MM> > MM> > Should it fix panic described in my message to -current? MM> MM> Yes. I was able to reproduce the panic, so this fix is good. Glad to hear ;-) Thanks a lot! Sincerely, D.Marck [DM5020, MCK-RIPE, DM3-RIPN] ------------------------------------------------------------------------ *** Dmitry Morozovsky --- D.Marck --- Wild Woozle --- marck@rinet.ru *** ------------------------------------------------------------------------ From owner-cvs-all@FreeBSD.ORG Mon Apr 12 07:59: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 C4F3D16A4CF; Mon, 12 Apr 2004 07:59:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA0CF43D1D; Mon, 12 Apr 2004 07:59:26 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CExQGe056131; Mon, 12 Apr 2004 07:59:26 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CExPtb056130; Mon, 12 Apr 2004 07:59:25 -0700 (PDT) (envelope-from ru) Message-Id: <200404121459.i3CExPtb056130@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 12 Apr 2004 07:59:25 -0700 (PDT) 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_var.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, 12 Apr 2004 14:59:26 -0000 ru 2004/04/12 07:59:25 PDT FreeBSD src repository Modified files: sys/net if_var.h Log: Count outgoing link-level broadcast packets in if_omcasts. I'm not sure this is completely correct but at least this is consistent with the accounting of incoming broadcasts. PR: kern/65273 Submitted by: David J Duchscher Revision Changes Path 1.69 +1 -1 src/sys/net/if_var.h From owner-cvs-all@FreeBSD.ORG Mon Apr 12 08:00: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 9608516A4CE; Mon, 12 Apr 2004 08:00:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B51343D54; Mon, 12 Apr 2004 08:00:49 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CF0mGe056278; Mon, 12 Apr 2004 08:00:48 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CF0mk5056277; Mon, 12 Apr 2004 08:00:48 -0700 (PDT) (envelope-from ru) Message-Id: <200404121500.i3CF0mk5056277@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 12 Apr 2004 08:00:48 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/netstat 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: Mon, 12 Apr 2004 15:00:49 -0000 ru 2004/04/12 08:00:48 PDT FreeBSD src repository Modified files: usr.bin/netstat if.c Log: Show link-level multicast packet counters with the -a option. Revision Changes Path 1.57 +14 -2 src/usr.bin/netstat/if.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 08: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 E300E16A4CE; Mon, 12 Apr 2004 08:01:07 -0700 (PDT) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64F3043D1D; Mon, 12 Apr 2004 08:01:07 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.10/8.12.9) with ESMTP id i3CF16kj088188; Mon, 12 Apr 2004 09:01:06 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Mon, 12 Apr 2004 09:01:57 -0600 (MDT) Message-Id: <20040412.090157.36023793.imp@bsdimp.com> To: mark@grondar.org From: "M. Warner Losh" In-Reply-To: <200404120939.i3C9d5In084576@grimreaper.grondar.org> References: <200404110913.i3B9DhqZ016664@repoman.freebsd.org> <200404120939.i3C9d5In084576@grimreaper.grondar.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: nyan@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/random probe.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 15:01:08 -0000 In message: <200404120939.i3C9d5In084576@grimreaper.grondar.org> Mark Murray writes: : Takahashi Yoshihiro writes: : > Modified files: : > sys/dev/random probe.c : > Log: : > Fix pc98 build. : : Hi. : : Will PC98's never have Nehemiah-class CPUs? Only if you can plug them into classic CPU sockets... I don't think you can, therefore there never will be one. Warner From owner-cvs-all@FreeBSD.ORG Mon Apr 12 08:07: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 2A80116A4CE; Mon, 12 Apr 2004 08:07:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0ECB243D31; Mon, 12 Apr 2004 08:07:04 -0700 (PDT) (envelope-from sergei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CF73Ge059196; Mon, 12 Apr 2004 08:07:03 -0700 (PDT) (envelope-from sergei@repoman.freebsd.org) Received: (from sergei@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CF73Tv059195; Mon, 12 Apr 2004 08:07:03 -0700 (PDT) (envelope-from sergei) Message-Id: <200404121507.i3CF73Tv059195@repoman.freebsd.org> From: Sergei Kolobov Date: Mon, 12 Apr 2004 08:07:03 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/getmail 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, 12 Apr 2004 15:07:04 -0000 sergei 2004/04/12 08:07:03 PDT FreeBSD ports repository Modified files: mail/getmail Makefile distinfo Log: - Update to 3.2.2 Prompted by: Nuno Teixeira Revision Changes Path 1.25 +1 -2 ports/mail/getmail/Makefile 1.19 +2 -2 ports/mail/getmail/distinfo From owner-cvs-all@FreeBSD.ORG Mon Apr 12 08:13: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 660E816A4CE; Mon, 12 Apr 2004 08:13:06 -0700 (PDT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 099FF43D31; Mon, 12 Apr 2004 08:13:06 -0700 (PDT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.31; FreeBSD) id 1BD37R-000NS0-KZ; Mon, 12 Apr 2004 17:13:05 +0200 Date: Mon, 12 Apr 2004 17:13:05 +0200 From: Kirill Ponomarew To: Pierre Beyssac Message-ID: <20040412151305.GA89703@voodoo.oberon.net> Mail-Followup-To: Kirill Ponomarew , Pierre Beyssac , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200404121435.i3CEZXtw052015@repoman.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: <200404121435.i3CEZXtw052015@repoman.freebsd.org> X-NCC-Regid: de.oberon Sender: Kirill Ponomarew cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/multimedia/kino 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, 12 Apr 2004 15:13:06 -0000 --J/dobhs11T7y2rNN Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Mon, Apr 12, 2004 at 07:35:33AM -0700, Pierre Beyssac wrote: > pb 2004/04/12 07:35:33 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > multimedia/kino Makefile=20 > Log: > Fix dependencies: > - use USE_GNOME as suggested by adamw > - remove libICE (implied by USE_X11) > Bump PORTREVISION. > | LIB_DEPENDS=3D dv.4:${PORTSDIR}/multimedia/libdv \ > | - glade-2.0:${PORTSDIR}/devel/libglade2 \ > | - gnomeui-2.600:${PORTSDIR}/x11-toolkits/libgnomeui \ > | - ICE.6:${PORTSDIR}/x11/libICE \ > | intl.6:${PORTSDIR}/devel/gettext \ > | Magick.6:${PORTSDIR}/graphics/ImageMagick \ > | xml2.5:${PORTSDIR}/textproc/libxml2 > | +USE_GNOME=3D libgnomeui Using libxml2 with USE_GNOME and USE_GETTEXT=3Dyes would be also better. -Kirill --J/dobhs11T7y2rNN Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAerIBQC1G6a60JuURAk/5AKDcUBNbiloK4gS4kNZmyiq379kR7gCbBH72 qiApfyju95rskg4gLdSfSko= =3iYG -----END PGP SIGNATURE----- --J/dobhs11T7y2rNN-- From owner-cvs-all@FreeBSD.ORG Mon Apr 12 08:34: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 6426916A4CE; Mon, 12 Apr 2004 08:34:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4706443D45; Mon, 12 Apr 2004 08:34:54 -0700 (PDT) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CFYsGe065091; Mon, 12 Apr 2004 08:34:54 -0700 (PDT) (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CFYrpF065090; Mon, 12 Apr 2004 08:34:54 -0700 (PDT) (envelope-from deischen) Message-Id: <200404121534.i3CFYrpF065090@repoman.freebsd.org> From: Daniel Eischen Date: Mon, 12 Apr 2004 08:34:53 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/xmcd 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, 12 Apr 2004 15:34:54 -0000 deischen 2004/04/12 08:34:53 PDT FreeBSD ports repository Modified files: audio/xmcd Makefile Log: Add a BUILD_DEPENDS for audio/flac. Reported by: Helge Oldach Revision Changes Path 1.44 +1 -0 ports/audio/xmcd/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 08: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 593D316A4CE; Mon, 12 Apr 2004 08:47:34 -0700 (PDT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1200843D46; Mon, 12 Apr 2004 08:47:34 -0700 (PDT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.31; FreeBSD) id 1BD3en-000NdH-Hb; Mon, 12 Apr 2004 17:47:33 +0200 Date: Mon, 12 Apr 2004 17:47:33 +0200 From: Kirill Ponomarew To: Daniel Eischen Message-ID: <20040412154733.GC89703@voodoo.oberon.net> Mail-Followup-To: Kirill Ponomarew , Daniel Eischen , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200404121534.i3CFYrpF065090@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WfZ7S8PLGjBY9Voh" Content-Disposition: inline In-Reply-To: <200404121534.i3CFYrpF065090@repoman.freebsd.org> X-NCC-Regid: de.oberon Sender: Kirill Ponomarew cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/audio/xmcd 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, 12 Apr 2004 15:47:34 -0000 --WfZ7S8PLGjBY9Voh Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Mon, Apr 12, 2004 at 08:34:53AM -0700, Daniel Eischen wrote: > deischen 2004/04/12 08:34:53 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > audio/xmcd Makefile=20 > Log: > Add a BUILD_DEPENDS for audio/flac. > =20 > Reported by: Helge Oldach > | =20 > | +BUILD_DEPENDS+=3D flac:${PORTSDIR}/audio/flac Looks like you used space instead of tab. -Kirill --WfZ7S8PLGjBY9Voh Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAeroVQC1G6a60JuURAhMfAKCG40hQtBDqNUFz7mYkBSsTfNxwXACgw5Ks ZeXmLC5ygEfdh7n2+EjZPrQ= =btDF -----END PGP SIGNATURE----- --WfZ7S8PLGjBY9Voh-- From owner-cvs-all@FreeBSD.ORG Mon Apr 12 08: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 4028D16A4CE; Mon, 12 Apr 2004 08:49:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2318743D48; Mon, 12 Apr 2004 08:49:52 -0700 (PDT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CFnpGe073280; Mon, 12 Apr 2004 08:49:51 -0700 (PDT) (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CFnppY073279; Mon, 12 Apr 2004 08:49:51 -0700 (PDT) (envelope-from bland) Message-Id: <200404121549.i3CFnppY073279@repoman.freebsd.org> From: Alexander Nedotsukov Date: Mon, 12 Apr 2004 08:49:51 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/gdm2 Makefile ports/x11/gdm2/files patch-gui_gdmsetup.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 15:49:52 -0000 bland 2004/04/12 08:49:51 PDT FreeBSD ports repository Modified files: x11/gdm2 Makefile Added files: x11/gdm2/files patch-gui_gdmsetup.c Log: Fix gdm themes installation. Our chown(8) doesn't likes . as user/group separator. PR: 65460 Submitted by: ceri Revision Changes Path 1.82 +1 -1 ports/x11/gdm2/Makefile 1.1 +11 -0 ports/x11/gdm2/files/patch-gui_gdmsetup.c (new) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 08:51:39 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 F34DD16A4CE; Mon, 12 Apr 2004 08:51:38 -0700 (PDT) Received: from localhost (green@localhost [127.0.0.1]) by green.homeunix.org (8.12.11/8.12.11) with ESMTP id i3CFpck3051628; Mon, 12 Apr 2004 11:51:38 -0400 (EDT) (envelope-from green@green.homeunix.org) Message-Id: <200404121551.i3CFpck3051628@green.homeunix.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Alexander Leidinger In-Reply-To: Message from Alexander Leidinger <200404121306.i3CD6l61032201@repoman.freebsd.org> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 12 Apr 2004 11:51:37 -0400 Sender: green@green.homeunix.org cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/sysutils/cdrtools-devel Makefile distinfo pkg-descr.mkisofs pkg-plist ports/sysutils/cdrtools-devel/files patch-ai patch-bb patch-cdda2wav::interface.c patch-cdda2wav::ioctl.c patch-cdda2wav::mycdrom.h patch-cdda2wav::setuid.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 15:51:39 -0000 FWIW, now that it's updated to 2.01a27, you can very easily add the "DVD hack": +PATCH_SITES= http://people.mandrakesoft.com/~warly/files/cdrtools/archives/ +PATCHFILES= ${DISTNAME}-dvd.patch.bz2 +PATCH_DIST_STRIP= -p1 ... +MD5 (cdrtools-2.01a27-dvd.patch.bz2) = de1bdde2b406c27798e21b04345a9a0a +SIZE (cdrtools-2.01a27-dvd.patch.bz2) = 12484 I haven't tried everything with it yet, but being that I could at least burn a DVD+RW at 4x with ATAPICAM it seems like something we should at least make optional... -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-all@FreeBSD.ORG Mon Apr 12 08:54: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 5158916A4CE; Mon, 12 Apr 2004 08:54:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BB4A43D46; Mon, 12 Apr 2004 08:54:57 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CFsuGe075247; Mon, 12 Apr 2004 08:54:56 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CFsusb075246; Mon, 12 Apr 2004 08:54:56 -0700 (PDT) (envelope-from thierry) Message-Id: <200404121554.i3CFsusb075246@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 12 Apr 2004 08:54:56 -0700 (PDT) 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/hourglass Makefile distinfo pkg-descr ports/sysutils/hourglass/files 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: Mon, 12 Apr 2004 15:54:57 -0000 thierry 2004/04/12 08:54:56 PDT FreeBSD ports repository Modified files: sysutils Makefile Added files: sysutils/hourglass Makefile distinfo pkg-descr sysutils/hourglass/files patch-configure patch-src::Makefile.in Log: Add hourglass 1.0.0, a real-time application useful to learn how CPU scheduling works. PR: 64635 Submitted by: Olivier Tharan Approved by: pav (mentor). Revision Changes Path 1.518 +1 -0 ports/sysutils/Makefile 1.1 +45 -0 ports/sysutils/hourglass/Makefile (new) 1.1 +2 -0 ports/sysutils/hourglass/distinfo (new) 1.1 +31 -0 ports/sysutils/hourglass/files/patch-configure (new) 1.1 +11 -0 ports/sysutils/hourglass/files/patch-src::Makefile.in (new) 1.1 +14 -0 ports/sysutils/hourglass/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 08:55: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 0347416A4CE; Mon, 12 Apr 2004 08:55:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB4D543D2D; Mon, 12 Apr 2004 08:55:49 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CFtnGe075341; Mon, 12 Apr 2004 08:55:49 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CFtnv5075340; Mon, 12 Apr 2004 08:55:49 -0700 (PDT) (envelope-from thierry) Message-Id: <200404121555.i3CFtnv5075340@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 12 Apr 2004 08:55:49 -0700 (PDT) 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, 12 Apr 2004 15:55:50 -0000 thierry 2004/04/12 08:55:49 PDT FreeBSD ports repository Modified files: . modules Log: hourglass --> ports/sysutils/hourglass Revision Changes Path 1.9888 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Apr 12 08:56: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 2545716A4CE; Mon, 12 Apr 2004 08:56:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08F2D43D49; Mon, 12 Apr 2004 08:56:07 -0700 (PDT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CFu6Ge075376; Mon, 12 Apr 2004 08:56:06 -0700 (PDT) (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CFu6He075375; Mon, 12 Apr 2004 08:56:06 -0700 (PDT) (envelope-from cperciva) Message-Id: <200404121556.i3CFu6He075375@repoman.freebsd.org> From: Colin Percival Date: Mon, 12 Apr 2004 08:56:06 -0700 (PDT) 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, 12 Apr 2004 15:56:07 -0000 cperciva 2004/04/12 08:56:06 PDT FreeBSD src repository Modified files: sys/kern kern_sig.c Log: stop() no longer needs sched_lock held; in fact, holding sched_lock causes a LOR against sleepq. Fix the comment, and fix ptracestop() to pick up sched_lock after stop() rather than before. Reported by: Scott Sipe Reviewed by: rwatson, jhb Revision Changes Path 1.276 +2 -3 src/sys/kern/kern_sig.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 09: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 B3E4616A4CE; Mon, 12 Apr 2004 09:09:21 -0700 (PDT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D86D43D46; Mon, 12 Apr 2004 09:09:21 -0700 (PDT) (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 999305482B; Mon, 12 Apr 2004 11:09:11 -0500 (CDT) Received: by madman.celabo.org (Postfix, from userid 1001) id 3F7DC6D455; Mon, 12 Apr 2004 11:09:11 -0500 (CDT) Date: Mon, 12 Apr 2004 11:09:11 -0500 From: "Jacques A. Vidrine" To: src-committers@FreeBSD.org Message-ID: <20040412160911.GA58392@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , src-committers@FreeBSD.org, Nate Lawson , Mark Murray , cvs-all@FreeBSD.org, cvs-src@FreeBSD.org References: <20040409154725.72CE116A56F@hub.freebsd.org> <20040409103618.A48723@root.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040409103618.A48723@root.org> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i cc: cvs-src@FreeBSD.org cc: Mark Murray cc: cvs-all@FreeBSD.org cc: Nate Lawson Subject: Re: cvs commit: src/sys/modules/random Makefile src/sys/dev/random harvest.c hash.c hash.h nehemiah.c nehemiah.h probe.c randomdev.c randomdev.h randomdev_soft.c randomdev_soft.h yar X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 16:09:22 -0000 I'm a bit late here (catching up on mail after travel), but I think the rough consensus already reflects how I feel about it: we should not disconnect the PRNG. We should treat any hardware RNGs just as we do other sources of entropy, process and mix it in our PRNG. Cheers, -- Jacques Vidrine / nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org From owner-cvs-all@FreeBSD.ORG Mon Apr 12 09:20: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 170C316A4CE; Mon, 12 Apr 2004 09:20:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 105A743D62; Mon, 12 Apr 2004 09:20:47 -0700 (PDT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CGKkGe080553; Mon, 12 Apr 2004 09:20:46 -0700 (PDT) (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CGKklN080552; Mon, 12 Apr 2004 09:20:46 -0700 (PDT) (envelope-from bland) Message-Id: <200404121620.i3CGKklN080552@repoman.freebsd.org> From: Alexander Nedotsukov Date: Mon, 12 Apr 2004 09:20:46 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/inkscape Makefile distinfopatch-configure patch-src::remove-last.h patch-src::svg::ftos.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, 12 Apr 2004 16:20:47 -0000 bland 2004/04/12 09:20:46 PDT FreeBSD ports repository Modified files: graphics/inkscape Makefile distinfo graphics/inkscape/files patch-configure Added files: graphics/inkscape/files extra-patch-old_gcc_bugs patch-src::livarot::Path.cpp patch-src::livarot::PathOutline.cpp patch-src::remove-last.h Removed files: graphics/inkscape/files patch-src::svg::ftos.cpp Log: - Update to 0.38.1 - Workaround internal compiller error on -STABLE [1] - More build patches incl. fix for build with antiqe STL on -STABLE Reported by: Lee Harr [1] Revision Changes Path 1.11 +5 -1 ports/graphics/inkscape/Makefile 1.5 +2 -2 ports/graphics/inkscape/distinfo 1.1 +116 -0 ports/graphics/inkscape/files/extra-patch-old_gcc_bugs (new) 1.4 +1 -1 ports/graphics/inkscape/files/patch-configure 1.1 +10 -0 ports/graphics/inkscape/files/patch-src::livarot::Path.cpp (new) 1.1 +10 -0 ports/graphics/inkscape/files/patch-src::livarot::PathOutline.cpp (new) 1.1 +19 -0 ports/graphics/inkscape/files/patch-src::remove-last.h (new) 1.2 +0 -11 ports/graphics/inkscape/files/patch-src::svg::ftos.cpp (dead) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 09: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 6684616A4CE; Mon, 12 Apr 2004 09:22:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60CD543D4C; Mon, 12 Apr 2004 09:22:18 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CGMIGe082188; Mon, 12 Apr 2004 09:22:18 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CGMI2n082187; Mon, 12 Apr 2004 09:22:18 -0700 (PDT) (envelope-from nectar) Message-Id: <200404121622.i3CGMI2n082187@repoman.freebsd.org> From: Jacques Vidrine Date: Mon, 12 Apr 2004 09:22:18 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/im-ja Makefile distinfo pkg-plist ports/japanese/im-ja/files patch-configure patch-src%Makefile.in patch-src%xim-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: Mon, 12 Apr 2004 16:22:18 -0000 nectar 2004/04/12 09:22:18 PDT FreeBSD ports repository Modified files: japanese/im-ja Makefile distinfo pkg-plist japanese/im-ja/files patch-configure patch-src%Makefile.in Added files: japanese/im-ja/files patch-src%xim%Makefile.in Removed files: japanese/im-ja/files patch-src%xim-handler.c patch-src%xim-ic.c Log: Update 0.9 -> 1.0 Revision Changes Path 1.10 +24 -15 ports/japanese/im-ja/Makefile 1.5 +2 -2 ports/japanese/im-ja/distinfo 1.2 +38 -4 ports/japanese/im-ja/files/patch-configure 1.4 +15 -41 ports/japanese/im-ja/files/patch-src%Makefile.in 1.1 +11 -0 ports/japanese/im-ja/files/patch-src%xim%Makefile.in (new) 1.2 +0 -15 ports/japanese/im-ja/files/patch-src%xim-handler.c (dead) 1.2 +0 -16 ports/japanese/im-ja/files/patch-src%xim-ic.c (dead) 1.4 +1 -1 ports/japanese/im-ja/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 09:45: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 9130516A4CE; Mon, 12 Apr 2004 09:45:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 757A543D4C; Mon, 12 Apr 2004 09:45:41 -0700 (PDT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CGjfGe086534; Mon, 12 Apr 2004 09:45:41 -0700 (PDT) (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CGjf9J086533; Mon, 12 Apr 2004 09:45:41 -0700 (PDT) (envelope-from lofi) Message-Id: <200404121645.i3CGjf9J086533@repoman.freebsd.org> From: Michael Nottebrock Date: Mon, 12 Apr 2004 09:45:41 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/samba-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: Mon, 12 Apr 2004 16:45:41 -0000 lofi 2004/04/12 09:45:41 PDT FreeBSD ports repository Modified files: net/samba-devel Makefile Log: Change krb detection and dependencies again. Submitted by: Maintainer Revision Changes Path 1.116 +8 -7 ports/net/samba-devel/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 10: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 A069316A4CE; Mon, 12 Apr 2004 10:25:13 -0700 (PDT) Received: from newtrinity.zeist.de (newtrinity.zeist.de [217.24.217.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A7AE43D48; Mon, 12 Apr 2004 10:25:13 -0700 (PDT) (envelope-from marius@newtrinity.zeist.de) Received: from newtrinity.zeist.de (localhost [127.0.0.1]) i3CHPBOY047241; Mon, 12 Apr 2004 19:25:11 +0200 (CEST) (envelope-from marius@newtrinity.zeist.de) Received: (from marius@localhost) by newtrinity.zeist.de (8.12.10/8.12.10/Submit) id i3CHP5QY047240; Mon, 12 Apr 2004 19:25:05 +0200 (CEST) (envelope-from marius) Date: Mon, 12 Apr 2004 19:25:05 +0200 From: Marius Strobl To: "Brian F. Feldman" Message-ID: <20040412192505.A93652@newtrinity.zeist.de> References: <200404121551.i3CFpck3051628@green.homeunix.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200404121551.i3CFpck3051628@green.homeunix.org>; from green@freebsd.org on Mon, Apr 12, 2004 at 11:51:37AM -0400 X-AntiVirus: checked by AntiVir Milter 1.1-beta; AVE 6.25.0.2; VDF 6.25.0.10 (host: newtrinity.zeist.de) cc: cvs-ports@freebsd.org cc: Alexander Leidinger cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/sysutils/cdrtools-devel Makefile distinfo pkg-descr.mkisofs pkg-plist ports/sysutils/cdrtools-devel/files patch-ai patch-bb patch-cdda2wav::interface.c patch-cdda2wav::ioctl.c patch-cdda2wav::mycdrom.h patch-cdda2wav::setuid.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 17:25:13 -0000 On Mon, Apr 12, 2004 at 11:51:37AM -0400, Brian F. Feldman wrote: > FWIW, now that it's updated to 2.01a27, you can very easily add the "DVD > hack": > > +PATCH_SITES= http://people.mandrakesoft.com/~warly/files/cdrtools/archives/ > +PATCHFILES= ${DISTNAME}-dvd.patch.bz2 > +PATCH_DIST_STRIP= -p1 > ... > +MD5 (cdrtools-2.01a27-dvd.patch.bz2) = de1bdde2b406c27798e21b04345a9a0a > +SIZE (cdrtools-2.01a27-dvd.patch.bz2) = 12484 > > I haven't tried everything with it yet, but being that I could at least burn > a DVD+RW at 4x with ATAPICAM it seems like something we should at least make > optional... > No, tried that in the past (see Makefile revision 1.50 - 1.52) and didn't work well (from the port's point of view). a) There's not always a DVD-patch for the current alpha snapshot available. Have a look at the above URL, there were no patches for e.g. 2.01a17 - 2.01a19 and 2.01a21 - 2.01a24. This means if the patch for the previous version no longer applies and there's no updated patch available (which happens often) I have to either delay a port update or remove the DVD-patch-option until a new version of the patch is available or create my own patch - all no good solutions. b) The quality of the DVD-patch is bad, there are obvious bugs (tried to fix some via an EXTRA_PATCHES while the port had an option for the DVD-patch). c) Patching cdrecord means there's absolutely no support for it by its author Joerg Schilling, something I don't want for the port. If you want to write DVDs please use a tool that's written for it, like e.g. burncd(8), cdrecord-ProDVD, dvd+rw-tools or dvdrtools (note that the latter is a fork of cdrecord which violates the GPL according to Joerg Schilling). From owner-cvs-all@FreeBSD.ORG Mon Apr 12 10:47:41 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 187FF16A4CE; Mon, 12 Apr 2004 10:47:41 -0700 (PDT) Received: from localhost (green@localhost [127.0.0.1]) by green.homeunix.org (8.12.11/8.12.11) with ESMTP id i3CHleLS055095; Mon, 12 Apr 2004 13:47:40 -0400 (EDT) (envelope-from green@green.homeunix.org) Message-Id: <200404121747.i3CHleLS055095@green.homeunix.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Marius Strobl In-Reply-To: Message from Marius Strobl <20040412192505.A93652@newtrinity.zeist.de> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 12 Apr 2004 13:47:40 -0400 Sender: green@green.homeunix.org cc: cvs-ports@freebsd.org cc: Alexander Leidinger cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/sysutils/cdrtools-devel Makefile distinfo pkg-descr.mkisofs pkg-plist ports/sysutils/cdrtools-devel/files patch-ai patch-bb patch-cdda2wav::interface.c patch-cdda2wav::ioctl.c patch-cdda2wav::mycdrom.h patch-cdda2wav::setuid.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 17:47:41 -0000 Marius Strobl wrote: > No, tried that in the past (see Makefile revision 1.50 - 1.52) and > didn't work well (from the port's point of view). > > a) There's not always a DVD-patch for the current alpha snapshot > available. Have a look at the above URL, there were no patches > for e.g. 2.01a17 - 2.01a19 and 2.01a21 - 2.01a24. This means if > the patch for the previous version no longer applies and there's > no updated patch available (which happens often) I have to either > delay a port update or remove the DVD-patch-option until a new > version of the patch is available or create my own patch - all > no good solutions. > b) The quality of the DVD-patch is bad, there are obvious bugs > (tried to fix some via an EXTRA_PATCHES while the port had an > option for the DVD-patch). > c) Patching cdrecord means there's absolutely no support for it by > its author Joerg Schilling, something I don't want for the port. > > If you want to write DVDs please use a tool that's written for it, > like e.g. burncd(8), cdrecord-ProDVD, dvd+rw-tools or dvdrtools > (note that the latter is a fork of cdrecord which violates the GPL > according to Joerg Schilling). That's the problem -- the only options are burncd(8) and dvd+rw-tools. Of those, dvd+rw-tools only works on DVD+RW, burncd cannot correctly format my DVD+RW (only can be done correctly from the SCSI emulation layer with cdrecord-dvdhack or dvd+rw-tools), and the other two are completely unacceptable in that they are unavailable in source/crippleware or unavailable period, it seems, in the case of dvdrtools. As to the quality being bad, did you submit the DVD-hack patches back to the author? I don't think any of these things are really show-stoppers, just that it would be appropriate to make a non-slave-port that doesn't call itself cdrecord or cdrecord-devel. I guess it depends on whether there are users that would like to use this program on FreeBSD. Why in the world is cdrecord-ProDVD binary-only, anyway? -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-all@FreeBSD.ORG Mon Apr 12 10: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 4A09616A4CE; Mon, 12 Apr 2004 10:57:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C6B443D31; Mon, 12 Apr 2004 10:57:52 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CHvqGe001635; Mon, 12 Apr 2004 10:57:52 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CHvpIv001634; Mon, 12 Apr 2004 10:57:51 -0700 (PDT) (envelope-from ru) Message-Id: <200404121757.i3CHvpIv001634@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 12 Apr 2004 10:57:51 -0700 (PDT) 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 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: Mon, 12 Apr 2004 17:57:52 -0000 ru 2004/04/12 10:57:51 PDT FreeBSD src repository Modified files: usr.bin/make parse.c Log: Added the new .warning directive. Submitted by: Cyrille Lefevre Revision Changes Path 1.54 +33 -3 src/usr.bin/make/parse.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 11:00: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 3F1EC16A4CE; Mon, 12 Apr 2004 11:00:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22DAE43D39; Mon, 12 Apr 2004 11:00:55 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CI0sGe001815; Mon, 12 Apr 2004 11:00:54 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CI0spa001814; Mon, 12 Apr 2004 11:00:54 -0700 (PDT) (envelope-from ru) Message-Id: <200404121800.i3CI0spa001814@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 12 Apr 2004 11:00:54 -0700 (PDT) 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, 12 Apr 2004 18:00:55 -0000 ru 2004/04/12 11:00:54 PDT FreeBSD src repository Modified files: usr.bin/make make.1 Log: Document the new .warning directive. Revision Changes Path 1.67 +8 -2 src/usr.bin/make/make.1 From owner-cvs-all@FreeBSD.ORG Mon Apr 12 11:03: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 730F216A4CE; Mon, 12 Apr 2004 11:03:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 557B343D2D; Mon, 12 Apr 2004 11:03:32 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CI3WGe004526; Mon, 12 Apr 2004 11:03:32 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CI3VWr004525; Mon, 12 Apr 2004 11:03:31 -0700 (PDT) (envelope-from nectar) Message-Id: <200404121803.i3CI3VWr004525@repoman.freebsd.org> From: Jacques Vidrine Date: Mon, 12 Apr 2004 11:03:31 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/heimdal Makefile pkg-plist pkg-plist.com_err X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 18:03:32 -0000 nectar 2004/04/12 11:03:31 PDT FreeBSD ports repository Modified files: security/heimdal Makefile pkg-plist Added files: security/heimdal pkg-plist.com_err Log: Fix packaging: com_err will only be built and installed on a few systems where compile_et is not modern enough. Revision Changes Path 1.63 +3 -0 ports/security/heimdal/Makefile 1.30 +0 -6 ports/security/heimdal/pkg-plist 1.1 +6 -0 ports/security/heimdal/pkg-plist.com_err (new) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 11: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 D032116A4CE; Mon, 12 Apr 2004 11:06:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B305743D31; Mon, 12 Apr 2004 11:06:07 -0700 (PDT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CI67Ge004663; Mon, 12 Apr 2004 11:06:07 -0700 (PDT) (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CI67di004662; Mon, 12 Apr 2004 11:06:07 -0700 (PDT) (envelope-from kientzle) Message-Id: <200404121806.i3CI67di004662@repoman.freebsd.org> From: Tim Kientzle Date: Mon, 12 Apr 2004 11:06:07 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 18:06:08 -0000 kientzle 2004/04/12 11:06:07 PDT FreeBSD src repository Modified files: usr.bin/tar Makefile Log: Style fixes Pointed out by: bde Revision Changes Path 1.3 +2 -3 src/usr.bin/tar/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 11:11: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 1A38816A4CE; Mon, 12 Apr 2004 11:11:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F119D43D41; Mon, 12 Apr 2004 11:11:00 -0700 (PDT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CIB0Ge005559; Mon, 12 Apr 2004 11:11:00 -0700 (PDT) (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CIB0hf005558; Mon, 12 Apr 2004 11:11:00 -0700 (PDT) (envelope-from brooks) Message-Id: <200404121811.i3CIB0hf005558@repoman.freebsd.org> From: Brooks Davis Date: Mon, 12 Apr 2004 11:11:00 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/rc.d adjkerntz random X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 18:11:01 -0000 brooks 2004/04/12 11:11:00 PDT FreeBSD src repository Modified files: etc/rc.d adjkerntz random Log: Catch up with diskless split "diskless" is no longer provided. Suggested by: cperciva Revision Changes Path 1.4 +1 -1 src/etc/rc.d/adjkerntz 1.6 +1 -1 src/etc/rc.d/random From owner-cvs-all@FreeBSD.ORG Mon Apr 12 11: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 9E16716A4CE; Mon, 12 Apr 2004 11:13:34 -0700 (PDT) Received: from voodoo.oberon.net (voodoo.oberon.net [212.118.165.100]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5948343D49; Mon, 12 Apr 2004 11:13:34 -0700 (PDT) (envelope-from krion@voodoo.oberon.net) Received: from krion by voodoo.oberon.net with local (Exim 4.31; FreeBSD) id 1BD5w5-000Nx0-SZ; Mon, 12 Apr 2004 20:13:33 +0200 Date: Mon, 12 Apr 2004 20:13:33 +0200 From: Kirill Ponomarew To: Jacques Vidrine Message-ID: <20040412181333.GD89703@voodoo.oberon.net> Mail-Followup-To: Kirill Ponomarew , Jacques Vidrine , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200404121803.i3CI3VWr004525@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="2iBwrppp/7QCDedR" Content-Disposition: inline In-Reply-To: <200404121803.i3CI3VWr004525@repoman.freebsd.org> X-NCC-Regid: de.oberon Sender: Kirill Ponomarew cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/security/heimdal Makefile pkg-plist pkg-plist.com_err X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 18:13:34 -0000 --2iBwrppp/7QCDedR Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Hi, On Mon, Apr 12, 2004 at 11:03:31AM -0700, Jacques Vidrine wrote: > nectar 2004/04/12 11:03:31 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > security/heimdal Makefile pkg-plist=20 > Added files: > security/heimdal pkg-plist.com_err=20 > Log: > Fix packaging: com_err will only be built and installed on a few systems > where compile_et is not modern enough. Bump PORTREVISION ? -Kirill --2iBwrppp/7QCDedR Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAetxNQC1G6a60JuURAh47AKC4rbBmxS98H3Ze1jmlD4fxJydDzwCg8szz RrWJhdQxuMQS92oy/40rq88= =kzRu -----END PGP SIGNATURE----- --2iBwrppp/7QCDedR-- From owner-cvs-all@FreeBSD.ORG Mon Apr 12 11: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 9B44B16A4CE; Mon, 12 Apr 2004 11:15:29 -0700 (PDT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5570243D5A; Mon, 12 Apr 2004 11:15:29 -0700 (PDT) (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 CE58254846; Mon, 12 Apr 2004 13:15:28 -0500 (CDT) Received: by madman.celabo.org (Postfix, from userid 1001) id 7F4CD6D455; Mon, 12 Apr 2004 13:15:28 -0500 (CDT) Date: Mon, 12 Apr 2004 13:15:28 -0500 From: "Jacques A. Vidrine" To: Kirill Ponomarew , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040412181528.GB32810@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Kirill Ponomarew , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200404121803.i3CI3VWr004525@repoman.freebsd.org> <20040412181333.GD89703@voodoo.oberon.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040412181333.GD89703@voodoo.oberon.net> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i Subject: Re: cvs commit: ports/security/heimdal Makefile pkg-plist pkg-plist.com_err X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 18:15:29 -0000 On Mon, Apr 12, 2004 at 08:13:33PM +0200, Kirill Ponomarew wrote: > Hi, > > On Mon, Apr 12, 2004 at 11:03:31AM -0700, Jacques Vidrine wrote: > > nectar 2004/04/12 11:03:31 PDT > > > > FreeBSD ports repository > > > > Modified files: > > security/heimdal Makefile pkg-plist > > Added files: > > security/heimdal pkg-plist.com_err > > Log: > > Fix packaging: com_err will only be built and installed on a few systems > > where compile_et is not modern enough. > > Bump PORTREVISION ? No, I did not. This fixes packaging only, and only for -CURRENT users within an approximately 1 week window. Cheers, -- Jacques Vidrine / nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org From owner-cvs-all@FreeBSD.ORG Mon Apr 12 11:20:50 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 C2FEA16A4CE; Mon, 12 Apr 2004 11:20:49 -0700 (PDT) Received: from localhost (green@localhost [127.0.0.1]) by green.homeunix.org (8.12.11/8.12.11) with ESMTP id i3CIKnJc061577; Mon, 12 Apr 2004 14:20:49 -0400 (EDT) (envelope-from green@green.homeunix.org) Message-Id: <200404121820.i3CIKnJc061577@green.homeunix.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Marius Strobl In-Reply-To: Message from Marius Strobl <20040412192505.A93652@newtrinity.zeist.de> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Mon, 12 Apr 2004 14:20:48 -0400 Sender: green@green.homeunix.org cc: cvs-ports@freebsd.org cc: Alexander Leidinger cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/sysutils/cdrtools-devel Makefile distinfo pkg-descr.mkisofs pkg-plist ports/sysutils/cdrtools-devel/files patch-ai patch-bb patch-cdda2wav::interface.c patch-cdda2wav::ioctl.c patch-cdda2wav::mycdrom.h patch-cdda2wav::setuid.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 18:20:50 -0000 My fault about the misconceptions of dvd+rw-tools. I didn't realize it was a complete replacement for cdrecord's SCSI burning and also implemented support for all of DVD[+-]RW?. As long as it works in lieu of cdrecord, it should be all we need, then. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-all@FreeBSD.ORG Mon Apr 12 11: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 F265716A4CE; Mon, 12 Apr 2004 11:21:53 -0700 (PDT) Received: from newtrinity.zeist.de (newtrinity.zeist.de [217.24.217.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4411743D3F; Mon, 12 Apr 2004 11:21:53 -0700 (PDT) (envelope-from marius@newtrinity.zeist.de) Received: from newtrinity.zeist.de (localhost [127.0.0.1]) i3CILqOY048382; Mon, 12 Apr 2004 20:21:52 +0200 (CEST) (envelope-from marius@newtrinity.zeist.de) Received: (from marius@localhost) by newtrinity.zeist.de (8.12.10/8.12.10/Submit) id i3CILlgh048381; Mon, 12 Apr 2004 20:21:47 +0200 (CEST) (envelope-from marius) Date: Mon, 12 Apr 2004 20:21:47 +0200 From: Marius Strobl To: "Brian F. Feldman" Message-ID: <20040412202147.B93652@newtrinity.zeist.de> References: <200404121747.i3CHleLS055095@green.homeunix.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200404121747.i3CHleLS055095@green.homeunix.org>; from green@freebsd.org on Mon, Apr 12, 2004 at 01:47:40PM -0400 X-AntiVirus: checked by AntiVir Milter 1.1-beta; AVE 6.25.0.2; VDF 6.25.0.10 (host: newtrinity.zeist.de) cc: cvs-ports@freebsd.org cc: Alexander Leidinger cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/sysutils/cdrtools-devel Makefile distinfo pkg-descr.mkisofs pkg-plist ports/sysutils/cdrtools-devel/files patch-ai patch-bb patch-cdda2wav::interface.c patch-cdda2wav::ioctl.c patch-cdda2wav::mycdrom.h patch-cdda2wav::setuid.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 18:21:54 -0000 On Mon, Apr 12, 2004 at 01:47:40PM -0400, Brian F. Feldman wrote: > > As to the quality being bad, did you submit the DVD-hack patches back to the > author? I don't think any of these things are really show-stoppers, just IIRC, I tried to contact him but didn't get an answer. > that it would be appropriate to make a non-slave-port that doesn't call > itself cdrecord or cdrecord-devel. I guess it depends on whether there are > users that would like to use this program on FreeBSD. Why in the world is Feel free to do so, I just don't want to have that DVD-patch(-option) in the cdrecord-devel port. Pav@ probably would be also interested in such a port. FYI, NetBSD has a "cdrtools-ossdvd" port, using yet another DVD-patch. > cdrecord-ProDVD binary-only, anyway? > Well, why is not all sofware open source and free as in beer? From owner-cvs-all@FreeBSD.ORG Mon Apr 12 11:26: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 4EB6F16A4CE; Mon, 12 Apr 2004 11:26:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2744043D45; Mon, 12 Apr 2004 11:26:50 -0700 (PDT) (envelope-from mi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CIQnGe008784; Mon, 12 Apr 2004 11:26:50 -0700 (PDT) (envelope-from mi@repoman.freebsd.org) Received: (from mi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CIQncL008783; Mon, 12 Apr 2004 11:26:49 -0700 (PDT) (envelope-from mi) Message-Id: <200404121826.i3CIQncL008783@repoman.freebsd.org> From: Mikhail Teterin Date: Mon, 12 Apr 2004 11:26:49 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/tcl-neo Makefile ports/devel/tcl-neo/files Makefile.bsd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 18:26:50 -0000 mi 2004/04/12 11:26:49 PDT FreeBSD ports repository Modified files: devel/tcl-neo Makefile devel/tcl-neo/files Makefile.bsd Log: Make the TCL_VER(sion) a knob, rather than hardcoding the 8.3. Default to 8.4 (as TclX does now), thus bump PORTREVISION. Thanks to: kris and the bento cluster Revision Changes Path 1.11 +4 -7 ports/devel/tcl-neo/Makefile 1.3 +4 -2 ports/devel/tcl-neo/files/Makefile.bsd From owner-cvs-all@FreeBSD.ORG Mon Apr 12 11:34: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 DCF9716A4CE; Mon, 12 Apr 2004 11:34:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE78143D2D; Mon, 12 Apr 2004 11:34:49 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CIYnGe010762; Mon, 12 Apr 2004 11:34:49 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CIYnk4010761; Mon, 12 Apr 2004 11:34:49 -0700 (PDT) (envelope-from nectar) Message-Id: <200404121834.i3CIYnk4010761@repoman.freebsd.org> From: Jacques Vidrine Date: Mon, 12 Apr 2004 11:34:49 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/im-ja Makefileports/japanese/im-ja/files patch-intltool-merge.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, 12 Apr 2004 18:34:50 -0000 nectar 2004/04/12 11:34:49 PDT FreeBSD ports repository Modified files: japanese/im-ja Makefile Added files: japanese/im-ja/files patch-intltool-merge.in Log: Perl is required at build time for internationalization. Patch the included intltool-merge script so that it works with older perl. Submitted by: ume Revision Changes Path 1.11 +3 -1 ports/japanese/im-ja/Makefile 1.1 +13 -0 ports/japanese/im-ja/files/patch-intltool-merge.in (new) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 11:37: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 D6D9A16A4CE; Mon, 12 Apr 2004 11:37:52 -0700 (PDT) Received: from abigail.blackend.org (blackend.org [212.11.35.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DA0E43D2F; Mon, 12 Apr 2004 11:37:50 -0700 (PDT) (envelope-from marc@blackend.org) Received: from abigail.blackend.org (localhost [127.0.0.1]) by abigail.blackend.org (8.12.9/8.12.3) with ESMTP id i3CIbPui037891; Mon, 12 Apr 2004 20:37:25 +0200 (CEST) (envelope-from marc@abigail.blackend.org) Received: (from marc@localhost) by abigail.blackend.org (8.12.9/8.12.3/Submit) id i3CIbNg8037890; Mon, 12 Apr 2004 20:37:23 +0200 (CEST) (envelope-from marc) Date: Mon, 12 Apr 2004 20:37:23 +0200 From: Marc Fonvieille To: "Brian F. Feldman" Message-ID: <20040412183723.GA29867@abigail.blackend.org> References: <20040412192505.A93652@newtrinity.zeist.de> <200404121747.i3CHleLS055095@green.homeunix.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404121747.i3CHleLS055095@green.homeunix.org> User-Agent: Mutt/1.4.2.1i X-Useless-Header: blackend.org X-Operating-System: FreeBSD 4.8-STABLE cc: cvs-ports@freebsd.org cc: ports-committers@freebsd.org cc: Alexander Leidinger cc: cvs-all@freebsd.org cc: Marius Strobl Subject: Re: cvs commit: ports/sysutils/cdrtools-devel Makefile distinfo pkg-descr.mkisofs pkg-plist ports/sysutils/cdrtools-devel/files patch-ai patch-bb patch-cdda2wav::interface.c patch-cdda2wav::ioctl.c patch-cdda2wav::mycdrom.h patch-cdda2wav::setuid.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 18:37:53 -0000 On Mon, Apr 12, 2004 at 01:47:40PM -0400, Brian F. Feldman wrote: > > That's the problem -- the only options are burncd(8) and dvd+rw-tools. Of > those, dvd+rw-tools only works on DVD+RW, Please add "with my own burner" :) dvd+rw-tools are, maybe for the moment, the only good tools to burn DVDs, and they handle *all* DVD media types. Andy Polyakov (the dvd+rw-tools author) is doing a fantastic job with his program and is easily reachable for any issue. If you have a problem with you burner, please contact the cdwrite mailing list (http://lists.debian.org/cdwrite/), it will help to improve the tools and the support under FreeBSD. > burncd cannot correctly format my > DVD+RW (only can be done correctly from the SCSI emulation layer with > cdrecord-dvdhack or dvd+rw-tools), and the other two are completely > unacceptable in that they are unavailable in source/crippleware or > unavailable period, it seems, in the case of dvdrtools. > > As to the quality being bad, did you submit the DVD-hack patches back to the > author? I don't think any of these things are really show-stoppers, just > that it would be appropriate to make a non-slave-port that doesn't call > itself cdrecord or cdrecord-devel. I guess it depends on whether there are > users that would like to use this program on FreeBSD. Why in the world is > cdrecord-ProDVD binary-only, anyway? > I see one big issue with the patch: you will need a new patch with each new cdrecord version. And why the author would accept a patch when he provides a binary-only version of cdrecord-ProDVD? Marc From owner-cvs-all@FreeBSD.ORG Mon Apr 12 12:23: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 4016C16A4CE; Mon, 12 Apr 2004 12:23:18 -0700 (PDT) Received: from mail.pcnet.com (mail.pcnet.com [204.213.232.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A7D343D5D; Mon, 12 Apr 2004 12:23:17 -0700 (PDT) (envelope-from eischen@vigrid.com) Received: from mail.pcnet.com (mail.pcnet.com [204.213.232.4]) by mail.pcnet.com (8.12.10/8.12.1) with ESMTP id i3CJNGtf019173; Mon, 12 Apr 2004 15:23:16 -0400 (EDT) Date: Mon, 12 Apr 2004 15:23:16 -0400 (EDT) From: Daniel Eischen X-Sender: eischen@pcnet5.pcnet.com To: Kirill Ponomarew In-Reply-To: <20040412154733.GC89703@voodoo.oberon.net> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/audio/xmcd 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, 12 Apr 2004 19:23:18 -0000 On Mon, 12 Apr 2004, Kirill Ponomarew wrote: > Hi, > > On Mon, Apr 12, 2004 at 08:34:53AM -0700, Daniel Eischen wrote: > > deischen 2004/04/12 08:34:53 PDT > > > > FreeBSD ports repository > > > > Modified files: > > audio/xmcd Makefile > > Log: > > Add a BUILD_DEPENDS for audio/flac. > > > > Reported by: Helge Oldach > > | > > | +BUILD_DEPENDS+= flac:${PORTSDIR}/audio/flac > > Looks like you used space instead of tab. Oops, portlint -a didn't pick it up either. -- Dan Eischen From owner-cvs-all@FreeBSD.ORG Mon Apr 12 12:52: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 5C9D016A4CE; Mon, 12 Apr 2004 12:52:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EC7543D39; Mon, 12 Apr 2004 12:52:45 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CJqiGe033736; Mon, 12 Apr 2004 12:52:45 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CJqivn033735; Mon, 12 Apr 2004 12:52:44 -0700 (PDT) (envelope-from des) Message-Id: <200404121952.i3CJqivn033735@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Mon, 12 Apr 2004 12:52:44 -0700 (PDT) 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: Mon, 12 Apr 2004 19:52:45 -0000 des 2004/04/12 12:52:44 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) usr.bin/fetch fetch.c Log: MFC: (1.66) workaround for servers that ignore ranges in chunked mode. Approved by: re (scottl) Revision Changes Path 1.10.2.23 +1 -1 src/usr.bin/fetch/fetch.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 13:05: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 5803C16A4CE; Mon, 12 Apr 2004 13:05:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BBD943D31; Mon, 12 Apr 2004 13:05:12 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CK5CGe037257; Mon, 12 Apr 2004 13:05:12 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CK5BFH037256; Mon, 12 Apr 2004 13:05:11 -0700 (PDT) (envelope-from ru) Message-Id: <200404122005.i3CK5BFH037256@repoman.freebsd.org> From: Ruslan Ermilov Date: Mon, 12 Apr 2004 13:05:11 -0700 (PDT) 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 suff.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 20:05:12 -0000 ru 2004/04/12 13:05:11 PDT FreeBSD src repository Modified files: usr.bin/make suff.c Log: The .DEFAULT target with no commands caused a null pointer dereference. PR: bin/63405 Obtained from: NetBSD Revision Changes Path 1.29 +6 -1 src/usr.bin/make/suff.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 13: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 2842816A4CE; Mon, 12 Apr 2004 13:13:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 020E043D82; Mon, 12 Apr 2004 13:13:52 -0700 (PDT) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CKDqGe039253; Mon, 12 Apr 2004 13:13:52 -0700 (PDT) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CKDqsx039252; Mon, 12 Apr 2004 13:13:52 -0700 (PDT) (envelope-from phantom) Message-Id: <200404122013.i3CKDqsx039252@repoman.freebsd.org> From: Alexey Zelkin Date: Mon, 12 Apr 2004 13:13:51 -0700 (PDT) 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/articles Makefile.incdoc/ja_JP.eucJP/books 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, 12 Apr 2004 20:13:53 -0000 phantom 2004/04/12 13:13:51 PDT FreeBSD doc repository Modified files: ja_JP.eucJP/articles Makefile.inc ja_JP.eucJP/books Makefile.inc Log: Use 'ja_JP.eucJP' name for referencing japanese directory while declaring DESTDIR. It should not hurt anything, but unbreaks new 'make package' which is using 'realpath' and therefore gets lost in middle of process. Noticed by: simon Revision Changes Path 1.5 +1 -1 doc/ja_JP.eucJP/articles/Makefile.inc 1.7 +1 -1 doc/ja_JP.eucJP/books/Makefile.inc From owner-cvs-all@FreeBSD.ORG Mon Apr 12 13: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 8E5DA16A4CE; Mon, 12 Apr 2004 13:19:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C69343D5F; Mon, 12 Apr 2004 13:19:33 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CKJXGe039460; Mon, 12 Apr 2004 13:19:33 -0700 (PDT) (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CKJXF1039459; Mon, 12 Apr 2004 13:19:33 -0700 (PDT) (envelope-from green) Message-Id: <200404122019.i3CKJXF1039459@repoman.freebsd.org> From: Brian Feldman Date: Mon, 12 Apr 2004 13:19:33 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/dump dump.8 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: Mon, 12 Apr 2004 20:19:33 -0000 green 2004/04/12 13:19:33 PDT FreeBSD src repository Modified files: sbin/dump dump.8 main.c Log: Improve the warnings for dump -L and do not bother doing the snapshot if it is specified for read-only filesystems. Submitted by: Jason Young PR: 46672 Revision Changes Path 1.64 +1 -0 src/sbin/dump/dump.8 1.58 +10 -3 src/sbin/dump/main.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 13: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 CD0E016A4CE; Mon, 12 Apr 2004 13:21:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B108F43D3F; Mon, 12 Apr 2004 13:21:32 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CKLWGe040517; Mon, 12 Apr 2004 13:21:32 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CKLW5Q040516; Mon, 12 Apr 2004 13:21:32 -0700 (PDT) (envelope-from hrs) Message-Id: <200404122021.i3CKLW5Q040516@repoman.freebsd.org> From: Hiroki Sato Date: Mon, 12 Apr 2004 13:21:32 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/4.10R 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: Mon, 12 Apr 2004 20:21:33 -0000 hrs 2004/04/12 13:21:32 PDT FreeBSD doc repository Modified files: en/releases/4.10R schedule.sgml Log: Update doc/ slush and tagging schedule. Revision Changes Path 1.6 +4 -4 www/en/releases/4.10R/schedule.sgml From owner-cvs-all@FreeBSD.ORG Mon Apr 12 13:24: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 DCAE216A4CE; Mon, 12 Apr 2004 13:24:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C082243D3F; Mon, 12 Apr 2004 13:24:30 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CKOUGe041349; Mon, 12 Apr 2004 13:24:30 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CKOUjg041348; Mon, 12 Apr 2004 13:24:30 -0700 (PDT) (envelope-from luigi) Message-Id: <200404122024.i3CKOUjg041348@repoman.freebsd.org> From: Luigi Rizzo Date: Mon, 12 Apr 2004 13:24:30 -0700 (PDT) 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: Mon, 12 Apr 2004 20:24:31 -0000 luigi 2004/04/12 13:24:30 PDT FreeBSD src repository Modified files: sys/net route.c Log: in rtinit(), remove one useless variable, and move a few others within the block where they are used. Revision Changes Path 1.96 +9 -9 src/sys/net/route.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 13:25: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 2EE8916A4CE; Mon, 12 Apr 2004 13:25:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 115B543D5D; Mon, 12 Apr 2004 13:25:51 -0700 (PDT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CKPoGe041518; Mon, 12 Apr 2004 13:25:50 -0700 (PDT) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CKPoLD041517; Mon, 12 Apr 2004 13:25:50 -0700 (PDT) (envelope-from glewis) Message-Id: <200404122025.i3CKPoLD041517@repoman.freebsd.org> From: Greg Lewis Date: Mon, 12 Apr 2004 13:25:50 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/archivers/libarchive Makefile distinfo patch-archive_platform.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, 12 Apr 2004 20:25:51 -0000 glewis 2004/04/12 13:25:50 PDT FreeBSD ports repository Modified files: archivers/libarchive Makefile distinfo Added files: archivers/libarchive/files patch-archive_platform.h Removed files: archivers/libarchive/files patch-Makefile Log: . Update to the 2004-04-08 snapshot. Revision Changes Path 1.2 +4 -5 ports/archivers/libarchive/Makefile 1.2 +2 -2 ports/archivers/libarchive/distinfo 1.2 +0 -10 ports/archivers/libarchive/files/patch-Makefile (dead) 1.1 +14 -0 ports/archivers/libarchive/files/patch-archive_platform.h (new) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 13:26: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 0C4B316A4E3; Mon, 12 Apr 2004 13:26:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF8C743D1D; Mon, 12 Apr 2004 13:26:01 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CKQ1Ge041553; Mon, 12 Apr 2004 13:26:01 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CKQ147041552; Mon, 12 Apr 2004 13:26:01 -0700 (PDT) (envelope-from luigi) Message-Id: <200404122026.i3CKQ147041552@repoman.freebsd.org> From: Luigi Rizzo Date: Mon, 12 Apr 2004 13:26:01 -0700 (PDT) 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: Mon, 12 Apr 2004 20:26:03 -0000 luigi 2004/04/12 13:26:01 PDT FreeBSD src repository Modified files: sys/net rtsock.c Log: remove an almost-duplicate piece of code by setting the loop limits appropriately. Revision Changes Path 1.99 +10 -16 src/sys/net/rtsock.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 13: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 35B4D16A5B1; Mon, 12 Apr 2004 13:54:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 17B0F43D41; Mon, 12 Apr 2004 13:54:06 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CKs5Ge047802; Mon, 12 Apr 2004 13:54:05 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CKs4XO047801; Mon, 12 Apr 2004 13:54:04 -0700 (PDT) (envelope-from thierry) Message-Id: <200404122054.i3CKs4XO047801@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 12 Apr 2004 13:54:04 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/wily 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: Mon, 12 Apr 2004 20:54:06 -0000 thierry 2004/04/12 13:54:04 PDT FreeBSD ports repository Modified files: editors/wily Makefile pkg-message pkg-plist Log: use DOCSDIR + some cleaning. PR: ports/65412 Submitted by: maintainer Approved by: pav (mentor) Revision Changes Path 1.20 +20 -16 ports/editors/wily/Makefile 1.2 +1 -1 ports/editors/wily/pkg-message 1.4 +7 -34 ports/editors/wily/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 13:56: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 ED09316A4F2; Mon, 12 Apr 2004 13:56:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E6D1343D41; Mon, 12 Apr 2004 13:56:37 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CKubGe047933; Mon, 12 Apr 2004 13:56:37 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CKuZN7047932; Mon, 12 Apr 2004 13:56:35 -0700 (PDT) (envelope-from imp) Message-Id: <200404122056.i3CKuZN7047932@repoman.freebsd.org> From: Warner Losh Date: Mon, 12 Apr 2004 13:56:34 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pccard pccard_cis.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 20:56:38 -0000 imp 2004/04/12 13:56:34 PDT FreeBSD src repository Modified files: sys/dev/pccard pccard_cis.c Log: Improve reading of CIS cards: (1) Align to 64k for the CIS. Some cards don't like it when we aren't aligned to a 64k boundary. I can't find anything in the standard that requires this, but I have 1/2 dozen cards that won't work at all unless I enable this. (2) Sleep 1s before scanning the CIS. This may be a nop, but has little harm. (3) The CIS can be up to 4k in some weird, odd-ball edge cases. Since we have limiters for when that's not the case, it does no harm to increase it to 4k. #1 was submitted, in a different form, by Carlos Velasco. Revision Changes Path 1.28 +10 -3 src/sys/dev/pccard/pccard_cis.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14: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 05C4416A4D2; Mon, 12 Apr 2004 14:02:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F140A43D49; Mon, 12 Apr 2004 14:02:10 -0700 (PDT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CL2AGe049374; Mon, 12 Apr 2004 14:02:10 -0700 (PDT) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CL2AOk049367; Mon, 12 Apr 2004 14:02:10 -0700 (PDT) (envelope-from glewis) Message-Id: <200404122102.i3CL2AOk049367@repoman.freebsd.org> From: Greg Lewis Date: Mon, 12 Apr 2004 14:02:10 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/nethack32 Makefile pkg-deinstall pkg-plist ports/games/nethack32/files patch-ac patch-af patch-ag patch-dgn_comp.6 patch-dlb.6 patch-lev_comp.6 patch-nethack.6 patch-recover.6 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: Mon, 12 Apr 2004 21:02:11 -0000 glewis 2004/04/12 14:02:10 PDT FreeBSD ports repository Modified files: games/nethack32 Makefile pkg-plist games/nethack32/files patch-ac patch-af patch-ag Added files: games/nethack32/files patch-dgn_comp.6 patch-dlb.6 patch-lev_comp.6 patch-nethack.6 patch-recover.6 pkg-deinstall.in Removed files: games/nethack32 pkg-deinstall Log: . Make this port installable in parallel with the other nethack versions. The approach is slightly different from that taken by nethack34 and prevents the manual page conflicts produced by that approach. . While here, clean up the Makefile a little w.r.t. order and clean up the packing list to not produce warnings when the log or record are removed. With this change, you can have all nethack versions from ports installed at once. However, this isn't as pleasant as it could be, and I'd like to address this in the future by merging some changes from here into nethack33 (in particular) and nethack34. Revision Changes Path 1.39 +48 -7 ports/games/nethack32/Makefile 1.4 +5 -4 ports/games/nethack32/files/patch-ac 1.5 +18 -1 ports/games/nethack32/files/patch-af 1.5 +11 -6 ports/games/nethack32/files/patch-ag 1.1 +13 -0 ports/games/nethack32/files/patch-dgn_comp.6 (new) 1.1 +13 -0 ports/games/nethack32/files/patch-dlb.6 (new) 1.1 +13 -0 ports/games/nethack32/files/patch-lev_comp.6 (new) 1.1 +40 -0 ports/games/nethack32/files/patch-nethack.6 (new) 1.1 +22 -0 ports/games/nethack32/files/patch-recover.6 (new) 1.1 +16 -0 ports/games/nethack32/files/pkg-deinstall.in (new) 1.2 +0 -16 ports/games/nethack32/pkg-deinstall (dead) 1.16 +9 -5 ports/games/nethack32/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14:04: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 35D0D16A4D4; Mon, 12 Apr 2004 14:04:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1834943D1F; Mon, 12 Apr 2004 14:04:55 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CL4sGe051028; Mon, 12 Apr 2004 14:04:54 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CL4sOt051027; Mon, 12 Apr 2004 14:04:54 -0700 (PDT) (envelope-from imp) Message-Id: <200404122104.i3CL4sOt051027@repoman.freebsd.org> From: Warner Losh Date: Mon, 12 Apr 2004 14:04:54 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pccbb pccbb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 21:04:55 -0000 imp 2004/04/12 14:04:54 PDT FreeBSD src repository Modified files: sys/dev/pccbb pccbb.c Log: MFp4: Alignment for pccards should also be treated in a similar way that we tread it for cardbus cards. Remove bogus debugs while I'm here. # This is also necessary to make the CIS reading work. Submitted by: Carlos Velasco Revision Changes Path 1.107 +15 -4 src/sys/dev/pccbb/pccbb.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14: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 8906616A785; Mon, 12 Apr 2004 14:05:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F227B43D53; Mon, 12 Apr 2004 14:05:11 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CL5BGe051088; Mon, 12 Apr 2004 14:05:11 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CL5BF5051087; Mon, 12 Apr 2004 14:05:11 -0700 (PDT) (envelope-from pav) Message-Id: <200404122105.i3CL5BF5051087@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 12 Apr 2004 14:05:11 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/comms/obexapp Makefile distinfo ports/comms/obexapp/files patch-Makefile patch-main.c patch-server.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 21:05:49 -0000 pav 2004/04/12 14:05:11 PDT FreeBSD ports repository Modified files: comms/obexapp Makefile distinfo comms/obexapp/files patch-Makefile Removed files: comms/obexapp/files patch-main.c patch-server.c Log: - Update to 1.2 PR: ports/65449 Submitted by: Guido Falsi (maintainer) Revision Changes Path 1.3 +1 -2 ports/comms/obexapp/Makefile 1.2 +2 -2 ports/comms/obexapp/distinfo 1.2 +3 -3 ports/comms/obexapp/files/patch-Makefile 1.2 +0 -11 ports/comms/obexapp/files/patch-main.c (dead) 1.2 +0 -25 ports/comms/obexapp/files/patch-server.c (dead) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14:35: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 EE47616A4CE; Mon, 12 Apr 2004 14:35:21 -0700 (PDT) Received: from salmon.maths.tcd.ie (salmon.maths.tcd.ie [134.226.81.11]) by mx1.FreeBSD.org (Postfix) with SMTP id B864F43D5F; Mon, 12 Apr 2004 14:35:20 -0700 (PDT) (envelope-from dwmalone@maths.tcd.ie) Received: from walton.maths.tcd.ie by salmon.maths.tcd.ie with SMTP id ; 12 Apr 2004 22:35:19 +0100 (BST) To: richardcoleman@mindspring.com In-reply-to: Your message of "Mon, 12 Apr 2004 08:07:43 EDT." <407A868F.8040108@mindspring.com> X-Request-Do: Date: Mon, 12 Apr 2004 22:35:16 +0100 From: David Malone Message-ID: <200404122235.aa56194@salmon.maths.tcd.ie> cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: Mark Murray cc: Nate Lawson Subject: Re: cvs commit: src/sys/modules/random Makefile src/sys/dev/random harvest.c hash.c hash.h nehemiah.c nehemiah.h probe.c randomdev.c randomdev.h randomdev_soft.c randomdev_soft.h yar X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 21:35:22 -0000 > I think the old /dev/random caused more problems than it solved. Most > apps just used /dev/urandom to avoid all the end-user questions about > the blocking. I largely agree. > And the beauty of the Yarrow PRNG is that as long as you have enough > initial entropy to get started, you can pull as many bytes as you want > and still remain cryptographically strong (within some very high limit > of like 2^120 bytes before the next re-keying). It is still no good for generating keys that have more unpredictable bits than Yarrow's internal state, unless you can be sure that it has reseeded. For example, the Yarrow paper notes that there is no point using Yarrow-160 for generating 256 bit block cipher keys and that using it for things like one time pads are right out. David. From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14:43: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 326F416A4CE; Mon, 12 Apr 2004 14:43:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1417143D1F; Mon, 12 Apr 2004 14:43:05 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CLh4Ge059197; Mon, 12 Apr 2004 14:43:04 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CLh42B059196; Mon, 12 Apr 2004 14:43:04 -0700 (PDT) (envelope-from pav) Message-Id: <200404122143.i3CLh42B059196@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 12 Apr 2004 14:43:04 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/txt2html 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: Mon, 12 Apr 2004 21:43:05 -0000 pav 2004/04/12 14:43:04 PDT FreeBSD ports repository Modified files: textproc/txt2html Makefile distinfo pkg-descr pkg-plist Removed files: textproc/txt2html pkg-message Log: - Update to 2.23 - Drop maintainership PR: ports/65427 Submitted by: Don Croyle (maintainer) Revision Changes Path 1.11 +19 -24 ports/textproc/txt2html/Makefile 1.5 +2 -2 ports/textproc/txt2html/distinfo 1.6 +3 -2 ports/textproc/txt2html/pkg-descr 1.2 +0 -3 ports/textproc/txt2html/pkg-message (dead) 1.4 +5 -8 ports/textproc/txt2html/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14:47: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 66B3016A4CE; Mon, 12 Apr 2004 14:47:03 -0700 (PDT) Received: from critter.freebsd.dk (critter.freebsd.dk [212.242.86.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4D7C43D31; Mon, 12 Apr 2004 14:47:02 -0700 (PDT) (envelope-from phk@phk.freebsd.dk) Received: from critter.freebsd.dk (localhost [127.0.0.1]) by critter.freebsd.dk (8.12.11/8.12.11) with ESMTP id i3CLkot6005476; Mon, 12 Apr 2004 23:46:50 +0200 (CEST) (envelope-from phk@phk.freebsd.dk) To: David Malone From: "Poul-Henning Kamp" In-Reply-To: Your message of "Mon, 12 Apr 2004 22:35:16 BST." <200404122235.aa56194@salmon.maths.tcd.ie> Date: Mon, 12 Apr 2004 23:46:50 +0200 Message-ID: <5475.1081806410@critter.freebsd.dk> cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: richardcoleman@mindspring.com cc: Mark Murray cc: Nate Lawson Subject: Re: cvs commit: src/sys/modules/random Makefile src/sys/dev/random harvest.c hash.c hash.h nehemiah.c nehemiah.h probe.c randomdev.c randomdev.h randomdev_soft.c randomdev_soft.h yar X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 21:47:03 -0000 In message <200404122235.aa56194@salmon.maths.tcd.ie>, David Malone writes: >It is still no good for generating keys that have more unpredictable >bits than Yarrow's internal state, unless you can be sure that it >has reseeded. For example, the Yarrow paper notes that there is no >point using Yarrow-160 for generating 256 bit block cipher keys and >that using it for things like one time pads are right out. Given that I'm one of the largest consumers of random bits in the kernel (in GBDE), I would like to chime in with a few observations: In most of cryptography, it is not about making things absolutely secure (which is impossible), it is about making things secure enough. Typically a good criteria for this is to pinpoint another vastly cheaper attack strategy. Even with the very limited randomness we provide to yarrow with the normal setup, any attacker who is able to manipulate or predict the random bits you get/got, would be in a position to inflict so much more harm on you in other ways that he would not care about your random bits. Still, we have to be weary of systematic errors, both in Yarrow, but more so in the output from RNG HW because otherwise it may not remain so. I therefore think that we should retain a crypto/yarrow afterburner on all random sources, but it may make sense to have offer different grades of random bits for performance reasons. -- 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 Apr 12 14:47: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 3ECCE16A4CE; Mon, 12 Apr 2004 14:47:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2206143D54; Mon, 12 Apr 2004 14:47:21 -0700 (PDT) (envelope-from gj@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CLlKGe059404; Mon, 12 Apr 2004 14:47:20 -0700 (PDT) (envelope-from gj@repoman.freebsd.org) Received: (from gj@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CLlK4g059403; Mon, 12 Apr 2004 14:47:20 -0700 (PDT) (envelope-from gj) Message-Id: <200404122147.i3CLlK4g059403@repoman.freebsd.org> From: Gary Jennejohn Date: Mon, 12 Apr 2004 14:47:20 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/xemacs Makefileports/editors/xemacs-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: Mon, 12 Apr 2004 21:47:21 -0000 gj 2004/04/12 14:47:20 PDT FreeBSD ports repository Modified files: editors/xemacs Makefile editors/xemacs-devel Makefile Log: Add a check for ${X11BASE}/lib/libXm.so so that a dependency can be added on open-motif. PR: ports/62401 Submitted by: Vivek Khera Revision Changes Path 1.79 +4 -0 ports/editors/xemacs-devel/Makefile 1.78 +4 -0 ports/editors/xemacs/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14: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 698A416A4CE; Mon, 12 Apr 2004 14:52:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C73F43D39; Mon, 12 Apr 2004 14:52:54 -0700 (PDT) (envelope-from phk@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CLqsGe061302; Mon, 12 Apr 2004 14:52:54 -0700 (PDT) (envelope-from phk@repoman.freebsd.org) Received: (from phk@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CLqrer061301; Mon, 12 Apr 2004 14:52:53 -0700 (PDT) (envelope-from phk) Message-Id: <200404122152.i3CLqrer061301@repoman.freebsd.org> From: Poul-Henning Kamp Date: Mon, 12 Apr 2004 14:52:53 -0700 (PDT) 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: Mon, 12 Apr 2004 21:52:54 -0000 phk 2004/04/12 14:52:53 PDT FreeBSD src repository Modified files: sys/fs/specfs spec_vnops.c Log: Do not drop Giant around the poll method yet, we're not ready for it. Revision Changes Path 1.221 +2 -2 src/sys/fs/specfs/spec_vnops.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14:54: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 4C5CD16A4CE; Mon, 12 Apr 2004 14:54:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 463C943D53; Mon, 12 Apr 2004 14:54:31 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CLsUGe061406; Mon, 12 Apr 2004 14:54:30 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CLsTTZ061405; Mon, 12 Apr 2004 14:54:29 -0700 (PDT) (envelope-from thierry) Message-Id: <200404122154.i3CLsTTZ061405@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 12 Apr 2004 14:54:29 -0700 (PDT) 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/fpc-paszlib 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, 12 Apr 2004 21:54:31 -0000 thierry 2004/04/12 14:54:29 PDT FreeBSD ports repository Modified files: archivers Makefile Added files: archivers/fpc-paszlib Makefile distinfo pkg-descr pkg-plist Log: Add fpc-paszlib 1.0.10, Free Pascal unit for native compression IO. PR: 62612 Submitted by: John Merryweather Cooper Approved by: pav (mentor). Revision Changes Path 1.98 +1 -0 ports/archivers/Makefile 1.1 +47 -0 ports/archivers/fpc-paszlib/Makefile (new) 1.1 +2 -0 ports/archivers/fpc-paszlib/distinfo (new) 1.1 +8 -0 ports/archivers/fpc-paszlib/pkg-descr (new) 1.1 +38 -0 ports/archivers/fpc-paszlib/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14:54: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 3764016A533; Mon, 12 Apr 2004 14:54:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1741343D68; Mon, 12 Apr 2004 14:54:44 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CLshGe061454; Mon, 12 Apr 2004 14:54:43 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CLshG8061453; Mon, 12 Apr 2004 14:54:43 -0700 (PDT) (envelope-from thierry) Message-Id: <200404122154.i3CLshG8061453@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 12 Apr 2004 14:54:43 -0700 (PDT) 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, 12 Apr 2004 21:54:44 -0000 thierry 2004/04/12 14:54:43 PDT FreeBSD ports repository Modified files: . modules Log: fpc-paszlib --> ports/archivers/fpc-paszlib Revision Changes Path 1.9889 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14:55: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 EA16616A4CE; Mon, 12 Apr 2004 14:55:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E31C043D49; Mon, 12 Apr 2004 14:55:33 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CLtXGe061601; Mon, 12 Apr 2004 14:55:33 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CLtXOd061600; Mon, 12 Apr 2004 14:55:33 -0700 (PDT) (envelope-from thierry) Message-Id: <200404122155.i3CLtXOd061600@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 12 Apr 2004 14:55:33 -0700 (PDT) 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/fpc-ibase 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, 12 Apr 2004 21:55:34 -0000 thierry 2004/04/12 14:55:33 PDT FreeBSD ports repository Modified files: databases Makefile Added files: databases/fpc-ibase Makefile distinfo pkg-descr pkg-plist Log: Add fpc-ibase 1.0.10, Free Pascal interface to interbase. PR: 62620 Submitted by: John Merryweather Cooper Approved by: pav (mentor). Revision Changes Path 1.333 +1 -0 ports/databases/Makefile 1.1 +77 -0 ports/databases/fpc-ibase/Makefile (new) 1.1 +2 -0 ports/databases/fpc-ibase/distinfo (new) 1.1 +8 -0 ports/databases/fpc-ibase/pkg-descr (new) 1.1 +10 -0 ports/databases/fpc-ibase/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14:55: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 0C57216A4DA; Mon, 12 Apr 2004 14:55:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E18D543D31; Mon, 12 Apr 2004 14:55:45 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CLtjGe061649; Mon, 12 Apr 2004 14:55:45 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CLtjGt061648; Mon, 12 Apr 2004 14:55:45 -0700 (PDT) (envelope-from thierry) Message-Id: <200404122155.i3CLtjGt061648@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 12 Apr 2004 14:55:45 -0700 (PDT) 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, 12 Apr 2004 21:55:47 -0000 thierry 2004/04/12 14:55:45 PDT FreeBSD ports repository Modified files: . modules Log: fpc-ibase --> ports/databases/fpc-ibase Revision Changes Path 1.9890 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14: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 84B5316A4CF; Mon, 12 Apr 2004 14:56:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77AC643D5A; Mon, 12 Apr 2004 14:56:22 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CLuMGe061738; Mon, 12 Apr 2004 14:56:22 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CLuLm2061737; Mon, 12 Apr 2004 14:56:21 -0700 (PDT) (envelope-from thierry) Message-Id: <200404122156.i3CLuLm2061737@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 12 Apr 2004 14:56:21 -0700 (PDT) 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/fpc-mysql 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, 12 Apr 2004 21:56:22 -0000 thierry 2004/04/12 14:56:21 PDT FreeBSD ports repository Modified files: databases Makefile Added files: databases/fpc-mysql Makefile distinfo pkg-descr pkg-plist Log: Add fpc-mysql 1.0.10, Free Pascal interface to MySQL. PR: 62621 Submitted by: John Merryweather Cooper Approved by: pav (mentor). Revision Changes Path 1.334 +1 -0 ports/databases/Makefile 1.1 +77 -0 ports/databases/fpc-mysql/Makefile (new) 1.1 +2 -0 ports/databases/fpc-mysql/distinfo (new) 1.1 +8 -0 ports/databases/fpc-mysql/pkg-descr (new) 1.1 +12 -0 ports/databases/fpc-mysql/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14:56: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 6866A16A4CF; Mon, 12 Apr 2004 14:56:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48B0543D3F; Mon, 12 Apr 2004 14:56:35 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CLuYGe061786; Mon, 12 Apr 2004 14:56:34 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CLuYK0061785; Mon, 12 Apr 2004 14:56:34 -0700 (PDT) (envelope-from thierry) Message-Id: <200404122156.i3CLuYK0061785@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 12 Apr 2004 14:56:34 -0700 (PDT) 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, 12 Apr 2004 21:56:35 -0000 thierry 2004/04/12 14:56:34 PDT FreeBSD ports repository Modified files: . modules Log: fpc-mysql --> ports/databases/fpc-mysql Revision Changes Path 1.9891 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14:57: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 EBD4F16A4CE; Mon, 12 Apr 2004 14:57:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E470C43D4C; Mon, 12 Apr 2004 14:57:16 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CLvGGe061874; Mon, 12 Apr 2004 14:57:16 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CLvFkK061873; Mon, 12 Apr 2004 14:57:15 -0700 (PDT) (envelope-from thierry) Message-Id: <200404122157.i3CLvFkK061873@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 12 Apr 2004 14:57:15 -0700 (PDT) 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/fpc-demo 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, 12 Apr 2004 21:57:17 -0000 thierry 2004/04/12 14:57:15 PDT FreeBSD ports repository Modified files: lang Makefile Added files: lang/fpc-demo Makefile distinfo pkg-descr pkg-plist Log: Add fpc-demo 1.0.10, Free Pascal compiler examples. PR: 62605 Submitted by: John Merryweather Cooper Approved by: pav (mentor). Revision Changes Path 1.397 +1 -0 ports/lang/Makefile 1.1 +72 -0 ports/lang/fpc-demo/Makefile (new) 1.1 +2 -0 ports/lang/fpc-demo/distinfo (new) 1.1 +9 -0 ports/lang/fpc-demo/pkg-descr (new) 1.1 +58 -0 ports/lang/fpc-demo/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14:57: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 8F80216A53E; Mon, 12 Apr 2004 14:57:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72AB743D55; Mon, 12 Apr 2004 14:57:29 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CLvSGe061928; Mon, 12 Apr 2004 14:57:28 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CLvSQm061927; Mon, 12 Apr 2004 14:57:28 -0700 (PDT) (envelope-from thierry) Message-Id: <200404122157.i3CLvSQm061927@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 12 Apr 2004 14:57:28 -0700 (PDT) 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, 12 Apr 2004 21:57:29 -0000 thierry 2004/04/12 14:57:28 PDT FreeBSD ports repository Modified files: . modules Log: fpc-demo --> ports/lang/fpc-demo Revision Changes Path 1.9892 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14:58: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 44F3616A4CE; Mon, 12 Apr 2004 14:58:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2754143D1F; Mon, 12 Apr 2004 14:58:16 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CLwFGe062058; Mon, 12 Apr 2004 14:58:15 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CLwFt9062057; Mon, 12 Apr 2004 14:58:15 -0700 (PDT) (envelope-from thierry) Message-Id: <200404122158.i3CLwFt9062057@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 12 Apr 2004 14:58:15 -0700 (PDT) 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/fpc-base 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: Mon, 12 Apr 2004 21:58:16 -0000 thierry 2004/04/12 14:58:15 PDT FreeBSD ports repository Modified files: lang Makefile Added files: lang/fpc-base Makefile pkg-descr pkg-plist Log: Add fpc-base 1.0.10, meta package to install all of the Free Pascal base. PR: 62623 Submitted by: John Merryweather Cooper Approved by: pav (mentor). Revision Changes Path 1.398 +1 -0 ports/lang/Makefile 1.1 +42 -0 ports/lang/fpc-base/Makefile (new) 1.1 +9 -0 ports/lang/fpc-base/pkg-descr (new) 1.1 +1 -0 ports/lang/fpc-base/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14:58: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 90CF116A4E4; Mon, 12 Apr 2004 14:58:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35BCE43D2F; Mon, 12 Apr 2004 14:58:28 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CLwRGe062103; Mon, 12 Apr 2004 14:58:27 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CLwRLS062102; Mon, 12 Apr 2004 14:58:27 -0700 (PDT) (envelope-from thierry) Message-Id: <200404122158.i3CLwRLS062102@repoman.freebsd.org> From: Thierry Thomas Date: Mon, 12 Apr 2004 14:58:27 -0700 (PDT) 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, 12 Apr 2004 21:58:29 -0000 thierry 2004/04/12 14:58:27 PDT FreeBSD ports repository Modified files: . modules Log: fpc-base --> ports/lang/fpc-base Revision Changes Path 1.9893 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Apr 12 14: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 78AFC16A4CE; Mon, 12 Apr 2004 14:59:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7259143D2F; Mon, 12 Apr 2004 14:59:41 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CLxfGe062181; Mon, 12 Apr 2004 14:59:41 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CLxfgU062180; Mon, 12 Apr 2004 14:59:41 -0700 (PDT) (envelope-from linimon) Message-Id: <200404122159.i3CLxfgU062180@repoman.freebsd.org> From: Mark Linimon Date: Mon, 12 Apr 2004 14:59:41 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/metamail 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, 12 Apr 2004 21:59:41 -0000 linimon 2004/04/12 14:59:41 PDT FreeBSD ports repository Modified files: mail/metamail Makefile Log: Although it pains me to do this (look at the listing of the directory as to why :-) ), the distfile survey reports that Nathaniel's original site for this software is long gone. A Google search shows the mirror that I added to be the best option, and that the most recent distfile is from 1994. The only other links refer to security problems; although all the known ones have been fixed, Debian claims that: We have been devoting some effort to trying to avoid shipping metamail in the future. It became unmaintainable and these are probably not the last of the vulnerabilities. Accordingly, mark it as 'deprecated'. If anyone is using this code, they should prepare to adopt the port and address any security concerns going forward. Revision Changes Path 1.24 +4 -1 ports/mail/metamail/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 15:07: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 71C7C16A4CE; Mon, 12 Apr 2004 15:07:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5455043D4C; Mon, 12 Apr 2004 15:07:43 -0700 (PDT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CM7hGe065163; Mon, 12 Apr 2004 15:07:43 -0700 (PDT) (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CM7h6T065162; Mon, 12 Apr 2004 15:07:43 -0700 (PDT) (envelope-from simon) Message-Id: <200404122207.i3CM7h6T065162@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Mon, 12 Apr 2004 15:07:43 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/gifs Makefile daemon-phk.png X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 22:07:43 -0000 simon 2004/04/12 15:07:43 PDT FreeBSD doc repository Modified files: en/gifs Makefile Added files: en/gifs daemon-phk.png Log: Add a PNG version of phk's rendering of the BSD Daemon, which is located in /usr/share/examples/BSD_daemon on all FreeBSD systems. It is scaled to 45% of the original size. This image is for use on the upcoming FreeBSD Art page. Revision Changes Path 1.49 +2 -1 www/en/gifs/Makefile 1.1 +13 -0 www/en/gifs/daemon-phk.png (new) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 15: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 DD01816A4CE; Mon, 12 Apr 2004 15:16:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C078D43D39; Mon, 12 Apr 2004 15:16:04 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CMG4Ge067161; Mon, 12 Apr 2004 15:16:04 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CMG4U5067160; Mon, 12 Apr 2004 15:16:04 -0700 (PDT) (envelope-from pav) Message-Id: <200404122216.i3CMG4U5067160@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 12 Apr 2004 15:16:04 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/tinyproxy 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, 12 Apr 2004 22:16:05 -0000 pav 2004/04/12 15:16:04 PDT FreeBSD ports repository Modified files: www/tinyproxy Makefile distinfo pkg-plist Log: - Update to 1.6.2 PR: ports/64923 Submitted by: Brad Davis Approved by: maintainer timeout (2 weeks) Revision Changes Path 1.15 +10 -5 ports/www/tinyproxy/Makefile 1.11 +2 -2 ports/www/tinyproxy/distinfo 1.4 +9 -1 ports/www/tinyproxy/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 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 11E1D16A4CE; Mon, 12 Apr 2004 15:22:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5B9D43D55; Mon, 12 Apr 2004 15:22:31 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CMMVGe069065; Mon, 12 Apr 2004 15:22:31 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CMMVBS069064; Mon, 12 Apr 2004 15:22:31 -0700 (PDT) (envelope-from linimon) Message-Id: <200404122222.i3CMMVBS069064@repoman.freebsd.org> From: Mark Linimon Date: Mon, 12 Apr 2004 15:22:31 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/mew2 Makefile ports/mail/mew3 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, 12 Apr 2004 22:22:32 -0000 linimon 2004/04/12 15:22:31 PDT FreeBSD ports repository Modified files: mail/mew2 Makefile mail/mew3 Makefile Log: Per distfile survey, chase reorganized mastersite. Informed maintainer. Note: two of the sites listed in MASTER_SITE_PORTS_JP do not seem to be keeping current on these ports. These are (together with the date that they last kept up): ftp://ports.jp.FreeBSD.org/pub/FreeBSD-jp/ports-jp/LOCAL_PORTS (Feb 2003) ftp://ftp.ics.es.osaka-u.ac.jp/pub/mirrors/FreeBSD-jp/ports-jp/LOCAL_PORTS (Oct 2001) Revision Changes Path 1.9 +2 -2 ports/mail/mew2/Makefile 1.10 +1 -1 ports/mail/mew3/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 15:28: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 63C0116A4CE; Mon, 12 Apr 2004 15:28:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5DFB143D45; Mon, 12 Apr 2004 15:28:34 -0700 (PDT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CMSYGe069275; Mon, 12 Apr 2004 15:28:34 -0700 (PDT) (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CMSYl3069274; Mon, 12 Apr 2004 15:28:34 -0700 (PDT) (envelope-from simon) Message-Id: <200404122228.i3CMSYl3069274@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Mon, 12 Apr 2004 15:28:34 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en Makefile art.sgml www/en/search web.atoz X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 22:28:34 -0000 simon 2004/04/12 15:28:34 PDT FreeBSD doc repository Modified files: en Makefile en/search web.atoz Added files: en art.sgml Log: Add a FreeBSD Art page, which mainly contains the "Powered by FreeBSD" logos, but also a few BSD Daemon images. They layout of the BSD Daemon section probably looks a bit odd, but that is due to a missing BSD Daemon image that I will add soon. This version is commited now so the gallery can be removed without removing the "Powered by FreeBSD" logos from the website. Revision Changes Path 1.110 +2 -1 www/en/Makefile 1.1 +115 -0 www/en/art.sgml (new) 1.76 +5 -1 www/en/search/web.atoz From owner-cvs-all@FreeBSD.ORG Mon Apr 12 15:28: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 32D4F16A4CE; Mon, 12 Apr 2004 15:28:59 -0700 (PDT) Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCDD343D2D; Mon, 12 Apr 2004 15:28:58 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (f870cf1d91e282eac7f35a3a6918750f@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i3CMSsWh006876; Mon, 12 Apr 2004 17:28:58 -0500 (CDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 81CD852322; Mon, 12 Apr 2004 15:28:53 -0700 (PDT) Date: Mon, 12 Apr 2004 15:28:53 -0700 From: Kris Kennaway To: Ruslan Ermilov Message-ID: <20040412222853.GA19000@xor.obsecurity.org> References: <200404121757.i3CHvpIv001634@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="BXVAT5kNtrzKuDFl" Content-Disposition: inline In-Reply-To: <200404121757.i3CHvpIv001634@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/usr.bin/make 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: Mon, 12 Apr 2004 22:28:59 -0000 --BXVAT5kNtrzKuDFl Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 12, 2004 at 10:57:51AM -0700, Ruslan Ermilov wrote: > ru 2004/04/12 10:57:51 PDT >=20 > FreeBSD src repository >=20 > Modified files: > usr.bin/make parse.c=20 > Log: > Added the new .warning directive. We may want to make use of this for ports..can you bump __FreeBSD_version? Kris --BXVAT5kNtrzKuDFl Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAexglWry0BWjoQKURAvOsAJ9uP41iZtrFwZXgheyCU3byAhJXcQCfTRvj 3aK72LUrgIRG5y2MnOOsNY4= =O4Dj -----END PGP SIGNATURE----- --BXVAT5kNtrzKuDFl-- From owner-cvs-all@FreeBSD.ORG Mon Apr 12 15:32: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 D0EB016A4CE; Mon, 12 Apr 2004 15:32:12 -0700 (PDT) Received: from zaphod.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4059743D46; Mon, 12 Apr 2004 15:32:12 -0700 (PDT) (envelope-from simon@zaphod.nitro.dk) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id 97C0511989; Tue, 13 Apr 2004 00:32:09 +0200 (CEST) Date: Tue, 13 Apr 2004 00:32:09 +0200 From: "Simon L. Nielsen" To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040412223209.GM797@zaphod.nitro.dk> References: <200404122228.i3CMSYl3069274@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="VB1oQhYtJt8uuzk+" Content-Disposition: inline In-Reply-To: <200404122228.i3CMSYl3069274@repoman.freebsd.org> User-Agent: Mutt/1.5.6i Subject: Re: cvs commit: www/en Makefile art.sgml www/en/search web.atoz X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 22:32:13 -0000 --VB1oQhYtJt8uuzk+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2004.04.12 15:28:34 -0700, Simon L. Nielsen wrote: > simon 2004/04/12 15:28:34 PDT >=20 > FreeBSD doc repository >=20 > Modified files: > en Makefile=20 > en/search web.atoz=20 > Added files: > en art.sgml=20 > Log: > Add a FreeBSD Art page, which mainly contains the "Powered by FreeBSD" > logos, but also a few BSD Daemon images. If somebody has a good idea on where to link to this page, then please speak up, since I'm not really sure. --=20 Simon L. Nielsen FreeBSD Documentation Team --VB1oQhYtJt8uuzk+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAexjph9pcDSc1mlERAs3VAJ959czpyka+pcf2wV0JVfYNMLM5kgCaAoh+ MEQeATc4KTKwjGVtdMMp0pI= =i1rO -----END PGP SIGNATURE----- --VB1oQhYtJt8uuzk+-- From owner-cvs-all@FreeBSD.ORG Mon Apr 12 15:34: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 A2C7B16A4CE; Mon, 12 Apr 2004 15:34:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 859E743D1F; Mon, 12 Apr 2004 15:34:33 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CMYXGe071194; Mon, 12 Apr 2004 15:34:33 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CMYXO8071193; Mon, 12 Apr 2004 15:34:33 -0700 (PDT) (envelope-from pav) Message-Id: <200404122234.i3CMYXO8071193@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 12 Apr 2004 15:34:33 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/LPRng Makefile distinfo ports/sysutils/LPRng/files patch-src-common-user_auth.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 22:34:33 -0000 pav 2004/04/12 15:34:32 PDT FreeBSD ports repository Modified files: sysutils/LPRng Makefile distinfo Removed files: sysutils/LPRng/files patch-src-common-user_auth.c Log: - Update to 3.8.26 PR: ports/64943 Submitted by: Kevin Oberman Approved by: maintainer timeout (2 weeks) Revision Changes Path 1.32 +1 -1 ports/sysutils/LPRng/Makefile 1.16 +2 -2 ports/sysutils/LPRng/distinfo 1.2 +0 -12 ports/sysutils/LPRng/files/patch-src-common-user_auth.c (dead) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 15:35: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 BAE0316A4CF for ; Mon, 12 Apr 2004 15:35:08 -0700 (PDT) Received: from root.org (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 6EE1743D2F for ; Mon, 12 Apr 2004 15:35:08 -0700 (PDT) (envelope-from nate@root.org) Received: (qmail 71072 invoked by uid 1000); 12 Apr 2004 22:35:09 -0000 Date: Mon, 12 Apr 2004 15:35:09 -0700 (PDT) From: Nate Lawson To: Mark Murray In-Reply-To: <200404110746.i3B7kiIn075106@grimreaper.grondar.org> Message-ID: <20040412153153.I70759@root.org> References: <200404110746.i3B7kiIn075106@grimreaper.grondar.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/modules/random Makefile src/sys/dev/random randomdev.h randomdev_soft.c randomdev_soft.h yar X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 22:35:08 -0000 On Sun, 11 Apr 2004, Mark Murray wrote: > Nate Lawson writes: > > > Still, opinion seems to be in favour of further postprocessing, so I'll > > > do it. > > I haven't looked at the FreeBSD PRNG yet but why not seed Yarrow? > > Yarrow's entropy accumulation and PRNG generator parts are disconnected > (that is part of its point), so there is no connection between the > number of bytes harvested and the number of bytes supplied. This > makes a very long armoured pipeline between accumulation and issue, > which seems like overkill when the suppied entropy is 99% OK (far > better than Yarrow currently ever gets, BTW). > > [...] > > Yarrow is unsuitable for this purpose; it is a great generator when > you have a low-entropy environment and you need to protect against > attackers having potential knowledge of the inputs. * XSTORE is an unprivileged operation, users can call it all they want. * If your hardware fails undetectably somehow (101010101...), a single-source PRNG also fails. If we seed our existing PRNG which accepts multiple sources, it doesn't. I think Jacques said it best. All I'm asking is that we use a well-reviewed PRNG and as many entropy sources as possible, including this nice VIA part. -Nate From owner-cvs-all@FreeBSD.ORG Mon Apr 12 15:37: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 38A9716A4D0 for ; Mon, 12 Apr 2004 15:37:01 -0700 (PDT) Received: from root.org (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id B9B2043D48 for ; Mon, 12 Apr 2004 15:37:00 -0700 (PDT) (envelope-from nate@root.org) Received: (qmail 71090 invoked by uid 1000); 12 Apr 2004 22:37:02 -0000 Date: Mon, 12 Apr 2004 15:37:02 -0700 (PDT) From: Nate Lawson To: David Malone In-Reply-To: <20040412113635.GA38733@walton.maths.tcd.ie> Message-ID: <20040412153536.L70759@root.org> References: <20040410155637.Q58852@root.org> <200404110746.i3B7kiIn075106@grimreaper.grondar.org> <20040412113635.GA38733@walton.maths.tcd.ie> 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 cc: Mark Murray Subject: Re: cvs commit: src/sys/modules/random Makefile src/sys/dev/random randomdev.h randomdev_soft.c randomdev_soft.h yar X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 22:37:01 -0000 On Mon, 12 Apr 2004, David Malone wrote: > On Sun, Apr 11, 2004 at 08:46:43AM +0100, Mark Murray wrote: > > Yarrow is unsuitable for this purpose; it is a great generator when > > you have a low-entropy environment and you need to protect against > > attackers having potential knowledge of the inputs. > > I still think it would be nice if our random infrastructure had a > block-until-accumulated-'enough'-randomness mode, like the old > /dev/random had, to avoid some future attack based on Yarrow's fixed > size state. I don't think it will be a realistic attack any time > soon, but it might be nice for baco-hat types. In the case where > high-quality, fast hardware based generators are available, this > seems to be a more realistic option though. > > I'm happy enough to live without this, since we thrashed this out > before, but if you're looking at options, you might keep it at the > back of your mind. Please don't sidetrack the discussion. That is a separate topic. -Nate From owner-cvs-all@FreeBSD.ORG Mon Apr 12 15:38: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 938C416A4CE; Mon, 12 Apr 2004 15:38:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77E7243D55; Mon, 12 Apr 2004 15:38:23 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CMcNGe071385; Mon, 12 Apr 2004 15:38:23 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CMcNci071384; Mon, 12 Apr 2004 15:38:23 -0700 (PDT) (envelope-from kris) Message-Id: <200404122238.i3CMcNci071384@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 12 Apr 2004 15:38:23 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/superlu 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, 12 Apr 2004 22:38:24 -0000 kris 2004/04/12 15:38:23 PDT FreeBSD ports repository Modified files: math/superlu Makefile Log: BROKEN: Size mismatch Revision Changes Path 1.24 +2 -0 ports/math/superlu/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 15:39: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 EF23516A4CE; Mon, 12 Apr 2004 15:39:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D11FE43D41; Mon, 12 Apr 2004 15:39:04 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CMd4Ge071430; Mon, 12 Apr 2004 15:39:04 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CMd4Tl071429; Mon, 12 Apr 2004 15:39:04 -0700 (PDT) (envelope-from pav) Message-Id: <200404122239.i3CMd4Tl071429@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 12 Apr 2004 15:39:04 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/prozilla 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, 12 Apr 2004 22:39:05 -0000 pav 2004/04/12 15:39:04 PDT FreeBSD ports repository Modified files: ftp/prozilla Makefile Log: - Use ncurses from base PR: ports/64950 Submitted by: michael johnson Approved by: maintainer timeout (2 weeks) Revision Changes Path 1.5 +0 -2 ports/ftp/prozilla/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 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 899BF16A4D9; Mon, 12 Apr 2004 15:58:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C76B43D39; Mon, 12 Apr 2004 15:58:26 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CMwPGe075494; Mon, 12 Apr 2004 15:58:25 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CMwO4t075493; Mon, 12 Apr 2004 15:58:24 -0700 (PDT) (envelope-from pav) Message-Id: <200404122258.i3CMwO4t075493@repoman.freebsd.org> From: Pav Lucistnik Date: Mon, 12 Apr 2004 15:58:24 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/grhino 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, 12 Apr 2004 22:58:26 -0000 pav 2004/04/12 15:58:24 PDT FreeBSD ports repository Modified files: games/grhino Makefile pkg-plist Log: - Correct dependency [1] - Optimize dependencies - Add mandatory ScrollKeeper lines to pkg-plist PR: ports/65467 [1] Submitted by: UMENO Takashi (maintainer) Revision Changes Path 1.13 +1 -3 ports/games/grhino/Makefile 1.4 +2 -0 ports/games/grhino/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 16:02: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 E3D0916A4CE; Mon, 12 Apr 2004 16:02:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C56D343D41; Mon, 12 Apr 2004 16:02:22 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CN2MGe076802; Mon, 12 Apr 2004 16:02:22 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CN2M7E076795; Mon, 12 Apr 2004 16:02:22 -0700 (PDT) (envelope-from imp) Message-Id: <200404122302.i3CN2M7E076795@repoman.freebsd.org> From: Warner Losh Date: Mon, 12 Apr 2004 16:02:22 -0700 (PDT) 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_rman.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 23:02:23 -0000 imp 2004/04/12 16:02:22 PDT FreeBSD src repository Modified files: sys/kern subr_rman.c Log: Fix off by one error, twice. Submitted by: Carlos Velasco (first one), jhb (second one) Revision Changes Path 1.32 +2 -2 src/sys/kern/subr_rman.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 16: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 A19D716A4CE; Mon, 12 Apr 2004 16:06:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 865D743D1D; Mon, 12 Apr 2004 16:06:45 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CN6jGe078540; Mon, 12 Apr 2004 16:06:45 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CN6jfR078539; Mon, 12 Apr 2004 16:06:45 -0700 (PDT) (envelope-from linimon) Message-Id: <200404122306.i3CN6jfR078539@repoman.freebsd.org> From: Mark Linimon Date: Mon, 12 Apr 2004 16:06:45 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/yadda 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, 12 Apr 2004 23:06:45 -0000 linimon 2004/04/12 16:06:45 PDT FreeBSD ports repository Modified files: mail/yadda Makefile Log: Per distfile survey, remove two mastersites which disappeared in early March and early January respectively. Informed maintainer. Revision Changes Path 1.2 +0 -2 ports/mail/yadda/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 16:07: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 61A9C16A4CE; Mon, 12 Apr 2004 16:07:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44F5743D1D; Mon, 12 Apr 2004 16:07:30 -0700 (PDT) (envelope-from pb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CN7UGe078600; Mon, 12 Apr 2004 16:07:30 -0700 (PDT) (envelope-from pb@repoman.freebsd.org) Received: (from pb@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CN7UGQ078599; Mon, 12 Apr 2004 16:07:30 -0700 (PDT) (envelope-from pb) Message-Id: <200404122307.i3CN7UGQ078599@repoman.freebsd.org> From: Pierre Beyssac Date: Mon, 12 Apr 2004 16:07:30 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/lib/libc/net name6.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 23:07:30 -0000 pb 2004/04/12 16:07:30 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) lib/libc/net name6.c Log: MFC rev 1.36/1.37: fix _dns_ghbyname() to return NS_TRYAGAIN instead of NS_NOTFOUND. This gets getipnodebyname(3) to correctly return h_errno=TRY_AGAIN instead of HOST_NOT_FOUND. Approved by: re (scottl) Revision Changes Path 1.6.2.10 +8 -4 src/lib/libc/net/name6.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 16: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 9152916A4CE; Mon, 12 Apr 2004 16:11:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74DA643D45; Mon, 12 Apr 2004 16:11:05 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CNB5Ge078765; Mon, 12 Apr 2004 16:11:05 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CNB5ua078764; Mon, 12 Apr 2004 16:11:05 -0700 (PDT) (envelope-from linimon) Message-Id: <200404122311.i3CNB5ua078764@repoman.freebsd.org> From: Mark Linimon Date: Mon, 12 Apr 2004 16:11:05 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/wmmail 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, 12 Apr 2004 23:11:05 -0000 linimon 2004/04/12 16:11:05 PDT FreeBSD ports repository Modified files: mail/wmmail Makefile Log: Per distfile survey, remove mastersite that disappeared in October 2003. Revision Changes Path 1.21 +1 -1 ports/mail/wmmail/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 16:12: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 908DB16A4CE; Mon, 12 Apr 2004 16:12:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7435043D1F; Mon, 12 Apr 2004 16:12:48 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CNCmGe080503; Mon, 12 Apr 2004 16:12:48 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CNCmir080502; Mon, 12 Apr 2004 16:12:48 -0700 (PDT) (envelope-from linimon) Message-Id: <200404122312.i3CNCmir080502@repoman.freebsd.org> From: Mark Linimon Date: Mon, 12 Apr 2004 16:12:48 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/wmmail 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, 12 Apr 2004 23:12:48 -0000 linimon 2004/04/12 16:12:48 PDT FreeBSD ports repository Modified files: mail/wmmail pkg-descr Log: Per distfile survey, remove mastersite that disappeared in October 2003. Revision Changes Path 1.8 +0 -2 ports/mail/wmmail/pkg-descr From owner-cvs-all@FreeBSD.ORG Mon Apr 12 16:20: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 E6FB216A4CE; Mon, 12 Apr 2004 16:20:22 -0700 (PDT) Received: from buh.cameradicommercio.ro (buh.cameradicommercio.ro [81.196.25.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94E2A43D53; Mon, 12 Apr 2004 16:20:22 -0700 (PDT) (envelope-from itetcu@apropo.ro) Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP id 7DFCE622B; Tue, 13 Apr 2004 02:20:11 +0300 (EEST) Received: from localhost (localhost.buh.cameradicommercio.ro [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id CC302240; Tue, 13 Apr 2004 02:23:42 +0300 (EEST) Received: from it.buh.cameradicommercio.ro ([127.0.0.1])port 10024) with ESMTP id 32095-01; Tue, 13 Apr 2004 02:23:41 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.cameradicommercio.ro [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with SMTP id 7715F203; Tue, 13 Apr 2004 02:23:40 +0300 (EEST) Date: Tue, 13 Apr 2004 02:23:35 +0300 From: Ion-Mihai Tetcu To: Gary Jennejohn Message-Id: <20040413022335.3911a51e@it.buh.cameradicommercio.ro> In-Reply-To: <200404122147.i3CLlK4g059403@repoman.freebsd.org> References: <200404122147.i3CLlK4g059403@repoman.freebsd.org> X-Mailer: Sylpheed version 0.9.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at it.buh.cameradicommercio.ro cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Breaks INDEX - Re: cvs commit: ports/editors/xemacs Makefileports/editors/xemacs-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: Mon, 12 Apr 2004 23:20:23 -0000 On Mon, 12 Apr 2004 14:47:20 -0700 (PDT) Gary Jennejohn wrote: > gj 2004/04/12 14:47:20 PDT > > FreeBSD ports repository > > Modified files: > editors/xemacs Makefile > editors/xemacs-devel Makefile > Log: > Add a check for ${X11BASE}/lib/libXm.so so that a dependency can be added > on open-motif. FYI: Generating INDEX-5 - please wait..===> editors/xemacs failed: "Makefile", line 73: Unassociated shell command "@${ECHO_MSG} """ "Makefile", line 74: Unassociated shell command "@${ECHO_MSG} "If your MOTIF library is actually lesstif, you might occasionally"" "Makefile", line 75: Unassociated shell command "@${ECHO_MSG} "experience locked-up frames."" "Makefile", line 76: Unassociated shell command "@${ECHO_MSG} "In this case, set the environment variable MOTIF_STATIC and recompile, "" "Makefile", line 77: Unassociated shell command "@${ECHO_MSG} "which will force the use of athena widgets for dialogs."" "Makefile", line 80: Unassociated shell command "@${ECHO_MSG} """ "Makefile", line 81: Unassociated shell command "@${ECHO_MSG} "Set the environment variable WITHOUT_X11 if you "" "Makefile", line 82: Unassociated shell command "@${ECHO_MSG} "do not want to use X11."" make: fatal errors encountered -- cannot continue *** Error code 1 1 error Also on line 83 space should be tab. -- IOnut Unregistered ;) FreeBSD "user" From owner-cvs-all@FreeBSD.ORG Mon Apr 12 16: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 EB3ED16A4CE; Mon, 12 Apr 2004 16:39:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD33B43D49; Mon, 12 Apr 2004 16:39:40 -0700 (PDT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3CNdeGe084693; Mon, 12 Apr 2004 16:39:40 -0700 (PDT) (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3CNdeaQ084692; Mon, 12 Apr 2004 16:39:40 -0700 (PDT) (envelope-from maho) Message-Id: <200404122339.i3CNdeaQ084692@repoman.freebsd.org> From: Maho Nakata Date: Mon, 12 Apr 2004 16:39:39 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/superlu 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, 12 Apr 2004 23:39:41 -0000 maho 2004/04/12 16:39:39 PDT FreeBSD ports repository Modified files: math/superlu Makefile distinfo Log: a) unbreak. silent distfile update distfile has been updated at 2004/April/10th and according to http://crd.lbl.gov/~xiaoye/SuperLU/ o Include "symmetric mode" b) change portversion Submitted by: kris via bento Revision Changes Path 1.25 +1 -3 ports/math/superlu/Makefile 1.17 +2 -2 ports/math/superlu/distinfo From owner-cvs-all@FreeBSD.ORG Mon Apr 12 16:58: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 5712A16A4CE; Mon, 12 Apr 2004 16:58:09 -0700 (PDT) Received: from saturn.criticalmagic.com (saturn.criticalmagic.com [68.213.16.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id E775443D2D; Mon, 12 Apr 2004 16:58:08 -0700 (PDT) (envelope-from richardcoleman@mindspring.com) Received: from mindspring.com (titan.criticalmagic.com [68.213.16.23]) by saturn.criticalmagic.com (Postfix) with ESMTP id 121EC3BD2A; Mon, 12 Apr 2004 19:58:08 -0400 (EDT) Message-ID: <407B2D20.7050106@mindspring.com> Date: Mon, 12 Apr 2004 19:58:24 -0400 From: Richard Coleman Organization: Critical Magic, Inc. User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6) Gecko/20040113 X-Accept-Language: en-us, en MIME-Version: 1.0 To: David Malone References: <200404122235.aa56194@salmon.maths.tcd.ie> In-Reply-To: <200404122235.aa56194@salmon.maths.tcd.ie> 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: Mark Murray cc: Nate Lawson Subject: Re: cvs commit: src/sys/modules/random Makefile src/sys/dev/random randomdev.h randomdev_soft.c randomdev_soft.h yar X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: richardcoleman@mindspring.com List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 12 Apr 2004 23:58:09 -0000 David Malone wrote: >>I think the old /dev/random caused more problems than it solved. Most >>apps just used /dev/urandom to avoid all the end-user questions about >>the blocking. > > I largely agree. > >>And the beauty of the Yarrow PRNG is that as long as you have enough >>initial entropy to get started, you can pull as many bytes as you want >>and still remain cryptographically strong (within some very high limit >>of like 2^120 bytes before the next re-keying). > > It is still no good for generating keys that have more unpredictable > bits than Yarrow's internal state, unless you can be sure that it > has reseeded. For example, the Yarrow paper notes that there is no > point using Yarrow-160 for generating 256 bit block cipher keys and > that using it for things like one time pads are right out. > > David. Well, the original Yarrow-160 paper was based on using 3DES and SHA1 (hence the 160). But the version of Yarrow called Fortuna (chapter 10 of Practical Cryptography) uses AES with 256-bit key, and SHA-256. A quick check of the /dev/random code seems to indicate that Mark is using something similar (although it looks like he is using Yarrow style entropy estimation). But I see what you are saying. The internal state of the generator never has more than 256 bits of entropy. So, you cannot create something with more entropy than that. There are probably ways you could up this limit by keeping multiple key schedules (think of it as interleaving multiple OFB streams). But this is overkill for most practical situations. As to the question of how to integrate high speed entropy sources, I can't really give any suggestions there. I'm interested to see what is the final outcome. Richard Coleman richardcoleman@mindspring.com From owner-cvs-all@FreeBSD.ORG Mon Apr 12 17:02: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 3ACA316A4CE; Mon, 12 Apr 2004 17:02:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1439B43D45; Mon, 12 Apr 2004 17:02:07 -0700 (PDT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D026Ge095864; Mon, 12 Apr 2004 17:02:06 -0700 (PDT) (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D026D9095857; Mon, 12 Apr 2004 17:02:06 -0700 (PDT) (envelope-from maho) Message-Id: <200404130002.i3D026D9095857@repoman.freebsd.org> From: Maho Nakata Date: Mon, 12 Apr 2004 17:02:06 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/sdpara 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, 13 Apr 2004 00:02:07 -0000 maho 2004/04/12 17:02:06 PDT FreeBSD ports repository Modified files: math/sdpara Makefile Log: remove ${CP} ${FILESDIR}/Makefile ${WRKDIR} in Makefile. library no longer supported for sdpara (unlike sdpa) Submitted by: kris via bento Pointy hat to: myself Revision Changes Path 1.4 +0 -5 ports/math/sdpara/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 17:17: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 685BF16A4CE; Mon, 12 Apr 2004 17:17:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BD2143D49; Mon, 12 Apr 2004 17:17:27 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D0HRGe099745; Mon, 12 Apr 2004 17:17:27 -0700 (PDT) (envelope-from jmz@repoman.freebsd.org) Received: (from jmz@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D0HRm4099744; Mon, 12 Apr 2004 17:17:27 -0700 (PDT) (envelope-from jmz) Message-Id: <200404130017.i3D0HRm4099744@repoman.freebsd.org> From: Jean-Marc Zucconi Date: Mon, 12 Apr 2004 17:17:27 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/p2c Makefile ports/lang/p2c/files patch-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, 13 Apr 2004 00:17:27 -0000 jmz 2004/04/12 17:17:27 PDT FreeBSD ports repository Modified files: lang/p2c Makefile lang/p2c/files patch-cc Log: Install the source instead of the cat-file in ${PREFIX}/man/man1 PR: 65456 Revision Changes Path 1.17 +1 -1 ports/lang/p2c/Makefile 1.2 +24 -22 ports/lang/p2c/files/patch-cc From owner-cvs-all@FreeBSD.ORG Mon Apr 12 17:31: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 ED61916A4CE; Mon, 12 Apr 2004 17:31:38 -0700 (PDT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 786A643D48; Mon, 12 Apr 2004 17:31:38 -0700 (PDT) (envelope-from nectar@celabo.org) Received: from localhost (localhost [127.0.0.1]) by gw.celabo.org (Postfix) with ESMTP id 07FA254846; Mon, 12 Apr 2004 19:31:38 -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 85559-06; Mon, 12 Apr 2004 19:31:27 -0500 (CDT) Received: from lum.celabo.org (lum.celabo.org [10.0.1.107]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client CN "lum.celabo.org", Issuer "celabo.org CA" (verified OK)) by gw.celabo.org (Postfix) with ESMTP id 43B4D54840; Mon, 12 Apr 2004 19:31:27 -0500 (CDT) Received: by lum.celabo.org (Postfix, from userid 501) id 8C46C1C8A21; Mon, 12 Apr 2004 19:30:59 -0500 (CDT) Date: Mon, 12 Apr 2004 19:30:59 -0500 From: "Jacques A. Vidrine" To: Mark Linimon Message-ID: <20040413003059.GA16303@lum.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Mark Linimon , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200404122159.i3CLxfgU062180@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404122159.i3CLxfgU062180@repoman.freebsd.org> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/mail/metamail 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, 13 Apr 2004 00:31:39 -0000 On Mon, Apr 12, 2004 at 02:59:41PM -0700, Mark Linimon wrote: > linimon 2004/04/12 14:59:41 PDT > > FreeBSD ports repository > > Modified files: > mail/metamail Makefile > Log: > Although it pains me to do this (look at the listing of the directory > as to why :-) ), the distfile survey reports that Nathaniel's original > site for this software is long gone. A Google search shows the mirror > that I added to be the best option, and that the most recent distfile is > from 1994. The only other links refer to security problems; although > all the known ones have been fixed, Debian claims that: > > We have been devoting some effort to trying to avoid shipping metamail > in the future. It became unmaintainable and these are probably not the > last of the vulnerabilities. > > Accordingly, mark it as 'deprecated'. If anyone is using this code, > they should prepare to adopt the port and address any security concerns > going forward. > > Revision Changes Path > 1.24 +4 -1 ports/mail/metamail/Makefile Thanks, Mark. My plea for a maintainer http://groups.google.com/groups?selm=20040218215305.GA47727_madman.celabo.org%40ns.sol.net has long expired. Cheers, -- Jacques Vidrine / nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org From owner-cvs-all@FreeBSD.ORG Mon Apr 12 17: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 2FFD416A4CE; Mon, 12 Apr 2004 17:41:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 150F743D41; Mon, 12 Apr 2004 17:41:53 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D0fqGe005128; Mon, 12 Apr 2004 17:41:52 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D0fqAx005122; Mon, 12 Apr 2004 17:41:52 -0700 (PDT) (envelope-from kris) Message-Id: <200404130041.i3D0fqAx005122@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 12 Apr 2004 17:41:52 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/ufmcontrol-i18n 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, 13 Apr 2004 00:41:53 -0000 kris 2004/04/12 17:41:52 PDT FreeBSD ports repository Modified files: audio/ufmcontrol-i18n pkg-plist Log: Add missing include Revision Changes Path 1.3 +1 -0 ports/audio/ufmcontrol-i18n/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 17: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 75CE516A4CE; Mon, 12 Apr 2004 17:44:35 -0700 (PDT) Received: from saturn.criticalmagic.com (saturn.criticalmagic.com [68.213.16.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10DB443D2D; Mon, 12 Apr 2004 17:44:35 -0700 (PDT) (envelope-from richardcoleman@mindspring.com) Received: from mindspring.com (titan.criticalmagic.com [68.213.16.23]) by saturn.criticalmagic.com (Postfix) with ESMTP id 394FA3BD2A; Mon, 12 Apr 2004 20:44:32 -0400 (EDT) Message-ID: <407B3801.4090001@mindspring.com> Date: Mon, 12 Apr 2004 20:44:49 -0400 From: Richard Coleman Organization: Critical Magic, Inc. User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.6) Gecko/20040113 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Nate Lawson References: <200404110746.i3B7kiIn075106@grimreaper.grondar.org> <20040412153153.I70759@root.org> In-Reply-To: <20040412153153.I70759@root.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 cc: Mark Murray Subject: Re: cvs commit: src/sys/modules/random Makefile src/sys/dev/random randomdev.h randomdev_soft.c randomdev_soft.h yar X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: richardcoleman@mindspring.com List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 00:44:35 -0000 Nate Lawson wrote: >>Yarrow's entropy accumulation and PRNG generator parts are disconnected >>(that is part of its point), so there is no connection between the >>number of bytes harvested and the number of bytes supplied. This >>makes a very long armoured pipeline between accumulation and issue, >>which seems like overkill when the suppied entropy is 99% OK (far >>better than Yarrow currently ever gets, BTW). >> >>[...] >> >>Yarrow is unsuitable for this purpose; it is a great generator when >>you have a low-entropy environment and you need to protect against >>attackers having potential knowledge of the inputs. > > > * XSTORE is an unprivileged operation, users can call it all they want. > > * If your hardware fails undetectably somehow (101010101...), a > single-source PRNG also fails. If we seed our existing PRNG which > accepts multiple sources, it doesn't. > > I think Jacques said it best. All I'm asking is that we use a > well-reviewed PRNG and as many entropy sources as possible, including this > nice VIA part. > > -Nate I agree with this sentiment. The more crypto hardware that becomes available, the more of it that will be crap. Now, the obvious question is what post-processing does OpenBSD do to hardware random number generators? I read the semi-recent paper on the crypto framework for OpenBSD (http://www.openbsd.org/papers/ocf.pdf) but it doesn't mention anything about this. Anyone know offhand? Richard Coleman richardcoleman@mindspring.com From owner-cvs-all@FreeBSD.ORG Mon Apr 12 17: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 6C96B16A4CE; Mon, 12 Apr 2004 17:54:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6827C43D53; Mon, 12 Apr 2004 17:54:40 -0700 (PDT) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D0seGe007956; Mon, 12 Apr 2004 17:54:40 -0700 (PDT) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D0sdJs007955; Mon, 12 Apr 2004 17:54:39 -0700 (PDT) (envelope-from leeym) Message-Id: <200404130054.i3D0sdJs007955@repoman.freebsd.org> From: Yen-Ming Lee Date: Mon, 12 Apr 2004 17:54:39 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/dns/rbldnsd Makefile distinfo pkg-install pkg-message pkg-plist ports/dns/rbldnsd/files example rbldnsd.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, 13 Apr 2004 00:54:40 -0000 leeym 2004/04/12 17:54:39 PDT FreeBSD ports repository Modified files: dns/rbldnsd Makefile distinfo pkg-plist Added files: dns/rbldnsd pkg-install pkg-message dns/rbldnsd/files example rbldnsd.sh Log: - upgrade version to 0.992 - switch to rc.subr start mechanism - added user/group - added example data on install, target directory - added pkg-message - added more doc files PR: 65392 Submitted by: Paul Chvostek Revision Changes Path 1.5 +38 -2 ports/dns/rbldnsd/Makefile 1.4 +2 -2 ports/dns/rbldnsd/distinfo 1.1 +30 -0 ports/dns/rbldnsd/files/example (new) 1.1 +41 -0 ports/dns/rbldnsd/files/rbldnsd.sh (new) 1.1 +30 -0 ports/dns/rbldnsd/pkg-install (new) 1.1 +17 -0 ports/dns/rbldnsd/pkg-message (new) 1.3 +7 -0 ports/dns/rbldnsd/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 17: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 DDA1C16A4F6 for ; Mon, 12 Apr 2004 17:54:51 -0700 (PDT) Received: from root.org (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id AED9243D55 for ; Mon, 12 Apr 2004 17:54:51 -0700 (PDT) (envelope-from nate@root.org) Received: (qmail 71804 invoked by uid 1000); 13 Apr 2004 00:54:53 -0000 Date: Mon, 12 Apr 2004 17:54:53 -0700 (PDT) From: Nate Lawson To: Richard Coleman In-Reply-To: <407B3801.4090001@mindspring.com> Message-ID: <20040412174616.K71599@root.org> References: <200404110746.i3B7kiIn075106@grimreaper.grondar.org> <20040412153153.I70759@root.org> <407B3801.4090001@mindspring.com> 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 cc: Mark Murray Subject: Re: cvs commit: src/sys/modules/random Makefile src/sys/dev/random randomdev.h randomdev_soft.c randomdev_soft.h yar X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 00:54:53 -0000 On Mon, 12 Apr 2004, Richard Coleman wrote: > Nate Lawson wrote: > > >>Yarrow's entropy accumulation and PRNG generator parts are disconnected > >>(that is part of its point), so there is no connection between the > >>number of bytes harvested and the number of bytes supplied. This > >>makes a very long armoured pipeline between accumulation and issue, > >>which seems like overkill when the suppied entropy is 99% OK (far > >>better than Yarrow currently ever gets, BTW). > >> > >>[...] > >> > >>Yarrow is unsuitable for this purpose; it is a great generator when > >>you have a low-entropy environment and you need to protect against > >>attackers having potential knowledge of the inputs. > > > > * XSTORE is an unprivileged operation, users can call it all they want. > > > > * If your hardware fails undetectably somehow (101010101...), a > > single-source PRNG also fails. If we seed our existing PRNG which > > accepts multiple sources, it doesn't. > > > > I think Jacques said it best. All I'm asking is that we use a > > well-reviewed PRNG and as many entropy sources as possible, including this > > nice VIA part. > > > > -Nate > > I agree with this sentiment. The more crypto hardware that becomes > available, the more of it that will be crap. Please don't mischaracterize me, that is not what I said. My whole point with that long strength vs. assurance discussion was to point out the need for systems to fail closed. I've said nothing about the likelihood of this particular hardware failing in any way. My concern is that the risk is higher that we fail open if we neglect to use multiple sources of entropy and a PRNG with those sources. I feel I've given enough information, including links to our whitepaper, for people to consider how to move forward on this. All opinions I've expressed in this thread are not my employer's. I think VIA has provided a very useful hardware entropy source; let's properly use it. -Nate From owner-cvs-all@FreeBSD.ORG Mon Apr 12 18:08: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 2558B16A4CE; Mon, 12 Apr 2004 18:08:41 -0700 (PDT) Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 099C343D49; Mon, 12 Apr 2004 18:08:41 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (f22ebb97f66ef02aa8a6aaa26dd5694c@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i3D18enr004628; Mon, 12 Apr 2004 18:08:40 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 6F1C352322; Mon, 12 Apr 2004 18:08:39 -0700 (PDT) Date: Mon, 12 Apr 2004 18:08:39 -0700 From: Kris Kennaway To: Yen-Ming Lee Message-ID: <20040413010839.GA22172@xor.obsecurity.org> References: <200404130054.i3D0sdJs007955@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="W/nzBZO5zC0uMSeA" Content-Disposition: inline In-Reply-To: <200404130054.i3D0sdJs007955@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/dns/rbldnsd Makefile distinfo pkg-install pkg-message pkg-plist ports/dns/rbldnsd/files example rbldnsd.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, 13 Apr 2004 01:08:41 -0000 --W/nzBZO5zC0uMSeA Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 12, 2004 at 05:54:39PM -0700, Yen-Ming Lee wrote: > leeym 2004/04/12 17:54:39 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > dns/rbldnsd Makefile distinfo pkg-plist=20 > Added files: > dns/rbldnsd pkg-install pkg-message=20 > dns/rbldnsd/files example rbldnsd.sh=20 > Log: > - upgrade version to 0.992 > - switch to rc.subr start mechanism > - added user/group > - added example data on install, target directory > - added pkg-message > - added more doc files Don't forget to register the uid. Kris --W/nzBZO5zC0uMSeA Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAez2XWry0BWjoQKURAo/GAJ9rNQTWi9+R9L1X+Sm95pQD5sY9zgCfZaST Qkr4qsn+6q3bHtvwjo89taU= =QSTT -----END PGP SIGNATURE----- --W/nzBZO5zC0uMSeA-- From owner-cvs-all@FreeBSD.ORG Mon Apr 12 18: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 C68BF16A4CE; Mon, 12 Apr 2004 18:23:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB25843D1F; Mon, 12 Apr 2004 18:23:37 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D1NbGe014901; Mon, 12 Apr 2004 18:23:37 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D1Nb8S014900; Mon, 12 Apr 2004 18:23:37 -0700 (PDT) (envelope-from kris) Message-Id: <200404130123.i3D1Nb8S014900@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 12 Apr 2004 18:23:37 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/WWWdb 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, 13 Apr 2004 01:23:37 -0000 kris 2004/04/12 18:23:37 PDT FreeBSD ports repository Modified files: databases/WWWdb pkg-plist Log: Add missing @dirrm Revision Changes Path 1.4 +1 -0 ports/databases/WWWdb/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 18:26: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 E149616A4CE; Mon, 12 Apr 2004 18:26:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C656A43D58; Mon, 12 Apr 2004 18:26:03 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D1Q3Ge015036; Mon, 12 Apr 2004 18:26:03 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D1Q31c015035; Mon, 12 Apr 2004 18:26:03 -0700 (PDT) (envelope-from imp) Message-Id: <200404130126.i3D1Q31c015035@repoman.freebsd.org> From: Warner Losh Date: Mon, 12 Apr 2004 18:26:03 -0700 (PDT) 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/man4.i386 ep.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, 13 Apr 2004 01:26:04 -0000 imp 2004/04/12 18:26:03 PDT FreeBSD src repository Modified files: share/man/man4/man4.i386 ep.4 Log: The 3CXE589DT was spotted in the wild, and is presumed supported by this driver. Also, add 3Com to a number of places. Revision Changes Path 1.30 +11 -11 src/share/man/man4/man4.i386/ep.4 From owner-cvs-all@FreeBSD.ORG Mon Apr 12 18:55: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 550D816A4CE; Mon, 12 Apr 2004 18:55:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A56A43D2D; Mon, 12 Apr 2004 18:55:46 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D1tjGe021097; Mon, 12 Apr 2004 18:55:45 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D1tjsf021096; Mon, 12 Apr 2004 18:55:45 -0700 (PDT) (envelope-from kris) Message-Id: <200404130155.i3D1tjsf021096@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 12 Apr 2004 18:55:45 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/converters/vda2fbd 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, 13 Apr 2004 01:55:46 -0000 kris 2004/04/12 18:55:45 PDT FreeBSD ports repository Modified files: converters/vda2fbd pkg-plist Log: Add missing @dirrm Revision Changes Path 1.2 +1 -0 ports/converters/vda2fbd/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 19:02: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 B807516A4CE; Mon, 12 Apr 2004 19:02:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B7D043D5E; Mon, 12 Apr 2004 19:02:38 -0700 (PDT) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D22cGe023002; Mon, 12 Apr 2004 19:02:38 -0700 (PDT) (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D22cGh022998; Mon, 12 Apr 2004 19:02:38 -0700 (PDT) (envelope-from deischen) Message-Id: <200404130202.i3D22cGh022998@repoman.freebsd.org> From: Daniel Eischen Date: Mon, 12 Apr 2004 19:02:37 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/xmcd 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, 13 Apr 2004 02:02:38 -0000 deischen 2004/04/12 19:02:37 PDT FreeBSD ports repository Modified files: audio/xmcd Makefile Log: s/ /\t/ in the newly added BUILD_DEPENDS line. portlint didn't catch this, but I may not have been using the latest version of it. Noticed by: krion Revision Changes Path 1.45 +1 -1 ports/audio/xmcd/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 19: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 746A816A4CE; Mon, 12 Apr 2004 19:45:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5759143D55; Mon, 12 Apr 2004 19:45:42 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D2jgGe032199; Mon, 12 Apr 2004 19:45:42 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D2jfQu032198; Mon, 12 Apr 2004 19:45:41 -0700 (PDT) (envelope-from linimon) Message-Id: <200404130245.i3D2jfQu032198@repoman.freebsd.org> From: Mark Linimon Date: Mon, 12 Apr 2004 19:45:41 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/metamail 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, 13 Apr 2004 02:45:42 -0000 linimon 2004/04/12 19:45:41 PDT FreeBSD ports repository Modified files: mail/metamail Makefile Log: nectar points out that there are still ports in the tree that depend on metamail: mail/exmh2 (and thus japanese/exmh2), and mail/rmime. Since I am not sure what the development status of those ports are, I am going to remove the expiration date -- but with some trepidation, leave the deprecated tag. Revision Changes Path 1.25 +0 -1 ports/mail/metamail/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 19:57: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 3BF2D16A4D0; Mon, 12 Apr 2004 19:57:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 178B143D4C; Mon, 12 Apr 2004 19:57:10 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D2v9Ge034286; Mon, 12 Apr 2004 19:57:09 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D2v9Sk034285; Mon, 12 Apr 2004 19:57:09 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404130257.i3D2v9Sk034285@repoman.freebsd.org> From: Ying-Chieh Liao Date: Mon, 12 Apr 2004 19:57:08 -0700 (PDT) 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/teddy Makefile distinfo pkg-descr ports/graphics/teddy/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: Tue, 13 Apr 2004 02:57:10 -0000 ijliao 2004/04/12 19:57:08 PDT FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/teddy Makefile distinfo pkg-descr graphics/teddy/files patch-configure Log: add teddy 1.81.5 Graphics Library for 3D Scenes Revision Changes Path 1.677 +1 -0 ports/graphics/Makefile 1.1 +47 -0 ports/graphics/teddy/Makefile (new) 1.1 +2 -0 ports/graphics/teddy/distinfo (new) 1.1 +11 -0 ports/graphics/teddy/files/patch-configure (new) 1.1 +11 -0 ports/graphics/teddy/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 19: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 A76BB16A4CE; Mon, 12 Apr 2004 19:57:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8B8CC43D48; Mon, 12 Apr 2004 19:57:20 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D2vKGe034330; Mon, 12 Apr 2004 19:57:20 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D2vJcu034329; Mon, 12 Apr 2004 19:57:19 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404130257.i3D2vJcu034329@repoman.freebsd.org> From: Ying-Chieh Liao Date: Mon, 12 Apr 2004 19:57:19 -0700 (PDT) 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, 13 Apr 2004 02:57:20 -0000 ijliao 2004/04/12 19:57:19 PDT FreeBSD ports repository Modified files: . modules Log: teddy --> ports/graphics/teddy Revision Changes Path 1.9894 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Mon Apr 12 19:58: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 9B60C16A4CE; Mon, 12 Apr 2004 19:58:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94DA443D53; Mon, 12 Apr 2004 19:58:07 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D2w7Ge034440; Mon, 12 Apr 2004 19:58:07 -0700 (PDT) (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D2w7WC034439; Mon, 12 Apr 2004 19:58:07 -0700 (PDT) (envelope-from green) Message-Id: <200404130258.i3D2w7WC034439@repoman.freebsd.org> From: Brian Feldman Date: Mon, 12 Apr 2004 19:58:07 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/dump dump.8 dump.h main.c tape.c src/sbin/restore extern.h main.c restore.8 tape.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 02:58:07 -0000 green 2004/04/12 19:58:07 PDT FreeBSD src repository Modified files: sbin/dump dump.8 dump.h main.c tape.c sbin/restore extern.h main.c restore.8 tape.c Log: Add -P arguments for dump(8) and restore(8) which allow the user to use backup methods other than files and tapes. The -P argument is a normal sh(1) pipeline with either $DUMP_VOLUME or $RESTORE_VOLUME defined in the environment, respectively. For example, I can back up my home to three DVD+R[W]s as so: Filesystem 1K-blocks Used Avail Capacity Mounted on /dev/ad0s2e 40028550 10093140 26733126 27% /home green# dump -0 -L -C16 -B4589840 -P 'growisofs -Z /dev/cd0=/dev/fd/0' /home Revision Changes Path 1.65 +23 -1 src/sbin/dump/dump.8 1.26 +1 -0 src/sbin/dump/dump.h 1.59 +21 -7 src/sbin/dump/main.c 1.26 +39 -12 src/sbin/dump/tape.c 1.9 +1 -1 src/sbin/restore/extern.h 1.23 +27 -10 src/sbin/restore/main.c 1.45 +27 -6 src/sbin/restore/restore.8 1.39 +37 -2 src/sbin/restore/tape.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 20:17: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 087D316A4CE; Mon, 12 Apr 2004 20:17:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0EB543D1D; Mon, 12 Apr 2004 20:17:32 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D3HWGe039464; Mon, 12 Apr 2004 20:17:32 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D3HWqv039463; Mon, 12 Apr 2004 20:17:32 -0700 (PDT) (envelope-from marcus) Message-Id: <200404130317.i3D3HWqv039463@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 12 Apr 2004 20:17:32 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/shared-mime-info/files patch-update-mime-database.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 03:17:33 -0000 marcus 2004/04/12 20:17:32 PDT FreeBSD ports repository Added files: misc/shared-mime-info/files patch-update-mime-database.c Log: It is possible for ``lang'' to be NULL, and thus free'ing it would be a bad idea. Add a check to prevent a crash. Submitted by: Mark Evenson Revision Changes Path 1.1 +12 -0 ports/misc/shared-mime-info/files/patch-update-mime-database.c (new) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 20:18: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 A81EB16A4CE; Mon, 12 Apr 2004 20:18:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BF3643D46; Mon, 12 Apr 2004 20:18:25 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D3IPGe039504; Mon, 12 Apr 2004 20:18:25 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D3IPx6039503; Mon, 12 Apr 2004 20:18:25 -0700 (PDT) (envelope-from marcus) Message-Id: <200404130318.i3D3IPx6039503@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 12 Apr 2004 20:18:25 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/shared-mime-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: Tue, 13 Apr 2004 03:18:25 -0000 marcus 2004/04/12 20:18:25 PDT FreeBSD ports repository Modified files: misc/shared-mime-info Makefile Log: Bump PORTREVISION for the NULL pointer check. Revision Changes Path 1.19 +1 -1 ports/misc/shared-mime-info/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 20:27: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 73D5616A4CE; Mon, 12 Apr 2004 20:27:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5655543D45; Mon, 12 Apr 2004 20:27:48 -0700 (PDT) (envelope-from kensmith@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D3RmGe041470; Mon, 12 Apr 2004 20:27:48 -0700 (PDT) (envelope-from kensmith@repoman.freebsd.org) Received: (from kensmith@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D3RmYv041469; Mon, 12 Apr 2004 20:27:48 -0700 (PDT) (envelope-from kensmith) Message-Id: <200404130327.i3D3RmYv041469@repoman.freebsd.org> From: Ken Smith Date: Mon, 12 Apr 2004 20:27:47 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/release/sysinstall menus.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 03:27:48 -0000 kensmith 2004/04/12 20:27:47 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) release/sysinstall menus.c Log: Sync list of FTP sites with current reality, and re-do the IPv6 section to match -current's layout. Approved by: re (implicit) Revision Changes Path 1.252.2.71 +19 -16 src/release/sysinstall/menus.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 20:31: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 CD66216A4CE; Mon, 12 Apr 2004 20:31:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B03FD43D4C; Mon, 12 Apr 2004 20:31:01 -0700 (PDT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D3V1Ge041713; Mon, 12 Apr 2004 20:31:01 -0700 (PDT) (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D3V1dx041712; Mon, 12 Apr 2004 20:31:01 -0700 (PDT) (envelope-from maho) Message-Id: <200404130331.i3D3V1dx041712@repoman.freebsd.org> From: Maho Nakata Date: Mon, 12 Apr 2004 20:31:01 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/megapov Makefileports/graphics/megapov/files patch-unix+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, 13 Apr 2004 03:31:02 -0000 maho 2004/04/12 20:31:01 PDT FreeBSD ports repository Modified files: graphics/megapov Makefile graphics/megapov/files patch-unix+Makefile Log: fix build on 5-current (later than 502103) Submitted by: bento Revision Changes Path 1.4 +0 -4 ports/graphics/megapov/Makefile 1.2 +10 -1 ports/graphics/megapov/files/patch-unix+Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 20:31: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 23CD816A4CF; Mon, 12 Apr 2004 20:31:50 -0700 (PDT) Received: from mtaw4.prodigy.net (mtaw4.prodigy.net [64.164.98.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEEE043D49; Mon, 12 Apr 2004 20:31:47 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (bbd27a8803d3a5e3574db26ab3ffa1db@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw4.prodigy.net (8.12.10/8.12.10) with ESMTP id i3D3Vk1O006565; Mon, 12 Apr 2004 20:31:46 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 775EC53910; Mon, 12 Apr 2004 20:31:46 -0700 (PDT) Date: Mon, 12 Apr 2004 20:31:46 -0700 From: Kris Kennaway To: Mark Linimon Message-ID: <20040413033146.GA23768@xor.obsecurity.org> References: <200404130245.i3D2jfQu032198@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pWyiEgJYm5f9v55/" Content-Disposition: inline In-Reply-To: <200404130245.i3D2jfQu032198@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/mail/metamail 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, 13 Apr 2004 03:31:50 -0000 --pWyiEgJYm5f9v55/ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 12, 2004 at 07:45:41PM -0700, Mark Linimon wrote: > linimon 2004/04/12 19:45:41 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > mail/metamail Makefile=20 > Log: > nectar points out that there are still ports in the tree that depend on > metamail: mail/exmh2 (and thus japanese/exmh2), and mail/rmime. Since > I am not sure what the development status of those ports are, I am going > to remove the expiration date -- but with some trepidation, leave the > deprecated tag. Didn't you say that Debian had worked on removing dependencies? Perhaps you could check their packages to see what they did with those ports, if they have them. kris --pWyiEgJYm5f9v55/ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAe18iWry0BWjoQKURAjgYAKDcJvzwP9V8k8CbHPDRKJBTwGtQVQCfQtnl y6UQD3qKA2SFhDr53s9ePVQ= =ZQU+ -----END PGP SIGNATURE----- --pWyiEgJYm5f9v55/-- From owner-cvs-all@FreeBSD.ORG Mon Apr 12 20:35: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 540AC16A4CE; Mon, 12 Apr 2004 20:35:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37FE043D1F; Mon, 12 Apr 2004 20:35:56 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D3ZtGe043636; Mon, 12 Apr 2004 20:35:55 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D3ZtTh043635; Mon, 12 Apr 2004 20:35:55 -0700 (PDT) (envelope-from kris) Message-Id: <200404130335.i3D3ZtTh043635@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 12 Apr 2004 20:35:55 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/libexecinfo 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, 13 Apr 2004 03:35:56 -0000 kris 2004/04/12 20:35:55 PDT FreeBSD ports repository Modified files: devel/libexecinfo pkg-plist Log: Add missing @dirrm Revision Changes Path 1.2 +1 -0 ports/devel/libexecinfo/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 20:37: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 6F4DA16A4CE; Mon, 12 Apr 2004 20:37:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 51DF043D41; Mon, 12 Apr 2004 20:37:59 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D3bxGe043693; Mon, 12 Apr 2004 20:37:59 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D3bwCp043692; Mon, 12 Apr 2004 20:37:58 -0700 (PDT) (envelope-from kris) Message-Id: <200404130337.i3D3bwCp043692@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 12 Apr 2004 20:37:58 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/oniguruma 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, 13 Apr 2004 03:37:59 -0000 kris 2004/04/12 20:37:58 PDT FreeBSD ports repository Modified files: devel/oniguruma pkg-plist Log: Add missing file Revision Changes Path 1.11 +1 -0 ports/devel/oniguruma/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 20:39: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 F0B6D16A4CE; Mon, 12 Apr 2004 20:39:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EADEE43D2D; Mon, 12 Apr 2004 20:39:17 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D3dHGe043853; Mon, 12 Apr 2004 20:39:17 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D3dH6N043852; Mon, 12 Apr 2004 20:39:17 -0700 (PDT) (envelope-from rwatson) Message-Id: <200404130339.i3D3dH6N043852@repoman.freebsd.org> From: Robert Watson Date: Mon, 12 Apr 2004 20:39:17 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/conf files src/sys/dev/usb umct.c src/sys/modules Makefile src/sys/modules/umct 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, 13 Apr 2004 03:39:18 -0000 rwatson 2004/04/12 20:39:17 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/conf files sys/modules Makefile Added files: (Branch: RELENG_4) sys/dev/usb umct.c sys/modules/umct Makefile Log: MFC umct(4) driver written by Scott Long : Add 'umct', a driver for MCT Corp. and Belkin F5U109 USB-Serial adapters. This is based on the ubsa driver by Alexander Kabaev along with documentation gleaned from the Linux mct_u232 driver. I've had this driver sitting in my tree for almost 6 months, and several others have found it useful. I've been using this with success on my RELENG_4 USB macines. MFC of umct.4 to follow. Approved by: re (scottl) Revision Changes Path 1.340.2.153 +1 -0 src/sys/conf/files 1.5.4.1 +529 -0 src/sys/dev/usb/umct.c (new) 1.110.2.83 +1 -0 src/sys/modules/Makefile 1.2.2.1 +11 -0 src/sys/modules/umct/Makefile (new) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 20: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 854F816A4CE; Mon, 12 Apr 2004 20:42:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6876243D41; Mon, 12 Apr 2004 20:42:12 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D3gCGe045518; Mon, 12 Apr 2004 20:42:12 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D3gBPo045514; Mon, 12 Apr 2004 20:42:11 -0700 (PDT) (envelope-from rwatson) Message-Id: <200404130342.i3D3gBPo045514@repoman.freebsd.org> From: Robert Watson Date: Mon, 12 Apr 2004 20:42:11 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/man/man4 Makefile umct.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, 13 Apr 2004 03:42:12 -0000 rwatson 2004/04/12 20:42:11 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) share/man/man4 Makefile Added files: (Branch: RELENG_4) share/man/man4 umct.4 Log: MFC man page for umct(4) driver. Approved by: re (scottl) Revision Changes Path 1.83.2.75 +1 -0 src/share/man/man4/Makefile 1.1.2.1 +85 -0 src/share/man/man4/umct.4 (new) From owner-cvs-all@FreeBSD.ORG Mon Apr 12 20:42: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 F13D316A4CF; Mon, 12 Apr 2004 20:42:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D20B543D39; Mon, 12 Apr 2004 20:42:20 -0700 (PDT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D3gKGe045655; Mon, 12 Apr 2004 20:42:20 -0700 (PDT) (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D3gKdw045651; Mon, 12 Apr 2004 20:42:20 -0700 (PDT) (envelope-from maho) Message-Id: <200404130342.i3D3gKdw045651@repoman.freebsd.org> From: Maho Nakata Date: Mon, 12 Apr 2004 20:42:20 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/povray/files patch-src::frame.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, 13 Apr 2004 03:42:21 -0000 maho 2004/04/12 20:42:20 PDT FreeBSD ports repository Modified files: graphics/povray/files patch-src::frame.h Log: Hope this fixes for Alpha 4-stable Revision Changes Path 1.2 +2 -2 ports/graphics/povray/files/patch-src::frame.h From owner-cvs-all@FreeBSD.ORG Mon Apr 12 21:03: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 8203B16A4CE; Mon, 12 Apr 2004 21:03:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 64D3443D58; Mon, 12 Apr 2004 21:03:47 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D43lGe056756; Mon, 12 Apr 2004 21:03:47 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D43ls2056755; Mon, 12 Apr 2004 21:03:47 -0700 (PDT) (envelope-from linimon) Message-Id: <200404130403.i3D43ls2056755@repoman.freebsd.org> From: Mark Linimon Date: Mon, 12 Apr 2004 21:03:47 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/lp_solve 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, 13 Apr 2004 04:03:47 -0000 linimon 2004/04/12 21:03:46 PDT FreeBSD ports repository Modified files: math/lp_solve Makefile Log: er distfile survey, remove obsolete mastersite. It points to the URL contained in the pkg_descr, but when I tried to access that site, I was told I was not a member of that group -- not a very useful method of software distribution IMHO. Revision Changes Path 1.5 +1 -1 ports/math/lp_solve/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 21:29: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 6842B16A4CE; Mon, 12 Apr 2004 21:29:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BDE443D5C; Mon, 12 Apr 2004 21:29:07 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D4T7Ge060931; Mon, 12 Apr 2004 21:29:07 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D4T7ls060930; Mon, 12 Apr 2004 21:29:07 -0700 (PDT) (envelope-from linimon) Message-Id: <200404130429.i3D4T7ls060930@repoman.freebsd.org> From: Mark Linimon Date: Mon, 12 Apr 2004 21:29:06 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/xspread 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, 13 Apr 2004 04:29:07 -0000 linimon 2004/04/12 21:29:06 PDT FreeBSD ports repository Modified files: math/xspread Makefile Log: Per distfile survey, remove Debian as a mastersite. I cannot find any current version of this port under Debian. (Note: the source code to this port is very old). If anyone knows of a better mastersite these days, please speak up. Revision Changes Path 1.16 +1 -2 ports/math/xspread/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 21:30: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 61FA816A4CF; Mon, 12 Apr 2004 21:30:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 456E043D4C; Mon, 12 Apr 2004 21:30:05 -0700 (PDT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D4U5Ge060976; Mon, 12 Apr 2004 21:30:05 -0700 (PDT) (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D4U4c8060975; Mon, 12 Apr 2004 21:30:04 -0700 (PDT) (envelope-from brooks) Message-Id: <200404130430.i3D4U4c8060975@repoman.freebsd.org> From: Brooks Davis Date: Mon, 12 Apr 2004 21:30:04 -0700 (PDT) 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, 13 Apr 2004 04:30:05 -0000 brooks 2004/04/12 21:30:04 PDT FreeBSD doc repository (src committer) Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: Reserve UID/GID 102 for the sysutils/ganglia-monitor-core port. Reserve UID/GID 103 for the sysutils/sge and sysutils/sgeee ports. Revision Changes Path 1.393 +2 -0 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Mon Apr 12 21: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 AD66C16A4CE; Mon, 12 Apr 2004 21:45:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8932543D49; Mon, 12 Apr 2004 21:45:51 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D4jpGe064932; Mon, 12 Apr 2004 21:45:51 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D4jpFr064931; Mon, 12 Apr 2004 21:45:51 -0700 (PDT) (envelope-from kris) Message-Id: <200404130445.i3D4jpFr064931@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 12 Apr 2004 21:45:50 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/optipng 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, 13 Apr 2004 04:45:51 -0000 kris 2004/04/12 21:45:50 PDT FreeBSD ports repository Modified files: graphics/optipng pkg-plist Log: Add missing @dirrm Revision Changes Path 1.2 +1 -0 ports/graphics/optipng/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 21:49: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 25C9616A4CE; Mon, 12 Apr 2004 21:49:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 092F643D46; Mon, 12 Apr 2004 21:49:16 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D4nFGe065020; Mon, 12 Apr 2004 21:49:15 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D4nF4w065019; Mon, 12 Apr 2004 21:49:15 -0700 (PDT) (envelope-from kris) Message-Id: <200404130449.i3D4nF4w065019@repoman.freebsd.org> From: Kris Kennaway Date: Mon, 12 Apr 2004 21:49:15 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/libemf 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, 13 Apr 2004 04:49:16 -0000 kris 2004/04/12 21:49:15 PDT FreeBSD ports repository Modified files: graphics/libemf pkg-plist Log: Add missing file Revision Changes Path 1.2 +1 -0 ports/graphics/libemf/pkg-plist From owner-cvs-all@FreeBSD.ORG Mon Apr 12 21:50: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 B1F9D16A50B for ; Mon, 12 Apr 2004 21:50:26 -0700 (PDT) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 2761343D2D for ; Mon, 12 Apr 2004 21:50:26 -0700 (PDT) (envelope-from silby@silby.com) Received: (qmail 10651 invoked from network); 13 Apr 2004 04:50:24 -0000 Received: from niwun.pair.com (HELO localhost) (209.68.2.70) by relay.pair.com with SMTP; 13 Apr 2004 04:50:24 -0000 X-pair-Authenticated: 209.68.2.70 Date: Tue, 13 Apr 2004 01:07:22 -0500 (CDT) From: Mike Silbersack To: Poul-Henning Kamp In-Reply-To: <5475.1081806410@critter.freebsd.dk> Message-ID: <20040413010417.U11578@odysseus.silby.com> References: <5475.1081806410@critter.freebsd.dk> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: src-committers@FreeBSD.org cc: cvs-src@FreeBSD.org cc: cvs-all@FreeBSD.org cc: David Malone cc: richardcoleman@mindspring.com cc: Mark Murray cc: Nate Lawson Subject: Re: cvs commit: src/sys/modules/random Makefile src/sys/dev/random randomdev.h randomdev_soft.c randomdev_soft.h yar X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 04:50:26 -0000 On Mon, 12 Apr 2004, Poul-Henning Kamp wrote: > I therefore think that we should retain a crypto/yarrow afterburner > on all random sources, but it may make sense to have offer different > grades of random bits for performance reasons. > > -- > Poul-Henning Kamp | UNIX since Zilog Zeus 3.20 One thing that might make sense is to rename + wrap arc4random. In the TCP stack, we use arc4random because it's fast and good enough, not because RC4 has some particular importance. Therefore, if we instead called arc4random fast_random, Mark could feed minimally processed hardware entropy sources to fast_random, bypassing RC4 totally. However, the question I have is this: Is the C3's hardware PRNG actually faster than RC4 by a margin significant enough to make such an optimization worthwhile? Mike "Silby" Silbersack From owner-cvs-all@FreeBSD.ORG Mon Apr 12 22:05: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 25CBE16A4CE; Mon, 12 Apr 2004 22:05:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0752343D54; Mon, 12 Apr 2004 22:05:22 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D55LGe069965; Mon, 12 Apr 2004 22:05:21 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D55LZo069964; Mon, 12 Apr 2004 22:05:21 -0700 (PDT) (envelope-from marcus) Message-Id: <200404130505.i3D55LZo069964@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 12 Apr 2004 22:05:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/gnomesystemmonitor Makefile ports/sysutils/gnomesystemmonitor/files patch-src::proctable.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 05:05:22 -0000 marcus 2004/04/12 22:05:21 PDT FreeBSD ports repository Modified files: sysutils/gnomesystemmonitor Makefile sysutils/gnomesystemmonitor/files patch-src::proctable.c Log: Fix a potential crash when looking at the process list due to a missing field name. Revision Changes Path 1.54 +1 -0 ports/sysutils/gnomesystemmonitor/Makefile 1.2 +21 -9 ports/sysutils/gnomesystemmonitor/files/patch-src::proctable.c From owner-cvs-all@FreeBSD.ORG Mon Apr 12 22: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 B0FF316A4CE; Mon, 12 Apr 2004 22:06:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9276943D48; Mon, 12 Apr 2004 22:06:17 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D56HGe070041; Mon, 12 Apr 2004 22:06:17 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D56HLu070040; Mon, 12 Apr 2004 22:06:17 -0700 (PDT) (envelope-from krion) Message-Id: <200404130506.i3D56HLu070040@repoman.freebsd.org> From: Kirill Ponomarew Date: Mon, 12 Apr 2004 22:06:17 -0700 (PDT) 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: Tue, 13 Apr 2004 05:06:17 -0000 krion 2004/04/12 22:06:16 PDT FreeBSD doc repository (ports committer) Modified files: share/sgml mirrors.xml Log: - Add cvsup8.de.FreeBSD.org Revision Changes Path 1.17 +4 -0 doc/share/sgml/mirrors.xml From owner-cvs-all@FreeBSD.ORG Mon Apr 12 22:32: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 4239716A4CE; Mon, 12 Apr 2004 22:32:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3BD8443D55; Mon, 12 Apr 2004 22:32:22 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D5WMGe075957; Mon, 12 Apr 2004 22:32:22 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D5WLLk075956; Mon, 12 Apr 2004 22:32:21 -0700 (PDT) (envelope-from rwatson) Message-Id: <200404130532.i3D5WLLk075956@repoman.freebsd.org> From: Robert Watson Date: Mon, 12 Apr 2004 22:32:21 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/projects/busdma 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: Tue, 13 Apr 2004 05:32:22 -0000 rwatson 2004/04/12 22:32:21 PDT FreeBSD doc repository Modified files: en/projects/busdma index.sgml Log: Update locking status and busdma status for a few drivers in the busdma table: - if_bge now marked as INTR_MPSAFE, SMPng locked. Busdma is now tested. - if_dc now marked as INTR_MPSAFE, SMPng locked. Note that this driver uses MTX_RECURSE. - if_de no longer uses vtophys(). - if_em is now SMPng locked. - if_en contains locking, but is not marked as INTR_MPSAFE. - if_ep is now marked as INTR_MPSAFE, SMPng locked, but uses MTX_RECURSE. - if_fxp is now marked SMPng locked. - if_gx has locking, but isn't marked INTR_MPSAFE. Uses MTX_RECURSE. - if_pcn still uses vtophys(); locking is present, but it's not marked as INTR_MPSAFE, and the mutex is marked MTX_RECURSE. - if_rl contains locking, but isn't marked as INTR_MPSAFE. The mutex is marked MTX_RECURSE. - if_sf still uses vtophys(). It contains locking, but uses MTX_RECURSE and isn't marked INTR_MPSAFE. - if_sis has locking, but isn't marked as INTR_MPSAFE. Its mutex is marked MTX_RECURSE. Revision Changes Path 1.78 +37 -32 www/en/projects/busdma/index.sgml From owner-cvs-all@FreeBSD.ORG Mon Apr 12 22:37: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 BF82F16A4CE; Mon, 12 Apr 2004 22:37:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2C7643D3F; Mon, 12 Apr 2004 22:37:50 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D5boGe076119; Mon, 12 Apr 2004 22:37:50 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D5bogj076118; Mon, 12 Apr 2004 22:37:50 -0700 (PDT) (envelope-from rwatson) Message-Id: <200404130537.i3D5bogj076118@repoman.freebsd.org> From: Robert Watson Date: Mon, 12 Apr 2004 22:37:49 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/projects/busdma 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: Tue, 13 Apr 2004 05:37:50 -0000 rwatson 2004/04/12 22:37:49 PDT FreeBSD doc repository Modified files: en/projects/busdma index.sgml Log: Update a few more drivers in busdma/etc list: - if_xl is locked, but not marked INTR_MPSAFE. Also, the mutex is marked MTX_RECURSE. - hifn is locked and INTR_MPSAFE. - ubsec is locked and INTR_MPSAFE. Revision Changes Path 1.79 +9 -8 www/en/projects/busdma/index.sgml From owner-cvs-all@FreeBSD.ORG Mon Apr 12 23:15: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 E04F816A4CE; Mon, 12 Apr 2004 23:15:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C34DA43D39; Mon, 12 Apr 2004 23:15:43 -0700 (PDT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D6FhGe085122; Mon, 12 Apr 2004 23:15:43 -0700 (PDT) (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D6Fh9Q085121; Mon, 12 Apr 2004 23:15:43 -0700 (PDT) (envelope-from den) Message-Id: <200404130615.i3D6Fh9Q085121@repoman.freebsd.org> From: Denis Peplin Date: Mon, 12 Apr 2004 23:15:43 -0700 (PDT) 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/hubs 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: Tue, 13 Apr 2004 06:15:44 -0000 den 2004/04/12 23:15:43 PDT FreeBSD doc repository Modified files: ru_RU.KOI8-R/articles/hubs Makefile article.sgml Log: Merge the following from the English version: 1.4 -> 1.5 Makefile 1.44 -> 1.46 article.sgml Submitted by: Dmitry Morozovsky Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.2 +5 -4 doc/ru_RU.KOI8-R/articles/hubs/Makefile 1.3 +4 -4 doc/ru_RU.KOI8-R/articles/hubs/article.sgml From owner-cvs-all@FreeBSD.ORG Mon Apr 12 23: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 984CE16A4EE; Mon, 12 Apr 2004 23:22:30 -0700 (PDT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B0FF43D2D; Mon, 12 Apr 2004 23:22:30 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.12.11/8.12.10) with ESMTP id i3D6MTMT003842; Mon, 12 Apr 2004 23:22:29 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.11/8.12.11/Submit) id i3D6MSrQ003841; Mon, 12 Apr 2004 23:22:28 -0700 (PDT) (envelope-from obrien) Date: Mon, 12 Apr 2004 23:22:28 -0700 From: "David O'Brien" To: Gerald Pfeifer Message-ID: <20040413062228.GA3504@dragon.nuxi.com> References: <200404111110.i3BBAXLM042150@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: 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: Dirk Meyer cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/lang/gcc32 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: Tue, 13 Apr 2004 06:22:31 -0000 On Sun, Apr 11, 2004 at 01:13:44PM +0200, Gerald Pfeifer wrote: > On Sun, 11 Apr 2004, Gerald Pfeifer wrote: > > Modified files: > > lang/gcc32 Makefile > > Log: > > This old version of GCC really only makes sense on i386 at this point (if at > > all), so use ONLY_FOR_ARCHS=i386. Drop maintainership. > > Dirk, I strongly recommend that you update the gnustep-objc port to gcc33. > > In general, I suggest to get rid of at least gcc30 and gcc31 in the mid > term. There is no reason to get rid of older versions as long as they build fine (or can reasonalble be made to do so). GCC has a long history of not putting as much concern for backwards compatability. There is huge amounts of code that still cannot be built with GCC 3.3. Same for other versions of GCC. Please don't just go removing the ports. Make the maintainer ports@freebsd.org and leave it at that. From owner-cvs-all@FreeBSD.ORG Mon Apr 12 23:23: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 F2B0C16A4CE; Mon, 12 Apr 2004 23:23:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D481B43D45; Mon, 12 Apr 2004 23:23:12 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D6NCGe087053; Mon, 12 Apr 2004 23:23:12 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D6NCdG087052; Mon, 12 Apr 2004 23:23:12 -0700 (PDT) (envelope-from marcus) Message-Id: <200404130623.i3D6NCdG087052@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 12 Apr 2004 23:23:12 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/gnumeric2 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, 13 Apr 2004 06:23:13 -0000 marcus 2004/04/12 23:23:12 PDT FreeBSD ports repository Modified files: math/gnumeric2 Makefile distinfo Log: Update to 1.2.10. Revision Changes Path 1.125 +1 -1 ports/math/gnumeric2/Makefile 1.70 +2 -2 ports/math/gnumeric2/distinfo From owner-cvs-all@FreeBSD.ORG Mon Apr 12 23: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 36D4216A4CE; Mon, 12 Apr 2004 23:23:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1961043D3F; Mon, 12 Apr 2004 23:23:40 -0700 (PDT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D6NdGe087089; Mon, 12 Apr 2004 23:23:39 -0700 (PDT) (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D6NdVZ087088; Mon, 12 Apr 2004 23:23:39 -0700 (PDT) (envelope-from den) Message-Id: <200404130623.i3D6NdVZ087088@repoman.freebsd.org> From: Denis Peplin Date: Mon, 12 Apr 2004 23:23:39 -0700 (PDT) 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/boot 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, 13 Apr 2004 06:23:40 -0000 den 2004/04/12 23:23:39 PDT FreeBSD doc repository Modified files: ru_RU.KOI8-R/books/handbook/boot chapter.sgml Log: Fix typo Submitted by: Anna Ostyakova Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.6 +2 -2 doc/ru_RU.KOI8-R/books/handbook/boot/chapter.sgml From owner-cvs-all@FreeBSD.ORG Mon Apr 12 23:26: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 D171A16A4CE; Mon, 12 Apr 2004 23:26:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B4AF543D2F; Mon, 12 Apr 2004 23:26:25 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D6QPGe087243; Mon, 12 Apr 2004 23:26:25 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D6QPD5087241; Mon, 12 Apr 2004 23:26:25 -0700 (PDT) (envelope-from marcus) Message-Id: <200404130626.i3D6QPD5087241@repoman.freebsd.org> From: Joe Marcus Clarke Date: Mon, 12 Apr 2004 23:26:25 -0700 (PDT) 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 faq26.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, 13 Apr 2004 06:26:26 -0000 marcus 2004/04/12 23:26:25 PDT FreeBSD doc repository Modified files: en/gnome/docs faq26.sgml Log: * Create a link to the GNOME Tinderbox * Update the gnome-terminal known issue Revision Changes Path 1.5 +5 -3 www/en/gnome/docs/faq26.sgml From owner-cvs-all@FreeBSD.ORG Mon Apr 12 23:29: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 E705F16A4CE; Mon, 12 Apr 2004 23:29:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C943C43D55; Mon, 12 Apr 2004 23:29:58 -0700 (PDT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D6TwGe087382; Mon, 12 Apr 2004 23:29:58 -0700 (PDT) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D6TwUw087381; Mon, 12 Apr 2004 23:29:58 -0700 (PDT) (envelope-from edwin) Message-Id: <200404130629.i3D6TwUw087381@repoman.freebsd.org> From: Edwin Groothuis Date: Mon, 12 Apr 2004 23:29:58 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/xemacs 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, 13 Apr 2004 06:29:59 -0000 edwin 2004/04/12 23:29:58 PDT FreeBSD ports repository Modified files: editors/xemacs Makefile Log: Unbreak port by moving some definitions from the pre-fetch target to "above it". Noticed by: nearly everybody. Revision Changes Path 1.79 +5 -4 ports/editors/xemacs/Makefile From owner-cvs-all@FreeBSD.ORG Mon Apr 12 23: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 09B6616A4CE; Mon, 12 Apr 2004 23:37:27 -0700 (PDT) Received: from mtaw4.prodigy.net (mtaw4.prodigy.net [64.164.98.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7F4343D49; Mon, 12 Apr 2004 23:37:26 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (94a8bf506dae4ad8a560fe1077fbb6ef@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw4.prodigy.net (8.12.10/8.12.10) with ESMTP id i3D6bO1O012158; Mon, 12 Apr 2004 23:37:24 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 2B12A52322; Mon, 12 Apr 2004 23:37:24 -0700 (PDT) Date: Mon, 12 Apr 2004 23:37:24 -0700 From: Kris Kennaway To: "David O'Brien" Message-ID: <20040413063723.GA25604@xor.obsecurity.org> References: <200404111110.i3BBAXLM042150@repoman.freebsd.org> <20040413062228.GA3504@dragon.nuxi.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="fdj2RfSjLxBAspz7" Content-Disposition: inline In-Reply-To: <20040413062228.GA3504@dragon.nuxi.com> User-Agent: Mutt/1.4.2.1i cc: Dirk Meyer cc: cvs-ports@FreeBSD.org cc: Gerald Pfeifer cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/lang/gcc32 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, 13 Apr 2004 06:37:27 -0000 --fdj2RfSjLxBAspz7 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 12, 2004 at 11:22:28PM -0700, David O'Brien wrote: > On Sun, Apr 11, 2004 at 01:13:44PM +0200, Gerald Pfeifer wrote: > > On Sun, 11 Apr 2004, Gerald Pfeifer wrote: > > > Modified files: > > > lang/gcc32 Makefile > > > Log: > > > This old version of GCC really only makes sense on i386 at this poi= nt (if at > > > all), so use ONLY_FOR_ARCHS=3Di386. Drop maintainership. > >=20 > > Dirk, I strongly recommend that you update the gnustep-objc port to gcc= 33. > >=20 > > In general, I suggest to get rid of at least gcc30 and gcc31 in the mid > > term. >=20 > There is no reason to get rid of older versions as long as they build > fine (or can reasonalble be made to do so). GCC has a long history of > not putting as much concern for backwards compatability. There is huge > amounts of code that still cannot be built with GCC 3.3. Same for other > versions of GCC. Please don't just go removing the ports. Make the > maintainer ports@freebsd.org and leave it at that. They don't build fine, though, and they are unmaintained. Kris --fdj2RfSjLxBAspz7 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAe4qjWry0BWjoQKURAt3yAJ4he6gXWr0T9nig63h6PaEHEfHuKQCfY53B xXk3KZVxr/sxsZGI4beUTPQ= =c+ww -----END PGP SIGNATURE----- --fdj2RfSjLxBAspz7-- From owner-cvs-all@FreeBSD.ORG Tue Apr 13 00:03: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 5C8D616A4CE; Tue, 13 Apr 2004 00:03:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55D0B43D41; Tue, 13 Apr 2004 00:03:39 -0700 (PDT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D73dGe096274; Tue, 13 Apr 2004 00:03:39 -0700 (PDT) (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D73c5S096273; Tue, 13 Apr 2004 00:03:38 -0700 (PDT) (envelope-from den) Message-Id: <200404130703.i3D73c5S096273@repoman.freebsd.org> From: Denis Peplin Date: Tue, 13 Apr 2004 00:03:38 -0700 (PDT) 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/advanced-networking chapter.sgml doc/ru_RU.KOI8-R/books/handbook/bootchapter.sgml doc/ru_RU.KOI8-R/books/handbook/ports chapter.sgml doc/ru_RU.KOI8-R/books/handbook/x11 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, 13 Apr 2004 07:03:39 -0000 den 2004/04/13 00:03:38 PDT FreeBSD doc repository Modified files: ru_RU.KOI8-R/books/handbook/advanced-networking chapter.sgml ru_RU.KOI8-R/books/handbook/boot chapter.sgml ru_RU.KOI8-R/books/handbook/cutting-edge chapter.sgml ru_RU.KOI8-R/books/handbook/disks chapter.sgml ru_RU.KOI8-R/books/handbook/ports chapter.sgml ru_RU.KOI8-R/books/handbook/x11 chapter.sgml Log: Visible whitespace fix (add space before ) Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.10 +21 -21 doc/ru_RU.KOI8-R/books/handbook/advanced-networking/chapter.sgml 1.7 +2 -2 doc/ru_RU.KOI8-R/books/handbook/boot/chapter.sgml 1.5 +5 -5 doc/ru_RU.KOI8-R/books/handbook/cutting-edge/chapter.sgml 1.7 +10 -10 doc/ru_RU.KOI8-R/books/handbook/disks/chapter.sgml 1.5 +2 -2 doc/ru_RU.KOI8-R/books/handbook/ports/chapter.sgml 1.6 +5 -5 doc/ru_RU.KOI8-R/books/handbook/x11/chapter.sgml From owner-cvs-all@FreeBSD.ORG Tue Apr 13 00:03: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 18D6F16A4CF; Tue, 13 Apr 2004 00:03:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F0BE443D49; Tue, 13 Apr 2004 00:03:49 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D73nGe096304; Tue, 13 Apr 2004 00:03:49 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D73naA096303; Tue, 13 Apr 2004 00:03:49 -0700 (PDT) (envelope-from kris) Message-Id: <200404130703.i3D73naA096303@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 00:03:49 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/djbfft 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, 13 Apr 2004 07:03:50 -0000 kris 2004/04/13 00:03:49 PDT FreeBSD ports repository Modified files: math/djbfft Makefile Log: BROKEN: Changes permissions on /usr/local and /usr/local/lib Revision Changes Path 1.10 +2 -0 ports/math/djbfft/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 00: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 6D73016A4CE; Tue, 13 Apr 2004 00:06:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FD5643D49; Tue, 13 Apr 2004 00:06:21 -0700 (PDT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D76LGe096440; Tue, 13 Apr 2004 00:06:21 -0700 (PDT) (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D76KQS096439; Tue, 13 Apr 2004 00:06:20 -0700 (PDT) (envelope-from vs) Message-Id: <200404130706.i3D76KQS096439@repoman.freebsd.org> From: Volker Stolz Date: Tue, 13 Apr 2004 00:06:20 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/latex-mk 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, 13 Apr 2004 07:06:21 -0000 vs 2004/04/13 00:06:20 PDT FreeBSD ports repository Modified files: misc/latex-mk Makefile distinfo Log: Update to 1.2: http://latex-mk.sourceforge.net/news.html#20040321 PR: 65375 Submitted by: Herve Quiroz Approved by: linimon (mentor) Revision Changes Path 1.4 +2 -2 ports/misc/latex-mk/Makefile 1.4 +2 -2 ports/misc/latex-mk/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 13 00: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 4B31E16A4CE; Tue, 13 Apr 2004 00:07:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F24F43D2F; Tue, 13 Apr 2004 00:07:47 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D77lGe096538; Tue, 13 Apr 2004 00:07:47 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D77kcL096537; Tue, 13 Apr 2004 00:07:46 -0700 (PDT) (envelope-from ru) Message-Id: <200404130707.i3D77kcL096537@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Apr 2004 00:07:46 -0700 (PDT) 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/groff/tmac mdoc.local X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 07:07:47 -0000 ru 2004/04/13 00:07:46 PDT FreeBSD src repository Modified files: gnu/usr.bin/groff/tmac mdoc.local Log: Added upcoming 4.10 and 5.3 releases. Reminded by: marcel Revision Changes Path 1.39 +2 -0 src/gnu/usr.bin/groff/tmac/mdoc.local From owner-cvs-all@FreeBSD.ORG Tue Apr 13 00:12: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 0EB9616A4CE; Tue, 13 Apr 2004 00:12:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E65EF43D4C; Tue, 13 Apr 2004 00:12:18 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D7CIGe098074; Tue, 13 Apr 2004 00:12:18 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D7CIVh098067; Tue, 13 Apr 2004 00:12:18 -0700 (PDT) (envelope-from ru) Message-Id: <200404130712.i3D7CIVh098067@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Apr 2004 00:12:18 -0700 (PDT) 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/groff/tmac mdoc.local X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 07:12:19 -0000 ru 2004/04/13 00:12:18 PDT FreeBSD src repository Modified files: gnu/usr.bin/groff/tmac mdoc.local Log: Added FreeBSD 5.2.1, just in case. Revision Changes Path 1.40 +1 -0 src/gnu/usr.bin/groff/tmac/mdoc.local From owner-cvs-all@FreeBSD.ORG Tue Apr 13 00:14: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 4597A16A4CE; Tue, 13 Apr 2004 00:14:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28D7843D46; Tue, 13 Apr 2004 00:14:59 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D7EwGe098505; Tue, 13 Apr 2004 00:14:58 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D7Ew7N098504; Tue, 13 Apr 2004 00:14:58 -0700 (PDT) (envelope-from kris) Message-Id: <200404130714.i3D7Ew7N098504@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 00:14:58 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/okphone 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, 13 Apr 2004 07:14:59 -0000 kris 2004/04/13 00:14:58 PDT FreeBSD ports repository Modified files: japanese/okphone pkg-plist Log: Add missing @dirrm Revision Changes Path 1.4 +1 -0 ports/japanese/okphone/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 00: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 C8A2416A4CE; Tue, 13 Apr 2004 00:45:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC2DD43D2F; Tue, 13 Apr 2004 00:45:37 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D7jbGe004682; Tue, 13 Apr 2004 00:45:37 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D7jbWo004681; Tue, 13 Apr 2004 00:45:37 -0700 (PDT) (envelope-from krion) Message-Id: <200404130745.i3D7jbWo004681@repoman.freebsd.org> From: Kirill Ponomarew Date: Tue, 13 Apr 2004 00:45:37 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/sge 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, 13 Apr 2004 07:45:37 -0000 krion 2004/04/13 00:45:37 PDT FreeBSD ports repository Modified files: sysutils/sge pkg-install Log: - Use reserved UID/GID PR: ports/65480 Submitted by: maintainer Reported by: kris Revision Changes Path 1.2 +1 -1 ports/sysutils/sge/pkg-install From owner-cvs-all@FreeBSD.ORG Tue Apr 13 00:47: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 9C2D416A4CE; Tue, 13 Apr 2004 00:47:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E7ED43D58; Tue, 13 Apr 2004 00:47:10 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D7lAGe007558; Tue, 13 Apr 2004 00:47:10 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D7lAel007539; Tue, 13 Apr 2004 00:47:10 -0700 (PDT) (envelope-from krion) Message-Id: <200404130747.i3D7lAel007539@repoman.freebsd.org> From: Kirill Ponomarew Date: Tue, 13 Apr 2004 00:47:10 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/ganglia-monitor-core 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, 13 Apr 2004 07:47:10 -0000 krion 2004/04/13 00:47:10 PDT FreeBSD ports repository Modified files: sysutils/ganglia-monitor-core pkg-install Log: - Use reserved UID/GID PR: ports/65481 Submitted by: maintainer Reported by: kris Revision Changes Path 1.2 +1 -1 ports/sysutils/ganglia-monitor-core/pkg-install From owner-cvs-all@FreeBSD.ORG Tue Apr 13 00:47: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 E139016A4D6; Tue, 13 Apr 2004 00:47:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C492D43D39; Tue, 13 Apr 2004 00:47:24 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D7lOGe010790; Tue, 13 Apr 2004 00:47:24 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D7lOO0010789; Tue, 13 Apr 2004 00:47:24 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404130747.i3D7lOO0010789@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 13 Apr 2004 00:47:24 -0700 (PDT) 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/guis 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, 13 Apr 2004 07:47:25 -0000 ijliao 2004/04/13 00:47:24 PDT FreeBSD ports repository Modified files: x11-toolkits Makefile Added files: x11-toolkits/guis Makefile distinfo pkg-descr Log: add guis 1.4 A GUI widget server Revision Changes Path 1.312 +1 -0 ports/x11-toolkits/Makefile 1.1 +40 -0 ports/x11-toolkits/guis/Makefile (new) 1.1 +2 -0 ports/x11-toolkits/guis/distinfo (new) 1.1 +7 -0 ports/x11-toolkits/guis/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 00: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 DF1E216A4D3; Tue, 13 Apr 2004 00:47:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C164143D31; Tue, 13 Apr 2004 00:47:34 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D7lYGe010834; Tue, 13 Apr 2004 00:47:34 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D7lY7H010833; Tue, 13 Apr 2004 00:47:34 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404130747.i3D7lY7H010833@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 13 Apr 2004 00:47:34 -0700 (PDT) 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, 13 Apr 2004 07:47:35 -0000 ijliao 2004/04/13 00:47:34 PDT FreeBSD ports repository Modified files: . modules Log: guis --> ports/x11-toolkits/guis Revision Changes Path 1.9895 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Apr 13 00: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 7050F16A4CE; Tue, 13 Apr 2004 00:53:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54A5C43D3F; Tue, 13 Apr 2004 00:53:05 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D7r4Ge012760; Tue, 13 Apr 2004 00:53:04 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D7r3eD012759; Tue, 13 Apr 2004 00:53:03 -0700 (PDT) (envelope-from krion) Message-Id: <200404130753.i3D7r3eD012759@repoman.freebsd.org> From: Kirill Ponomarew Date: Tue, 13 Apr 2004 00:53:03 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/flyway 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, 13 Apr 2004 07:53:05 -0000 krion 2004/04/13 00:53:03 PDT FreeBSD ports repository Modified files: misc/flyway Makefile distinfo pkg-plist Log: - Update to 0.3.2 PR: ports/65463 Submitted by: michael johnson Revision Changes Path 1.8 +11 -9 ports/misc/flyway/Makefile 1.4 +2 -2 ports/misc/flyway/distinfo 1.3 +59 -32 ports/misc/flyway/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 01:01: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 5262116A4CE; Tue, 13 Apr 2004 01:01:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3559343D3F; Tue, 13 Apr 2004 01:01:05 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D814Ge013136; Tue, 13 Apr 2004 01:01:04 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D813Rp013135; Tue, 13 Apr 2004 01:01:03 -0700 (PDT) (envelope-from krion) Message-Id: <200404130801.i3D813Rp013135@repoman.freebsd.org> From: Kirill Ponomarew Date: Tue, 13 Apr 2004 01:01:02 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/sisc 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, 13 Apr 2004 08:01:05 -0000 krion 2004/04/13 01:01:02 PDT FreeBSD ports repository Modified files: lang/sisc Makefile distinfo Log: - Update to 1.8.8 PR: ports/65475 Submitted by: Kimura Fuyuki Revision Changes Path 1.11 +4 -4 ports/lang/sisc/Makefile 1.7 +2 -2 ports/lang/sisc/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 13 01: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 F258616A4CE; Tue, 13 Apr 2004 01:10:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D637A43D49; Tue, 13 Apr 2004 01:10:25 -0700 (PDT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D8APGe016177; Tue, 13 Apr 2004 01:10:25 -0700 (PDT) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D8APQN016176; Tue, 13 Apr 2004 01:10:25 -0700 (PDT) (envelope-from edwin) Message-Id: <200404130810.i3D8APQN016176@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 13 Apr 2004 01:10:25 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/xemacs-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: Tue, 13 Apr 2004 08:10:26 -0000 edwin 2004/04/13 01:10:24 PDT FreeBSD ports repository Modified files: editors/xemacs-devel Makefile Log: Also fix this ones Makefile by moving the test for libXm.so more up. Revision Changes Path 1.80 +5 -4 ports/editors/xemacs-devel/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 01:34: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 BCB1E16A4CF; Tue, 13 Apr 2004 01:34:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D05343D5D; Tue, 13 Apr 2004 01:34:53 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D8YrGe021962; Tue, 13 Apr 2004 01:34:53 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D8YrYe021961; Tue, 13 Apr 2004 01:34:53 -0700 (PDT) (envelope-from luigi) Message-Id: <200404130834.i3D8YrYe021961@repoman.freebsd.org> From: Luigi Rizzo Date: Tue, 13 Apr 2004 01:34:53 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/arp arp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 08:34:54 -0000 luigi 2004/04/13 01:34:53 PDT FreeBSD src repository Modified files: usr.sbin/arp arp.c Log: Make functions and variables static. Remove global variables in favour of local ones. Fix indentation of a couple of switch statements. Overall, this program badly need cleaning up, as it relies on information passed around through global variables. Revision Changes Path 1.48 +95 -87 src/usr.sbin/arp/arp.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 01: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 E289116A4D2; Tue, 13 Apr 2004 01:49:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9696F43D5F; Tue, 13 Apr 2004 01:49:14 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D8nEGe024146; Tue, 13 Apr 2004 01:49:14 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D8nEW5024145; Tue, 13 Apr 2004 01:49:14 -0700 (PDT) (envelope-from clement) Message-Id: <200404130849.i3D8nEW5024145@repoman.freebsd.org> From: Clement Laforet Date: Tue, 13 Apr 2004 01:49:14 -0700 (PDT) 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/jailadmin 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, 13 Apr 2004 08:49:15 -0000 clement 2004/04/13 01:49:14 PDT FreeBSD ports repository Modified files: sysutils Makefile Added files: sysutils/jailadmin Makefile distinfo pkg-descr pkg-plist Log: Add jailadmin 1.7, a system for managing a set of named jails. JailAdmin is a system for managing a set of named jails. It provides: - A command line utility for starting and stopping named jails. - An efficient method for shutting down a large number of jails in parallel. - A simple configuration syntax. - SNMP monitoring facilities. It is designed to provide more flexible functionality than FreeBSD's own rc.d/jail script, and should provide a complete superset of features. WWW: http://subwiki.honeypot.net/cgi-bin/view/Freebsd/JailAdmin - Kirk Strauser kirk@strauser.com PR: ports/65095 Submitted by: Kirk Strauser Revision Changes Path 1.519 +1 -0 ports/sysutils/Makefile 1.1 +45 -0 ports/sysutils/jailadmin/Makefile (new) 1.1 +2 -0 ports/sysutils/jailadmin/distinfo (new) 1.1 +12 -0 ports/sysutils/jailadmin/pkg-descr (new) 1.1 +6 -0 ports/sysutils/jailadmin/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 01:54: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 2631616A4CE; Tue, 13 Apr 2004 01:54:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09BB543D46; Tue, 13 Apr 2004 01:54:32 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D8sVGe026052; Tue, 13 Apr 2004 01:54:31 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D8sVhs026051; Tue, 13 Apr 2004 01:54:31 -0700 (PDT) (envelope-from clement) Message-Id: <200404130854.i3D8sVhs026051@repoman.freebsd.org> From: Clement Laforet Date: Tue, 13 Apr 2004 01:54:31 -0700 (PDT) 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, 13 Apr 2004 08:54:32 -0000 clement 2004/04/13 01:54:31 PDT FreeBSD ports repository Modified files: . modules Log: jailadmin -> ports/sysutils/jailadmin Revision Changes Path 1.9896 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Apr 13 02:05: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 2D59716A4D0; Tue, 13 Apr 2004 02:05:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 10AF643D3F; Tue, 13 Apr 2004 02:05:54 -0700 (PDT) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D95rGe029126; Tue, 13 Apr 2004 02:05:53 -0700 (PDT) (envelope-from osa@repoman.freebsd.org) Received: (from osa@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D95rtW029125; Tue, 13 Apr 2004 02:05:53 -0700 (PDT) (envelope-from osa) Message-Id: <200404130905.i3D95rtW029125@repoman.freebsd.org> From: "Sergey A. Osokin" Date: Tue, 13 Apr 2004 02:05:53 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/hping 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, 13 Apr 2004 09:05:54 -0000 osa 2004/04/13 02:05:53 PDT FreeBSD ports repository Modified files: security/hping Makefile Removed files: security/hping pkg-plist Log: Move package files from pkg-plist to Makefile. Use DOCSDIR macro where it possible. Remove pkg-plist. No functionaly changes. Revision Changes Path 1.12 +7 -3 ports/security/hping/Makefile 1.3 +0 -7 ports/security/hping/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 02:12: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 7184B16A4CE; Tue, 13 Apr 2004 02:12:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56BFE43D48; Tue, 13 Apr 2004 02:12:24 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D9COGe030920; Tue, 13 Apr 2004 02:12:24 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D9COOY030919; Tue, 13 Apr 2004 02:12:24 -0700 (PDT) (envelope-from clement) Message-Id: <200404130912.i3D9COOY030919@repoman.freebsd.org> From: Clement Laforet Date: Tue, 13 Apr 2004 02:12:23 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/p5-OAI-Harvester 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, 13 Apr 2004 09:12:24 -0000 clement 2004/04/13 02:12:23 PDT FreeBSD ports repository Modified files: net/p5-OAI-Harvester Makefile distinfo Log: - Update to 0.95 PR: 65416 Submitted by Paul Dlug (maintainer) Revision Changes Path 1.6 +1 -1 ports/net/p5-OAI-Harvester/Makefile 1.5 +2 -2 ports/net/p5-OAI-Harvester/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 13 02:27: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 8913416A4CE; Tue, 13 Apr 2004 02:27:08 -0700 (PDT) Received: from utopia.leeym.com (utopia.leeym.com [61.218.64.93]) by mx1.FreeBSD.org (Postfix) with ESMTP id 35A6043D5E; Tue, 13 Apr 2004 02:27:08 -0700 (PDT) (envelope-from leeym@utopia.leeym.com) Received: from localhost (localhost [127.0.0.1]) by utopia.leeym.com (Postfix) with ESMTP id 22FF03E9EC0; Tue, 13 Apr 2004 17:27:03 +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 67146-02; Tue, 13 Apr 2004 17:27:01 +0800 (CST) Received: by utopia.leeym.com (Postfix, from userid 1000) id 1434B3E9EBE; Tue, 13 Apr 2004 17:27:01 +0800 (CST) Date: Tue, 13 Apr 2004 17:27:00 +0800 From: Yen-Ming Lee To: Kris Kennaway Message-ID: <20040413092700.GA66321@utopia.leeym.com> References: <200404130054.i3D0sdJs007955@repoman.freebsd.org> <20040413010839.GA22172@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-md5; protocol="application/pgp-signature"; boundary="6TrnltStXW4iwmi0" Content-Disposition: inline In-Reply-To: <20040413010839.GA22172@xor.obsecurity.org> 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/dns/rbldnsd Makefile distinfo pkg-install pkg-message pkg-plist ports/dns/rbldnsd/files example rbldnsd.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, 13 Apr 2004 09:27:08 -0000 --6TrnltStXW4iwmi0 Content-Type: text/plain; charset=big5 Content-Disposition: inline Content-Transfer-Encoding: 8bit On Mon, Apr 12, 2004 at 06:08:39PM -0700, Kris Kennaway wrote: > On Mon, Apr 12, 2004 at 05:54:39PM -0700, Yen-Ming Lee wrote: > > leeym 2004/04/12 17:54:39 PDT > > > > FreeBSD ports repository > > > > Modified files: > > dns/rbldnsd Makefile distinfo pkg-plist > > Added files: > > dns/rbldnsd pkg-install pkg-message > > dns/rbldnsd/files example rbldnsd.sh > > Log: > > - upgrade version to 0.992 > > - switch to rc.subr start mechanism > > - added user/group > > - added example data on install, target directory > > - added pkg-message > > - added more doc files > > Don't forget to register the uid. > > Kris According the following URL, only fixed UID/GID are needed to register, right? http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/dads-uid.html rbldnsd should not run as root, but it doesn't need a fixed UID/GID. I think in this case, rbldns:rbldns is not needed to be registered. -- Yen-Ming Lee [§õ«Û©ú] KeyID: 0x5EB52E51 : www.leeym.com : Taipei, Taiwan --6TrnltStXW4iwmi0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iQCVAwUBQHuyZMnMx0NetS5RAQHisQP/Y8LgjQhIhBDKR1w+z55HxL6+7cOrZl+7 3vc1LLEAxuHNYcgYF/iOnV7H1F1D0V7SvrF4znZVboN8NYHTtnRt4f+/H8jE9Ejy PVLaDXuTsNY+eN7fnkcGbArw4xy0Qx8221BUXJ9P8REMubxTZqiOqDWAKEQW20Jl k0HkAUDFgLk= =AnS3 -----END PGP SIGNATURE----- --6TrnltStXW4iwmi0-- From owner-cvs-all@FreeBSD.ORG Tue Apr 13 02:28: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 DF0D616A4CE; Tue, 13 Apr 2004 02:28:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C423D43D1D; Tue, 13 Apr 2004 02:28:43 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D9ShGe033255; Tue, 13 Apr 2004 02:28:43 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D9ShRc033254; Tue, 13 Apr 2004 02:28:43 -0700 (PDT) (envelope-from erwin) Message-Id: <200404130928.i3D9ShRc033254@repoman.freebsd.org> From: Erwin Lansing Date: Tue, 13 Apr 2004 02:28:43 -0700 (PDT) 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, 13 Apr 2004 09:28:44 -0000 erwin 2004/04/13 02:28:43 PDT FreeBSD ports repository Modified files: . modules Log: Remove entry for www/Mosaic that was removed Apr 11, 2004. Revision Changes Path 1.9897 +0 -1 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Apr 13 02:33: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 2DC8A16A4CE; Tue, 13 Apr 2004 02:33:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1241243D5E; Tue, 13 Apr 2004 02:33:34 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D9XXGe035114; Tue, 13 Apr 2004 02:33:33 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D9XXxl035113; Tue, 13 Apr 2004 02:33:33 -0700 (PDT) (envelope-from ru) Message-Id: <200404130933.i3D9XXxl035113@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Apr 2004 02:33:33 -0700 (PDT) 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: Tue, 13 Apr 2004 09:33:34 -0000 ru 2004/04/13 02:33:33 PDT FreeBSD src repository Modified files: sys/sys param.h Log: Bump __FreeBSD_version on behalf of the new .warning directive in make(1). Requested by: kris Revision Changes Path 1.191 +1 -1 src/sys/sys/param.h From owner-cvs-all@FreeBSD.ORG Tue Apr 13 02:44: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 765B516A4CE; Tue, 13 Apr 2004 02:44:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70D4C43D5A; Tue, 13 Apr 2004 02:44:21 -0700 (PDT) (envelope-from sos@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3D9iLGe037222; Tue, 13 Apr 2004 02:44:21 -0700 (PDT) (envelope-from sos@repoman.freebsd.org) Received: (from sos@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3D9iLuh037221; Tue, 13 Apr 2004 02:44:21 -0700 (PDT) (envelope-from sos) Message-Id: <200404130944.i3D9iLuh037221@repoman.freebsd.org> From: Søren Schmidt Date: Tue, 13 Apr 2004 02:44:21 -0700 (PDT) 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-all.h ata-card.c ata-cbus.c ata-chipset.c ata-disk.c ata-dma.c ata-isa.c ata-lowlevel.c ata-pci.c ata-pci.h 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: Tue, 13 Apr 2004 09:44:21 -0000 sos 2004/04/13 02:44:21 PDT FreeBSD src repository Modified files: sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c ata-chipset.c ata-disk.c ata-dma.c ata-isa.c ata-lowlevel.c ata-pci.c ata-pci.h ata-queue.c Log: Add support for the Promise command sequencer present on all modern Promise controllers (PDC203** PDC206**). This also adds preliminary support for the Promise SX4/SX4000 but *only* as a "normal" Promise ATA controller (ATA RAID's are supported though but only RAID0, RAID1 and RAID0+1). This cuts off yet another 5-8% of the command overhead on promise controllers, making them the fastest we have ever had support for. Work is now continuing to add support for this in ATA RAID, to accellerate ATA RAID quite a bit on these controllers, and especially the SX4/SX4000 series as they have quite a few tricks in there.. This commit also adds a few fixes to the SATA code needed for proper support. Revision Changes Path 1.208 +4 -11 src/sys/dev/ata/ata-all.c 1.78 +10 -3 src/sys/dev/ata/ata-all.h 1.23 +1 -0 src/sys/dev/ata/ata-card.c 1.12 +1 -0 src/sys/dev/ata/ata-cbus.c 1.68 +474 -141 src/sys/dev/ata/ata-chipset.c 1.172 +11 -6 src/sys/dev/ata/ata-disk.c 1.126 +33 -2 src/sys/dev/ata/ata-dma.c 1.21 +1 -0 src/sys/dev/ata/ata-isa.c 1.32 +55 -51 src/sys/dev/ata/ata-lowlevel.c 1.78 +24 -52 src/sys/dev/ata/ata-pci.c 1.29 +8 -2 src/sys/dev/ata/ata-pci.h 1.26 +3 -2 src/sys/dev/ata/ata-queue.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 03:51: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 7310416A4CE; Tue, 13 Apr 2004 03:51:08 -0700 (PDT) Received: from shaft.techsupport.co.uk (shaft.techsupport.co.uk [212.250.77.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2015643D54; Tue, 13 Apr 2004 03:51:08 -0700 (PDT) (envelope-from setantae@submonkey.net) Received: from cpc2-cdif3-6-0-cust204.cdif.cable.ntl.com ([81.103.67.204] helo=shrike.submonkey.net ident=mailnull) by shaft.techsupport.co.uk with esmtp (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.31; FreeBSD) id 1BDLVS-0008lS-Qv; Tue, 13 Apr 2004 11:51:06 +0100 Received: from setantae by shrike.submonkey.net with local (Exim 4.31; FreeBSD) id 1BDLVQ-000OiF-LN; Tue, 13 Apr 2004 11:51:04 +0100 Date: Tue, 13 Apr 2004 11:51:04 +0100 From: Ceri Davies To: "Simon L. Nielsen" Message-ID: <20040413105054.GG465@submonkey.net> Mail-Followup-To: Ceri Davies , "Simon L. Nielsen" , doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org References: <200404122228.i3CMSYl3069274@repoman.freebsd.org> <20040412223209.GM797@zaphod.nitro.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="mPTHnM80CEnHQ2WJ" Content-Disposition: inline In-Reply-To: <20040412223209.GM797@zaphod.nitro.dk> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.4i Sender: Ceri Davies cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en Makefile art.sgml www/en/search web.atoz X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 10:51:08 -0000 --mPTHnM80CEnHQ2WJ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 13, 2004 at 12:32:09AM +0200, Simon L. Nielsen wrote: > On 2004.04.12 15:28:34 -0700, Simon L. Nielsen wrote: > > simon 2004/04/12 15:28:34 PDT > >=20 > > FreeBSD doc repository > >=20 > > Modified files: > > en Makefile=20 > > en/search web.atoz=20 > > Added files: > > en art.sgml=20 > > Log: > > Add a FreeBSD Art page, which mainly contains the "Powered by FreeBSD" > > logos, but also a few BSD Daemon images. >=20 > If somebody has a good idea on where to link to this page, then please > speak up, since I'm not really sure. Can you squish in another image at the bottom of the front page? Ceri --=20 --mPTHnM80CEnHQ2WJ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAe8YYocfcwTS3JF8RAt5iAJ9ciNe7oFO2tcYMNelh2YX0xXKwcwCfVivV 52eaLAPVrFkHGtoTO2s7th8= =a+pK -----END PGP SIGNATURE----- --mPTHnM80CEnHQ2WJ-- From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:02: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 60EFC16A4CE; Tue, 13 Apr 2004 04:02:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4342143D58; Tue, 13 Apr 2004 04:02:14 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DB2EGe053932; Tue, 13 Apr 2004 04:02:14 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DB2D1W053928; Tue, 13 Apr 2004 04:02:13 -0700 (PDT) (envelope-from krion) Message-Id: <200404131102.i3DB2D1W053928@repoman.freebsd.org> From: Kirill Ponomarew Date: Tue, 13 Apr 2004 04:02:13 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/bozohttpd 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, 13 Apr 2004 11:02:14 -0000 krion 2004/04/13 04:02:13 PDT FreeBSD ports repository Modified files: www/bozohttpd Makefile distinfo pkg-descr Log: - Update to version 20040218 PR: ports/65484 Submitted by: maintainer Revision Changes Path 1.8 +14 -1 ports/www/bozohttpd/Makefile 1.7 +2 -2 ports/www/bozohttpd/distinfo 1.2 +4 -3 ports/www/bozohttpd/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04: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 74D8316A4CE; Tue, 13 Apr 2004 04:03:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5843D43D46; Tue, 13 Apr 2004 04:03:00 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DB30Ge054457; Tue, 13 Apr 2004 04:03:00 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DB2xdT054456; Tue, 13 Apr 2004 04:02:59 -0700 (PDT) (envelope-from arved) Message-Id: <200404131102.i3DB2xdT054456@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 13 Apr 2004 04:02:59 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/xmms-musepack 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, 13 Apr 2004 11:03:00 -0000 arved 2004/04/13 04:02:59 PDT FreeBSD ports repository Modified files: audio/xmms-musepack Makefile Log: Respect CC and CFLAGS Compile .so with -fPIC to fix build on amd64 and ia64[1] [1]: PR: 65435 Submitted by: tjr Revision Changes Path 1.13 +3 -3 ports/audio/xmms-musepack/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:04: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 50B8116A4CE; Tue, 13 Apr 2004 04:04:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B63D43D62; Tue, 13 Apr 2004 04:04:03 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DB43Ge055433; Tue, 13 Apr 2004 04:04:03 -0700 (PDT) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DB42oZ055432; Tue, 13 Apr 2004 04:04:02 -0700 (PDT) (envelope-from dinoex) Message-Id: <200404131104.i3DB42oZ055432@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 13 Apr 2004 04:04:02 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc32 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, 13 Apr 2004 11:04:03 -0000 dinoex 2004/04/13 04:04:02 PDT FreeBSD ports repository Modified files: lang/gcc32 Makefile Log: - take maintainership gcc33 objc compilers don't compile gnustep-base. so this port is still needed for a bit. - let build also on alpha and sparc64 bento succesfull build logs: i386-5-latest-logs 2004 Apr 11 09:50:21 gcc-objc-3.2.3_1.log ia64-5-latest-logs 2004 Apr 8 18:37:05 gcc-objc-3.2.3_1.log alpha-5-latest-logs 2004 Apr 4 12:34:15 gcc-objc-3.2.3_1.log.bz2 alpha-4-latest-logs 2004 Mar 25 20:11:44 gcc-objc-3.2.3_1.log.bz2 sparc64-5-latest-logs 2004 Mar 22 15:23:03 gcc-objc-3.2.3_1.log.bz2 Revision Changes Path 1.167 +2 -2 ports/lang/gcc32/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:06: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 C6DB016A4CE; Tue, 13 Apr 2004 04:06:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB16B43D5A; Tue, 13 Apr 2004 04:06:20 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DB6KGe055584; Tue, 13 Apr 2004 04:06:20 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DB6Kjb055583; Tue, 13 Apr 2004 04:06:20 -0700 (PDT) (envelope-from ru) Message-Id: <200404131106.i3DB6Kjb055583@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Apr 2004 04:06:20 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools make_libdeps.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, 13 Apr 2004 11:06:20 -0000 ru 2004/04/13 04:06:20 PDT FreeBSD src repository Modified files: tools make_libdeps.sh Log: Teach the script where libssl actually lives. Submitted by: Michael Bretterklieber Revision Changes Path 1.5 +1 -1 src/tools/make_libdeps.sh From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:10: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 27CB716A4CE; Tue, 13 Apr 2004 04:10:31 -0700 (PDT) Received: from srv01.sparkit.no (srv01.sparkit.no [193.69.116.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8696743D5A; Tue, 13 Apr 2004 04:10:30 -0700 (PDT) (envelope-from eivind@FreeBSD.org) Received: from ws ([193.69.114.88]) by srv01.sparkit.no (8.12.10/8.12.10) with ESMTP id i3DBAScZ000273; Tue, 13 Apr 2004 13:10:28 +0200 (CEST) (envelope-from eivind@FreeBSD.org) Received: from ws (localhost [127.0.0.1]) by ws (8.12.9/8.12.10) with ESMTP id i3DB9L7K003530; Tue, 13 Apr 2004 11:09:21 GMT (envelope-from eivind@ws) Received: (from eivind@localhost) by ws (8.12.9/8.12.10/Submit) id i3DB9KwW003529; Tue, 13 Apr 2004 11:09:20 GMT (envelope-from eivind) Date: Tue, 13 Apr 2004 11:08:20 +0000 From: Eivind Eklund To: Brian Feldman Message-ID: <20040413110820.GB2625@FreeBSD.org> References: <200404130258.i3D2w7WC034439@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404130258.i3D2w7WC034439@repoman.freebsd.org> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/dump dump.8 dump.h main.c tape.c src/sbin/restore extern.h main.c restore.8 tape.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 11:10:31 -0000 On Mon, Apr 12, 2004 at 07:58:07PM -0700, Brian Feldman wrote: > green 2004/04/12 19:58:07 PDT > > FreeBSD src repository > > Modified files: > sbin/dump dump.8 dump.h main.c tape.c > sbin/restore extern.h main.c restore.8 tape.c > Log: > Add -P arguments for dump(8) and restore(8) which allow the user to > use backup methods other than files and tapes. The -P argument is > a normal sh(1) pipeline with either $DUMP_VOLUME or $RESTORE_VOLUME > defined in the environment, respectively. > > For example, I can back up my home to three DVD+R[W]s as so: > Filesystem 1K-blocks Used Avail Capacity Mounted on > /dev/ad0s2e 40028550 10093140 26733126 27% /home > green# dump -0 -L -C16 -B4589840 -P 'growisofs -Z /dev/cd0=/dev/fd/0' /home This looks very interesting - where do you get growisofs and how do you restore a backup made this way? Eivind. From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04: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 DC86A16A4CE; Tue, 13 Apr 2004 04:22:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C047443D2F; Tue, 13 Apr 2004 04:22:23 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBMNGe059421; Tue, 13 Apr 2004 04:22:23 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBMNg4059417; Tue, 13 Apr 2004 04:22:23 -0700 (PDT) (envelope-from luigi) Message-Id: <200404131122.i3DBMNg4059417@repoman.freebsd.org> From: Luigi Rizzo Date: Tue, 13 Apr 2004 04:22:23 -0700 (PDT) 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 route.h 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: Tue, 13 Apr 2004 11:22:24 -0000 luigi 2004/04/13 04:22:23 PDT FreeBSD src repository Modified files: sys/net route.c route.h rtsock.c Log: route.h: introduce a macro, SA_SIZE(struct sockaddr *) which returns the space occupied by a struct sockaddr when passed through a routing socket. Use it to replace the macro ROUNDUP(int), that does the same but is redefined by every file which uses it, courtesy of the School of Cut'n'Paste Programming(TM). (partial) userland changes to follow. Revision Changes Path 1.97 +2 -4 src/sys/net/route.c 1.57 +12 -0 src/sys/net/route.h 1.100 +5 -10 src/sys/net/rtsock.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:22: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 2A59616A4CF; Tue, 13 Apr 2004 04:22:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E4D543D41; Tue, 13 Apr 2004 04:22:27 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBMQGe059488; Tue, 13 Apr 2004 04:22:26 -0700 (PDT) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBMQ9q059486; Tue, 13 Apr 2004 04:22:26 -0700 (PDT) (envelope-from dinoex) Message-Id: <200404131122.i3DBMQ9q059486@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 13 Apr 2004 04:22:26 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/gnustep-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: Tue, 13 Apr 2004 11:22:27 -0000 dinoex 2004/04/13 04:22:26 PDT FreeBSD ports repository Modified files: devel/gnustep-make Makefile Log: - revert to build without libobjc - bump PORTREVISION Revision Changes Path 1.50 +4 -1 ports/devel/gnustep-make/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:23: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 6D71A16A4CE; Tue, 13 Apr 2004 04:23:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 505DB43D39; Tue, 13 Apr 2004 04:23:14 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBNEGe059649; Tue, 13 Apr 2004 04:23:14 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBNEPx059648; Tue, 13 Apr 2004 04:23:14 -0700 (PDT) (envelope-from luigi) Message-Id: <200404131123.i3DBNEPx059648@repoman.freebsd.org> From: Luigi Rizzo Date: Tue, 13 Apr 2004 04:23:13 -0700 (PDT) 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 src/sbin/natd natd.c src/sbin/route route.c 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: Tue, 13 Apr 2004 11:23:14 -0000 luigi 2004/04/13 04:23:13 PDT FreeBSD src repository Modified files: sbin/ifconfig ifconfig.c sbin/natd natd.c sbin/route route.c sbin/routed if.c Log: Replace ROUNDUP/ADVANCE with SA_SIZE Revision Changes Path 1.103 +1 -5 src/sbin/ifconfig/ifconfig.c 1.45 +1 -5 src/sbin/natd/natd.c 1.72 +4 -8 src/sbin/route/route.c 1.13 +1 -16 src/sbin/routed/if.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:23: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 2278116A4F3; Tue, 13 Apr 2004 04:23:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 060CE43D5E; Tue, 13 Apr 2004 04:23:44 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBNhGe059689; Tue, 13 Apr 2004 04:23:43 -0700 (PDT) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBNh3x059687; Tue, 13 Apr 2004 04:23:43 -0700 (PDT) (envelope-from dinoex) Message-Id: <200404131123.i3DBNh3x059687@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 13 Apr 2004 04:23:43 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gnustep-objc 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, 13 Apr 2004 11:23:44 -0000 dinoex 2004/04/13 04:23:43 PDT FreeBSD ports repository Modified files: lang/gnustep-objc Makefile Log: - resurrect from 2003/03/02 - update to 1.3.0 - new gnustep paths - use bsd.gnustep.mk to build - bump PORTEPOCH Revision Changes Path 1.42 +22 -22 ports/lang/gnustep-objc/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04: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 C3D1B16A4D1; Tue, 13 Apr 2004 04:23:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A539643D2F; Tue, 13 Apr 2004 04:23:59 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBNxGe059723; Tue, 13 Apr 2004 04:23:59 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBNx5c059722; Tue, 13 Apr 2004 04:23:59 -0700 (PDT) (envelope-from luigi) Message-Id: <200404131123.i3DBNx5c059722@repoman.freebsd.org> From: Luigi Rizzo Date: Tue, 13 Apr 2004 04:23:59 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/netstat 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: Tue, 13 Apr 2004 11:23:59 -0000 luigi 2004/04/13 04:23:59 PDT FreeBSD src repository Modified files: usr.bin/netstat route.c Log: Replace ROUNDUP/ADVANCE with SA_SIZE Revision Changes Path 1.73 +1 -7 src/usr.bin/netstat/route.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04: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 D308716A4CE; Tue, 13 Apr 2004 04:24:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B577E43D31; Tue, 13 Apr 2004 04:24:20 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBOKGe059768; Tue, 13 Apr 2004 04:24:20 -0700 (PDT) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBOKtY059767; Tue, 13 Apr 2004 04:24:20 -0700 (PDT) (envelope-from dinoex) Message-Id: <200404131124.i3DBOKtY059767@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 13 Apr 2004 04:24:20 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gnustep-objc 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, 13 Apr 2004 11:24:21 -0000 dinoex 2004/04/13 04:24:20 PDT FreeBSD ports repository Added files: lang/gnustep-objc distinfo pkg-descr pkg-plist Log: - resurrect from 2003/03/02 - new gnustep paths Revision Changes Path 1.11 +2 -0 ports/lang/gnustep-objc/distinfo (new) 1.5 +9 -0 ports/lang/gnustep-objc/pkg-descr (new) 1.10 +16 -0 ports/lang/gnustep-objc/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:24: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 60E1516A4CE; Tue, 13 Apr 2004 04:24:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4361743D5A; Tue, 13 Apr 2004 04:24:44 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBOiGe059853; Tue, 13 Apr 2004 04:24:44 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBOic1059852; Tue, 13 Apr 2004 04:24:44 -0700 (PDT) (envelope-from luigi) Message-Id: <200404131124.i3DBOic1059852@repoman.freebsd.org> From: Luigi Rizzo Date: Tue, 13 Apr 2004 04:24:44 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/IPXrouted startup.c src/usr.sbin/rwhod rwhod.c src/usr.sbin/arp Makefile arp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 11:24:44 -0000 luigi 2004/04/13 04:24:44 PDT FreeBSD src repository Modified files: usr.sbin/IPXrouted startup.c usr.sbin/rwhod rwhod.c usr.sbin/arp Makefile arp.c Log: Replace ROUNDUP/ADVANCE with SA_SIZE Revision Changes Path 1.11 +2 -6 src/usr.sbin/IPXrouted/startup.c 1.11 +1 -1 src/usr.sbin/arp/Makefile 1.49 +5 -7 src/usr.sbin/arp/arp.c 1.20 +1 -5 src/usr.sbin/rwhod/rwhod.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:25: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 CA8DB16A4CE; Tue, 13 Apr 2004 04:25:48 -0700 (PDT) Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EA5543D31; Tue, 13 Apr 2004 04:25:48 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (62e6bac3b7106ab9c79d882b62329b8a@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i3DBPmnr019516; Tue, 13 Apr 2004 04:25:48 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 3E96F533F6; Tue, 13 Apr 2004 04:25:47 -0700 (PDT) Date: Tue, 13 Apr 2004 04:25:47 -0700 From: Kris Kennaway To: Yen-Ming Lee Message-ID: <20040413112546.GA29576@xor.obsecurity.org> References: <200404130054.i3D0sdJs007955@repoman.freebsd.org> <20040413010839.GA22172@xor.obsecurity.org> <20040413092700.GA66321@utopia.leeym.com> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="YZ5djTAD1cGYuMQK" Content-Disposition: inline In-Reply-To: <20040413092700.GA66321@utopia.leeym.com> User-Agent: Mutt/1.4.2.1i cc: cvs-ports@FreeBSD.org cc: ports-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Kris Kennaway Subject: Re: cvs commit: ports/dns/rbldnsd Makefile distinfo pkg-install pkg-message pkg-plist ports/dns/rbldnsd/files example rbldnsd.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, 13 Apr 2004 11:25:49 -0000 --YZ5djTAD1cGYuMQK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 13, 2004 at 05:27:00PM +0800, Yen-Ming Lee wrote: > On Mon, Apr 12, 2004 at 06:08:39PM -0700, Kris Kennaway wrote: > > On Mon, Apr 12, 2004 at 05:54:39PM -0700, Yen-Ming Lee wrote: > > > leeym 2004/04/12 17:54:39 PDT > > >=20 > > > FreeBSD ports repository > > >=20 > > > Modified files: > > > dns/rbldnsd Makefile distinfo pkg-plist=20 > > > Added files: > > > dns/rbldnsd pkg-install pkg-message=20 > > > dns/rbldnsd/files example rbldnsd.sh=20 > > > Log: > > > - upgrade version to 0.992 > > > - switch to rc.subr start mechanism > > > - added user/group > > > - added example data on install, target directory > > > - added pkg-message > > > - added more doc files > >=20 > > Don't forget to register the uid. > >=20 > > Kris >=20 > According the following URL, only fixed UID/GID are needed to register, r= ight? > http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/dads-ui= d.html >=20 > rbldnsd should not run as root, but it doesn't need a fixed UID/GID. >=20 > I think in this case, rbldns:rbldns is not needed to be registered. Ports must use a fixed uid. Think about packages, which will be built with a fixed uid that may be in use by the client. Or, the port may choose a "free" uid that is actually registered to another port, then the user might later try to install that port only to have it fail. Kris --YZ5djTAD1cGYuMQK Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAe846Wry0BWjoQKURAs79AJ4/w2/RPKXQJYzA6G6JJaCM4kcPVgCeJfbY AxlxvOZeeygyeU3eLFNCAWg= =Omyg -----END PGP SIGNATURE----- --YZ5djTAD1cGYuMQK-- From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:26: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 F31AE16A4CE; Tue, 13 Apr 2004 04:26:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D682F43D54; Tue, 13 Apr 2004 04:26:47 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBQlGe060042; Tue, 13 Apr 2004 04:26:47 -0700 (PDT) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBQl5n060041; Tue, 13 Apr 2004 04:26:47 -0700 (PDT) (envelope-from dinoex) Message-Id: <200404131126.i3DBQl5n060041@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 13 Apr 2004 04:26:47 -0700 (PDT) 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/gcc-objc 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, 13 Apr 2004 11:26:48 -0000 dinoex 2004/04/13 04:26:47 PDT FreeBSD ports repository Modified files: lang Makefile Added files: lang/gcc-objc Makefile Log: slave port of gcc32 replaces gnustep-objc on some architectures Revision Changes Path 1.399 +1 -0 ports/lang/Makefile 1.1 +30 -0 ports/lang/gcc-objc/Makefile (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:27: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 59FD616A532; Tue, 13 Apr 2004 04:26:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6937743D5A; Tue, 13 Apr 2004 04:26:59 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBQxGe060095; Tue, 13 Apr 2004 04:26:59 -0700 (PDT) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBQxiN060094; Tue, 13 Apr 2004 04:26:59 -0700 (PDT) (envelope-from dinoex) Message-Id: <200404131126.i3DBQxiN060094@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 13 Apr 2004 04:26:59 -0700 (PDT) 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, 13 Apr 2004 11:27:00 -0000 dinoex 2004/04/13 04:26:59 PDT FreeBSD ports repository Modified files: . modules Log: gcc-objc --> ports/lang/gcc-objc Revision Changes Path 1.9898 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04: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 8560F16A4D1; Tue, 13 Apr 2004 04:27:17 -0700 (PDT) Received: from mtaw4.prodigy.net (mtaw4.prodigy.net [64.164.98.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E6F743D5A; Tue, 13 Apr 2004 04:27:17 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (92c15c625b534f2f69cf4ad2620fca9c@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw4.prodigy.net (8.12.10/8.12.10) with ESMTP id i3DBRG1O024727; Tue, 13 Apr 2004 04:27:16 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 02BE8533F6; Tue, 13 Apr 2004 04:27:15 -0700 (PDT) Date: Tue, 13 Apr 2004 04:27:15 -0700 From: Kris Kennaway To: Erwin Lansing Message-ID: <20040413112715.GA29666@xor.obsecurity.org> References: <200404130928.i3D9ShRc033254@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="EVF5PPMfhYS0aIcm" Content-Disposition: inline In-Reply-To: <200404130928.i3D9ShRc033254@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: 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, 13 Apr 2004 11:27:17 -0000 --EVF5PPMfhYS0aIcm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 13, 2004 at 02:28:43AM -0700, Erwin Lansing wrote: > erwin 2004/04/13 02:28:43 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > . modules=20 > Log: > Remove entry for www/Mosaic that was removed Apr 11, 2004. ^-- duplicate You had confused and worried for a moment about what it was that I actually removed the other day :-) Kris --EVF5PPMfhYS0aIcm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAe86TWry0BWjoQKURArihAJkBHINZ9raMT9RafN3J8vRrPgh1twCg38eF 67nBPidQfNr/eOU7CvvVZEg= =xz2Q -----END PGP SIGNATURE----- --EVF5PPMfhYS0aIcm-- From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:29: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 9673E16A4CE; Tue, 13 Apr 2004 04:29:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79F9F43D46; Tue, 13 Apr 2004 04:29:01 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBT1Ge060229; Tue, 13 Apr 2004 04:29:01 -0700 (PDT) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBT12Z060228; Tue, 13 Apr 2004 04:29:01 -0700 (PDT) (envelope-from dinoex) Message-Id: <200404131129.i3DBT12Z060228@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 13 Apr 2004 04:29:01 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.gnustep.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, 13 Apr 2004 11:29:01 -0000 dinoex 2004/04/13 04:29:01 PDT FreeBSD ports repository Modified files: Mk bsd.gnustep.mk Log: - Fix dependency problem in CURRENT - drop LIB_DEPENDS in favor of BUILD_DEPENDS and RUN_DEPENDS - new internel option GNUSTEP_WITHOUT_LIBOBJC Revision Changes Path 1.11 +13 -2 ports/Mk/bsd.gnustep.mk From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:33: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 AAA7216A4D1; Tue, 13 Apr 2004 04:33:41 -0700 (PDT) Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C33C43D54; Tue, 13 Apr 2004 04:33:41 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (627ea8c6c43373bf2a237b50342846e7@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i3DBXeWh027036; Tue, 13 Apr 2004 06:33:40 -0500 (CDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 892BF53910; Tue, 13 Apr 2004 04:33:39 -0700 (PDT) Date: Tue, 13 Apr 2004 04:33:39 -0700 From: Kris Kennaway To: Ruslan Ermilov Message-ID: <20040413113339.GA29881@xor.obsecurity.org> References: <200404130933.i3D9XXxl035113@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="YZ5djTAD1cGYuMQK" Content-Disposition: inline In-Reply-To: <200404130933.i3D9XXxl035113@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/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: Tue, 13 Apr 2004 11:33:41 -0000 --YZ5djTAD1cGYuMQK Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 13, 2004 at 02:33:33AM -0700, Ruslan Ermilov wrote: > ru 2004/04/13 02:33:33 PDT >=20 > FreeBSD src repository >=20 > Modified files: > sys/sys param.h=20 > Log: > Bump __FreeBSD_version on behalf of the new .warning directive in make(= 1). > =20 > Requested by: kris Thanks! Kris --YZ5djTAD1cGYuMQK Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAe9ATWry0BWjoQKURAvPJAKDSYz8N4Xlx2vqTwLiWMzWVxCBnRACgn/bk beLQT+6ET1WBILJztRcM3W4= =OYcU -----END PGP SIGNATURE----- --YZ5djTAD1cGYuMQK-- From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:36: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 8BE3E16A4CE; Tue, 13 Apr 2004 04:36:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E69F43D45; Tue, 13 Apr 2004 04:36:33 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBaXGe062185; Tue, 13 Apr 2004 04:36:33 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBaW4K062184; Tue, 13 Apr 2004 04:36:32 -0700 (PDT) (envelope-from kris) Message-Id: <200404131136.i3DBaW4K062184@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 04:36:32 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/rboot 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, 13 Apr 2004 11:36:33 -0000 kris 2004/04/13 04:36:32 PDT FreeBSD ports repository Modified files: net/rboot Makefile Log: Add missing manpages. Mark BROKEN on 5.x (uses deprecated chown user.group syntax) Revision Changes Path 1.5 +10 -1 ports/net/rboot/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04: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 E132C16A4CE; Tue, 13 Apr 2004 04:38:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C384E43D53; Tue, 13 Apr 2004 04:38:30 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBcUGe062238; Tue, 13 Apr 2004 04:38:30 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBcUAZ062237; Tue, 13 Apr 2004 04:38:30 -0700 (PDT) (envelope-from kris) Message-Id: <200404131138.i3DBcUAZ062237@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 04:38:30 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/bpft 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, 13 Apr 2004 11:38:31 -0000 kris 2004/04/13 04:38:30 PDT FreeBSD ports repository Modified files: net-mgmt/bpft Makefile Log: BROKEN: Changes permissions of system directories Revision Changes Path 1.16 +2 -0 ports/net-mgmt/bpft/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:40: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 2B44016A4CE; Tue, 13 Apr 2004 04:40:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D9A843D3F; Tue, 13 Apr 2004 04:40:55 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBesGe062410; Tue, 13 Apr 2004 04:40:54 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBeslC062409; Tue, 13 Apr 2004 04:40:54 -0700 (PDT) (envelope-from kris) Message-Id: <200404131140.i3DBeslC062409@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 04:40:54 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/coda_doc 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, 13 Apr 2004 11:40:55 -0000 kris 2004/04/13 04:40:54 PDT FreeBSD ports repository Modified files: net/coda_doc Makefile Log: BROKEN: Changes permissions on system directories Revision Changes Path 1.9 +2 -0 ports/net/coda_doc/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04: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 16B0616A4CE; Tue, 13 Apr 2004 04:44:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECD4643D39; Tue, 13 Apr 2004 04:44:40 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBieGe064266; Tue, 13 Apr 2004 04:44:40 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBieJN064265; Tue, 13 Apr 2004 04:44:40 -0700 (PDT) (envelope-from kris) Message-Id: <200404131144.i3DBieJN064265@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 04:44:40 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/epsmerge 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, 13 Apr 2004 11:44:41 -0000 kris 2004/04/13 04:44:40 PDT FreeBSD ports repository Modified files: print/epsmerge pkg-plist Log: Add missing @dirrm Revision Changes Path 1.2 +1 -0 ports/print/epsmerge/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:45: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 17BD016A4CE; Tue, 13 Apr 2004 04:45:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F09E943D54; Tue, 13 Apr 2004 04:45:28 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBjSGe064359; Tue, 13 Apr 2004 04:45:28 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBjSFU064358; Tue, 13 Apr 2004 04:45:28 -0700 (PDT) (envelope-from luigi) Message-Id: <200404131145.i3DBjSFU064358@repoman.freebsd.org> From: Luigi Rizzo Date: Tue, 13 Apr 2004 04:45:28 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/arp 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, 13 Apr 2004 11:45:29 -0000 luigi 2004/04/13 04:45:28 PDT FreeBSD src repository Modified files: usr.sbin/arp Makefile Log: Back out previous commit, it was unintentional. Keep WARNS at 3 though the code does compile with WARNS=5 at least on i386 Noticed by: ru Revision Changes Path 1.12 +1 -1 src/usr.sbin/arp/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:45: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 F416C16A4CE; Tue, 13 Apr 2004 04:45:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D74EF43D5D; Tue, 13 Apr 2004 04:45:52 -0700 (PDT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBjqGe064418; Tue, 13 Apr 2004 04:45:52 -0700 (PDT) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBjq1G064413; Tue, 13 Apr 2004 04:45:52 -0700 (PDT) (envelope-from edwin) Message-Id: <200404131145.i3DBjq1G064413@repoman.freebsd.org> From: Edwin Groothuis Date: Tue, 13 Apr 2004 04:45:52 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/rboot Makefile ports/net/rboot/files patch-aa patch-dev::MAKEDEV X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 11:45:53 -0000 edwin 2004/04/13 04:45:52 PDT FreeBSD ports repository Modified files: net/rboot Makefile net/rboot/files patch-aa Added files: net/rboot/files patch-dev::MAKEDEV Log: Unbreak by patching chown user.group into chown user:group Informed maintainer. Noticed by: kris@ Revision Changes Path 1.6 +0 -4 ports/net/rboot/Makefile 1.2 +10 -13 ports/net/rboot/files/patch-aa 1.1 +110 -0 ports/net/rboot/files/patch-dev::MAKEDEV (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:48: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 7D88816A4CF; Tue, 13 Apr 2004 04:48:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61C5B43D4C; Tue, 13 Apr 2004 04:48:57 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBmvGe070476; Tue, 13 Apr 2004 04:48:57 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBmvRa070475; Tue, 13 Apr 2004 04:48:57 -0700 (PDT) (envelope-from kris) Message-Id: <200404131148.i3DBmvRa070475@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 04:48:57 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/ftp4all 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, 13 Apr 2004 11:48:57 -0000 kris 2004/04/13 04:48:57 PDT FreeBSD ports repository Modified files: ftp/ftp4all pkg-plist Log: Add missing directories Revision Changes Path 1.2 +8 -0 ports/ftp/ftp4all/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:50: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 C8C2E16A4CF; Tue, 13 Apr 2004 04:50:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A02EA43D1F; Tue, 13 Apr 2004 04:50:34 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DBoYGe070583; Tue, 13 Apr 2004 04:50:34 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DBoYut070582; Tue, 13 Apr 2004 04:50:34 -0700 (PDT) (envelope-from kris) Message-Id: <200404131150.i3DBoYut070582@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 04:50:34 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/libnet-devel 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, 13 Apr 2004 11:50:35 -0000 kris 2004/04/13 04:50:34 PDT FreeBSD ports repository Modified files: net/libnet-devel pkg-plist Log: Add missing directory Revision Changes Path 1.4 +2 -1 ports/net/libnet-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 04:53: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 55FDD16A4CE; Tue, 13 Apr 2004 04:53:20 -0700 (PDT) Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F20543D2D; Tue, 13 Apr 2004 04:53:20 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (f323487965788443c92f305f1069fe72@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i3DBrJWh011309; Tue, 13 Apr 2004 06:53:19 -0500 (CDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id BC307533F6; Tue, 13 Apr 2004 04:53:18 -0700 (PDT) Date: Tue, 13 Apr 2004 04:53:18 -0700 From: Kris Kennaway To: Edwin Groothuis Message-ID: <20040413115318.GA30207@xor.obsecurity.org> References: <200404131145.i3DBjq1G064413@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="k+w/mQv8wyuph6w0" Content-Disposition: inline In-Reply-To: <200404131145.i3DBjq1G064413@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/net/rboot Makefile ports/net/rboot/files patch-aa patch-dev::MAKEDEV X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 11:53:20 -0000 --k+w/mQv8wyuph6w0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 13, 2004 at 04:45:52AM -0700, Edwin Groothuis wrote: > edwin 2004/04/13 04:45:52 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > net/rboot Makefile=20 > net/rboot/files patch-aa=20 > Added files: > net/rboot/files patch-dev::MAKEDEV=20 > Log: > Unbreak by patching chown user.group into chown user:group > Informed maintainer. > Noticed by: kris@ Quickest fix ever! Kris --k+w/mQv8wyuph6w0 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD4DBQFAe9SuWry0BWjoQKURApGRAKCxjlBfkjeYF9eW3ipPWEAa9V/ZFgCXTbYd zmP8YeP5bNfI2Nbs6zLB1Q== =gpZM -----END PGP SIGNATURE----- --k+w/mQv8wyuph6w0-- From owner-cvs-all@FreeBSD.ORG Tue Apr 13 05:04: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 3103216A4CE; Tue, 13 Apr 2004 05:04:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1363D43D4C; Tue, 13 Apr 2004 05:04:05 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DC44Ge075319; Tue, 13 Apr 2004 05:04:04 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DC44tR075318; Tue, 13 Apr 2004 05:04:04 -0700 (PDT) (envelope-from kris) Message-Id: <200404131204.i3DC44tR075318@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 05:04:04 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/smarteiffel 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, 13 Apr 2004 12:04:05 -0000 kris 2004/04/13 05:04:04 PDT FreeBSD ports repository Modified files: lang/smarteiffel pkg-plist Log: Add missing symlink Revision Changes Path 1.6 +1 -0 ports/lang/smarteiffel/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 05: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 8418816A4CE; Tue, 13 Apr 2004 05:04:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6677443D45; Tue, 13 Apr 2004 05:04:24 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DC4OGe075355; Tue, 13 Apr 2004 05:04:24 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DC4NfR075354; Tue, 13 Apr 2004 05:04:24 -0700 (PDT) (envelope-from kris) Message-Id: <200404131204.i3DC4NfR075354@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 05:04:23 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/japanese/recjis 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, 13 Apr 2004 12:04:24 -0000 kris 2004/04/13 05:04:23 PDT FreeBSD ports repository Modified files: japanese/recjis pkg-plist Log: Add missing directory Revision Changes Path 1.2 +1 -0 ports/japanese/recjis/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 05:04:37 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 E4EE816A4F9; Tue, 13 Apr 2004 05:04:34 -0700 (PDT) Received: from localhost (green@localhost [127.0.0.1]) by green.homeunix.org (8.12.11/8.12.11) with ESMTP id i3DC4Yeu074420; Tue, 13 Apr 2004 08:04:34 -0400 (EDT) (envelope-from green@green.homeunix.org) Message-Id: <200404131204.i3DC4Yeu074420@green.homeunix.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Eivind Eklund In-Reply-To: Message from Eivind Eklund of "Tue, 13 Apr 2004 11:08:20 -0000." <20040413110820.GB2625@FreeBSD.org> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 13 Apr 2004 08:04:34 -0400 Sender: green@green.homeunix.org cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/dump dump.8 dump.h main.c tape.c src/sbin/restore extern.h main.c restore.8 tape.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 12:04:37 -0000 Eivind Eklund wrote: > On Mon, Apr 12, 2004 at 07:58:07PM -0700, Brian Feldman wrote: > > green 2004/04/12 19:58:07 PDT > > > > FreeBSD src repository > > > > Modified files: > > sbin/dump dump.8 dump.h main.c tape.c > > sbin/restore extern.h main.c restore.8 tape.c > > Log: > > Add -P arguments for dump(8) and restore(8) which allow the user to > > use backup methods other than files and tapes. The -P argument is > > a normal sh(1) pipeline with either $DUMP_VOLUME or $RESTORE_VOLUME > > defined in the environment, respectively. > > > > For example, I can back up my home to three DVD+R[W]s as so: > > Filesystem 1K-blocks Used Avail Capacity Mounted on > > /dev/ad0s2e 40028550 10093140 26733126 27% /home > > green# dump -0 -L -C16 -B4589840 -P 'growisofs -Z /dev/cd0=/dev/fd/0' /home > > This looks very interesting - where do you get growisofs and how do you > restore a backup made this way? Thanks; growisofs comes from sysutils/dvd+rw-tools and is used to burn all the DVD media that the other tools can't do well or at all. In this case, I used it to burn the dump straight to the first (only) DVD+RW track. As long as you use a DVD+R or DVD+RW, you should be able to start and stop with virtually no consequences, making them suitable for output directly from dump. If you're using an ATAPI DVD drive to restore them, you should be able to just use restore -f /dev/acd0t01 or even -f /dev/cd0 with no offset if the dump was made at block 0. Otherwise, you'll certainly need to use restore -P to read in the correct track. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-all@FreeBSD.ORG Tue Apr 13 05:25: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 8C1B616A4CF for ; Tue, 13 Apr 2004 05:25:44 -0700 (PDT) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC03E43D60 for ; Tue, 13 Apr 2004 05:25:43 -0700 (PDT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru id i3DCNKWh041479 for cvs-all@FreeBSD.org.checked; (8.12.8/vak/2.1) Tue, 13 Apr 2004 16:23:20 +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 i3DCLJNn041319; (8.12.8/vak/2.1) Tue, 13 Apr 2004 16:21:19 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <407BDB36.6090908@cronyx.ru> Date: Tue, 13 Apr 2004 16:21:10 +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: =?KOI8-R?Q?S=F8ren_Schmidt?= References: <200404130944.i3D9iLuh037221@repoman.freebsd.org> In-Reply-To: <200404130944.i3D9iLuh037221@repoman.freebsd.org> Content-Type: text/plain; charset=KOI8-R; format=flowed Content-Transfer-Encoding: 8bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-lowlevel.c ata-pci.c ata-pci.h 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: Tue, 13 Apr 2004 12:25:44 -0000 Søren Schmidt wrote: >sos 2004/04/13 02:44:21 PDT > > FreeBSD src repository > > Modified files: > sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c > ata-chipset.c ata-disk.c ata-dma.c > ata-isa.c ata-lowlevel.c ata-pci.c > ata-pci.h ata-queue.c > > Thanks! From owner-cvs-all@FreeBSD.ORG Tue Apr 13 05:31: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 2A3F116A4CE; Tue, 13 Apr 2004 05:31:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C76243D2D; Tue, 13 Apr 2004 05:31:22 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DCVLGe079899; Tue, 13 Apr 2004 05:31:21 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DCVL7n079858; Tue, 13 Apr 2004 05:31:21 -0700 (PDT) (envelope-from kris) Message-Id: <200404131231.i3DCVL7n079858@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 05:31:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/fbm 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, 13 Apr 2004 12:31:22 -0000 kris 2004/04/13 05:31:21 PDT FreeBSD ports repository Modified files: math/fbm pkg-plist Log: Add missing file Revision Changes Path 1.3 +1 -0 ports/math/fbm/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 05:31: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 1E20016A4CF; Tue, 13 Apr 2004 05:31:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F416A43D2D; Tue, 13 Apr 2004 05:31:27 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DCVRGe080319; Tue, 13 Apr 2004 05:31:27 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DCVRxL080318; Tue, 13 Apr 2004 05:31:27 -0700 (PDT) (envelope-from kris) Message-Id: <200404131231.i3DCVRxL080318@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 05:31:27 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/runit 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, 13 Apr 2004 12:31:28 -0000 kris 2004/04/13 05:31:27 PDT FreeBSD ports repository Modified files: sysutils/runit pkg-plist Log: Add missing directories Revision Changes Path 1.4 +3 -1 ports/sysutils/runit/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 05:36: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 6A90116A4CE; Tue, 13 Apr 2004 05:36:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D82D43D64; Tue, 13 Apr 2004 05:36:01 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DCa1Ge081454; Tue, 13 Apr 2004 05:36:01 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DCa1ah081453; Tue, 13 Apr 2004 05:36:01 -0700 (PDT) (envelope-from ru) Message-Id: <200404131236.i3DCa1ah081453@repoman.freebsd.org> From: Ruslan Ermilov Date: Tue, 13 Apr 2004 05:36:00 -0700 (PDT) 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.obj.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, 13 Apr 2004 12:36:01 -0000 ru 2004/04/13 05:36:00 PDT FreeBSD src repository Modified files: share/mk bsd.obj.mk Log: Mark the "obj" target with the .PHONY attribute. Revision Changes Path 1.51 +1 -1 src/share/mk/bsd.obj.mk From owner-cvs-all@FreeBSD.ORG Tue Apr 13 05:41: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 1421A16A4CE; Tue, 13 Apr 2004 05:41:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC21143D46; Tue, 13 Apr 2004 05:41:17 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DCfHGe082238; Tue, 13 Apr 2004 05:41:17 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DCfHf4082219; Tue, 13 Apr 2004 05:41:17 -0700 (PDT) (envelope-from marcus) Message-Id: <200404131241.i3DCfHf4082219@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 13 Apr 2004 05:41:17 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/gringotts 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, 13 Apr 2004 12:41:18 -0000 marcus 2004/04/13 05:41:17 PDT FreeBSD ports repository Modified files: security/gringotts Makefile Log: Move the gtk20 dependency to USE_GNOME to chase the gtk20 shared lib version. Revision Changes Path 1.12 +1 -1 ports/security/gringotts/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 05:46: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 DE31B16A4CE; Tue, 13 Apr 2004 05:46:50 -0700 (PDT) Received: from smtp.des.no (flood.des.no [217.116.83.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id A260E43D55; Tue, 13 Apr 2004 05:46:50 -0700 (PDT) (envelope-from des@des.no) Received: by smtp.des.no (Pony Express, from userid 666) id A67E1530A; Tue, 13 Apr 2004 14:46:49 +0200 (CEST) Received: from dwp.des.no (des.no [80.203.228.37]) by smtp.des.no (Pony Express) with ESMTP id 3066D5309; Tue, 13 Apr 2004 14:46:43 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 2602) id E49FA33C6C; Tue, 13 Apr 2004 14:46:42 +0200 (CEST) To: Maksim Yevmenkin References: <200404092326.i39NQGUC078871@repoman.freebsd.org> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Tue, 13 Apr 2004 14:46:42 +0200 In-Reply-To: <200404092326.i39NQGUC078871@repoman.freebsd.org> (Maksim Yevmenkin's message of "Fri, 9 Apr 2004 16:26:16 -0700 (PDT)") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on flood.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=AWL autolearn=no version=2.63 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/bluetooth/rfcomm_sppd rfcomm_sdp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 12:46:51 -0000 Maksim Yevmenkin writes: > Log: > Use uint instead of u_int What's wrong with "unsigned int"? DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Tue Apr 13 05:56: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 4851B16A4CF; Tue, 13 Apr 2004 05:56:09 -0700 (PDT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8913A43D4C; Tue, 13 Apr 2004 05:56:08 -0700 (PDT) (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 i3DD0tVp075615 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Tue, 13 Apr 2004 16:00:57 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i3DCtxIr070939; Tue, 13 Apr 2004 15:55:59 +0300 (EEST) (envelope-from ru) Date: Tue, 13 Apr 2004 15:55:58 +0300 From: Ruslan Ermilov To: Dag-Erling Sm?rgrav Message-ID: <20040413125558.GC46878@ip.net.ua> References: <200404092326.i39NQGUC078871@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="i7F3eY7HS/tUJxUd" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Maksim Yevmenkin cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.bin/bluetooth/rfcomm_sppd rfcomm_sdp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 12:56:09 -0000 --i7F3eY7HS/tUJxUd Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 13, 2004 at 02:46:42PM +0200, Dag-Erling Sm?rgrav wrote: > Maksim Yevmenkin writes: > > Log: > > Use uint instead of u_int >=20 > What's wrong with "unsigned int"? >=20 The actual commit changed a bunch of u_int*_t to uint*_t. I'd be confused too if I wasn't asked to review the patches. ;) Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --i7F3eY7HS/tUJxUd Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAe+NeUkv4P6juNwoRAhZ+AJ0Wnsvm6jmGAPa+tve3tEl+YMMiXACfX8dI Hy4DGp9szuazCM+XpJSpoKI= =hyuX -----END PGP SIGNATURE----- --i7F3eY7HS/tUJxUd-- From owner-cvs-all@FreeBSD.ORG Tue Apr 13 05:57: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 119DA16A4CE; Tue, 13 Apr 2004 05:57:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E905743D54; Tue, 13 Apr 2004 05:57:27 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DCvRGe085575; Tue, 13 Apr 2004 05:57:27 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DCvR3g085574; Tue, 13 Apr 2004 05:57:27 -0700 (PDT) (envelope-from arved) Message-Id: <200404131257.i3DCvR3g085574@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 13 Apr 2004 05:57:27 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/faad Makefile ports/audio/faad/files patch-structs.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, 13 Apr 2004 12:57:28 -0000 arved 2004/04/13 05:57:27 PDT FreeBSD ports repository Modified files: audio/faad Makefile Added files: audio/faad/files patch-structs.h Log: Make it work on 64bit platforms. PR: 64964 Submitted by: tjr Obtained from: faad CVS Revision Changes Path 1.12 +0 -6 ports/audio/faad/Makefile 1.1 +92 -0 ports/audio/faad/files/patch-structs.h (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 06:12: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 29A6A16A4CE; Tue, 13 Apr 2004 06:12:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 22FBE43D60; Tue, 13 Apr 2004 06:12:47 -0700 (PDT) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DDCkGe090613; Tue, 13 Apr 2004 06:12:46 -0700 (PDT) (envelope-from ale@repoman.freebsd.org) Received: (from ale@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DDCiYl090610; Tue, 13 Apr 2004 06:12:44 -0700 (PDT) (envelope-from ale) Message-Id: <200404131312.i3DDCiYl090610@repoman.freebsd.org> From: Alex Dupre Date: Tue, 13 Apr 2004 06:12:43 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT modules ports/emulators Makefile ports/games Makefile ports MOVED ports/emulators/scummvm Makefile distinfo pkg-descr pkg-plist ports/games/scummvm 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, 13 Apr 2004 13:12:47 -0000 ale 2004/04/13 06:12:43 PDT FreeBSD ports repository Modified files: . modules emulators Makefile games Makefile . MOVED Added files: games/scummvm Makefile distinfo pkg-descr pkg-plist Removed files: emulators/scummvm Makefile distinfo pkg-descr pkg-plist Log: Move scummvm back into games category for consistency with other game interpreter. Requested by: kris Revision Changes Path 1.9899 +1 -1 CVSROOT/modules 1.404 +2 -1 ports/MOVED 1.129 +0 -1 ports/emulators/Makefile 1.27 +0 -75 ports/emulators/scummvm/Makefile (dead) 1.8 +0 -2 ports/emulators/scummvm/distinfo (dead) 1.5 +0 -14 ports/emulators/scummvm/pkg-descr (dead) 1.4 +0 -5 ports/emulators/scummvm/pkg-plist (dead) 1.685 +1 -0 ports/games/Makefile 1.27 +75 -0 ports/games/scummvm/Makefile (new) 1.9 +2 -0 ports/games/scummvm/distinfo (new) 1.5 +14 -0 ports/games/scummvm/pkg-descr (new) 1.5 +5 -0 ports/games/scummvm/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 06:14: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 9CBDD16A4CE; Tue, 13 Apr 2004 06:14:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F99C43D1F; Tue, 13 Apr 2004 06:14:04 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DDE4Ge090710; Tue, 13 Apr 2004 06:14:04 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DDE3Cr090709; Tue, 13 Apr 2004 06:14:03 -0700 (PDT) (envelope-from kris) Message-Id: <200404131314.i3DDE3Cr090709@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 06:14:03 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/moviedb 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, 13 Apr 2004 13:14:04 -0000 kris 2004/04/13 06:14:03 PDT FreeBSD ports repository Modified files: misc/moviedb Makefile Log: BROKEN: Build fails Revision Changes Path 1.5 +2 -0 ports/misc/moviedb/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 06:16: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 14E5116A4DF; Tue, 13 Apr 2004 06:16:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC35A43D45; Tue, 13 Apr 2004 06:16:38 -0700 (PDT) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DDGcGe090924; Tue, 13 Apr 2004 06:16:38 -0700 (PDT) (envelope-from ale@repoman.freebsd.org) Received: (from ale@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DDGc12090923; Tue, 13 Apr 2004 06:16:38 -0700 (PDT) (envelope-from ale) Message-Id: <200404131316.i3DDGc12090923@repoman.freebsd.org> From: Alex Dupre Date: Tue, 13 Apr 2004 06:16:38 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/bass Makefile ports/games/fotaq Makefile ports/games/scummvm-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: Tue, 13 Apr 2004 13:16:39 -0000 ale 2004/04/13 06:16:38 PDT FreeBSD ports repository Modified files: games/bass Makefile games/fotaq Makefile games/scummvm-tools Makefile Log: - Update scummvm dependency - Set scummvm-tools maintainership to alexander@trull.com Revision Changes Path 1.5 +1 -1 ports/games/bass/Makefile 1.3 +1 -1 ports/games/fotaq/Makefile 1.6 +2 -2 ports/games/scummvm-tools/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 06:42: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 B573C16A4CE; Tue, 13 Apr 2004 06:42:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9676E43D62; Tue, 13 Apr 2004 06:42:02 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DDg2Ge096230; Tue, 13 Apr 2004 06:42:02 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DDg2PH096226; Tue, 13 Apr 2004 06:42:02 -0700 (PDT) (envelope-from des) Message-Id: <200404131342.i3DDg2PH096226@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 13 Apr 2004 06:42:02 -0700 (PDT) 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: Tue, 13 Apr 2004 13:42:02 -0000 des 2004/04/13 06:42:01 PDT FreeBSD src repository Modified files: . Makefile Makefile.inc1 Log: Add a kernel-toolchain target which only builds the bits required to build a kernel. This is essentially the same as the toolchain target, except that it does not build headers and libraries. Submitted by: ru Revision Changes Path 1.299 +1 -1 src/Makefile 1.422 +3 -1 src/Makefile.inc1 From owner-cvs-all@FreeBSD.ORG Tue Apr 13 06: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 59A3716A4CE; Tue, 13 Apr 2004 06:43:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3C6CA43D45; Tue, 13 Apr 2004 06:43:12 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DDhCGe096803; Tue, 13 Apr 2004 06:43:12 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DDhB15096802; Tue, 13 Apr 2004 06:43:11 -0700 (PDT) (envelope-from des) Message-Id: <200404131343.i3DDhB15096802@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 13 Apr 2004 06:43:11 -0700 (PDT) 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 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, 13 Apr 2004 13:43:12 -0000 des 2004/04/13 06:43:11 PDT FreeBSD src repository Modified files: sys/i386/acpica Makefile Log: Use headers from the kernel source tree rather than installed headers. Submitted by: ru Revision Changes Path 1.6 +1 -1 src/sys/i386/acpica/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 07: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 E24C216A4CE; Tue, 13 Apr 2004 07:01:38 -0700 (PDT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 391EC43D58; Tue, 13 Apr 2004 07:01:38 -0700 (PDT) (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 B776B54840; Tue, 13 Apr 2004 09:01:37 -0500 (CDT) Received: by madman.celabo.org (Postfix, from userid 1001) id 5BDF26D455; Tue, 13 Apr 2004 09:01:37 -0500 (CDT) Date: Tue, 13 Apr 2004 09:01:37 -0500 From: "Jacques A. Vidrine" To: Mark Linimon Message-ID: <20040413140137.GG84087@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Mark Linimon , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200404130245.i3D2jfQu032198@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404130245.i3D2jfQu032198@repoman.freebsd.org> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/mail/metamail 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, 13 Apr 2004 14:01:39 -0000 On Mon, Apr 12, 2004 at 07:45:41PM -0700, Mark Linimon wrote: > linimon 2004/04/12 19:45:41 PDT > > FreeBSD ports repository > > Modified files: > mail/metamail Makefile > Log: > nectar points out that there are still ports in the tree that depend on > metamail: mail/exmh2 (and thus japanese/exmh2), and mail/rmime. Since > I am not sure what the development status of those ports are, I am going > to remove the expiration date -- but with some trepidation, leave the > deprecated tag. > > Revision Changes Path > 1.25 +0 -1 ports/mail/metamail/Makefile Heh, my message was meant to *support* the removal of this port, not prevent it :-) I thought I was the last exmh user (stopping using it ~1998). :-) -- Jacques Vidrine / nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org From owner-cvs-all@FreeBSD.ORG Tue Apr 13 07: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 29AF416A4CE; Tue, 13 Apr 2004 07:04:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D62C43D2D; Tue, 13 Apr 2004 07:04:26 -0700 (PDT) (envelope-from nyan@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DE4PGe002039; Tue, 13 Apr 2004 07:04:25 -0700 (PDT) (envelope-from nyan@repoman.freebsd.org) Received: (from nyan@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DE4PB8002037; Tue, 13 Apr 2004 07:04:25 -0700 (PDT) (envelope-from nyan) Message-Id: <200404131404.i3DE4PB8002037@repoman.freebsd.org> From: Takahashi Yoshihiro Date: Tue, 13 Apr 2004 07:04:25 -0700 (PDT) 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 NOTES src/sys/pc98/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: Tue, 13 Apr 2004 14:04:26 -0000 nyan 2004/04/13 07:04:25 PDT FreeBSD src repository Modified files: sys/i386/conf NOTES sys/pc98/conf NOTES Log: Enable the sx driver on i386 and pc98. Revision Changes Path 1.1152 +1 -1 src/sys/i386/conf/NOTES 1.34 +4 -0 src/sys/pc98/conf/NOTES From owner-cvs-all@FreeBSD.ORG Tue Apr 13 07:16: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 1145916A4CE; Tue, 13 Apr 2004 07:16:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E707A43D31; Tue, 13 Apr 2004 07:16:37 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DEGbGe004262; Tue, 13 Apr 2004 07:16:37 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DEGbi9004261; Tue, 13 Apr 2004 07:16:37 -0700 (PDT) (envelope-from luigi) Message-Id: <200404131416.i3DEGbi9004261@repoman.freebsd.org> From: Luigi Rizzo Date: Tue, 13 Apr 2004 07:16:37 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/arp arp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 14:16:38 -0000 luigi 2004/04/13 07:16:37 PDT FreeBSD src repository Modified files: usr.sbin/arp arp.c Log: Massive cleanup of the code removing global variables to pass function arguments and results. Hopefully no functional changes except fixing a couple of bugs which could cause endless loops if an ioctl() on an interface would fail. Revision Changes Path 1.50 +198 -205 src/usr.sbin/arp/arp.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 07:31:42 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 383E316A4CE; Tue, 13 Apr 2004 07:31:42 -0700 (PDT) Received: from localhost (green@localhost [127.0.0.1]) by green.homeunix.org (8.12.11/8.12.11) with ESMTP id i3DEVf4Q078470; Tue, 13 Apr 2004 10:31:41 -0400 (EDT) (envelope-from green@green.homeunix.org) Message-Id: <200404131431.i3DEVf4Q078470@green.homeunix.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: "Jacques A. Vidrine" , Mark Linimon , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org In-Reply-To: Message from "Jacques A. Vidrine" <20040413140137.GG84087@madman.celabo.org> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Tue, 13 Apr 2004 10:31:41 -0400 Sender: green@green.homeunix.org Subject: Re: cvs commit: ports/mail/metamail 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, 13 Apr 2004 14:31:42 -0000 "Jacques A. Vidrine" wrote: > On Mon, Apr 12, 2004 at 07:45:41PM -0700, Mark Linimon wrote: > > linimon 2004/04/12 19:45:41 PDT > > > > FreeBSD ports repository > > > > Modified files: > > mail/metamail Makefile > > Log: > > nectar points out that there are still ports in the tree that depend on > > metamail: mail/exmh2 (and thus japanese/exmh2), and mail/rmime. Since > > I am not sure what the development status of those ports are, I am going > > to remove the expiration date -- but with some trepidation, leave the > > deprecated tag. > > > > Revision Changes Path > > 1.25 +0 -1 ports/mail/metamail/Makefile > > Heh, my message was meant to *support* the removal of this port, not > prevent it :-) > > I thought I was the last exmh user (stopping using it ~1998). :-) Does this mean I have to become the maintainer of metamail or it will disappear? :-( -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-all@FreeBSD.ORG Tue Apr 13 07:38: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 14D0116A4CE; Tue, 13 Apr 2004 07:38:08 -0700 (PDT) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.131.111.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id A95A343D3F; Tue, 13 Apr 2004 07:38:07 -0700 (PDT) (envelope-from gerald@pfeifer.com) Received: from [128.131.111.60] (acrux [128.131.111.60]) by vexpert.dbai.tuwien.ac.at (Postfix) with ESMTP id 008EC13790; Tue, 13 Apr 2004 16:38:05 +0200 (CEST) Date: Tue, 13 Apr 2004 16:38:09 +0200 (CEST) From: Gerald Pfeifer To: Dirk Meyer In-Reply-To: <200404131104.i3DB42oZ055432@repoman.freebsd.org> Message-ID: References: <200404131104.i3DB42oZ055432@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/lang/gcc32 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, 13 Apr 2004 14:38:08 -0000 On Tue, 13 Apr 2004, Dirk Meyer wrote: > Modified files: > lang/gcc32 Makefile > Log: > - take maintainership Excellent. > gcc33 objc compilers don't compile gnustep-base. > so this port is still needed for a bit. > > - let build also on alpha and sparc64 I believe you could also make it work on amd64 by using the hack I have been applying to the gcc33 and gcc34 ports: .if ${ARCH} == "amd64" CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL} .else CONFIGURE_TARGET= ${ARCH}-portbld-freebsd${OSREL} .endif Gerald -- Gerald Pfeifer (Jerry) gerald@pfeifer.com http://www.pfeifer.com/gerald/ From owner-cvs-all@FreeBSD.ORG Tue Apr 13 07:39: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 D032216A4CE; Tue, 13 Apr 2004 07:39:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B1F2B43D5E; Tue, 13 Apr 2004 07:39:27 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DEdRGe008294; Tue, 13 Apr 2004 07:39:27 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DEdRtr008293; Tue, 13 Apr 2004 07:39:27 -0700 (PDT) (envelope-from imp) Message-Id: <200404131439.i3DEdRtr008293@repoman.freebsd.org> From: Warner Losh Date: Tue, 13 Apr 2004 07:39:26 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pccbb pccbb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 14:39:28 -0000 imp 2004/04/13 07:39:26 PDT FreeBSD src repository Modified files: sys/dev/pccbb pccbb.c Log: Remove extra copy of code. Noticed by: Carlos Velasco Revision Changes Path 1.108 +0 -7 src/sys/dev/pccbb/pccbb.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 07:40: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 29D0716A4CE; Tue, 13 Apr 2004 07:40:48 -0700 (PDT) Received: from satie.private.org (25.60.138.210.bn.2iij.net [210.138.60.25]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8AA843D1F; Tue, 13 Apr 2004 07:40:47 -0700 (PDT) (envelope-from chat95@mac.com) Received: from localhost (localhost [127.0.0.1]) by satie.private.org (8.12.10/8.12.10) with ESMTP id i3DEej9O003256; Tue, 13 Apr 2004 23:40:45 +0900 (JST) (envelope-from chat95@mac.com) Date: Tue, 13 Apr 2004 23:40:45 +0900 (JST) Message-Id: <20040413.234045.576025776.chat95@mac.com> To: kris@FreeBSD.org From: Nakata Maho In-Reply-To: <200404130449.i3D4nF4w065019@repoman.freebsd.org> References: <200404130449.i3D4nF4w065019@repoman.freebsd.org> Organization: private X-Mailer: Mew version 3.3 on XEmacs 21.4.14 (Reasonable Discussion) Mime-Version: 1.0 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/graphics/libemf 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, 13 Apr 2004 14:40:48 -0000 In Message-ID: <200404130449.i3D4nF4w065019@repoman.freebsd.org> Kris Kennaway wrote: > kris 2004/04/12 21:49:15 PDT > > FreeBSD ports repository > > Modified files: > graphics/libemf pkg-plist > Log: > Add missing file > > Revision Changes Path > 1.2 +1 -0 ports/graphics/libemf/pkg-plist > thank you very much for your kindness! --nakata maho From owner-cvs-all@FreeBSD.ORG Tue Apr 13 07:40: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 D7DCF16A4CF; Tue, 13 Apr 2004 07:40:54 -0700 (PDT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7BF4E43D1D; Tue, 13 Apr 2004 07:40:54 -0700 (PDT) (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 AE7D25482B; Tue, 13 Apr 2004 09:40:53 -0500 (CDT) Received: by madman.celabo.org (Postfix, from userid 1001) id 5C17C6D455; Tue, 13 Apr 2004 09:40:53 -0500 (CDT) Date: Tue, 13 Apr 2004 09:40:53 -0500 From: "Jacques A. Vidrine" To: "Brian F. Feldman" Message-ID: <20040413144053.GA86136@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , "Brian F. Feldman" , Mark Linimon , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <20040413140137.GG84087@madman.celabo.org> <200404131431.i3DEVf4Q078470@green.homeunix.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404131431.i3DEVf4Q078470@green.homeunix.org> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Mark Linimon cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/mail/metamail 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, 13 Apr 2004 14:40:55 -0000 On Tue, Apr 13, 2004 at 10:31:41AM -0400, Brian F. Feldman wrote: > Does this mean I have to become the maintainer of metamail or it will > disappear? :-( As my message from February said, *someone* needs to become maintainer of metamail or it should disappear. Cheers, -- Jacques Vidrine / nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org From owner-cvs-all@FreeBSD.ORG Tue Apr 13 08:02: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 65A8516A4CE; Tue, 13 Apr 2004 08:02:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47F8643D3F; Tue, 13 Apr 2004 08:02:38 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DF2cGe014037; Tue, 13 Apr 2004 08:02:38 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DF2baY014033; Tue, 13 Apr 2004 08:02:37 -0700 (PDT) (envelope-from marcus) Message-Id: <200404131502.i3DF2baY014033@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 13 Apr 2004 08:02:37 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/aumix 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, 13 Apr 2004 15:02:38 -0000 marcus 2004/04/13 08:02:37 PDT FreeBSD ports repository Modified files: audio/aumix Makefile Log: Move the gtk20 dependency to USE_GNOME to chase the gtk20 shared lib version. Revision Changes Path 1.42 +1 -1 ports/audio/aumix/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 08:03: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 C73C916A4CE; Tue, 13 Apr 2004 08:03:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A8F5043D5D; Tue, 13 Apr 2004 08:03:08 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DF38Ge015195; Tue, 13 Apr 2004 08:03:08 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DF38UK015194; Tue, 13 Apr 2004 08:03:08 -0700 (PDT) (envelope-from marcus) Message-Id: <200404131503.i3DF38UK015194@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 13 Apr 2004 08:03:08 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/groundhog 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, 13 Apr 2004 15:03:08 -0000 marcus 2004/04/13 08:03:08 PDT FreeBSD ports repository Modified files: games/groundhog Makefile Log: Move the gtk20 dependency to USE_GNOME to chase the gtk20 shared lib version. Revision Changes Path 1.9 +1 -3 ports/games/groundhog/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 08:04: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 AC77716A4CE; Tue, 13 Apr 2004 08:04:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8352D43D62; Tue, 13 Apr 2004 08:04:46 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DF4kGe015251; Tue, 13 Apr 2004 08:04:46 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DF4krI015250; Tue, 13 Apr 2004 08:04:46 -0700 (PDT) (envelope-from marcus) Message-Id: <200404131504.i3DF4krI015250@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 13 Apr 2004 08:04:46 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gtk-qnxtheme 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, 13 Apr 2004 15:04:46 -0000 marcus 2004/04/13 08:04:46 PDT FreeBSD ports repository Modified files: x11-toolkits/gtk-qnxtheme Makefile Log: Move the gtk20 dependency to USE_GNOME to chase the gtk20 shared lib version. Revision Changes Path 1.6 +1 -1 ports/x11-toolkits/gtk-qnxtheme/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 08:08: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 5FF1116A4CE; Tue, 13 Apr 2004 08:08:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42D5E43D1D; Tue, 13 Apr 2004 08:08:16 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DF8GGe015414; Tue, 13 Apr 2004 08:08:16 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DF8G0b015413; Tue, 13 Apr 2004 08:08:16 -0700 (PDT) (envelope-from des) Message-Id: <200404131508.i3DF8G0b015413@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 13 Apr 2004 08:08:16 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/postfix 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, 13 Apr 2004 15:08:16 -0000 des 2004/04/13 08:08:16 PDT FreeBSD ports repository Modified files: mail/postfix pkg-install Log: Use /usr/sbin/nologin instead of /sbin/nologin if it exists and is executable. Use fixed UIDs (125) and GIDs (125, 126). Approved by: maintainer Revision Changes Path 1.17 +14 -5 ports/mail/postfix/pkg-install From owner-cvs-all@FreeBSD.ORG Tue Apr 13 08:10: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 6B3FD16A4DF; Tue, 13 Apr 2004 08:10:30 -0700 (PDT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 971A043D5C; Tue, 13 Apr 2004 08:10:25 -0700 (PDT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 436461472F; Tue, 13 Apr 2004 10:10:24 -0500 (CDT) Date: Tue, 13 Apr 2004 10:10:24 -0500 (CDT) From: Mark Linimon X-X-Sender: linimon@pancho To: "Jacques A. Vidrine" In-Reply-To: <20040413140137.GG84087@madman.celabo.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Mark Linimon cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/mail/metamail 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, 13 Apr 2004 15:10:30 -0000 > Heh, my message was meant to *support* the removal of this port, not > prevent it :-) What it meant was that I had not done all my research. When going through the distfile survey, there are so many entries that it's possible to forget to double-check with INDEX. Either this port _and_ all its dependants of need to be given an expiration date, or none of them do, and the status quo ante is that none of them did. I'm going to let doing the research to figure out if anyone is using any of them just be on the "to get around to" list for now. mcl From owner-cvs-all@FreeBSD.ORG Tue Apr 13 08:13: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 602DF16A4FF; Tue, 13 Apr 2004 08:13:59 -0700 (PDT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43E7D43D49; Tue, 13 Apr 2004 08:13:59 -0700 (PDT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id F18561475F; Tue, 13 Apr 2004 10:13:58 -0500 (CDT) Date: Tue, 13 Apr 2004 10:13:58 -0500 (CDT) From: Mark Linimon X-X-Sender: linimon@pancho To: "Brian F. Feldman" In-Reply-To: <200404131431.i3DEVf4Q078470@green.homeunix.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: "Jacques A. Vidrine" cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Mark Linimon cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/mail/metamail 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, 13 Apr 2004 15:13:59 -0000 On Tue, 13 Apr 2004, Brian F. Feldman wrote: > Does this mean I have to become the maintainer of metamail or it will > disappear? :-( "Actively maintained port" -> "good". "Port allowed to bitrot" -> "bad". :-) mcl From owner-cvs-all@FreeBSD.ORG Tue Apr 13 08: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 68B2116A4CE; Tue, 13 Apr 2004 08:28:18 -0700 (PDT) Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 047AF43D48; Tue, 13 Apr 2004 08:28:18 -0700 (PDT) (envelope-from danfe@regency.nsu.ru) Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 4.30) id 1BDPsU-0003hW-Eh; Tue, 13 Apr 2004 22:31:10 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.10/8.12.10) with ESMTP id i3DFSbGt097509; Tue, 13 Apr 2004 22:28:37 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.10/8.12.10/Submit) id i3DFSb0E097432; Tue, 13 Apr 2004 22:28:37 +0700 (NOVST) (envelope-from danfe) Date: Tue, 13 Apr 2004 22:28:37 +0700 From: Alexey Dokuchaev To: Erwin Lansing Message-ID: <20040413152837.GA94022@regency.nsu.ru> References: <200404130928.i3D9ShRc033254@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404130928.i3D9ShRc033254@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: 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, 13 Apr 2004 15:28:18 -0000 On Tue, Apr 13, 2004 at 02:28:43AM -0700, Erwin Lansing wrote: > erwin 2004/04/13 02:28:43 PDT > > FreeBSD ports repository > > Modified files: > . modules > Log: > Remove entry for www/Mosaic that was removed Apr 11, 2004. Just out of curiosity, why not just make this port build and run properly under both FreeBSD stable & current, and leave the port in? After all, Mosaic is the the major achievement of "older times" that made Internet how we see it now. Historical reason is probably strong enough in this case. ./danfe From owner-cvs-all@FreeBSD.ORG Tue Apr 13 08:31: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 04C2316A4CE; Tue, 13 Apr 2004 08:31:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6C3743D58; Tue, 13 Apr 2004 08:31:28 -0700 (PDT) (envelope-from vanilla@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DFVSGe020369; Tue, 13 Apr 2004 08:31:28 -0700 (PDT) (envelope-from vanilla@repoman.freebsd.org) Received: (from vanilla@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DFVSRH020365; Tue, 13 Apr 2004 08:31:28 -0700 (PDT) (envelope-from vanilla) Message-Id: <200404131531.i3DFVSRH020365@repoman.freebsd.org> From: "Vanilla I. Shu" Date: Tue, 13 Apr 2004 08:31:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/chinese/irssi Makefile ports/chinese/irssi/files patch-src::fe-text::gui-entry.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 15:31:29 -0000 vanilla 2004/04/13 08:31:28 PDT FreeBSD ports repository Modified files: chinese/irssi Makefile chinese/irssi/files patch-src::fe-text::gui-entry.c Log: - Fix another chinese input string problem. - Bump version. Submitted by: mhsin via #bsdchat Revision Changes Path 1.23 +1 -1 ports/chinese/irssi/Makefile 1.9 +5 -3 ports/chinese/irssi/files/patch-src::fe-text::gui-entry.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 08:32: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 A595A16A4CE; Tue, 13 Apr 2004 08:32:17 -0700 (PDT) Received: from e0-a11.b1.lan.prg.vol.cz (e0-a11.b1.lan.prg.vol.cz [195.122.204.152]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AA7543D48; Tue, 13 Apr 2004 08:32:17 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from pav.hide.vol.cz (localhost [127.0.0.1])i3DFWFhI003021; Tue, 13 Apr 2004 17:32:15 +0200 (CEST) (envelope-from pav@FreeBSD.org) Received: (from pav@localhost) by pav.hide.vol.cz (8.12.11/8.12.11/Submit) id i3DFWBdr003020; Tue, 13 Apr 2004 17:32:11 +0200 (CEST) (envelope-from pav@FreeBSD.org) X-Authentication-Warning: pav.hide.vol.cz: pav set sender to pav@FreeBSD.org using -f From: Pav Lucistnik To: Alexey Dokuchaev In-Reply-To: <20040413152837.GA94022@regency.nsu.ru> References: <200404130928.i3D9ShRc033254@repoman.freebsd.org> <20040413152837.GA94022@regency.nsu.ru> Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="=-7xkpTVlyGozBjkgnfpJw" Message-Id: <1081870331.94139.31.camel@pav.hide.vol.cz> Mime-Version: 1.0 X-Mailer: Ximian Evolution 1.4.6 Date: Tue, 13 Apr 2004 17:32:11 +0200 cc: cvs-ports@FreeBSD.org cc: Erwin Lansing cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: CVSROOT modules 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: Tue, 13 Apr 2004 15:32:18 -0000 --=-7xkpTVlyGozBjkgnfpJw Content-Type: text/plain; charset=iso-8859-2 Content-Transfer-Encoding: quoted-printable V =FAt, 13. 04. 2004 v 17:28, Alexey Dokuchaev p=ED=B9e: > > FreeBSD ports repository > >=20 > > Modified files: > > . modules=20 > > Log: > > Remove entry for www/Mosaic that was removed Apr 11, 2004. >=20 > Just out of curiosity, why not just make this port build and run > properly under both FreeBSD stable & current, and leave the port in? > After all, Mosaic is the the major achievement of "older times" that made > Internet how we see it now. Historical reason is probably strong > enough in this case. Patches are welcomed. --=20 Pav Lucistnik May the Valar protect you on your path under the sky. --=-7xkpTVlyGozBjkgnfpJw 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.4 (FreeBSD) iD8DBQBAfAf6ntdYP8FOsoIRAoWDAJsHeCKAz6MycE7ynUc0gjzzKadGRgCgyPwK GDdRqsxf8vc7tz0L2jR/EeI= =PkQp -----END PGP SIGNATURE----- --=-7xkpTVlyGozBjkgnfpJw-- From owner-cvs-all@FreeBSD.ORG Tue Apr 13 08:35: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 E4C9116A4CE; Tue, 13 Apr 2004 08:35:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C488F43D2F; Tue, 13 Apr 2004 08:35:18 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DFZHGe021416; Tue, 13 Apr 2004 08:35:17 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DFZGn1021415; Tue, 13 Apr 2004 08:35:16 -0700 (PDT) (envelope-from arved) Message-Id: <200404131535.i3DFZGn1021415@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 13 Apr 2004 08:35:16 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/vsound Makefile ports/audio/vsound/files patch-configure patch-vsound.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 15:35:19 -0000 arved 2004/04/13 08:35:16 PDT FreeBSD ports repository Modified files: audio/vsound Makefile Added files: audio/vsound/files patch-configure patch-vsound.c Log: Fix build on amd64 (and probably on ia64), by fixing path to endian.h Respect CFLAGS Revision Changes Path 1.7 +0 -4 ports/audio/vsound/Makefile 1.1 +46 -0 ports/audio/vsound/files/patch-configure (new) 1.1 +16 -0 ports/audio/vsound/files/patch-vsound.c (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 08: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 4D4A516A4CE; Tue, 13 Apr 2004 08:37:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 276D443D64; Tue, 13 Apr 2004 08:37:53 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DFbrGe021504; Tue, 13 Apr 2004 08:37:53 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DFbqlp021503; Tue, 13 Apr 2004 08:37:52 -0700 (PDT) (envelope-from des) Message-Id: <200404131537.i3DFbqlp021503@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 13 Apr 2004 08:37:52 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/postfix-current 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, 13 Apr 2004 15:37:53 -0000 des 2004/04/13 08:37:52 PDT FreeBSD ports repository Modified files: mail/postfix-current pkg-install Log: Use /usr/sbin/nologin instead of /sbin/nologin if it exists and is executable. Use fixed UIDs (125) and GIDs (125, 126). Approved by: maintainer Revision Changes Path 1.16 +14 -5 ports/mail/postfix-current/pkg-install From owner-cvs-all@FreeBSD.ORG Tue Apr 13 08:40: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 7F66416A4CE; Tue, 13 Apr 2004 08:40:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 609C343D54; Tue, 13 Apr 2004 08:40:54 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DFesGe021628; Tue, 13 Apr 2004 08:40:54 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DFer1F021627; Tue, 13 Apr 2004 08:40:53 -0700 (PDT) (envelope-from des) Message-Id: <200404131540.i3DFer1F021627@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 13 Apr 2004 08:40:53 -0700 (PDT) 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, 13 Apr 2004 15:40:54 -0000 des 2004/04/13 08:40:53 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: Reserve UID 125 and GIDs 125 and 126 for Postfix. This commit also adds an incomplete list of reserved GIDs, because some ports use GIDs that have no corresponding user. I've listed GIDs that are in the stock groups file as well as those used by ports which I myself use. Revision Changes Path 1.394 +21 -2 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Tue Apr 13 08:43: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 D0B7D16A4CE; Tue, 13 Apr 2004 08:43:34 -0700 (PDT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF07243D2F; Tue, 13 Apr 2004 08:43:32 -0700 (PDT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 5C98B140DA; Tue, 13 Apr 2004 10:43:32 -0500 (CDT) Date: Tue, 13 Apr 2004 10:43:32 -0500 (CDT) From: Mark Linimon X-X-Sender: linimon@pancho To: Alexey Dokuchaev In-Reply-To: <20040413152837.GA94022@regency.nsu.ru> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-ports@freebsd.org cc: Erwin Lansing cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: 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, 13 Apr 2004 15:43:35 -0000 On Tue, 13 Apr 2004, Alexey Dokuchaev wrote: > Just out of curiosity, why not just make this port build and run > properly under both FreeBSD stable & current, and leave the port in? An excellent idea ... one which no one stepped up to do during the 2-month period between when it was first proposed for removal, and it was actually removed. (FWIW, I was the person who proposed it). The problem is that we have more ports that are broken on -current than we have volunteers to fix them (right now the count is around 400 on both amd64 and ia64; a little bit lower on the others). At some point in the not-too-distant future we're going to make what is now -current into the "new -stable". When that happens, IMHO we're going to have a lot of unhappy users who waste time trying to build ports that will not run on their systems, who are on the one hand told "you should upgrade", and on the other hand, "well, yeah, but 4% of the ports will no longer work". Summary: I'd rather see broken ports fixed than deleted, but at some point (again IMHO) we really have to do one or the other. Otherwise we just run the risk of letting users waste their time. mcl From owner-cvs-all@FreeBSD.ORG Tue Apr 13 08:56: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 17C9D16A4CE; Tue, 13 Apr 2004 08:56:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EE74943D31; Tue, 13 Apr 2004 08:56:45 -0700 (PDT) (envelope-from des@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DFujGe031514; Tue, 13 Apr 2004 08:56:45 -0700 (PDT) (envelope-from des@repoman.freebsd.org) Received: (from des@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DFuj7J031513; Tue, 13 Apr 2004 08:56:45 -0700 (PDT) (envelope-from des) Message-Id: <200404131556.i3DFuj7J031513@repoman.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 13 Apr 2004 08:56:45 -0700 (PDT) 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, 13 Apr 2004 15:56:46 -0000 des 2004/04/13 08:56:45 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: Add the GIDs used by QMail, since they are decidedly non-obvious. Revision Changes Path 1.395 +2 -0 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Tue Apr 13 08:57: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 1E22816A4CF; Tue, 13 Apr 2004 08:57:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED03043D55; Tue, 13 Apr 2004 08:57:01 -0700 (PDT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DFv1Ge031552; Tue, 13 Apr 2004 08:57:01 -0700 (PDT) (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DFv1Ev031551; Tue, 13 Apr 2004 08:57:01 -0700 (PDT) (envelope-from vs) Message-Id: <200404131557.i3DFv1Ev031551@repoman.freebsd.org> From: Volker Stolz Date: Tue, 13 Apr 2004 08:57:01 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/whois 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, 13 Apr 2004 15:57:02 -0000 vs 2004/04/13 08:57:01 PDT FreeBSD ports repository Modified files: net/whois Makefile distinfo Log: + Update to 4.6.13: - new IPv4 RIPE allocations - fix issues with DENIC + correctly handle CFLAGS PR: 65272 Submitted by: Toni Viemero (approved by maintainer) Approved by: linimon (mentor) Revision Changes Path 1.9 +2 -1 ports/net/whois/Makefile 1.5 +2 -2 ports/net/whois/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 13 09:24: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 7775B16A4CE; Tue, 13 Apr 2004 09:24:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B63243D2D; Tue, 13 Apr 2004 09:24:05 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DGO5Ge038412; Tue, 13 Apr 2004 09:24:05 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DGO5Hk038411; Tue, 13 Apr 2004 09:24:05 -0700 (PDT) (envelope-from marcus) Message-Id: <200404131624.i3DGO5Hk038411@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 13 Apr 2004 09:24:04 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mozilla-devel/files patch-extensions_negotiateauth_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: Tue, 13 Apr 2004 16:24:05 -0000 marcus 2004/04/13 09:24:04 PDT FreeBSD ports repository Added files: www/mozilla-devel/files patch-extensions_negotiateauth_Makefile.in Log: Fix the link order of the GSSAPI extension so it uses our libasn1.so before Mozilla's. This fixes some unresolved symbols problems during post-build. PR: 65472 Revision Changes Path 1.1 +12 -0 ports/www/mozilla-devel/files/patch-extensions_negotiateauth_Makefile.in (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 09: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 64ECA16A4CE; Tue, 13 Apr 2004 09:31:27 -0700 (PDT) Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0ECC343D60; Tue, 13 Apr 2004 09:31:27 -0700 (PDT) (envelope-from danfe@regency.nsu.ru) Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 4.30) id 1BDQ5f-0005bV-2T; Tue, 13 Apr 2004 22:44:47 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.10/8.12.10) with ESMTP id i3DFgEGt007934; Tue, 13 Apr 2004 22:42:14 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.10/8.12.10/Submit) id i3DFgEiW007904; Tue, 13 Apr 2004 22:42:14 +0700 (NOVST) (envelope-from danfe) Date: Tue, 13 Apr 2004 22:42:14 +0700 From: Alexey Dokuchaev To: Pav Lucistnik Message-ID: <20040413154213.GB94022@regency.nsu.ru> References: <200404130928.i3D9ShRc033254@repoman.freebsd.org> <20040413152837.GA94022@regency.nsu.ru> <1081870331.94139.31.camel@pav.hide.vol.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1081870331.94139.31.camel@pav.hide.vol.cz> User-Agent: Mutt/1.4.2.1i cc: cvs-ports@freebsd.org cc: Erwin Lansing cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: 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, 13 Apr 2004 16:31:27 -0000 On Tue, Apr 13, 2004 at 05:32:11PM +0200, Pav Lucistnik wrote: > V ?t, 13. 04. 2004 v 17:28, Alexey Dokuchaev p??e: > > > > FreeBSD ports repository > > > > > > Modified files: > > > . modules > > > Log: > > > Remove entry for www/Mosaic that was removed Apr 11, 2004. > > > > Just out of curiosity, why not just make this port build and run > > properly under both FreeBSD stable & current, and leave the port in? > > After all, Mosaic is the the major achievement of "older times" that made > > Internet how we see it now. Historical reason is probably strong > > enough in this case. > > Patches are welcomed. OK, I'll go for it. I'm a bit nostalgic about this kind of things. :-) ./danfe From owner-cvs-all@FreeBSD.ORG Tue Apr 13 09:36: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 2238516A4CE; Tue, 13 Apr 2004 09:36:34 -0700 (PDT) Received: from a.mail.sonic.net (a.mail.sonic.net [64.142.16.245]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A7C343D41; Tue, 13 Apr 2004 09:36:34 -0700 (PDT) (envelope-from bmah@tomcat.kitchenlab.org) Received: from tomcat.kitchenlab.org (adsl-64-142-31-107.sonic.net [64.142.31.107]) by a.mail.sonic.net (8.12.11/8.12.11) with ESMTP id i3DGaXE8006344 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Tue, 13 Apr 2004 09:36:33 -0700 Received: from tomcat.kitchenlab.org (localhost.kitchenlab.org [127.0.0.1]) i3DGaXw4069142; Tue, 13 Apr 2004 09:36:33 -0700 (PDT) (envelope-from bmah@tomcat.kitchenlab.org) Received: (from bmah@localhost) by tomcat.kitchenlab.org (8.12.11/8.12.11/Submit) id i3DGaXi5069141; Tue, 13 Apr 2004 09:36:33 -0700 (PDT) (envelope-from bmah) Date: Tue, 13 Apr 2004 09:36:33 -0700 From: "Bruce A. Mah" To: "Jacques A. Vidrine" , Mark Linimon , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040413163633.GA69053@tomcat.kitchenlab.org> References: <200404130245.i3D2jfQu032198@repoman.freebsd.org> <20040413140137.GG84087@madman.celabo.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="qDbXVdCdHGoSgWSk" Content-Disposition: inline In-Reply-To: <20040413140137.GG84087@madman.celabo.org> User-Agent: Mutt/1.4.2.1i X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-url: http://www.employees.org/~bmah/ Subject: Re: cvs commit: ports/mail/metamail 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, 13 Apr 2004 16:36:34 -0000 --qDbXVdCdHGoSgWSk Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable If memory serves me right, Jacques A. Vidrine wrote: > On Mon, Apr 12, 2004 at 07:45:41PM -0700, Mark Linimon wrote: > > linimon 2004/04/12 19:45:41 PDT > > > > FreeBSD ports repository > > > > Modified files: > > mail/metamail Makefile > > Log: > > nectar points out that there are still ports in the tree that depend = on > > metamail: mail/exmh2 (and thus japanese/exmh2), and mail/rmime. Since > > I am not sure what the development status of those ports are, I am go= ing > > to remove the expiration date -- but with some trepidation, leave the > > deprecated tag. One could, of course, just ask the maintainers of these ports. For example: nimitz:bmah% grep MAINTAINER /usr/ports/mail/exmh2/Makefile MAINTAINER?=3D bmah@FreeBSD.org :-) > > Revision Changes Path > > 1.25 +0 -1 ports/mail/metamail/Makefile >=20 > Heh, my message was meant to *support* the removal of this port, not > prevent it :-) >=20 > I thought I was the last exmh user (stopping using it ~1998). :-) Heh. I believe (just from skimming the code, but not having tested this) that exmh only needs metamail for doing base64 and quoted-printable encoding/decoding of files. Of those: 1. The converters/base64 port is applicable. Relatively recent -CURRENT and -STABLE have base64 encode/decode utilities in the base system. 2. If someone can suggest a quoted-printable encode/decode utility (a filter would be ideal) in the base system or ports, we could probably eliminate exmh's metamail dependency altogether. Bruce. --qDbXVdCdHGoSgWSk Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfBcQ2MoxcVugUsMRAsCLAJ4nWQIThZhCDmPkxp1m1mGySIN98wCeJSga JLuyQ97SO2U4CmwV1NZp9xo= =gVB3 -----END PGP SIGNATURE----- --qDbXVdCdHGoSgWSk-- From owner-cvs-all@FreeBSD.ORG Tue Apr 13 09:37: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 B64BC16A4CE; Tue, 13 Apr 2004 09:37:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AAC543D41; Tue, 13 Apr 2004 09:37:55 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DGbtGe040604; Tue, 13 Apr 2004 09:37:55 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DGbrhi040603; Tue, 13 Apr 2004 09:37:53 -0700 (PDT) (envelope-from arved) Message-Id: <200404131637.i3DGbrhi040603@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 13 Apr 2004 09:37:53 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ossp-al Makefile ports/devel/ossp-al/files patch-ts.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 16:37:55 -0000 arved 2004/04/13 09:37:53 PDT FreeBSD ports repository Modified files: devel/ossp-al Makefile Added files: devel/ossp-al/files patch-ts.c Log: Attempt to fix build by using va_copy on amd64 Revision Changes Path 1.11 +0 -4 ports/devel/ossp-al/Makefile 1.1 +14 -0 ports/devel/ossp-al/files/patch-ts.c (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 09:41: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 34E7B16A4CF; Tue, 13 Apr 2004 09:41:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1754B43D58; Tue, 13 Apr 2004 09:41:02 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DGf1Ge040886; Tue, 13 Apr 2004 09:41:01 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DGf109040884; Tue, 13 Apr 2004 09:41:01 -0700 (PDT) (envelope-from nectar) Message-Id: <200404131641.i3DGf109040884@repoman.freebsd.org> From: Jacques Vidrine Date: Tue, 13 Apr 2004 09:41:01 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/kerberos5/include config.h version.h src/kerberos5/usr.bin/krb5-config 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, 13 Apr 2004 16:41:02 -0000 nectar 2004/04/13 09:41:00 PDT FreeBSD src repository Modified files: kerberos5/include config.h version.h kerberos5/usr.bin/krb5-config Makefile Log: Update version strings for Heimdal: 0.6 -> 0.6.1 Revision Changes Path 1.14 +3 -3 src/kerberos5/include/config.h 1.13 +2 -2 src/kerberos5/include/version.h 1.14 +1 -1 src/kerberos5/usr.bin/krb5-config/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 09:53: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 9AB0816A4CE; Tue, 13 Apr 2004 09:53:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E38343D48; Tue, 13 Apr 2004 09:53:55 -0700 (PDT) (envelope-from ume@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DGrtGe044809; Tue, 13 Apr 2004 09:53:55 -0700 (PDT) (envelope-from ume@repoman.freebsd.org) Received: (from ume@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DGrspv044808; Tue, 13 Apr 2004 09:53:54 -0700 (PDT) (envelope-from ume) Message-Id: <200404131653.i3DGrspv044808@repoman.freebsd.org> From: Hajimu UMEMOTO Date: Tue, 13 Apr 2004 09:53:54 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/gkrellm2 Makefileports/sysutils/gkrellm2/files extra-patch-property X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 16:53:55 -0000 ume 2004/04/13 09:53:54 PDT FreeBSD ports repository Modified files: sysutils/gkrellm2 Makefile Added files: sysutils/gkrellm2/files extra-patch-property Log: - set the _NET_WM_STRUT_PARTIAL property when dock type. - defer setting withdrawn state until after main window realize. Obtained from: GKrellM 2.1.100-test0 Revision Changes Path 1.99 +3 -2 ports/sysutils/gkrellm2/Makefile 1.1 +159 -0 ports/sysutils/gkrellm2/files/extra-patch-property (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10:01: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 02D1D16A4DD; Tue, 13 Apr 2004 10:01:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D963943D5D; Tue, 13 Apr 2004 10:01:35 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DH1ZGe045820; Tue, 13 Apr 2004 10:01:35 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DH1YQG045807; Tue, 13 Apr 2004 10:01:34 -0700 (PDT) (envelope-from arved) Message-Id: <200404131701.i3DH1YQG045807@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 13 Apr 2004 10:01:33 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ossp-cfg Makefileports/devel/ossp-cfg/files patch-cfg_fmt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 17:01:36 -0000 arved 2004/04/13 10:01:33 PDT FreeBSD ports repository Modified files: devel/ossp-cfg Makefile Added files: devel/ossp-cfg/files patch-cfg_fmt.c Log: Attempt to fix build on amd64 by using va_copy Revision Changes Path 1.10 +0 -4 ports/devel/ossp-cfg/Makefile 1.1 +15 -0 ports/devel/ossp-cfg/files/patch-cfg_fmt.c (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10:09: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 7169316A4CF; Tue, 13 Apr 2004 10:09:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4865E43D3F; Tue, 13 Apr 2004 10:09:33 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DH9XGe048119; Tue, 13 Apr 2004 10:09:33 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DH9XZd048118; Tue, 13 Apr 2004 10:09:33 -0700 (PDT) (envelope-from arved) Message-Id: <200404131709.i3DH9XZd048118@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 13 Apr 2004 10:09:32 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ossp-l2 Makefile ports/devel/ossp-l2/files patch-l2_ut_format.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 17:09:33 -0000 arved 2004/04/13 10:09:32 PDT FreeBSD ports repository Modified files: devel/ossp-l2 Makefile Added files: devel/ossp-l2/files patch-l2_ut_format.c Log: Attempt to fix build on amd64 by using va_copy Revision Changes Path 1.12 +0 -4 ports/devel/ossp-l2/Makefile 1.1 +15 -0 ports/devel/ossp-l2/files/patch-l2_ut_format.c (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10: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 A523216A4CF; Tue, 13 Apr 2004 10:11:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 88D4143D49; Tue, 13 Apr 2004 10:11:12 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DHBCGe048437; Tue, 13 Apr 2004 10:11:12 -0700 (PDT) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DHBClL048417; Tue, 13 Apr 2004 10:11:12 -0700 (PDT) (envelope-from trhodes) Message-Id: <200404131711.i3DHBClL048417@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 13 Apr 2004 10:11:12 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: 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: Tue, 13 Apr 2004 17:11:12 -0000 trhodes 2004/04/13 10:11:12 PDT FreeBSD doc repository Modified files: en/security security.sgml Log: Remove a lot of rot and other 'useless' information from the security website. Approved by: nectar Revision Changes Path 1.155 +3 -319 www/en/security/security.sgml From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10:13: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 72F3D16A4CE; Tue, 13 Apr 2004 10:13:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 579B143D31; Tue, 13 Apr 2004 10:13:55 -0700 (PDT) (envelope-from pb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DHDtGe050132; Tue, 13 Apr 2004 10:13:55 -0700 (PDT) (envelope-from pb@repoman.freebsd.org) Received: (from pb@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DHDtxO050131; Tue, 13 Apr 2004 10:13:55 -0700 (PDT) (envelope-from pb) Message-Id: <200404131713.i3DHDtxO050131@repoman.freebsd.org> From: Pierre Beyssac Date: Tue, 13 Apr 2004 10:13:55 -0700 (PDT) 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-ag patch-ai patch-aj patch-am patch-an patch-as patch-au patch-av patch-aw patch-ay patch-az patch-bc patch-bd ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 17:13:55 -0000 pb 2004/04/13 10:13:55 PDT FreeBSD ports repository Modified files: multimedia/kino Makefile distinfo pkg-plist multimedia/kino/files patch-aa patch-ag patch-ai patch-aj patch-am patch-an patch-as patch-au patch-av patch-aw patch-az Added files: multimedia/kino/files patch-Makefile.in patch-help::Makefile.in patch-scripts::exports::ffmpeg_dvd.sh patch-scripts::help.sh patch-src::audio_transitions.h patch-src::filehandler.h patch-src::image_filters.h patch-src::image_transitions.h patch-src::kino_common.cc patch-src::mediactrl.c patch-src::mediactrl.h patch-src::smiltime.cc Removed files: multimedia/kino/files patch-ay patch-bc patch-bd Log: - Update to 0.7.1 - USE_GETTEXT=yes, USE_GNOME+=libxml2 as suggested by krion Revision Changes Path 1.3 +5 -7 ports/multimedia/kino/Makefile 1.2 +2 -2 ports/multimedia/kino/distinfo 1.1 +20 -0 ports/multimedia/kino/files/patch-Makefile.in (new) 1.2 +32 -10 ports/multimedia/kino/files/patch-aa 1.2 +12 -3 ports/multimedia/kino/files/patch-ag 1.2 +45 -103 ports/multimedia/kino/files/patch-ai 1.2 +15 -13 ports/multimedia/kino/files/patch-aj 1.2 +13 -9 ports/multimedia/kino/files/patch-am 1.2 +4 -4 ports/multimedia/kino/files/patch-an 1.2 +13 -13 ports/multimedia/kino/files/patch-as 1.2 +4 -4 ports/multimedia/kino/files/patch-au 1.2 +28 -28 ports/multimedia/kino/files/patch-av 1.2 +9 -9 ports/multimedia/kino/files/patch-aw 1.2 +0 -10 ports/multimedia/kino/files/patch-ay (dead) 1.2 +11 -11 ports/multimedia/kino/files/patch-az 1.2 +0 -10 ports/multimedia/kino/files/patch-bc (dead) 1.2 +0 -10 ports/multimedia/kino/files/patch-bd (dead) 1.1 +11 -0 ports/multimedia/kino/files/patch-help::Makefile.in (new) 1.1 +19 -0 ports/multimedia/kino/files/patch-scripts::exports::ffmpeg_dvd.sh (new) 1.1 +10 -0 ports/multimedia/kino/files/patch-scripts::help.sh (new) 1.1 +12 -0 ports/multimedia/kino/files/patch-src::audio_transitions.h (new) 1.1 +10 -0 ports/multimedia/kino/files/patch-src::filehandler.h (new) 1.1 +12 -0 ports/multimedia/kino/files/patch-src::image_filters.h (new) 1.1 +12 -0 ports/multimedia/kino/files/patch-src::image_transitions.h (new) 1.1 +20 -0 ports/multimedia/kino/files/patch-src::kino_common.cc (new) 1.1 +76 -0 ports/multimedia/kino/files/patch-src::mediactrl.c (new) 1.1 +11 -0 ports/multimedia/kino/files/patch-src::mediactrl.h (new) 1.1 +35 -0 ports/multimedia/kino/files/patch-src::smiltime.cc (new) 1.2 +34 -16 ports/multimedia/kino/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10:16: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 9521816A4CE; Tue, 13 Apr 2004 10:16:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77F5643D4C; Tue, 13 Apr 2004 10:16:15 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DHGFGe050273; Tue, 13 Apr 2004 10:16:15 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DHGFkF050272; Tue, 13 Apr 2004 10:16:15 -0700 (PDT) (envelope-from arved) Message-Id: <200404131716.i3DHGFkF050272@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 13 Apr 2004 10:16:15 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ossp-var 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, 13 Apr 2004 17:16:15 -0000 arved 2004/04/13 10:16:15 PDT FreeBSD ports repository Modified files: devel/ossp-var Makefile distinfo pkg-plist Log: Update to 1.1.0 to fix build problems on amd64 Revision Changes Path 1.12 +2 -5 ports/devel/ossp-var/Makefile 1.4 +2 -2 ports/devel/ossp-var/distinfo 1.3 +1 -1 ports/devel/ossp-var/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10: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 EB16216A4CE; Tue, 13 Apr 2004 10:18:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE41D43D39; Tue, 13 Apr 2004 10:18:53 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DHIrGe050331; Tue, 13 Apr 2004 10:18:53 -0700 (PDT) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DHIr6M050330; Tue, 13 Apr 2004 10:18:53 -0700 (PDT) (envelope-from trhodes) Message-Id: <200404131718.i3DHIr6M050330@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 13 Apr 2004 10:18:53 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: 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: Tue, 13 Apr 2004 17:18:54 -0000 trhodes 2004/04/13 10:18:53 PDT FreeBSD doc repository Modified files: en/security security.sgml Log: Add information on where security issues should be reported and what is requested from the submitter. Link to the Reading FreeBSD Security Advisories handbook document. Approved by: nectar Revision Changes Path 1.156 +19 -3 www/en/security/security.sgml From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10: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 C5B8316A4D0; Tue, 13 Apr 2004 10:23:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A838C43D58; Tue, 13 Apr 2004 10:23:40 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DHNeGe052203; Tue, 13 Apr 2004 10:23:40 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DHNehD052202; Tue, 13 Apr 2004 10:23:40 -0700 (PDT) (envelope-from marcus) Message-Id: <200404131723.i3DHNehD052202@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 13 Apr 2004 10:23:40 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/libxklavier 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, 13 Apr 2004 17:23:40 -0000 marcus 2004/04/13 10:23:40 PDT FreeBSD ports repository Modified files: x11/libxklavier Makefile distinfo Log: Update to 1.01. Revision Changes Path 1.14 +1 -1 ports/x11/libxklavier/Makefile 1.11 +2 -2 ports/x11/libxklavier/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10: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 EB81016A4CE; Tue, 13 Apr 2004 10:25:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D032F43D4C; Tue, 13 Apr 2004 10:25:22 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DHPMGe052307; Tue, 13 Apr 2004 10:25:22 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DHPMjl052306; Tue, 13 Apr 2004 10:25:22 -0700 (PDT) (envelope-from imp) Message-Id: <200404131725.i3DHPMjl052306@repoman.freebsd.org> From: Warner Losh Date: Tue, 13 Apr 2004 10:25:22 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/projects/busdma 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: Tue, 13 Apr 2004 17:25:23 -0000 imp 2004/04/13 10:25:22 PDT FreeBSD doc repository Modified files: en/projects/busdma index.sgml Log: Remove duplicate cs entry. Add ex entry. Remove exca entry: it isn't a real device. Revision Changes Path 1.80 +13 -25 www/en/projects/busdma/index.sgml From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10:27: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 5C21216A4CE; Tue, 13 Apr 2004 10:27:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F46F43D1D; Tue, 13 Apr 2004 10:27:44 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DHRiGe052389; Tue, 13 Apr 2004 10:27:44 -0700 (PDT) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DHRij8052388; Tue, 13 Apr 2004 10:27:44 -0700 (PDT) (envelope-from trhodes) Message-Id: <200404131727.i3DHRij8052388@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 13 Apr 2004 10:27:44 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/security Makefile charter.sgml 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: Tue, 13 Apr 2004 17:27:44 -0000 trhodes 2004/04/13 10:27:44 PDT FreeBSD doc repository Modified files: en/security Makefile security.sgml Added files: en/security charter.sgml Log: Add the Security Officer charter to the site and link it from the main page. Approved by: nectar Revision Changes Path 1.12 +2 -2 www/en/security/Makefile 1.1 +99 -0 www/en/security/charter.sgml (new) 1.157 +3 -2 www/en/security/security.sgml From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10:31: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 738E416A4CE; Tue, 13 Apr 2004 10:31:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5823343D4C; Tue, 13 Apr 2004 10:31:13 -0700 (PDT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DHVDGe053144; Tue, 13 Apr 2004 10:31:13 -0700 (PDT) (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DHVDdC053119; Tue, 13 Apr 2004 10:31:13 -0700 (PDT) (envelope-from fjoe) Message-Id: <200404131731.i3DHVDdC053119@repoman.freebsd.org> From: Max Khon Date: Tue, 13 Apr 2004 10:31:13 -0700 (PDT) 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, 13 Apr 2004 17:31:13 -0000 fjoe 2004/04/13 10:31:13 PDT FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Midnight Commander vulnerability CAN-2003-1023 was fixed in version 4.6.0_9. Revision Changes Path 1.70 +2 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10: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 03F8A16A4CE; Tue, 13 Apr 2004 10:35:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC4BA43D39; Tue, 13 Apr 2004 10:35:52 -0700 (PDT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DHZqGe054470; Tue, 13 Apr 2004 10:35:52 -0700 (PDT) (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DHZqSI054469; Tue, 13 Apr 2004 10:35:52 -0700 (PDT) (envelope-from fjoe) Message-Id: <200404131735.i3DHZqSI054469@repoman.freebsd.org> From: Max Khon Date: Tue, 13 Apr 2004 10:35:52 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/wxmozilla Makefile pkg-descr ports/x11-toolkits/py-wxPython 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, 13 Apr 2004 17:35:53 -0000 fjoe 2004/04/13 10:35:52 PDT FreeBSD ports repository Modified files: x11-toolkits/wxmozilla Makefile pkg-descr x11-toolkits/py-wxPython Makefile pkg-descr Log: wxWindows -> wxWidgets Prodded by: Pedro F. Giffuni Revision Changes Path 1.45 +1 -1 ports/x11-toolkits/py-wxPython/Makefile 1.4 +1 -1 ports/x11-toolkits/py-wxPython/pkg-descr 1.7 +1 -1 ports/x11-toolkits/wxmozilla/Makefile 1.3 +2 -2 ports/x11-toolkits/wxmozilla/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10: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 049F716A4CE; Tue, 13 Apr 2004 10:42:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC6A343D4C; Tue, 13 Apr 2004 10:42:11 -0700 (PDT) (envelope-from archie@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DHgBGe056222; Tue, 13 Apr 2004 10:42:11 -0700 (PDT) (envelope-from archie@repoman.freebsd.org) Received: (from archie@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DHgBDC056218; Tue, 13 Apr 2004 10:42:11 -0700 (PDT) (envelope-from archie) Message-Id: <200404131742.i3DHgBDC056218@repoman.freebsd.org> From: Archie Cobbs Date: Tue, 13 Apr 2004 10:42:11 -0700 (PDT) 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 ports/net/mpd/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: Tue, 13 Apr 2004 17:42:12 -0000 archie 2004/04/13 10:42:11 PDT FreeBSD ports repository Modified files: net/mpd Makefile Added files: net/mpd/files patch-aa Log: Include patch that fixes ports/62477. Revision Changes Path 1.34 +1 -0 ports/net/mpd/Makefile 1.7 +17 -0 ports/net/mpd/files/patch-aa (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10:42: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 A2F9A16A4CF; Tue, 13 Apr 2004 10:42:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8770A43D53; Tue, 13 Apr 2004 10:42:21 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DHgLGe056389; Tue, 13 Apr 2004 10:42:21 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DHgLX3056388; Tue, 13 Apr 2004 10:42:21 -0700 (PDT) (envelope-from arved) Message-Id: <200404131742.i3DHgLX3056388@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 13 Apr 2004 10:42:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/str Makefile ports/devel/str/files patch-str_basic.c patch-ts.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 17:42:21 -0000 arved 2004/04/13 10:42:21 PDT FreeBSD ports repository Modified files: devel/str Makefile Added files: devel/str/files patch-str_basic.c patch-ts.c Log: Attempt to fix build on amd64 by using va_copy Revision Changes Path 1.14 +0 -4 ports/devel/str/Makefile 1.1 +14 -0 ports/devel/str/files/patch-str_basic.c (new) 1.1 +14 -0 ports/devel/str/files/patch-ts.c (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10:45: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 0042D16A4E2; Tue, 13 Apr 2004 10:45:35 -0700 (PDT) Received: from smtp-out1.xs4all.nl (smtp-out1.xs4all.nl [194.109.24.11]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3189B43D48; Tue, 13 Apr 2004 10:45:35 -0700 (PDT) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-out1.xs4all.nl (8.12.10/8.12.10) with ESMTP id i3DHjXHb001795; Tue, 13 Apr 2004 19:45:34 +0200 (CEST) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i3DHjVc0007628; Tue, 13 Apr 2004 19:45:31 +0200 (CEST) (envelope-from wkb@freebie.xs4all.nl) Received: (from wkb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i3DHjV1r007627; Tue, 13 Apr 2004 19:45:31 +0200 (CEST) (envelope-from wkb) Date: Tue, 13 Apr 2004 19:45:31 +0200 From: Wilko Bulte To: Tom Rhodes Message-ID: <20040413174531.GA7612@freebie.xs4all.nl> References: <200404131727.i3DHRij8052388@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404131727.i3DHRij8052388@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.9-STABLE X-PGP: finger wilko@freebsd.org cc: doc-committers@FreeBSD.ORG cc: cvs-doc@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: www/en/security Makefile charter.sgml 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: Tue, 13 Apr 2004 17:45:36 -0000 On Tue, Apr 13, 2004 at 10:27:44AM -0700, Tom Rhodes wrote: > trhodes 2004/04/13 10:27:44 PDT > > FreeBSD doc repository > > Modified files: > en/security Makefile security.sgml > Added files: > en/security charter.sgml > Log: > Add the Security Officer charter to the site and link it from the main page. That was about time, thanks! -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10:47: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 D782816A4CE; Tue, 13 Apr 2004 10:47:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBF6B43D48; Tue, 13 Apr 2004 10:47:46 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DHlkGe056670; Tue, 13 Apr 2004 10:47:46 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DHlkkg056669; Tue, 13 Apr 2004 10:47:46 -0700 (PDT) (envelope-from imp) Message-Id: <200404131747.i3DHlkkg056669@repoman.freebsd.org> From: Warner Losh Date: Tue, 13 Apr 2004 10:47:46 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/projects/busdma 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: Tue, 13 Apr 2004 17:47:47 -0000 imp 2004/04/13 10:47:46 PDT FreeBSD doc repository Modified files: en/projects/busdma index.sgml Log: Update status of aha card: I have p4 work towards INTR_MPSAFE Revision Changes Path 1.81 +5 -5 www/en/projects/busdma/index.sgml From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10: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 1902B16A4CE for ; Tue, 13 Apr 2004 10:52:29 -0700 (PDT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id F406643D3F for ; Tue, 13 Apr 2004 10:52:28 -0700 (PDT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (IDENT:brdavis@localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.12.10/8.12.3) with ESMTP id i3DHqMkS017041; Tue, 13 Apr 2004 10:52:22 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.12.10/8.12.3/Submit) id i3DHqMcS017040; Tue, 13 Apr 2004 10:52:22 -0700 Date: Tue, 13 Apr 2004 10:52:21 -0700 From: Brooks Davis To: Ben Pratt Message-ID: <20040413175218.GD20550@Odin.AC.HMC.Edu> References: <407C0691.40208@thegeekzone.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <407C0691.40208@thegeekzone.com> User-Agent: Mutt/1.5.4i X-Virus-Scanned: by amavisd-milter (http://amavis.org/) on odin.ac.hmc.edu cc: brooks@one-eyed-alien.net cc: cvs-all@freebsd.org Subject: Re: cvs commit: ports/sysutils/ganglia-monitor-core Makefile distinfo ports/sysutils/ganglia-monitor-core/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: Tue, 13 Apr 2004 17:52:29 -0000 On Tue, Apr 13, 2004 at 10:26:09AM -0500, Ben Pratt wrote: > Has there been any updates on this?? I just installed > sysutils/ganglia-monitor-core on a 4.9 system but am having problems > installing it, and sysutils/ganglia-webfrontend, on my 5.2.1 system. Ganglia 2.6 will fix the collision with libdnet. For now you need to remove libdnet to build ganglia or install ganglia from a package (the problem is buildtime only). I don't know when 2.6 will come out, it contains a more or less complete rewrite of the networking code and is having serious portability problems at the moment. -- Brooks > On Wed, Feb 04, 2004 at 09:30:25PM +0100, Kirill Ponomarew wrote: > > Hi, > > > > On Wed, Feb 04, 2004 at 12:15:52PM -0800, Brooks Davis wrote: > > > > > It builds here on a 4.8-RELEASE-p10 box. What does "pkg_which > > > /usr/local/include/dnet/addr.h" say? It sounds like we may have a > > > conflict. > > > > Yep, seems so. > > > > voodoo$ pkg_which /usr/local/include/dnet/addr.h > > libdnet-1.7_1 > > It looks like the problem is that ganglia includes an old version of > libdnet in its source tree. I'll take this up with the ganglia > developers and see what we can do about it. > > -- Brooks From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10:56: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 56D7B16A4CE; Tue, 13 Apr 2004 10:56:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AD3D43D54; Tue, 13 Apr 2004 10:56:44 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DHuiGe058667; Tue, 13 Apr 2004 10:56:44 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DHuhrN058666; Tue, 13 Apr 2004 10:56:43 -0700 (PDT) (envelope-from nectar) Message-Id: <200404131756.i3DHuhrN058666@repoman.freebsd.org> From: Jacques Vidrine Date: Tue, 13 Apr 2004 10:56:43 -0700 (PDT) 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, 13 Apr 2004 17:56:44 -0000 nectar 2004/04/13 10:56:43 PDT FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Correct modified date in previous commit: format is YYYY-MM-DD and timezone is UTC. Revision Changes Path 1.71 +1 -1 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Tue Apr 13 10:56: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 15C4616A4CF; Tue, 13 Apr 2004 10:56:45 -0700 (PDT) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id B260A43D54; Tue, 13 Apr 2004 10:56:44 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (acs-24-154-235-189.zoominternet.net [24.154.235.189]) (authenticated bits=0) by pittgoth.com (8.12.11/8.12.11) with ESMTP id i3DHue2O052462 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Tue, 13 Apr 2004 13:56:41 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Tue, 13 Apr 2004 13:57:04 -0400 From: Tom Rhodes To: Wilko Bulte Message-Id: <20040413135704.44284206@localhost> In-Reply-To: <20040413174531.GA7612@freebie.xs4all.nl> References: <200404131727.i3DHRij8052388@repoman.freebsd.org> <20040413174531.GA7612@freebie.xs4all.nl> X-Mailer: Sylpheed version 0.9.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: Tom Rhodes cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/security Makefile charter.sgml 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: Tue, 13 Apr 2004 17:56:45 -0000 On Tue, 13 Apr 2004 19:45:31 +0200 Wilko Bulte wrote: > On Tue, Apr 13, 2004 at 10:27:44AM -0700, Tom Rhodes wrote: > > trhodes 2004/04/13 10:27:44 PDT > > > > FreeBSD doc repository > > > > Modified files: > > en/security Makefile security.sgml > > Added files: > > en/security charter.sgml > > Log: > > Add the Security Officer charter to the site and link it from the main page. > > That was about time, thanks! No problem. :) -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Tue Apr 13 11: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 D03B716A4CE; Tue, 13 Apr 2004 11:09:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2C4543D5A; Tue, 13 Apr 2004 11:09:53 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DI9rGe061721; Tue, 13 Apr 2004 11:09:53 -0700 (PDT) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DI9rUb061720; Tue, 13 Apr 2004 11:09:53 -0700 (PDT) (envelope-from trhodes) Message-Id: <200404131809.i3DI9rUb061720@repoman.freebsd.org> From: Tom Rhodes Date: Tue, 13 Apr 2004 11:09:53 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/security charter.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, 13 Apr 2004 18:09:54 -0000 trhodes 2004/04/13 11:09:53 PDT FreeBSD doc repository Modified files: en/security charter.sgml Log: Fix two typos from the original version that I neglected to catch during the initial mark up. Noticed by: nectar (Who is now adorned with a pointy hat. Bad nectar, no cookie for you.) Revision Changes Path 1.2 +4 -4 www/en/security/charter.sgml From owner-cvs-all@FreeBSD.ORG Tue Apr 13 11:14: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 B455016A4CE; Tue, 13 Apr 2004 11:14:57 -0700 (PDT) Received: from smtp-out4.xs4all.nl (smtp-out4.xs4all.nl [194.109.24.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3068A43D60; Tue, 13 Apr 2004 11:14:57 -0700 (PDT) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by smtp-out4.xs4all.nl (8.12.10/8.12.10) with ESMTP id i3DIEtCY080443; Tue, 13 Apr 2004 20:14:55 +0200 (CEST) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.11/8.12.9) with ESMTP id i3DIErZP008010; Tue, 13 Apr 2004 20:14:53 +0200 (CEST) (envelope-from wkb@freebie.xs4all.nl) Received: (from wkb@localhost) by freebie.xs4all.nl (8.12.11/8.12.11/Submit) id i3DIErfe008009; Tue, 13 Apr 2004 20:14:53 +0200 (CEST) (envelope-from wkb) Date: Tue, 13 Apr 2004 20:14:53 +0200 From: Wilko Bulte To: Tom Rhodes Message-ID: <20040413181453.GA7986@freebie.xs4all.nl> References: <200404131809.i3DI9rUb061720@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404131809.i3DI9rUb061720@repoman.freebsd.org> User-Agent: Mutt/1.4.1i X-OS: FreeBSD 4.9-STABLE X-PGP: finger wilko@freebsd.org cc: doc-committers@FreeBSD.ORG cc: cvs-doc@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: www/en/security charter.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, 13 Apr 2004 18:14:57 -0000 On Tue, Apr 13, 2004 at 11:09:53AM -0700, Tom Rhodes wrote: > trhodes 2004/04/13 11:09:53 PDT > > FreeBSD doc repository > > Modified files: > en/security charter.sgml > Log: > Fix two typos from the original version that I neglected to catch during > the initial mark up. > > Noticed by: nectar (Who is now adorned with a pointy hat. Bad nectar, > no cookie for you.) cookies are a security/privacy risk anyway, so SO's should not eat them. -- Wilko Bulte wilko@FreeBSD.org From owner-cvs-all@FreeBSD.ORG Tue Apr 13 11:26: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 33ECD16A4CE; Tue, 13 Apr 2004 11:26:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1790143D41; Tue, 13 Apr 2004 11:26:52 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DIQpGe065715; Tue, 13 Apr 2004 11:26:51 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DIQpKh065714; Tue, 13 Apr 2004 11:26:51 -0700 (PDT) (envelope-from arved) Message-Id: <200404131826.i3DIQpKh065714@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 13 Apr 2004 11:26:51 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/ossp-sa Makefile ports/net/ossp-sa/files patch-ts.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 18:26:52 -0000 arved 2004/04/13 11:26:51 PDT FreeBSD ports repository Modified files: net/ossp-sa Makefile Added files: net/ossp-sa/files patch-ts.c Log: Fix build on amd64 by using va_copy Revision Changes Path 1.13 +1 -7 ports/net/ossp-sa/Makefile 1.1 +14 -0 ports/net/ossp-sa/files/patch-ts.c (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 11:33: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 D596A16A4CE; Tue, 13 Apr 2004 11:33:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB0EF43D53; Tue, 13 Apr 2004 11:33:10 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DIXAGe067648; Tue, 13 Apr 2004 11:33:10 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DIXAMJ067647; Tue, 13 Apr 2004 11:33:10 -0700 (PDT) (envelope-from linimon) Message-Id: <200404131833.i3DIXAMJ067647@repoman.freebsd.org> From: Mark Linimon Date: Tue, 13 Apr 2004 11:33:10 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/biblereader 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, 13 Apr 2004 18:33:11 -0000 linimon 2004/04/13 11:33:10 PDT FreeBSD ports repository Modified files: misc/biblereader Makefile Log: Per distfile survey, reset mastersite that disappeared in January 2003. Note that this port is marked "broken/unfetchable" already, although the distfile still exist on our own ftp server. Are there any volunteers who wish to look after this port? Revision Changes Path 1.17 +1 -1 ports/misc/biblereader/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 11: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 8506C16A4CE; Tue, 13 Apr 2004 11:41:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A21843D1D; Tue, 13 Apr 2004 11:41:58 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DIfwGe069814; Tue, 13 Apr 2004 11:41:58 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DIfwjH069810; Tue, 13 Apr 2004 11:41:58 -0700 (PDT) (envelope-from linimon) Message-Id: <200404131841.i3DIfwjH069810@repoman.freebsd.org> From: Mark Linimon Date: Tue, 13 Apr 2004 11:41:58 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/colortail 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, 13 Apr 2004 18:41:58 -0000 linimon 2004/04/13 11:41:58 PDT FreeBSD ports repository Modified files: misc/colortail Makefile Log: Per distfile survey, remove mastersite that disappeared in January 2004. The only known other location (other than our FTP server) is hosted by the corresponding OpenBSD maintainer. Revision Changes Path 1.21 +1 -1 ports/misc/colortail/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 11: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 B459816A4CE; Tue, 13 Apr 2004 11:47:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADFC243D54; Tue, 13 Apr 2004 11:47:54 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DIlsGe070453; Tue, 13 Apr 2004 11:47:54 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DIlsXq070452; Tue, 13 Apr 2004 11:47:54 -0700 (PDT) (envelope-from marcus) Message-Id: <200404131847.i3DIlsXq070452@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 13 Apr 2004 11:47:54 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/anjuta Makefile distinfo pkg-plist ports/devel/anjuta/files patch-configure patch-ltmain.sh patch-src::source.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 18:47:54 -0000 marcus 2004/04/13 11:47:54 PDT FreeBSD ports repository Modified files: devel/anjuta Makefile distinfo pkg-plist devel/anjuta/files patch-configure patch-ltmain.sh patch-src::attach_process.c patch-src::source.c Removed files: devel/anjuta/files patch-src::anjuta.c Log: Update to 1.2.2. For a list of what's changed, see: http://lists.gnome.org/archives/gnome-announce-list/2004-April/msg00021.html Revision Changes Path 1.24 +6 -2 ports/devel/anjuta/Makefile 1.12 +2 -2 ports/devel/anjuta/distinfo 1.9 +4 -4 ports/devel/anjuta/files/patch-configure 1.4 +15 -15 ports/devel/anjuta/files/patch-ltmain.sh 1.4 +0 -11 ports/devel/anjuta/files/patch-src::anjuta.c (dead) 1.2 +0 -17 ports/devel/anjuta/files/patch-src::attach_process.c 1.2 +3 -12 ports/devel/anjuta/files/patch-src::source.c 1.11 +15 -0 ports/devel/anjuta/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 11:49: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 543D116A4CE; Tue, 13 Apr 2004 11:49:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 374A843D5F; Tue, 13 Apr 2004 11:49:40 -0700 (PDT) (envelope-from gj@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DIndGe070545; Tue, 13 Apr 2004 11:49:39 -0700 (PDT) (envelope-from gj@repoman.freebsd.org) Received: (from gj@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DIndYW070544; Tue, 13 Apr 2004 11:49:39 -0700 (PDT) (envelope-from gj) Message-Id: <200404131849.i3DIndYW070544@repoman.freebsd.org> From: Gary Jennejohn Date: Tue, 13 Apr 2004 11:49:39 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/editors/vile Makefile distinfo ports/editors/xvile 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, 13 Apr 2004 18:49:40 -0000 gj 2004/04/13 11:49:39 PDT FreeBSD ports repository Modified files: editors/vile Makefile distinfo editors/xvile Makefile distinfo Log: Update to version 9.4f. Revision Changes Path 1.62 +4 -2 ports/editors/vile/Makefile 1.42 +4 -0 ports/editors/vile/distinfo 1.63 +4 -2 ports/editors/xvile/Makefile 1.43 +4 -0 ports/editors/xvile/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 13 11:55: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 42FF316A4CE; Tue, 13 Apr 2004 11:55:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2684D43D3F; Tue, 13 Apr 2004 11:55:42 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DItfGe072500; Tue, 13 Apr 2004 11:55:41 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DItfAe072498; Tue, 13 Apr 2004 11:55:41 -0700 (PDT) (envelope-from linimon) Message-Id: <200404131855.i3DItfAe072498@repoman.freebsd.org> From: Mark Linimon Date: Tue, 13 Apr 2004 11:55:41 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/cuecat 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, 13 Apr 2004 18:55:42 -0000 linimon 2004/04/13 11:55:41 PDT FreeBSD ports repository Modified files: misc/cuecat Makefile Log: Per distfile survey, chase reorganized mastersite. Informed maintainer. Revision Changes Path 1.6 +1 -1 ports/misc/cuecat/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 11: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 8985416A4CE; Tue, 13 Apr 2004 11:57:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6DADD43D41; Tue, 13 Apr 2004 11:57:59 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DIvxGe072618; Tue, 13 Apr 2004 11:57:59 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DIvxOw072617; Tue, 13 Apr 2004 11:57:59 -0700 (PDT) (envelope-from arved) Message-Id: <200404131857.i3DIvxOw072617@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 13 Apr 2004 11:57:59 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/ossp-sa/files patch-sa.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, 13 Apr 2004 18:57:59 -0000 arved 2004/04/13 11:57:59 PDT FreeBSD ports repository Added files: net/ossp-sa/files patch-sa.h Log: Never ever redefine socklen_t. This should fix building lmtp2nntp with external libsa (upcoming) Revision Changes Path 1.1 +13 -0 ports/net/ossp-sa/files/patch-sa.h (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 12: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 6AF1116A4CE; Tue, 13 Apr 2004 12:03:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EC6A43D2F; Tue, 13 Apr 2004 12:03:00 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJ30Ge074552; Tue, 13 Apr 2004 12:03:00 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJ3088074551; Tue, 13 Apr 2004 12:03:00 -0700 (PDT) (envelope-from linimon) Message-Id: <200404131903.i3DJ3088074551@repoman.freebsd.org> From: Mark Linimon Date: Tue, 13 Apr 2004 12:03:00 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/cwish 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, 13 Apr 2004 19:03:00 -0000 linimon 2004/04/13 12:03:00 PDT FreeBSD ports repository Modified files: misc/cwish Makefile Log: Per distfile survey, remove mastersite that disappeared in November 2003. A web search reveals no newer site. Revision Changes Path 1.15 +1 -1 ports/misc/cwish/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 12:03: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 05A4D16A4CF; Tue, 13 Apr 2004 12:03:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 00A6643D31; Tue, 13 Apr 2004 12:03:07 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJ36Ge075553; Tue, 13 Apr 2004 12:03:06 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJ36f4075552; Tue, 13 Apr 2004 12:03:06 -0700 (PDT) (envelope-from marcus) Message-Id: <200404131903.i3DJ36f4075552@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 13 Apr 2004 12:03:06 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/epiphany-extensions Makefile distinfo patch-extensions_dashboard_dashboard-frontend-xmlwriter.c patch-extensions_error-viewer_link-checker.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 19:03:07 -0000 marcus 2004/04/13 12:03:06 PDT FreeBSD ports repository Modified files: www/epiphany-extensions Makefile distinfo pkg-plist Removed files: www/epiphany-extensions/files patch-extensions_dashboard_dashboard-frontend-xmlwriter.c patch-extensions_error-viewer_link-checker.c Log: Update to 0.8.2. Revision Changes Path 1.2 +1 -1 ports/www/epiphany-extensions/Makefile 1.2 +2 -2 ports/www/epiphany-extensions/distinfo 1.2 +0 -10 ports/www/epiphany-extensions/files/patch-extensions_dashboard_dashboard-frontend-xmlwriter.c (dead) 1.2 +0 -15 ports/www/epiphany-extensions/files/patch-extensions_error-viewer_link-checker.c (dead) 1.2 +4 -0 ports/www/epiphany-extensions/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 12:05: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 3D4E316A504; Tue, 13 Apr 2004 12:05:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50D5E43D5C; Tue, 13 Apr 2004 12:05:14 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJ5EGe075674; Tue, 13 Apr 2004 12:05:14 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJ5Din075673; Tue, 13 Apr 2004 12:05:13 -0700 (PDT) (envelope-from linimon) Message-Id: <200404131905.i3DJ5Din075673@repoman.freebsd.org> From: Mark Linimon Date: Tue, 13 Apr 2004 12:05:13 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/datedif 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, 13 Apr 2004 19:05:29 -0000 linimon 2004/04/13 12:05:13 PDT FreeBSD ports repository Modified files: misc/datedif Makefile Log: Per distfile survey, reset mastersite that disappeared in January 2004. Although there is a page for the project on Freshmeat, it merely points back to the dead mastersite. Revision Changes Path 1.7 +1 -1 ports/misc/datedif/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 12: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 1E6CE16A4CE; Tue, 13 Apr 2004 12:06:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 021FF43D58; Tue, 13 Apr 2004 12:06:17 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJ6GGe075798; Tue, 13 Apr 2004 12:06:16 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJ6G83075797; Tue, 13 Apr 2004 12:06:16 -0700 (PDT) (envelope-from arved) Message-Id: <200404131906.i3DJ6G83075797@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 13 Apr 2004 12:06:16 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/lmtp2nntp Makefileports/mail/lmtp2nntp/files patch-configure patch-l2_ut_format.c patch-ts.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 19:06:17 -0000 arved 2004/04/13 12:06:16 PDT FreeBSD ports repository Modified files: mail/lmtp2nntp Makefile Added files: mail/lmtp2nntp/files patch-configure patch-l2_ut_format.c patch-ts.c Log: Fix build on amd64 by using va_copy. Use external libraries, where possible. Bump PORTREVISION. Revision Changes Path 1.7 +10 -2 ports/mail/lmtp2nntp/Makefile 1.1 +15 -0 ports/mail/lmtp2nntp/files/patch-configure (new) 1.1 +15 -0 ports/mail/lmtp2nntp/files/patch-l2_ut_format.c (new) 1.1 +14 -0 ports/mail/lmtp2nntp/files/patch-ts.c (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 12:08: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 434D616A4CE; Tue, 13 Apr 2004 12:08:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2918343D48; Tue, 13 Apr 2004 12:08:42 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJ8gGe075857; Tue, 13 Apr 2004 12:08:42 -0700 (PDT) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJ8fkA075856; Tue, 13 Apr 2004 12:08:41 -0700 (PDT) (envelope-from dinoex) Message-Id: <200404131908.i3DJ8fkA075856@repoman.freebsd.org> From: Dirk Meyer Date: Tue, 13 Apr 2004 12:08:41 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/gnustep-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: Tue, 13 Apr 2004 19:08:42 -0000 dinoex 2004/04/13 12:08:41 PDT FreeBSD ports repository Modified files: devel/gnustep-make Makefile Log: - Fix regression when using gcc-objc-3.2 Revision Changes Path 1.51 +4 -2 ports/devel/gnustep-make/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 12:09: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 4BA7516A4CE; Tue, 13 Apr 2004 12:09:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3029743D54; Tue, 13 Apr 2004 12:09:16 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJ9GGe075899; Tue, 13 Apr 2004 12:09:16 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJ9F6A075898; Tue, 13 Apr 2004 12:09:15 -0700 (PDT) (envelope-from linimon) Message-Id: <200404131909.i3DJ9F6A075898@repoman.freebsd.org> From: Mark Linimon Date: Tue, 13 Apr 2004 12:09:15 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/gkrellmbgchg 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, 13 Apr 2004 19:09:16 -0000 linimon 2004/04/13 12:09:15 PDT FreeBSD ports repository Modified files: misc/gkrellmbgchg Makefile pkg-descr Log: Per distfile survey, chase mastersite. Revision Changes Path 1.10 +1 -1 ports/misc/gkrellmbgchg/Makefile 1.3 +1 -1 ports/misc/gkrellmbgchg/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Apr 13 12:12: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 739F416A4CE; Tue, 13 Apr 2004 12:12:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5774443D1D; Tue, 13 Apr 2004 12:12:28 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJCSGe077737; Tue, 13 Apr 2004 12:12:28 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJCSCR077736; Tue, 13 Apr 2004 12:12:28 -0700 (PDT) (envelope-from linimon) Message-Id: <200404131912.i3DJCSCR077736@repoman.freebsd.org> From: Mark Linimon Date: Tue, 13 Apr 2004 12:12:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/gkrellmfmonitor 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, 13 Apr 2004 19:12:28 -0000 linimon 2004/04/13 12:12:28 PDT FreeBSD ports repository Modified files: misc/gkrellmfmonitor Makefile Log: Per distfile survey, remove mastersite that disappeared in April 2003. No replacement seems to be available. Revision Changes Path 1.8 +1 -3 ports/misc/gkrellmfmonitor/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 12: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 1F50016A4CE; Tue, 13 Apr 2004 12:23:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03FF343D1D; Tue, 13 Apr 2004 12:23:47 -0700 (PDT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJNkGe079774; Tue, 13 Apr 2004 12:23:46 -0700 (PDT) (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJNkS4079773; Tue, 13 Apr 2004 12:23:46 -0700 (PDT) (envelope-from fjoe) Message-Id: <200404131923.i3DJNkS4079773@repoman.freebsd.org> From: Max Khon Date: Tue, 13 Apr 2004 12:23:46 -0700 (PDT) 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: Tue, 13 Apr 2004 19:23:47 -0000 fjoe 2004/04/13 12:23:46 PDT FreeBSD src repository Modified files: sys/net if_media.h Log: Add Direct Sequence 354K and 512K (needed for arl(4)). Revision Changes Path 1.27 +8 -0 src/sys/net/if_media.h From owner-cvs-all@FreeBSD.ORG Tue Apr 13 12:25: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 1F2DA16A4CE; Tue, 13 Apr 2004 12:25:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1ABD843D55; Tue, 13 Apr 2004 12:25:27 -0700 (PDT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJPQGe079930; Tue, 13 Apr 2004 12:25:26 -0700 (PDT) (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJPQ3t079929; Tue, 13 Apr 2004 12:25:26 -0700 (PDT) (envelope-from fjoe) Message-Id: <200404131925.i3DJPQ3t079929@repoman.freebsd.org> From: Max Khon Date: Tue, 13 Apr 2004 12:25:26 -0700 (PDT) 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/man4.i386 arl.4 src/sys/dev/arl if_arl.c if_arl_isa.c if_arlreg.h src/usr.sbin/arlconfig arlconfig.8 arlconfig.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 19:25:27 -0000 fjoe 2004/04/13 12:25:26 PDT FreeBSD src repository Modified files: share/man/man4/man4.i386 arl.4 sys/dev/arl if_arl.c if_arl_isa.c if_arlreg.h usr.sbin/arlconfig arlconfig.8 arlconfig.c Log: Use ifconfig(8) for setting common 802.11 parameters. Submitted by: Stanislav A. Svirid Revision Changes Path 1.4 +20 -0 src/share/man/man4/man4.i386/arl.4 1.3 +237 -31 src/sys/dev/arl/if_arl.c 1.3 +6 -31 src/sys/dev/arl/if_arl_isa.c 1.3 +2 -1 src/sys/dev/arl/if_arlreg.h 1.7 +6 -96 src/usr.sbin/arlconfig/arlconfig.8 1.3 +2 -97 src/usr.sbin/arlconfig/arlconfig.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 12: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 9179716A4CE; Tue, 13 Apr 2004 12:31:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 764CF43D39; Tue, 13 Apr 2004 12:31:21 -0700 (PDT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJVLGe080964; Tue, 13 Apr 2004 12:31:21 -0700 (PDT) (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJVLFt080963; Tue, 13 Apr 2004 12:31:21 -0700 (PDT) (envelope-from fjoe) Message-Id: <200404131931.i3DJVLFt080963@repoman.freebsd.org> From: Max Khon Date: Tue, 13 Apr 2004 12:31:21 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/arlconfig arlconfig.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, 13 Apr 2004 19:31:21 -0000 fjoe 2004/04/13 12:31:21 PDT FreeBSD src repository Modified files: usr.sbin/arlconfig arlconfig.8 Log: Fix examples. Revision Changes Path 1.8 +2 -2 src/usr.sbin/arlconfig/arlconfig.8 From owner-cvs-all@FreeBSD.ORG Tue Apr 13 12:31: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 098FA16A4CE; Tue, 13 Apr 2004 12:31:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0575343D1F; Tue, 13 Apr 2004 12:31:58 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJVvGe081520; Tue, 13 Apr 2004 12:31:57 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJVvf4081519; Tue, 13 Apr 2004 12:31:57 -0700 (PDT) (envelope-from imp) Message-Id: <200404131931.i3DJVvf4081519@repoman.freebsd.org> From: Warner Losh Date: Tue, 13 Apr 2004 12:31:57 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pci 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: Tue, 13 Apr 2004 19:31:58 -0000 imp 2004/04/13 12:31:57 PDT FreeBSD src repository Modified files: sys/dev/pci pci.c Log: Some devices have what appear to be invalid BARs. They are invalid in the sense that any write to them reads back as a 0. This presents a problem to our resource allocation scheme. If we encounter such vars, the code now treats them as special, allowing any allocation against them to succeed. I've not seen anything in the standard to clearify what host software should do when it encounters these sorts of BARs. Also cleaned up some output while I'm here and add commmented out bootverbose lines until I'm ready to reduce the verbosity of boot messages. This gets a number of south bridges and ata controllers made mostly by VIA, AMD and nVidia working again. Thanks to Soren Schmidt for his help in coming up with this patch. Revision Changes Path 1.241 +51 -26 src/sys/dev/pci/pci.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 12:34: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 559D616A4CE; Tue, 13 Apr 2004 12:34:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A2BE43D49; Tue, 13 Apr 2004 12:34:21 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJYLGe082038; Tue, 13 Apr 2004 12:34:21 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJYLpg082037; Tue, 13 Apr 2004 12:34:21 -0700 (PDT) (envelope-from imp) Message-Id: <200404131934.i3DJYLpg082037@repoman.freebsd.org> From: Warner Losh Date: Tue, 13 Apr 2004 12:34:20 -0700 (PDT) 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_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: Tue, 13 Apr 2004 19:34:21 -0000 imp 2004/04/13 12:34:20 PDT FreeBSD src repository Modified files: sys/pci if_xl.c Log: Boomerang 10/100BT (found in 2c905-TX) chips apparently suffer the same problems as their Hurricane 575* bretheren in that one could set the memory mapped port, but that has no effect. Add a quirk for this. # I'll have to see if I can dig up documentation on these parts to see # if there's someway software can know this other than a table... Revision Changes Path 1.169 +1 -0 src/sys/pci/if_xl.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 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 3787C16A4CE; Tue, 13 Apr 2004 12:45:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C8A043D49; Tue, 13 Apr 2004 12:45:56 -0700 (PDT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJjtGe084235; Tue, 13 Apr 2004 12:45:55 -0700 (PDT) (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJjtBt084234; Tue, 13 Apr 2004 12:45:55 -0700 (PDT) (envelope-from kientzle) Message-Id: <200404131945.i3DJjtBt084234@repoman.freebsd.org> From: Tim Kientzle Date: Tue, 13 Apr 2004 12:45:55 -0700 (PDT) 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.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: Tue, 13 Apr 2004 19:45:56 -0000 kientzle 2004/04/13 12:45:55 PDT FreeBSD src repository Modified files: usr.bin/tar bsdtar.1 bsdtar.c Log: Manpage changes suggested by Irina Liakh. Also, add -h as a synonym for -H, for Linux Standards Base compliance. Revision Changes Path 1.4 +44 -19 src/usr.bin/tar/bsdtar.1 1.5 +6 -2 src/usr.bin/tar/bsdtar.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 12:50: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 F267216A4CE; Tue, 13 Apr 2004 12:50:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6F5B43D2F; Tue, 13 Apr 2004 12:50:51 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJopGe090404; Tue, 13 Apr 2004 12:50:51 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJopsW090403; Tue, 13 Apr 2004 12:50:51 -0700 (PDT) (envelope-from linimon) Message-Id: <200404131950.i3DJopsW090403@repoman.freebsd.org> From: Mark Linimon Date: Tue, 13 Apr 2004 12:50:51 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/libelysium 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, 13 Apr 2004 19:50:52 -0000 linimon 2004/04/13 12:50:51 PDT FreeBSD ports repository Modified files: misc/libelysium Makefile Log: Per distfile survey, this version of this port has been unfetchable for nearly 2 years, although the mastersite is still active. The port itself was last touched back in 2002, to add the note that the distfile was out-of-date. No other FreeBSD port uses this functionality. Unless someone is really using this software, let's just mark it as deprecated. Revision Changes Path 1.13 +3 -0 ports/misc/libelysium/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 12:55: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 DFEF916A4CE; Tue, 13 Apr 2004 12:55:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C49B443D4C; Tue, 13 Apr 2004 12:55:30 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJtUGe092203; Tue, 13 Apr 2004 12:55:30 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJtUO3092202; Tue, 13 Apr 2004 12:55:30 -0700 (PDT) (envelope-from linimon) Message-Id: <200404131955.i3DJtUO3092202@repoman.freebsd.org> From: Mark Linimon Date: Tue, 13 Apr 2004 12:55:30 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/pdfmap 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, 13 Apr 2004 19:55:31 -0000 linimon 2004/04/13 12:55:30 PDT FreeBSD ports repository Modified files: misc/pdfmap pkg-descr Log: Pacify distfile survey. Revision Changes Path 1.3 +1 -1 ports/misc/pdfmap/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Apr 13 12:56: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 63C1516A4CE; Tue, 13 Apr 2004 12:56:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 479E343D46; Tue, 13 Apr 2004 12:56:14 -0700 (PDT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJuEGe092288; Tue, 13 Apr 2004 12:56:14 -0700 (PDT) (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJuE0U092287; Tue, 13 Apr 2004 12:56:14 -0700 (PDT) (envelope-from fjoe) Message-Id: <200404131956.i3DJuE0U092287@repoman.freebsd.org> From: Max Khon Date: Tue, 13 Apr 2004 12:56:14 -0700 (PDT) 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, 13 Apr 2004 19:56:14 -0000 fjoe 2004/04/13 12:56:14 PDT FreeBSD doc repository (src,ports committer) Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml Log: Add Ivan Sharov, Stanislav A. Svirid and Yuri Kurenkov for arl(4) driver. Revision Changes Path 1.175 +15 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml From owner-cvs-all@FreeBSD.ORG Tue Apr 13 12:59: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 8FBC216A4CE; Tue, 13 Apr 2004 12:59:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 73B4343D75; Tue, 13 Apr 2004 12:59:57 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DJxvGe092418; Tue, 13 Apr 2004 12:59:57 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DJxvBi092417; Tue, 13 Apr 2004 12:59:57 -0700 (PDT) (envelope-from linimon) Message-Id: <200404131959.i3DJxvBi092417@repoman.freebsd.org> From: Mark Linimon Date: Tue, 13 Apr 2004 12:59:57 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/pg 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, 13 Apr 2004 19:59:57 -0000 linimon 2004/04/13 12:59:57 PDT FreeBSD ports repository Modified files: misc/pg Makefile Log: Per distfile survey, remove mastersite that disappeared in January 2002. Revision Changes Path 1.6 +1 -1 ports/misc/pg/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 13:08: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 7C21716A4CE; Tue, 13 Apr 2004 13:08:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F40143D5C; Tue, 13 Apr 2004 13:08:26 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DK8QGe095373; Tue, 13 Apr 2004 13:08:26 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DK8QiL095372; Tue, 13 Apr 2004 13:08:26 -0700 (PDT) (envelope-from linimon) Message-Id: <200404132008.i3DK8QiL095372@repoman.freebsd.org> From: Mark Linimon Date: Tue, 13 Apr 2004 13:08:26 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/pypanda 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, 13 Apr 2004 20:08:26 -0000 linimon 2004/04/13 13:08:26 PDT FreeBSD ports repository Modified files: misc/pypanda Makefile pkg-descr Log: Per distfile survey, remove mastersite that disappeared in June 2002. Since the San Diego Zoo now has a web page that streams the same video that this app was written to do, there may not be much point in keeping it around in the ports collection except as an example ... Revision Changes Path 1.6 +1 -1 ports/misc/pypanda/Makefile 1.2 +0 -2 ports/misc/pypanda/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Apr 13 13:20: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 46F8516A4CE; Tue, 13 Apr 2004 13:20:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A48443D41; Tue, 13 Apr 2004 13:20:54 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DKKsGe097514; Tue, 13 Apr 2004 13:20:54 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DKKrsx097513; Tue, 13 Apr 2004 13:20:53 -0700 (PDT) (envelope-from thierry) Message-Id: <200404132020.i3DKKrsx097513@repoman.freebsd.org> From: Thierry Thomas Date: Tue, 13 Apr 2004 13:20:53 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/pear-HTML_Common 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, 13 Apr 2004 20:20:54 -0000 thierry 2004/04/13 13:20:53 PDT FreeBSD ports repository Modified files: devel/pear-HTML_Common Makefile pkg-descr Removed files: devel/pear-HTML_Common pkg-plist Log: Let Makefile.common do the work. PR: ports/65495 Submitted by: Roman Neuhauser Approved by: mat (mentor) Revision Changes Path 1.9 +3 -6 ports/devel/pear-HTML_Common/Makefile 1.3 +3 -3 ports/devel/pear-HTML_Common/pkg-descr 1.3 +0 -4 ports/devel/pear-HTML_Common/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 13: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 82AB916A4CE; Tue, 13 Apr 2004 13:22:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 67AF243D1F; Tue, 13 Apr 2004 13:22:10 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DKMAGe099096; Tue, 13 Apr 2004 13:22:10 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DKMAGO099092; Tue, 13 Apr 2004 13:22:10 -0700 (PDT) (envelope-from thierry) Message-Id: <200404132022.i3DKMAGO099092@repoman.freebsd.org> From: Thierry Thomas Date: Tue, 13 Apr 2004 13:22:10 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/pear-I18N 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, 13 Apr 2004 20:22:10 -0000 thierry 2004/04/13 13:22:10 PDT FreeBSD ports repository Modified files: devel/pear-I18N Makefile pkg-descr Removed files: devel/pear-I18N pkg-plist Log: Let Makefile.common do the work. PR: ports/65496 Submitted by: Roman Neuhauser Approved by: mat (mentor) Revision Changes Path 1.8 +16 -23 ports/devel/pear-I18N/Makefile 1.3 +1 -1 ports/devel/pear-I18N/pkg-descr 1.4 +0 -48 ports/devel/pear-I18N/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 13: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 18C9516A4DB; Tue, 13 Apr 2004 13:23:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F250043D1D; Tue, 13 Apr 2004 13:23:06 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DKN6Ge099328; Tue, 13 Apr 2004 13:23:06 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DKN6FV099327; Tue, 13 Apr 2004 13:23:06 -0700 (PDT) (envelope-from arved) Message-Id: <200404132023.i3DKN6FV099327@repoman.freebsd.org> From: Tilman Linneweh Date: Tue, 13 Apr 2004 13:23:06 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@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, 13 Apr 2004 20:23:07 -0000 arved 2004/04/13 13:23:06 PDT FreeBSD ports repository Modified files: . access Log: [Forced commit] Tell everyone that markus does not need my approval for his commits anymore. Revision Changes Path 1.593 +0 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Tue Apr 13 13:23: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 EB33816A4F8; Tue, 13 Apr 2004 13:23:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF2D543D46; Tue, 13 Apr 2004 13:23:20 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DKNKGe099359; Tue, 13 Apr 2004 13:23:20 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DKNKJE099358; Tue, 13 Apr 2004 13:23:20 -0700 (PDT) (envelope-from thierry) Message-Id: <200404132023.i3DKNKJE099358@repoman.freebsd.org> From: Thierry Thomas Date: Tue, 13 Apr 2004 13:23:20 -0700 (PDT) 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_Session 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, 13 Apr 2004 20:23:21 -0000 thierry 2004/04/13 13:23:20 PDT FreeBSD ports repository Modified files: www/pear-HTTP_Session Makefile pkg-descr Removed files: www/pear-HTTP_Session pkg-plist Log: Let Makefile.common do the work. PR: ports/65499 Submitted by: Roman Neuhauser Approved by: mat (mentor) Revision Changes Path 1.3 +4 -16 ports/www/pear-HTTP_Session/Makefile 1.2 +1 -1 ports/www/pear-HTTP_Session/pkg-descr 1.2 +0 -11 ports/www/pear-HTTP_Session/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 13:24: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 953D316A4D0; Tue, 13 Apr 2004 13:24:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 799DC43D1F; Tue, 13 Apr 2004 13:24:36 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DKOaGe099428; Tue, 13 Apr 2004 13:24:36 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DKOaHo099427; Tue, 13 Apr 2004 13:24:36 -0700 (PDT) (envelope-from thierry) Message-Id: <200404132024.i3DKOaHo099427@repoman.freebsd.org> From: Thierry Thomas Date: Tue, 13 Apr 2004 13:24:36 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/pear-Net_SMTP 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, 13 Apr 2004 20:24:36 -0000 thierry 2004/04/13 13:24:36 PDT FreeBSD ports repository Modified files: net/pear-Net_SMTP Makefile distinfo Log: Upgrade to pear-Net_SMTP-1.2.6. Approved by: mat (implicit) Revision Changes Path 1.7 +1 -1 ports/net/pear-Net_SMTP/Makefile 1.5 +2 -2 ports/net/pear-Net_SMTP/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 13 13:29: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 4E89816A4CE; Tue, 13 Apr 2004 13:29:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 310B243D55; Tue, 13 Apr 2004 13:29:55 -0700 (PDT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DKTsGe099644; Tue, 13 Apr 2004 13:29:54 -0700 (PDT) (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DKTsbN099643; Tue, 13 Apr 2004 13:29:54 -0700 (PDT) (envelope-from lofi) Message-Id: <200404132029.i3DKTsbN099643@repoman.freebsd.org> From: Michael Nottebrock Date: Tue, 13 Apr 2004 13:29:54 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/dcraw 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, 13 Apr 2004 20:29:55 -0000 lofi 2004/04/13 13:29:54 PDT FreeBSD ports repository Modified files: graphics/dcraw Makefile distinfo Log: This patch updates the graphics/dcraw port to the dcraw version with CVS revision 1.181. This version fixes some problems with newer cameras, like the Nikon D70. Reported by: Wayne Pascoe (wayne@penguinpowered.org) PR: ports/65503 Submitted by: Arjan van Leeuwen Revision Changes Path 1.2 +5 -1 ports/graphics/dcraw/Makefile 1.2 +2 -2 ports/graphics/dcraw/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 13 13:33: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 D8B1716A4CE; Tue, 13 Apr 2004 13:33:39 -0700 (PDT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77F3943D54; Tue, 13 Apr 2004 13:33:39 -0700 (PDT) (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 DEF0D5482B; Tue, 13 Apr 2004 15:33:38 -0500 (CDT) Received: by madman.celabo.org (Postfix, from userid 1001) id 76BBE6D455; Tue, 13 Apr 2004 15:33:38 -0500 (CDT) Date: Tue, 13 Apr 2004 15:33:38 -0500 From: "Jacques A. Vidrine" To: Tom Rhodes Message-ID: <20040413203338.GA87331@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Tom Rhodes , doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org References: <200404131809.i3DI9rUb061720@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404131809.i3DI9rUb061720@repoman.freebsd.org> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en/security charter.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, 13 Apr 2004 20:33:40 -0000 On Tue, Apr 13, 2004 at 11:09:53AM -0700, Tom Rhodes wrote: > trhodes 2004/04/13 11:09:53 PDT > > FreeBSD doc repository > > Modified files: > en/security charter.sgml > Log: > Fix two typos from the original version that I neglected to catch during > the initial mark up. > > Noticed by: nectar (Who is now adorned with a pointy hat. Bad nectar, > no cookie for you.) Not that I don't love to wear the hat, but I really do want the cookie. (a) The first typo (``nappointed'') is not present in the original document. Maybe an editor chomped on it somewhere between the SO repository and the HTMLification. (b) ``forego'' is not a typo, just a variant spelling of ``forgo''. The OED puts them on equal footing: the main entry is `forgo, forego' and the modern citations include roughly the same number of each spelling. Several style and usage guides agree, others fail to mention it. Thanks for putting this online, Tom! (The charter was approved around Feb 2002 :-) Cheers, -- Jacques Vidrine / nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org From owner-cvs-all@FreeBSD.ORG Tue Apr 13 13:38: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 4908516A4CE; Tue, 13 Apr 2004 13:38:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C36D43D55; Tue, 13 Apr 2004 13:38:40 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DKceGe001802; Tue, 13 Apr 2004 13:38:40 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DKcdVA001801; Tue, 13 Apr 2004 13:38:39 -0700 (PDT) (envelope-from nectar) Message-Id: <200404132038.i3DKcdVA001801@repoman.freebsd.org> From: Jacques Vidrine Date: Tue, 13 Apr 2004 13:38:39 -0700 (PDT) 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, 13 Apr 2004 20:38:40 -0000 nectar 2004/04/13 13:38:39 PDT FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Add CVE name for racoon DoS vulnerability. Revision Changes Path 1.72 +2 -0 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Tue Apr 13 13:39: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 D6D9C16A4CE; Tue, 13 Apr 2004 13:39:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BACBB43D41; Tue, 13 Apr 2004 13:39:27 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DKdRGe001864; Tue, 13 Apr 2004 13:39:27 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DKdRtF001863; Tue, 13 Apr 2004 13:39:27 -0700 (PDT) (envelope-from nectar) Message-Id: <200404132039.i3DKdRtF001863@repoman.freebsd.org> From: Jacques Vidrine Date: Tue, 13 Apr 2004 13:39:27 -0700 (PDT) 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, 13 Apr 2004 20:39:28 -0000 nectar 2004/04/13 13:39:27 PDT FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: make tidy Revision Changes Path 1.73 +59 -59 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Tue Apr 13 13:40: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 D3CDB16A4CE; Tue, 13 Apr 2004 13:40:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B930943D3F; Tue, 13 Apr 2004 13:40:41 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DKefGe001995; Tue, 13 Apr 2004 13:40:41 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DKefcT001994; Tue, 13 Apr 2004 13:40:41 -0700 (PDT) (envelope-from marcus) Message-Id: <200404132040.i3DKefcT001994@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 13 Apr 2004 13:40:41 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/gnomesystemmonitor Makefile ports/sysutils/gnomesystemmonitor/files patch-src::proctable.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 20:40:42 -0000 marcus 2004/04/13 13:40:41 PDT FreeBSD ports repository Modified files: sysutils/gnomesystemmonitor Makefile sysutils/gnomesystemmonitor/files patch-src::proctable.c Log: Revert the previous patch. It turns out I had some left over bits from a patch from bland, and the crash I was seeing did not affect others. In fact, the patch added last night would have caused crashes for others. Pointy hat to: me Revision Changes Path 1.55 +1 -1 ports/sysutils/gnomesystemmonitor/Makefile 1.3 +0 -12 ports/sysutils/gnomesystemmonitor/files/patch-src::proctable.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 13:57: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 0716F16A4CE; Tue, 13 Apr 2004 13:57:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DF34443D49; Tue, 13 Apr 2004 13:57:44 -0700 (PDT) (envelope-from vkashyap@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DKviGe005967; Tue, 13 Apr 2004 13:57:44 -0700 (PDT) (envelope-from vkashyap@repoman.freebsd.org) Received: (from vkashyap@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DKviFs005966; Tue, 13 Apr 2004 13:57:44 -0700 (PDT) (envelope-from vkashyap) Message-Id: <200404132057.i3DKviFs005966@repoman.freebsd.org> From: Vinod Kashyap Date: Tue, 13 Apr 2004 13:57:44 -0700 (PDT) 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: Tue, 13 Apr 2004 20:57:45 -0000 vkashyap 2004/04/13 13:57:44 PDT FreeBSD src repository Added files: share/man/man4 twa.4 Log: Adding man page for 3ware's 9000 series storage controller driver (twa). Reviewed by: ru Revision Changes Path 1.1 +86 -0 src/share/man/man4/twa.4 (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 14:28: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 48BE316A4CE; Tue, 13 Apr 2004 14:28:35 -0700 (PDT) Received: from smtp.des.no (flood.des.no [217.116.83.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6BAC43D45; Tue, 13 Apr 2004 14:28:34 -0700 (PDT) (envelope-from des@des.no) Received: by smtp.des.no (Pony Express, from userid 666) id 116C8530A; Tue, 13 Apr 2004 23:28:33 +0200 (CEST) Received: from dwp.des.no (des.no [80.203.228.37]) by smtp.des.no (Pony Express) with ESMTP id 740C85309; Tue, 13 Apr 2004 23:28:25 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 2602) id 5F37833C6C; Tue, 13 Apr 2004 23:28:25 +0200 (CEST) To: Vinod Kashyap References: <200404132057.i3DKviFs005966@repoman.freebsd.org> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Tue, 13 Apr 2004 23:28:25 +0200 In-Reply-To: <200404132057.i3DKviFs005966@repoman.freebsd.org> (Vinod Kashyap's message of "Tue, 13 Apr 2004 13:57:44 -0700 (PDT)") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on flood.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=AWL autolearn=no version=2.63 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: 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: Tue, 13 Apr 2004 21:28:35 -0000 Vinod Kashyap writes: > Log: > Adding man page for 3ware's 9000 series storage controller driver (twa). This has no effect unless you also list it in the Makefile. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Tue Apr 13 14:28: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 6EFB316A4CE; Tue, 13 Apr 2004 14:28:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52DC543D5A; Tue, 13 Apr 2004 14:28:59 -0700 (PDT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DLSxGe013046; Tue, 13 Apr 2004 14:28:59 -0700 (PDT) (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DLSxkE013045; Tue, 13 Apr 2004 14:28:59 -0700 (PDT) (envelope-from julian) Message-Id: <200404132128.i3DLSxkE013045@repoman.freebsd.org> From: Julian Elischer Date: Tue, 13 Apr 2004 14:28:58 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/dev/usb umass.c usbdevs usbdevs.h usbdevs_data.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, 13 Apr 2004 21:28:59 -0000 julian 2004/04/13 14:28:58 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/dev/usb umass.c usbdevs usbdevs.h usbdevs_data.h Log: Add an ID for the "Sitecom Cardreader CN-311" Approved by: re (scott) Revision Changes Path 1.11.2.30 +5 -0 src/sys/dev/usb/umass.c 1.11.2.56 +1 -0 src/sys/dev/usb/usbdevs 1.32.2.53 +1 -0 src/sys/dev/usb/usbdevs.h 1.32.2.53 +6 -0 src/sys/dev/usb/usbdevs_data.h From owner-cvs-all@FreeBSD.ORG Tue Apr 13 14:31: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 E979F16A4CE; Tue, 13 Apr 2004 14:31:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE8AB43D48; Tue, 13 Apr 2004 14:31:34 -0700 (PDT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DLVYGe014257; Tue, 13 Apr 2004 14:31:34 -0700 (PDT) (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DLVYfM014253; Tue, 13 Apr 2004 14:31:34 -0700 (PDT) (envelope-from markus) Message-Id: <200404132131.i3DLVYfM014253@repoman.freebsd.org> From: Markus Brueffer Date: Tue, 13 Apr 2004 14:31:34 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/kwordquiz 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, 13 Apr 2004 21:31:35 -0000 markus 2004/04/13 14:31:34 PDT FreeBSD ports repository Modified files: misc/kwordquiz Makefile distinfo pkg-plist Log: Update to version 0.6 Revision Changes Path 1.5 +1 -2 ports/misc/kwordquiz/Makefile 1.3 +2 -2 ports/misc/kwordquiz/distinfo 1.3 +1 -0 ports/misc/kwordquiz/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 14: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 80CB216A4CE; Tue, 13 Apr 2004 14:49:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6358343D1D; Tue, 13 Apr 2004 14:49:56 -0700 (PDT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DLnuGe017155; Tue, 13 Apr 2004 14:49:56 -0700 (PDT) (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DLnuhr017154; Tue, 13 Apr 2004 14:49:56 -0700 (PDT) (envelope-from markus) Message-Id: <200404132149.i3DLnuhr017154@repoman.freebsd.org> From: Markus Brueffer Date: Tue, 13 Apr 2004 14:49:56 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/kopete 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, 13 Apr 2004 21:49:56 -0000 markus 2004/04/13 14:49:56 PDT FreeBSD ports repository Modified files: net/kopete Makefile distinfo pkg-descr pkg-plist Log: - Update to version 0.8.0 - Assign maintainership to kde@ [1] - respect CFLAGS Requested by: Stefan Jahn (maintainer) [1] Revision Changes Path 1.19 +4 -1 ports/net/kopete/Makefile 1.9 +2 -2 ports/net/kopete/distinfo 1.3 +0 -3 ports/net/kopete/pkg-descr 1.8 +297 -198 ports/net/kopete/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 14: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 1E78416A500; Tue, 13 Apr 2004 14:57:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0169D43D46; Tue, 13 Apr 2004 14:57:23 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DLvMGe019164; Tue, 13 Apr 2004 14:57:22 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DLvMa0019163; Tue, 13 Apr 2004 14:57:22 -0700 (PDT) (envelope-from erwin) Message-Id: <200404132157.i3DLvMa0019163@repoman.freebsd.org> From: Erwin Lansing Date: Tue, 13 Apr 2004 14:57:22 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 21:57:23 -0000 erwin 2004/04/13 14:57:22 PDT FreeBSD ports repository Modified files: security/john Makefile Log: Update maintainer email address PR: 65504 Submitted by: maintainer Revision Changes Path 1.29 +1 -1 ports/security/john/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 14:57: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 867AE16A4D2; Tue, 13 Apr 2004 14:57:36 -0700 (PDT) Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7395E43D2F; Tue, 13 Apr 2004 14:57:36 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (75a5b0b274050778d6f0c2da8b8b9f19@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i3DLvYt5005384; Tue, 13 Apr 2004 14:57:34 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id E9151533F6; Tue, 13 Apr 2004 14:57:33 -0700 (PDT) Date: Tue, 13 Apr 2004 14:57:33 -0700 From: Kris Kennaway To: Alexey Dokuchaev Message-ID: <20040413215733.GA37771@xor.obsecurity.org> References: <200404130928.i3D9ShRc033254@repoman.freebsd.org> <20040413152837.GA94022@regency.nsu.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="r5Pyd7+fXNt84Ff3" Content-Disposition: inline In-Reply-To: <20040413152837.GA94022@regency.nsu.ru> User-Agent: Mutt/1.4.2.1i cc: cvs-ports@freebsd.org cc: Erwin Lansing cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: 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, 13 Apr 2004 21:57:37 -0000 --r5Pyd7+fXNt84Ff3 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 13, 2004 at 10:28:37PM +0700, Alexey Dokuchaev wrote: > On Tue, Apr 13, 2004 at 02:28:43AM -0700, Erwin Lansing wrote: > > erwin 2004/04/13 02:28:43 PDT > >=20 > > FreeBSD ports repository > >=20 > > Modified files: > > . modules=20 > > Log: > > Remove entry for www/Mosaic that was removed Apr 11, 2004. >=20 > Just out of curiosity, why not just make this port build and run > properly under both FreeBSD stable & current, and leave the port in? > After all, Mosaic is the the major achievement of "older times" that made > Internet how we see it now. Historical reason is probably strong > enough in this case. That was the point of the 2 month deprecation cycle, which was widely announced but which you obviously missed. Kris --r5Pyd7+fXNt84Ff3 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfGJNWry0BWjoQKURAt1KAJ9N50ADELmVX+1JD4NH3/IOLnroXgCgkA93 xHQ1/P40QCC6R6v9JCf+nyM= =Zxjt -----END PGP SIGNATURE----- --r5Pyd7+fXNt84Ff3-- From owner-cvs-all@FreeBSD.ORG Tue Apr 13 14:58: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 B4F6C16A4D3; Tue, 13 Apr 2004 14:58:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98E1343D39; Tue, 13 Apr 2004 14:58:30 -0700 (PDT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DLwUGe019231; Tue, 13 Apr 2004 14:58:30 -0700 (PDT) (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DLwTqc019230; Tue, 13 Apr 2004 14:58:29 -0700 (PDT) (envelope-from markus) Message-Id: <200404132158.i3DLwTqc019230@repoman.freebsd.org> From: Markus Brueffer Date: Tue, 13 Apr 2004 14:58:29 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/knights 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, 13 Apr 2004 21:58:30 -0000 markus 2004/04/13 14:58:29 PDT FreeBSD ports repository Modified files: games/knights Makefile Log: Reset maintainer to ports@ Requested by: Stefan Jahn (maintainer) Revision Changes Path 1.6 +1 -1 ports/games/knights/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 15:00: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 754C416A4CE; Tue, 13 Apr 2004 15:00:53 -0700 (PDT) Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id 656CB43D46; Tue, 13 Apr 2004 15:00:53 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (990fa12d7d25998e7bbcead652eed97a@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i3DM0qt5011608; Tue, 13 Apr 2004 15:00:53 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 8188A537E7; Tue, 13 Apr 2004 15:00:52 -0700 (PDT) Date: Tue, 13 Apr 2004 15:00:52 -0700 From: Kris Kennaway To: Archie Cobbs Message-ID: <20040413220052.GB37771@xor.obsecurity.org> References: <200404131742.i3DHgBDC056218@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="A6N2fC+uXW/VQSAv" Content-Disposition: inline In-Reply-To: <200404131742.i3DHgBDC056218@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/net/mpd Makefile ports/net/mpd/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: Tue, 13 Apr 2004 22:00:53 -0000 --A6N2fC+uXW/VQSAv Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 13, 2004 at 10:42:11AM -0700, Archie Cobbs wrote: > archie 2004/04/13 10:42:11 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > net/mpd Makefile=20 > Added files: > net/mpd/files patch-aa=20 > Log: > Include patch that fixes ports/62477. Commit logs should include a brief description of what the patch does, not just an external reference. Kris --A6N2fC+uXW/VQSAv Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfGMTWry0BWjoQKURAm6aAJ9GXPepKCcYU5R+RMffURl87bS57wCg+QTp Ox6uiQkkTW3ka2Yde9eaDaA= =vFjI -----END PGP SIGNATURE----- --A6N2fC+uXW/VQSAv-- From owner-cvs-all@FreeBSD.ORG Tue Apr 13 15:02: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 B8DD016A4CE; Tue, 13 Apr 2004 15:02:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D46143D2F; Tue, 13 Apr 2004 15:02:07 -0700 (PDT) (envelope-from deischen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DM27Ge020602; Tue, 13 Apr 2004 15:02:07 -0700 (PDT) (envelope-from deischen@repoman.freebsd.org) Received: (from deischen@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DM27FT020601; Tue, 13 Apr 2004 15:02:07 -0700 (PDT) (envelope-from deischen) Message-Id: <200404132202.i3DM27FT020601@repoman.freebsd.org> From: Daniel Eischen Date: Tue, 13 Apr 2004 15:02:07 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/xmcd 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, 13 Apr 2004 22:02:08 -0000 deischen 2004/04/13 15:02:07 PDT FreeBSD ports repository Modified files: audio/xmcd Makefile Log: Make audio/flac a LIB_DEPENDS instead of a RUN_DEPENDS. Revision Changes Path 1.46 +2 -2 ports/audio/xmcd/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 15:02: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 1B78C16A4CE; Tue, 13 Apr 2004 15:02:56 -0700 (PDT) Received: from mtaw6.prodigy.net (mtaw6.prodigy.net [64.164.98.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A9ED43D31; Tue, 13 Apr 2004 15:02:56 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (03a6d11827aad9ff4a617c4625587770@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw6.prodigy.net (8.12.10/8.12.10) with ESMTP id i3DM1jXM025729; Tue, 13 Apr 2004 15:01:45 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id B39D5533F6; Tue, 13 Apr 2004 15:02:54 -0700 (PDT) Date: Tue, 13 Apr 2004 15:02:54 -0700 From: Kris Kennaway To: Mark Linimon Message-ID: <20040413220254.GC37771@xor.obsecurity.org> References: <200404131903.i3DJ3088074551@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="4ZLFUWh1odzi/v6L" Content-Disposition: inline In-Reply-To: <200404131903.i3DJ3088074551@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/misc/cwish 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, 13 Apr 2004 22:02:56 -0000 --4ZLFUWh1odzi/v6L Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 13, 2004 at 12:03:00PM -0700, Mark Linimon wrote: > linimon 2004/04/13 12:03:00 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > misc/cwish Makefile=20 > Log: > Per distfile survey, remove mastersite that disappeared in November 200= 3. > A web search reveals no newer site. BTW, when removing the last master site, you should also mark the port BROKEN if no copy of the distfile exists on ftp.freebsd.org. Thanks for doing these. Kris --4ZLFUWh1odzi/v6L Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfGOOWry0BWjoQKURAjmiAKDAK5h1p100wbo6h/ja7pyuQTfaRQCdGesi oN8DNNmA5N2wh5EZbvF0R04= =wm2N -----END PGP SIGNATURE----- --4ZLFUWh1odzi/v6L-- From owner-cvs-all@FreeBSD.ORG Tue Apr 13 15:07: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 A1ED216A4CE; Tue, 13 Apr 2004 15:07:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8432443D49; Tue, 13 Apr 2004 15:07:13 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DM7DGe022302; Tue, 13 Apr 2004 15:07:13 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DM7DMN022301; Tue, 13 Apr 2004 15:07:13 -0700 (PDT) (envelope-from kris) Message-Id: <200404132207.i3DM7DMN022301@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 15:07:13 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/cvsnt 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, 13 Apr 2004 22:07:13 -0000 kris 2004/04/13 15:07:13 PDT FreeBSD ports repository Modified files: devel/cvsnt Makefile Log: Add missing manpages Revision Changes Path 1.7 +3 -0 ports/devel/cvsnt/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 15:09: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 7BE6F16A4CE; Tue, 13 Apr 2004 15:09:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4867B43D41; Tue, 13 Apr 2004 15:09:36 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DM9aGe022358; Tue, 13 Apr 2004 15:09:36 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DM9aal022357; Tue, 13 Apr 2004 15:09:36 -0700 (PDT) (envelope-from kris) Message-Id: <200404132209.i3DM9aal022357@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 15:09:36 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/cvm 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, 13 Apr 2004 22:09:36 -0000 kris 2004/04/13 15:09:36 PDT FreeBSD ports repository Modified files: security/cvm pkg-plist Log: Add missing @dirrm Revision Changes Path 1.2 +2 -1 ports/security/cvm/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 15:12: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 46E7D16A4CE; Tue, 13 Apr 2004 15:12:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AB0343D1D; Tue, 13 Apr 2004 15:12:50 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DMCnGe024198; Tue, 13 Apr 2004 15:12:49 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DMCnVv024197; Tue, 13 Apr 2004 15:12:49 -0700 (PDT) (envelope-from kris) Message-Id: <200404132212.i3DMCnVv024197@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 15:12:49 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/epydoc 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, 13 Apr 2004 22:12:50 -0000 kris 2004/04/13 15:12:49 PDT FreeBSD ports repository Modified files: devel/epydoc pkg-plist Log: Add missing @dirrm Revision Changes Path 1.2 +1 -0 ports/devel/epydoc/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 15: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 4FEA116A4CF; Tue, 13 Apr 2004 15:15:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 333C343D46; Tue, 13 Apr 2004 15:15:27 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DMFQGe024377; Tue, 13 Apr 2004 15:15:26 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DMFQ6l024376; Tue, 13 Apr 2004 15:15:26 -0700 (PDT) (envelope-from kris) Message-Id: <200404132215.i3DMFQ6l024376@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 15:15:26 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/execline 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, 13 Apr 2004 22:15:27 -0000 kris 2004/04/13 15:15:26 PDT FreeBSD ports repository Modified files: lang/execline pkg-plist Log: Add missing @dirrm Revision Changes Path 1.2 +2 -1 ports/lang/execline/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 15:16: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 CE8D216A4CE; Tue, 13 Apr 2004 15:16:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB25C43D3F; Tue, 13 Apr 2004 15:16:31 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DMGVGe024417; Tue, 13 Apr 2004 15:16:31 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DMGVUP024416; Tue, 13 Apr 2004 15:16:31 -0700 (PDT) (envelope-from kris) Message-Id: <200404132216.i3DMGVUP024416@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 15:16:31 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/gnuinfo 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, 13 Apr 2004 22:16:32 -0000 kris 2004/04/13 15:16:31 PDT FreeBSD ports repository Modified files: www/gnuinfo pkg-plist Log: Add missing @dirrms Revision Changes Path 1.2 +2 -0 ports/www/gnuinfo/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 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 1FA8716A4CE; Tue, 13 Apr 2004 15:19:06 -0700 (PDT) Received: from server.alexdupre.com (host245-49.pool8288.interbusiness.it [82.88.49.245]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A11943D45; Tue, 13 Apr 2004 15:19:05 -0700 (PDT) (envelope-from ale@FreeBSD.org) Received: from FreeBSD.org (thunder.alexdupre.com [192.168.0.101]) i3DMJ4lN014804; Wed, 14 Apr 2004 00:19:04 +0200 (CEST) (envelope-from ale@FreeBSD.org) Message-ID: <407C6758.1030606@FreeBSD.org> Date: Wed, 14 Apr 2004 00:19:04 +0200 From: Alex Dupre User-Agent: Mozilla Thunderbird 0.5+ (Windows/20040312) X-Accept-Language: en MIME-Version: 1.0 To: Daniel Eischen References: <200404132202.i3DM27FT020601@repoman.freebsd.org> In-Reply-To: <200404132202.i3DM27FT020601@repoman.freebsd.org> X-Enigmail-Version: 0.83.5.0 X-Enigmail-Supports: pgp-inline, pgp-mime 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: ports/audio/xmcd 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, 13 Apr 2004 22:19:06 -0000 Daniel Eischen wrote: > deischen 2004/04/13 15:02:07 PDT > > FreeBSD ports repository > > Modified files: > audio/xmcd Makefile > Log: > Make audio/flac a LIB_DEPENDS instead of a RUN_DEPENDS. Hmmm, then you should change the dependency from binary to library. -- Alex Dupre From owner-cvs-all@FreeBSD.ORG Tue Apr 13 15: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 8840516A4CE; Tue, 13 Apr 2004 15:24:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A93D43D68; Tue, 13 Apr 2004 15:24:22 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DMOMGe026297; Tue, 13 Apr 2004 15:24:22 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DMOMBN026296; Tue, 13 Apr 2004 15:24:22 -0700 (PDT) (envelope-from kris) Message-Id: <200404132224.i3DMOMBN026296@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 15:24:22 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/mess822 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, 13 Apr 2004 22:24:22 -0000 kris 2004/04/13 15:24:22 PDT FreeBSD ports repository Modified files: mail/mess822 Makefile Log: BROKEN: Changes ownership of system directories Revision Changes Path 1.5 +2 -0 ports/mail/mess822/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 15:26: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 53F7E16A4CE; Tue, 13 Apr 2004 15:26:14 -0700 (PDT) Received: from 82-41-27-171.cable.ubr04.edin.blueyonder.co.uk (82-41-27-171.cable.ubr04.edin.blueyonder.co.uk [82.41.27.171]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83CDA43D58; Tue, 13 Apr 2004 15:26:13 -0700 (PDT) (envelope-from andrew@mux.org.uk) Received: from mux.org.uk (spatula.flat [192.168.0.2]) by myriad.flat (Postfix) with ESMTP id 185B84C; Tue, 13 Apr 2004 21:18:08 +0100 (BST) Message-ID: <407C6902.2080809@mux.org.uk> Date: Tue, 13 Apr 2004 23:26:10 +0100 From: Andrew Boothman User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.6b) Gecko/20031205 Thunderbird/0.4 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Ruslan Ermilov References: <200404051739.i35HdvhV051240@repoman.freebsd.org> In-Reply-To: <200404051739.i35HdvhV051240@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/pci if_vr.c if_vrreg.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, 13 Apr 2004 22:26:14 -0000 Ruslan Ermilov wrote: > ru 2004/04/05 10:39:57 PDT > > FreeBSD src repository > > Modified files: > sys/pci if_vr.c if_vrreg.h > Log: > - Rewritten TX to use only two pointers to track producer/consumer. > - Added polling(4) support! > - Bugfix: don't forget to set IFF_OACTIVE when TX list is full. > - Minor: tidy up vr_encap(). Ruslan, I wonder if your recent changes to vr might have effected an outstanding, if illusive, bug with vr? http://www.freebsd.org/cgi/query-pr.cgi?pr=62889 Andrew From owner-cvs-all@FreeBSD.ORG Tue Apr 13 15: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 3BE2F16A4D1; Tue, 13 Apr 2004 15:26:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D0DF43D6A; Tue, 13 Apr 2004 15:26:25 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DMQOGe026409; Tue, 13 Apr 2004 15:26:24 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DMQOQQ026408; Tue, 13 Apr 2004 15:26:24 -0700 (PDT) (envelope-from kris) Message-Id: <200404132226.i3DMQOQQ026408@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 15:26:24 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/mess822 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, 13 Apr 2004 22:26:27 -0000 kris 2004/04/13 15:26:24 PDT FreeBSD ports repository Modified files: mail/mess822 Makefile Log: Correct previous (permissions are changed, not ownership) Revision Changes Path 1.6 +1 -1 ports/mail/mess822/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 15:41: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 8BA1C16A4CE; Tue, 13 Apr 2004 15:41:04 -0700 (PDT) Received: from mtaw4.prodigy.net (mtaw4.prodigy.net [64.164.98.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B18643D2D; Tue, 13 Apr 2004 15:41:04 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (37f3fdca669194af38f30099eac8e705@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw4.prodigy.net (8.12.10/8.12.10) with ESMTP id i3DMf19f010925; Tue, 13 Apr 2004 15:41:02 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 98E8C533F6; Tue, 13 Apr 2004 15:41:01 -0700 (PDT) Date: Tue, 13 Apr 2004 15:41:01 -0700 From: Kris Kennaway To: Archie Cobbs Message-ID: <20040413224101.GA38506@xor.obsecurity.org> References: <20040413220052.GB37771@xor.obsecurity.org> <200404132228.i3DMSf8O004179@arch20m.dellroad.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="SLDf9lqlvOQaIe6s" Content-Disposition: inline In-Reply-To: <200404132228.i3DMSf8O004179@arch20m.dellroad.org> User-Agent: Mutt/1.4.2.1i cc: cvs-ports@FreeBSD.ORG cc: ports-committers@FreeBSD.ORG cc: Archie Cobbs cc: cvs-all@FreeBSD.ORG cc: Kris Kennaway Subject: Re: cvs commit: ports/net/mpd Makefile ports/net/mpd/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: Tue, 13 Apr 2004 22:41:04 -0000 --SLDf9lqlvOQaIe6s Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 13, 2004 at 05:28:41PM -0500, Archie Cobbs wrote: > Kris Kennaway wrote: > > > Log: > > > Include patch that fixes ports/62477. > >=20 > > Commit logs should include a brief description of what the patch does, > > not just an external reference. >=20 > Is there some official policy about this?? >=20 > One might think that "patch that fixes ports/62477" would > be the most appropriate way to describe what the patch does... > it avoids duplicating information described more completely > and accurately elsewhere, but gives an unabiguous reference > to that information. The Committer's Guide says: Good commit messages are important. They tell others why you did the changes you did, not just right here and now, but months or years from now when someone wonders why some seemingly illogical or inefficient piece of code snuck into your source file. It is also an invaluable aid to deciding which changes to MFC and which not to MFC. Commit messages should be clear, concise and provide a reasonable summary to give an indication of what was changed and why. Commit messages should provide enough information to enable a third party to decide if the change is relevant to them and if they need to read the change itself. Admittedly, it doesn't come right out and say "don't just give a reference to an external PR with no other explanation", but the intent is "they should have a self-contained description of the problem and solution, and you should use the 'PR:' line in the CVS template to link to an external PR with more information if necessary". This is certainly the FreeBSD tradition. Kris --SLDf9lqlvOQaIe6s Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfGx9Wry0BWjoQKURAqXdAJ9EmtKBZx2ekKuzjZE3XGf6dwcytQCfYOmN ijo+C/5/1Hqy71nV4MqQb1w= =J00a -----END PGP SIGNATURE----- --SLDf9lqlvOQaIe6s-- From owner-cvs-all@FreeBSD.ORG Tue Apr 13 15:43: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 64C0416A4CE; Tue, 13 Apr 2004 15:43:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4876443D2F; Tue, 13 Apr 2004 15:43:24 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DMhOGe030323; Tue, 13 Apr 2004 15:43:24 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DMhOVK030322; Tue, 13 Apr 2004 15:43:24 -0700 (PDT) (envelope-from kris) Message-Id: <200404132243.i3DMhOVK030322@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 15:43:24 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/webcopy 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, 13 Apr 2004 22:43:24 -0000 kris 2004/04/13 15:43:24 PDT FreeBSD ports repository Modified files: www/webcopy pkg-plist Log: Add missing @dirrm Revision Changes Path 1.3 +1 -0 ports/www/webcopy/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 15:44: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 8113C16A4CE; Tue, 13 Apr 2004 15:44:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63C1D43D60; Tue, 13 Apr 2004 15:44:40 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DMieGe030404; Tue, 13 Apr 2004 15:44:40 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DMievR030403; Tue, 13 Apr 2004 15:44:40 -0700 (PDT) (envelope-from kris) Message-Id: <200404132244.i3DMievR030403@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 15:44:40 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/porttools 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, 13 Apr 2004 22:44:40 -0000 kris 2004/04/13 15:44:40 PDT FreeBSD ports repository Modified files: devel/porttools pkg-plist Log: Add missing @dirrm Revision Changes Path 1.5 +2 -1 ports/devel/porttools/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 15:46: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 1298316A4CE; Tue, 13 Apr 2004 15:46:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA75C43D48; Tue, 13 Apr 2004 15:46:00 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DMk0Ge030509; Tue, 13 Apr 2004 15:46:00 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DMk06I030508; Tue, 13 Apr 2004 15:46:00 -0700 (PDT) (envelope-from kris) Message-Id: <200404132246.i3DMk06I030508@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 15:46:00 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/avmailgate 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, 13 Apr 2004 22:46:01 -0000 kris 2004/04/13 15:46:00 PDT FreeBSD ports repository Modified files: security/avmailgate Makefile Log: BROKEN: Creates files in /etc and /usr/lib Revision Changes Path 1.3 +2 -0 ports/security/avmailgate/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 15:59: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 5347016A4CE; Tue, 13 Apr 2004 15:59:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3513843D2F; Tue, 13 Apr 2004 15:59:19 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DMxJGe032621; Tue, 13 Apr 2004 15:59:19 -0700 (PDT) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DMxImq032620; Tue, 13 Apr 2004 15:59:18 -0700 (PDT) (envelope-from lioux) Message-Id: <200404132259.i3DMxImq032620@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Tue, 13 Apr 2004 15:59:18 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/djbfft 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, 13 Apr 2004 22:59:19 -0000 lioux 2004/04/13 15:59:18 PDT FreeBSD ports repository Modified files: math/djbfft Makefile Log: o Override distfile's install procedure so that the port does not inadvertently mess directory permissions under LOCALBASE o Therefore, remove BROKEN o Bump PORTREVISION since users should update to this fixed version Prompted by: kris Revision Changes Path 1.11 +13 -2 ports/math/djbfft/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 16:14: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 62AB916A4CE; Tue, 13 Apr 2004 16:14:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44EB943D5D; Tue, 13 Apr 2004 16:14:02 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DNE2Ge037452; Tue, 13 Apr 2004 16:14:02 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DNE2kc037451; Tue, 13 Apr 2004 16:14:02 -0700 (PDT) (envelope-from kris) Message-Id: <200404132314.i3DNE2kc037451@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 16:14:02 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/sarg 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, 13 Apr 2004 23:14:02 -0000 kris 2004/04/13 16:14:02 PDT FreeBSD ports repository Modified files: www/sarg pkg-plist Log: Correct config file handling and remove directories Revision Changes Path 1.3 +3 -2 ports/www/sarg/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 16:17: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 1268716A4CE; Tue, 13 Apr 2004 16:17:27 -0700 (PDT) Received: from mta7.pltn13.pbi.net (mta7.pltn13.pbi.net [64.164.98.8]) by mx1.FreeBSD.org (Postfix) with ESMTP id C070943D39; Tue, 13 Apr 2004 16:17:27 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (bd0a60beb813eeb15ca6772ffe0101c4@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i3DNHRt5015786; Tue, 13 Apr 2004 16:17:27 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 06E0A538FF; Tue, 13 Apr 2004 16:17:26 -0700 (PDT) Date: Tue, 13 Apr 2004 16:17:26 -0700 From: Kris Kennaway To: Mario Sergio Fujikawa Ferreira Message-ID: <20040413231726.GB39444@xor.obsecurity.org> References: <200404132259.i3DMxImq032620@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="NMuMz9nt05w80d4+" Content-Disposition: inline In-Reply-To: <200404132259.i3DMxImq032620@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/math/djbfft 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, 13 Apr 2004 23:17:28 -0000 --NMuMz9nt05w80d4+ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 13, 2004 at 03:59:18PM -0700, Mario Sergio Fujikawa Ferreira wr= ote: > lioux 2004/04/13 15:59:18 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > math/djbfft Makefile=20 > Log: > o Override distfile's install procedure so that the port does not > inadvertently mess directory permissions under LOCALBASE > o Therefore, remove BROKEN > o Bump PORTREVISION since users should update to this fixed version > =20 > Prompted by: kris Aha! You have fallen into my cunning trap! Now, how would you like to fix all the other djb ports to not do the same thing? :-) Kris --NMuMz9nt05w80d4+ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfHUGWry0BWjoQKURAsGOAJ9NYJUYTb7/UAX2afPgPT4OXTfhZQCfX10y p6YcgjZi0iVpBJUVpstv3vo= =TSsd -----END PGP SIGNATURE----- --NMuMz9nt05w80d4+-- From owner-cvs-all@FreeBSD.ORG Tue Apr 13 16:26: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 8248716A4CE; Tue, 13 Apr 2004 16:26:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 653F243D39; Tue, 13 Apr 2004 16:26:10 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DNQAGe039499; Tue, 13 Apr 2004 16:26:10 -0700 (PDT) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DNQAnY039498; Tue, 13 Apr 2004 16:26:10 -0700 (PDT) (envelope-from lioux) Message-Id: <200404132326.i3DNQAnY039498@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Tue, 13 Apr 2004 16:26:10 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/qmail-ldap 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, 13 Apr 2004 23:26:10 -0000 lioux 2004/04/13 16:26:10 PDT FreeBSD ports repository Modified files: mail/qmail-ldap Makefile pkg-plist Log: o Fix PLIST o Therefore, both remove BROKEN and bump PORTREVISION Revision Changes Path 1.33 +1 -3 ports/mail/qmail-ldap/Makefile 1.5 +12 -2 ports/mail/qmail-ldap/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 16: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 43CD816A4CE; Tue, 13 Apr 2004 16:28:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26E5F43D46; Tue, 13 Apr 2004 16:28:58 -0700 (PDT) (envelope-from josef@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DNSvGe039630; Tue, 13 Apr 2004 16:28:57 -0700 (PDT) (envelope-from josef@repoman.freebsd.org) Received: (from josef@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DNSvdY039629; Tue, 13 Apr 2004 16:28:57 -0700 (PDT) (envelope-from josef) Message-Id: <200404132328.i3DNSvdY039629@repoman.freebsd.org> From: Josef El-Rayes Date: Tue, 13 Apr 2004 16:28:57 -0700 (PDT) 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: Tue, 13 Apr 2004 23:28:58 -0000 josef 2004/04/13 16:28:57 PDT FreeBSD doc repository Modified files: en/events events.xml Log: Add the AUUG'2004. Revision Changes Path 1.27 +25 -1 www/en/events/events.xml From owner-cvs-all@FreeBSD.ORG Tue Apr 13 16: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 1916916A4CE; Tue, 13 Apr 2004 16:30:28 -0700 (PDT) Received: from mail.soaustin.net (mail.soaustin.net [207.200.4.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id DFDF043D46; Tue, 13 Apr 2004 16:30:27 -0700 (PDT) (envelope-from linimon@lonesome.com) Received: by mail.soaustin.net (Postfix, from userid 502) id 5B842140E4; Tue, 13 Apr 2004 18:30:27 -0500 (CDT) Date: Tue, 13 Apr 2004 18:30:27 -0500 (CDT) From: Mark Linimon X-X-Sender: linimon@pancho To: Kris Kennaway In-Reply-To: <20040413220254.GC37771@xor.obsecurity.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: Mark Linimon cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/misc/cwish 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, 13 Apr 2004 23:30:28 -0000 On Tue, 13 Apr 2004, Kris Kennaway wrote: > BTW, when removing the last master site, you should also mark the > port BROKEN if no copy of the distfile exists on ftp.freebsd.org. A good point, but I have been doing a 'make fetch' first. (I did notice one that you had marked broken/unfetchable that did indeed have copies of the distfile on ftp.freebsd.org -- should I mark that one as unbroken?) But your response gives me the idea to ask a related question ... When I proposed the DEPRECATED makevar, my intention was to use it to be the union of (BROKEN or FORBIDDEN or "replaced by a newer version"). So far IMHO it's serving that role well. But in going through the distfile survey for unfetchable/unmaintained ports (which is what I've been doing), I am finding a number of ports like this where the original developer's site has vanished and a web search shows that there has been nothing to replace it for months or even years. (In fact, doing a web search produces only "ghosts": references to CVS commit logs, other postings to mailing lists, the port's status page on FreshPorts, and sometimes other, similar, pages for one of (NetBSD|OpenBSD|Debian)). Now, in many of these cases, the code still runs, so I don't see any particular need to delete them ... if someone is using them. But should it be fair game to mark them as DEPRECATED with the text "development seems to have ceased" (or equivalent)? This is something that we would need to see if there is (or can be) a community consensus on. On the one hand, if they seem to install, and have no PRs against them, they are "useful" (for some definition of "useful"). On the other hand, if there are alteratives available, shouldn't we be directing prospective users to the alternatives, and even if there aren't, who's going to bother to fix them when they break? btw, I'm not going to take any action on this one way or the other, pending any particular consensus -- I'm just interested in bringing up the point. A final datapoint: my guess is that we have at least 200 ports like this. With a little bit of work, I could add such a report to portsmon, or write it as some kind of standalone sh-based code. mcl From owner-cvs-all@FreeBSD.ORG Tue Apr 13 16: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 8CB2716A4CF; Tue, 13 Apr 2004 16:32:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 690A743D46; Tue, 13 Apr 2004 16:32:14 -0700 (PDT) (envelope-from mheinen@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DNWEGe041367; Tue, 13 Apr 2004 16:32:14 -0700 (PDT) (envelope-from mheinen@repoman.freebsd.org) Received: (from mheinen@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DNWExK041366; Tue, 13 Apr 2004 16:32:14 -0700 (PDT) (envelope-from mheinen) Message-Id: <200404132332.i3DNWExK041366@repoman.freebsd.org> From: Martin Heinen Date: Tue, 13 Apr 2004 16:32:14 -0700 (PDT) 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/mail 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, 13 Apr 2004 23:32:14 -0000 mheinen 2004/04/13 16:32:14 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/advanced-networking chapter.sgml en_US.ISO8859-1/books/handbook/mail chapter.sgml Log: Add more index entries for "MX record". Revision Changes Path 1.293 +4 -0 doc/en_US.ISO8859-1/books/handbook/advanced-networking/chapter.sgml 1.110 +11 -0 doc/en_US.ISO8859-1/books/handbook/mail/chapter.sgml From owner-cvs-all@FreeBSD.ORG Tue Apr 13 16: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 709D916A4CE; Tue, 13 Apr 2004 16:35:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5275C43D2F; Tue, 13 Apr 2004 16:35:42 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DNZgGe041653; Tue, 13 Apr 2004 16:35:42 -0700 (PDT) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DNZfl8041652; Tue, 13 Apr 2004 16:35:41 -0700 (PDT) (envelope-from lioux) Message-Id: <200404132335.i3DNZfl8041652@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Tue, 13 Apr 2004 16:35:41 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/ffmpeg 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, 13 Apr 2004 23:35:42 -0000 lioux 2004/04/13 16:35:41 PDT FreeBSD ports repository Modified files: multimedia/ffmpeg Makefile Log: Fix typo: WITHOUT_A52 -> WITHOUT_LIBA52 Revision Changes Path 1.39 +1 -1 ports/multimedia/ffmpeg/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 16:45: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 2733416A4CE; Tue, 13 Apr 2004 16:45:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FAF243D1F; Tue, 13 Apr 2004 16:45:38 -0700 (PDT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DNjbGe043763; Tue, 13 Apr 2004 16:45:37 -0700 (PDT) (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DNjbPE043762; Tue, 13 Apr 2004 16:45:37 -0700 (PDT) (envelope-from kientzle) Message-Id: <200404132345.i3DNjbPE043762@repoman.freebsd.org> From: Tim Kientzle Date: Tue, 13 Apr 2004 16:45:37 -0700 (PDT) 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.c archive_entry.h archive_read_support_format_cpio.carchive_write_set_format_cpio.c archive_write_set_format_ustar.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2004 23:45:38 -0000 kientzle 2004/04/13 16:45:37 PDT FreeBSD src repository Modified files: lib/libarchive archive_entry.c archive_entry.h archive_read.c archive_read_open_file.c archive_read_support_format_cpio.c archive_read_support_format_tar.c archive_write.c archive_write_set_format_cpio.c archive_write_set_format_pax.c archive_write_set_format_shar.c archive_write_set_format_ustar.c Log: * Plug a buffer overrun in ACL parsing. (archive_entry.c) * Re-use a single buffer for shar output formatting rather than hammering the heap. (archive_write_set_format_shar.c) * Fix a handful of minor memory leaks and clean up some of the memory-management code. Revision Changes Path 1.7 +7 -0 src/lib/libarchive/archive_entry.c 1.6 +1 -0 src/lib/libarchive/archive_entry.h 1.6 +3 -3 src/lib/libarchive/archive_read.c 1.5 +4 -1 src/lib/libarchive/archive_read_open_file.c 1.7 +7 -2 src/lib/libarchive/archive_read_support_format_cpio.c 1.8 +17 -17 src/lib/libarchive/archive_read_support_format_tar.c 1.6 +2 -2 src/lib/libarchive/archive_write.c 1.4 +5 -0 src/lib/libarchive/archive_write_set_format_cpio.c 1.8 +7 -3 src/lib/libarchive/archive_write_set_format_pax.c 1.5 +32 -14 src/lib/libarchive/archive_write_set_format_shar.c 1.5 +10 -8 src/lib/libarchive/archive_write_set_format_ustar.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 16:49: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 2B0C116A4CE; Tue, 13 Apr 2004 16:49:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0D16543D3F; Tue, 13 Apr 2004 16:49:03 -0700 (PDT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DNn2Ge049832; Tue, 13 Apr 2004 16:49:02 -0700 (PDT) (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DNn2Vs049831; Tue, 13 Apr 2004 16:49:02 -0700 (PDT) (envelope-from kientzle) Message-Id: <200404132349.i3DNn2Vs049831@repoman.freebsd.org> From: Tim Kientzle Date: Tue, 13 Apr 2004 16:49:02 -0700 (PDT) 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 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: Tue, 13 Apr 2004 23:49:03 -0000 kientzle 2004/04/13 16:49:02 PDT FreeBSD src repository Modified files: usr.bin/tar util.c Log: Eliminate a lot of malloc/free calls by using a stack-allocated buffer for safe_fprintf formatting. Only if the result is too large do we resort to malloc. Revision Changes Path 1.2 +11 -4 src/usr.bin/tar/util.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 16:50: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 9500716A4CE; Tue, 13 Apr 2004 16:50:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53B3E43D2F; Tue, 13 Apr 2004 16:50:49 -0700 (PDT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3DNonGe050001; Tue, 13 Apr 2004 16:50:49 -0700 (PDT) (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3DNom1l050000; Tue, 13 Apr 2004 16:50:48 -0700 (PDT) (envelope-from kientzle) Message-Id: <200404132350.i3DNom1l050000@repoman.freebsd.org> From: Tim Kientzle Date: Tue, 13 Apr 2004 16:50:48 -0700 (PDT) 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: Tue, 13 Apr 2004 23:50:49 -0000 kientzle 2004/04/13 16:50:48 PDT FreeBSD src repository Modified files: usr.bin/tar write.c Log: When all the links to a file have been dumped, don't forget to free() the memory used to store the filename. Revision Changes Path 1.6 +3 -1 src/usr.bin/tar/write.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 17: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 8DA3A16A4CE; Tue, 13 Apr 2004 17:23:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F1EA43D49; Tue, 13 Apr 2004 17:23:59 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E0NxGe058745; Tue, 13 Apr 2004 17:23:59 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E0NxVJ058744; Tue, 13 Apr 2004 17:23:59 -0700 (PDT) (envelope-from njl) Message-Id: <200404140023.i3E0NxVJ058744@repoman.freebsd.org> From: Nate Lawson Date: Tue, 13 Apr 2004 17:23:59 -0700 (PDT) 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.csrc/share/man/man4/man4.i386 acpi_toshiba.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: Wed, 14 Apr 2004 00:23:59 -0000 njl 2004/04/13 17:23:59 PDT FreeBSD src repository Modified files: sys/i386/acpica acpi_toshiba.c share/man/man4/man4.i386 acpi_toshiba.4 Log: Add support for video output switching. It appears no systems use HCI to change the video output but use a separate device with a DSSX method and a HID of "TOS6201" instead. We use a pseudo-driver to get the handle for this object and pass it to the acpi_toshiba driver. This is untested but seems to match the Linux Toshiba driver. Revision Changes Path 1.5 +7 -0 src/share/man/man4/man4.i386/acpi_toshiba.4 1.6 +78 -10 src/sys/i386/acpica/acpi_toshiba.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 17:40: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 05C2716A4CE; Tue, 13 Apr 2004 17:40:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBF0C43D45; Tue, 13 Apr 2004 17:40:54 -0700 (PDT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E0esGe061105; Tue, 13 Apr 2004 17:40:54 -0700 (PDT) (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E0esil061104; Tue, 13 Apr 2004 17:40:54 -0700 (PDT) (envelope-from kientzle) Message-Id: <200404140040.i3E0esil061104@repoman.freebsd.org> From: Tim Kientzle Date: Tue, 13 Apr 2004 17:40:54 -0700 (PDT) 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 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: Wed, 14 Apr 2004 00:40:55 -0000 kientzle 2004/04/13 17:40:54 PDT FreeBSD src repository Modified files: usr.bin/tar bsdtar.c bsdtar.h write.c Log: A simple cache of uid->uname lookups and gid->gname lookups eliminates almost 1/2 of the CPU time required to create an uncompressed archive and makes a noticable reduction in wallclock time. Revision Changes Path 1.6 +11 -0 src/usr.bin/tar/bsdtar.c 1.3 +14 -0 src/usr.bin/tar/bsdtar.h 1.7 +35 -12 src/usr.bin/tar/write.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 17: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 74B4716A4CE; Tue, 13 Apr 2004 17:57:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5629743D55; Tue, 13 Apr 2004 17:57:43 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E0vhGe065064; Tue, 13 Apr 2004 17:57:43 -0700 (PDT) (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E0vhWX065063; Tue, 13 Apr 2004 17:57:43 -0700 (PDT) (envelope-from kuriyama) Message-Id: <200404140057.i3E0vhWX065063@repoman.freebsd.org> From: Jun Kuriyama Date: Tue, 13 Apr 2004 17:57:42 -0700 (PDT) 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 Makefileports/net-mgmt/net-snmp/files patch-tcpTable.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 00:57:43 -0000 kuriyama 2004/04/13 17:57:42 PDT FreeBSD ports repository Modified files: net-mgmt/net-snmp Makefile net-mgmt/net-snmp/files patch-tcpTable.c Log: Fix tcp.tcpCurrEstab.0 counting. PR: ports/65487 Submitted by: Ken Stailey Revision Changes Path 1.108 +2 -1 ports/net-mgmt/net-snmp/Makefile 1.3 +29 -9 ports/net-mgmt/net-snmp/files/patch-tcpTable.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 17:57: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 3A18916A4CF; Tue, 13 Apr 2004 17:57:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1BF6B43D5E; Tue, 13 Apr 2004 17:57:50 -0700 (PDT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E0vnGe065129; Tue, 13 Apr 2004 17:57:49 -0700 (PDT) (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E0vnST065128; Tue, 13 Apr 2004 17:57:49 -0700 (PDT) (envelope-from brooks) Message-Id: <200404140057.i3E0vnST065128@repoman.freebsd.org> From: Brooks Davis Date: Tue, 13 Apr 2004 17:57:49 -0700 (PDT) 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_pflog.c if_pfsync.c src/sys/net if_faith.c if_gif.c if_loop.c if_stf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 00:57:50 -0000 brooks 2004/04/13 17:57:49 PDT FreeBSD src repository Modified files: sys/contrib/pf/net if_pflog.c if_pfsync.c sys/net if_faith.c if_gif.c if_loop.c if_stf.c Log: Staticize _clone_{create,destroy} functions. Reviewed by: mlaier Revision Changes Path 1.5 +4 -4 src/sys/contrib/pf/net/if_pflog.c 1.5 +4 -4 src/sys/contrib/pf/net/if_pfsync.c 1.28 +4 -4 src/sys/net/if_faith.c 1.45 +4 -4 src/sys/net/if_gif.c 1.96 +4 -4 src/sys/net/if_loop.c 1.38 +4 -4 src/sys/net/if_stf.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 18: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 2DF1716A4CE; Tue, 13 Apr 2004 18:04:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1046C43D1D; Tue, 13 Apr 2004 18:04:15 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E14EGe068027; Tue, 13 Apr 2004 18:04:14 -0700 (PDT) (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E14ECk068026; Tue, 13 Apr 2004 18:04:14 -0700 (PDT) (envelope-from kuriyama) Message-Id: <200404140104.i3E14ECk068026@repoman.freebsd.org> From: Jun Kuriyama Date: Tue, 13 Apr 2004 18:04:14 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/comms/conserver-com 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, 14 Apr 2004 01:04:15 -0000 kuriyama 2004/04/13 18:04:14 PDT FreeBSD ports repository Modified files: comms/conserver-com Makefile distinfo Log: Upgrade to 8.1.4 (minor fixes). Revision Changes Path 1.23 +1 -1 ports/comms/conserver-com/Makefile 1.14 +2 -2 ports/comms/conserver-com/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 13 18:13: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 31AE916A4CE; Tue, 13 Apr 2004 18:13:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 119D143D46; Tue, 13 Apr 2004 18:13:15 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E1DEGe070032; Tue, 13 Apr 2004 18:13:14 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E1DE4q070031; Tue, 13 Apr 2004 18:13:14 -0700 (PDT) (envelope-from luigi) Message-Id: <200404140113.i3E1DE4q070031@repoman.freebsd.org> From: Luigi Rizzo Date: Tue, 13 Apr 2004 18:13:14 -0700 (PDT) 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_gif.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, 14 Apr 2004 01:13:15 -0000 luigi 2004/04/13 18:13:14 PDT FreeBSD src repository Modified files: sys/netinet in_gif.c ip_output.c Log: In an effort to simplify the routing code, try to deprecate rtalloc() in favour of rtalloc_ign(), which is what would end up being called anyways. There are 25 more instances of rtalloc() in net*/ and about 10 instances of rtalloc_ign() Revision Changes Path 1.25 +1 -1 src/sys/netinet/in_gif.c 1.215 +1 -1 src/sys/netinet/ip_output.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 18: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 9EA5516A4CE; Tue, 13 Apr 2004 18:18:06 -0700 (PDT) Received: from mailout1.pacific.net.au (mailout1.pacific.net.au [61.8.0.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1C0443D46; Tue, 13 Apr 2004 18:18:05 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.0.87])i3E1I04u007515; Wed, 14 Apr 2004 11:18:00 +1000 Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) i3E1Hvsg022826; Wed, 14 Apr 2004 11:17:58 +1000 Date: Wed, 14 Apr 2004 11:17:57 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Ruslan Ermilov In-Reply-To: <20040413125558.GC46878@ip.net.ua> Message-ID: <20040414110419.M5769@gamplex.bde.org> References: <200404092326.i39NQGUC078871@repoman.freebsd.org> <20040413125558.GC46878@ip.net.ua> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Dag-Erling Sm?rgrav cc: src-committers@freebsd.org cc: Maksim Yevmenkin cc: cvs-all@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/usr.bin/bluetooth/rfcomm_sppd rfcomm_sdp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 01:18:06 -0000 On Tue, 13 Apr 2004, Ruslan Ermilov wrote: > On Tue, Apr 13, 2004 at 02:46:42PM +0200, Dag-Erling Sm?rgrav wrote: > > Maksim Yevmenkin writes: > > > Log: > > > Use uint instead of u_int > > > > What's wrong with "unsigned int"? It is excessively verbose (" int" in "unsigned int" is noise), and is a style bug in many places (e.g., in most parts of the kernel, and in utilities that are closely related to the kernel and/or use kernel style, e.g., vmstat). These places spell "unsigned[ int]" as u_int. > The actual commit changed a bunch of u_int*_t to uint*_t. > I'd be confused too if I wasn't asked to review the patches. ;) Indeed. uint is SYSV compatibility cruft, but the commit actually changed the BSDish u_int prefix to the C99 uint prefix. I used to enforce not using uint or ushort in the kernel: %%% Index: types.h =================================================================== RCS file: /home/ncvs/src/sys/sys/types.h,v retrieving revision 1.85 diff -u -2 -r1.85 types.h --- types.h 7 Apr 2004 04:19:50 -0000 1.85 +++ types.h 14 Apr 2004 01:13:27 -0000 @@ -50,10 +49,12 @@ typedef unsigned int u_int; typedef unsigned long u_long; +#ifndef _KERNEL typedef unsigned short ushort; /* Sys V compatibility */ typedef unsigned int uint; /* Sys V compatibility */ #endif +#endif /* - * XXX POSIX sized integrals that should appear only in . + * XXX C99 integer types that should appear only in . */ #ifndef _INT8_T_DECLARED %%% This used to work, but hasn't been tested recently. Bruce From owner-cvs-all@FreeBSD.ORG Tue Apr 13 18:40: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 0BFEA16A4CE; Tue, 13 Apr 2004 18:40:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E031843D5C; Tue, 13 Apr 2004 18:40:58 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E1ewGe074393; Tue, 13 Apr 2004 18:40:58 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E1ewop074392; Tue, 13 Apr 2004 18:40:58 -0700 (PDT) (envelope-from marcus) Message-Id: <200404140140.i3E1ewop074392@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 13 Apr 2004 18:40:58 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/libxklavier 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, 14 Apr 2004 01:40:59 -0000 marcus 2004/04/13 18:40:58 PDT FreeBSD ports repository Modified files: x11/libxklavier Makefile distinfo Log: Update to 1.02. Revision Changes Path 1.15 +1 -1 ports/x11/libxklavier/Makefile 1.12 +2 -2 ports/x11/libxklavier/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 13 19:03: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 CA8A716A4CE; Tue, 13 Apr 2004 19:03:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAD0B43D2D; Tue, 13 Apr 2004 19:03:33 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E23XGe081141; Tue, 13 Apr 2004 19:03:33 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E23XN2081140; Tue, 13 Apr 2004 19:03:33 -0700 (PDT) (envelope-from njl) Message-Id: <200404140203.i3E23XN2081140@repoman.freebsd.org> From: Nate Lawson Date: Tue, 13 Apr 2004 19:03:33 -0700 (PDT) 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/acpica acpica_prep.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, 14 Apr 2004 02:03:33 -0000 njl 2004/04/13 19:03:33 PDT FreeBSD src repository Modified files: sys/contrib/dev/acpica acpica_prep.sh Log: Add another cleanfile for future imports. Revision Changes Path 1.7 +3 -3 src/sys/contrib/dev/acpica/acpica_prep.sh From owner-cvs-all@FreeBSD.ORG Tue Apr 13 19: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 2F41F16A4CE; Tue, 13 Apr 2004 19:10:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 244CD43D2F; Tue, 13 Apr 2004 19:10:50 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E2AnGe081448; Tue, 13 Apr 2004 19:10:49 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E2AnLT081447; Tue, 13 Apr 2004 19:10:49 -0700 (PDT) (envelope-from njl) Message-Id: <200404140210.i3E2AnLT081447@repoman.freebsd.org> From: Nate Lawson Date: Tue, 13 Apr 2004 19:10:49 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: INTEL Subject: cvs commit: src/sys/contrib/dev/acpica - 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, 14 Apr 2004 02:10:50 -0000 njl 2004/04/13 19:10:49 PDT FreeBSD src repository src/sys/contrib/dev/acpica - Imported sources Update of /home/ncvs/src/sys/contrib/dev/acpica In directory repoman.freebsd.org:/tmp/cvs-serv81310 Log Message: Import ACPI-CA 20040402 distribution. Status: Vendor Tag: INTEL Release Tags: r20040402 U src/sys/contrib/dev/acpica/CHANGES.txt U src/sys/contrib/dev/acpica/acapps.h C src/sys/contrib/dev/acpica/acconfig.h U src/sys/contrib/dev/acpica/acdebug.h U src/sys/contrib/dev/acpica/acdisasm.h U src/sys/contrib/dev/acpica/acdispat.h U src/sys/contrib/dev/acpica/acefi.h U src/sys/contrib/dev/acpica/acenv.h U src/sys/contrib/dev/acpica/acevents.h U src/sys/contrib/dev/acpica/acexcep.h U src/sys/contrib/dev/acpica/acfreebsd.h U src/sys/contrib/dev/acpica/acgcc.h U src/sys/contrib/dev/acpica/acglobal.h U src/sys/contrib/dev/acpica/achware.h U src/sys/contrib/dev/acpica/acinterp.h U src/sys/contrib/dev/acpica/aclocal.h U src/sys/contrib/dev/acpica/acmacros.h U src/sys/contrib/dev/acpica/acnamesp.h U src/sys/contrib/dev/acpica/acobject.h U src/sys/contrib/dev/acpica/acoutput.h U src/sys/contrib/dev/acpica/acparser.h U src/sys/contrib/dev/acpica/acpi.h U src/sys/contrib/dev/acpica/acpiosxf.h U src/sys/contrib/dev/acpica/acpixf.h U src/sys/contrib/dev/acpica/acresrc.h U src/sys/contrib/dev/acpica/acstruct.h U src/sys/contrib/dev/acpica/actables.h U src/sys/contrib/dev/acpica/actbl.h U src/sys/contrib/dev/acpica/actbl1.h U src/sys/contrib/dev/acpica/actbl2.h U src/sys/contrib/dev/acpica/actypes.h C src/sys/contrib/dev/acpica/acutils.h U src/sys/contrib/dev/acpica/amlcode.h U src/sys/contrib/dev/acpica/amlresrc.h U src/sys/contrib/dev/acpica/dbcmds.c U src/sys/contrib/dev/acpica/dbdisply.c U src/sys/contrib/dev/acpica/dbexec.c U src/sys/contrib/dev/acpica/dbfileio.c U src/sys/contrib/dev/acpica/dbhistry.c U src/sys/contrib/dev/acpica/dbinput.c U src/sys/contrib/dev/acpica/dbstats.c U src/sys/contrib/dev/acpica/dbutils.c U src/sys/contrib/dev/acpica/dbxface.c U src/sys/contrib/dev/acpica/dmbuffer.c U src/sys/contrib/dev/acpica/dmnames.c U src/sys/contrib/dev/acpica/dmobject.c U src/sys/contrib/dev/acpica/dmopcode.c U src/sys/contrib/dev/acpica/dmresrc.c U src/sys/contrib/dev/acpica/dmresrcl.c U src/sys/contrib/dev/acpica/evgpe.c U src/sys/contrib/dev/acpica/dmresrcs.c U src/sys/contrib/dev/acpica/dmutils.c U src/sys/contrib/dev/acpica/dmwalk.c U src/sys/contrib/dev/acpica/dsfield.c U src/sys/contrib/dev/acpica/dsinit.c U src/sys/contrib/dev/acpica/dsmethod.c U src/sys/contrib/dev/acpica/dsmthdat.c U src/sys/contrib/dev/acpica/dsobject.c U src/sys/contrib/dev/acpica/dsopcode.c U src/sys/contrib/dev/acpica/dsutils.c U src/sys/contrib/dev/acpica/dswexec.c U src/sys/contrib/dev/acpica/dswload.c U src/sys/contrib/dev/acpica/dswscope.c U src/sys/contrib/dev/acpica/dswstate.c U src/sys/contrib/dev/acpica/evevent.c U src/sys/contrib/dev/acpica/evgpeblk.c U src/sys/contrib/dev/acpica/evmisc.c U src/sys/contrib/dev/acpica/evregion.c U src/sys/contrib/dev/acpica/evrgnini.c U src/sys/contrib/dev/acpica/evsci.c U src/sys/contrib/dev/acpica/evxface.c U src/sys/contrib/dev/acpica/evxfevnt.c U src/sys/contrib/dev/acpica/evxfregn.c U src/sys/contrib/dev/acpica/exconfig.c U src/sys/contrib/dev/acpica/exconvrt.c U src/sys/contrib/dev/acpica/hwgpe.c U src/sys/contrib/dev/acpica/excreate.c U src/sys/contrib/dev/acpica/exdump.c U src/sys/contrib/dev/acpica/exfield.c C src/sys/contrib/dev/acpica/exfldio.c U src/sys/contrib/dev/acpica/exmisc.c U src/sys/contrib/dev/acpica/exmutex.c U src/sys/contrib/dev/acpica/exnames.c U src/sys/contrib/dev/acpica/exoparg1.c U src/sys/contrib/dev/acpica/exoparg2.c U src/sys/contrib/dev/acpica/exoparg3.c U src/sys/contrib/dev/acpica/exoparg6.c U src/sys/contrib/dev/acpica/exprep.c U src/sys/contrib/dev/acpica/exregion.c U src/sys/contrib/dev/acpica/exresnte.c U src/sys/contrib/dev/acpica/exresolv.c U src/sys/contrib/dev/acpica/exresop.c U src/sys/contrib/dev/acpica/exstore.c U src/sys/contrib/dev/acpica/exstoren.c U src/sys/contrib/dev/acpica/exstorob.c U src/sys/contrib/dev/acpica/exsystem.c U src/sys/contrib/dev/acpica/exutils.c U src/sys/contrib/dev/acpica/hwacpi.c U src/sys/contrib/dev/acpica/hwregs.c C src/sys/contrib/dev/acpica/hwsleep.c U src/sys/contrib/dev/acpica/hwtimer.c U src/sys/contrib/dev/acpica/nsaccess.c U src/sys/contrib/dev/acpica/nsalloc.c U src/sys/contrib/dev/acpica/nsdump.c U src/sys/contrib/dev/acpica/nsdumpdv.c U src/sys/contrib/dev/acpica/nseval.c U src/sys/contrib/dev/acpica/nsinit.c U src/sys/contrib/dev/acpica/nsload.c U src/sys/contrib/dev/acpica/nsnames.c U src/sys/contrib/dev/acpica/nsobject.c U src/sys/contrib/dev/acpica/nsparse.c U src/sys/contrib/dev/acpica/nssearch.c U src/sys/contrib/dev/acpica/nsutils.c U src/sys/contrib/dev/acpica/nswalk.c U src/sys/contrib/dev/acpica/nsxfeval.c U src/sys/contrib/dev/acpica/nsxfname.c U src/sys/contrib/dev/acpica/nsxfobj.c U src/sys/contrib/dev/acpica/osunixxf.c U src/sys/contrib/dev/acpica/psargs.c U src/sys/contrib/dev/acpica/psopcode.c U src/sys/contrib/dev/acpica/psparse.c U src/sys/contrib/dev/acpica/psscope.c U src/sys/contrib/dev/acpica/pstree.c U src/sys/contrib/dev/acpica/psutils.c U src/sys/contrib/dev/acpica/pswalk.c U src/sys/contrib/dev/acpica/psxface.c U src/sys/contrib/dev/acpica/rsaddr.c U src/sys/contrib/dev/acpica/rscalc.c U src/sys/contrib/dev/acpica/rscreate.c U src/sys/contrib/dev/acpica/rsdump.c U src/sys/contrib/dev/acpica/rsio.c U src/sys/contrib/dev/acpica/rsirq.c U src/sys/contrib/dev/acpica/rslist.c U src/sys/contrib/dev/acpica/rsmemory.c U src/sys/contrib/dev/acpica/rsmisc.c U src/sys/contrib/dev/acpica/rsutils.c U src/sys/contrib/dev/acpica/rsxface.c U src/sys/contrib/dev/acpica/tbconvrt.c U src/sys/contrib/dev/acpica/tbget.c U src/sys/contrib/dev/acpica/tbgetall.c U src/sys/contrib/dev/acpica/tbinstal.c U src/sys/contrib/dev/acpica/tbrsdt.c U src/sys/contrib/dev/acpica/tbutils.c U src/sys/contrib/dev/acpica/tbxface.c U src/sys/contrib/dev/acpica/tbxfroot.c U src/sys/contrib/dev/acpica/utalloc.c U src/sys/contrib/dev/acpica/utclib.c U src/sys/contrib/dev/acpica/utcopy.c U src/sys/contrib/dev/acpica/utdebug.c U src/sys/contrib/dev/acpica/utdelete.c U src/sys/contrib/dev/acpica/uteval.c C src/sys/contrib/dev/acpica/utglobal.c U src/sys/contrib/dev/acpica/utinit.c U src/sys/contrib/dev/acpica/utmath.c U src/sys/contrib/dev/acpica/utmisc.c U src/sys/contrib/dev/acpica/utobject.c U src/sys/contrib/dev/acpica/utxface.c U src/sys/contrib/dev/acpica/common/adisasm.c U src/sys/contrib/dev/acpica/common/getopt.c U src/sys/contrib/dev/acpica/compiler/aslanalyze.c U src/sys/contrib/dev/acpica/compiler/aslcodegen.c U src/sys/contrib/dev/acpica/compiler/aslcompile.c U src/sys/contrib/dev/acpica/compiler/aslcompiler.h U src/sys/contrib/dev/acpica/compiler/aslcompiler.l U src/sys/contrib/dev/acpica/compiler/aslcompiler.y U src/sys/contrib/dev/acpica/compiler/aslerror.c U src/sys/contrib/dev/acpica/compiler/aslfiles.c U src/sys/contrib/dev/acpica/compiler/aslfold.c U src/sys/contrib/dev/acpica/compiler/aslglobal.h U src/sys/contrib/dev/acpica/compiler/asllength.c U src/sys/contrib/dev/acpica/compiler/asllisting.c U src/sys/contrib/dev/acpica/compiler/aslload.c U src/sys/contrib/dev/acpica/compiler/asllookup.c U src/sys/contrib/dev/acpica/compiler/aslmain.c U src/sys/contrib/dev/acpica/compiler/aslmap.c U src/sys/contrib/dev/acpica/compiler/aslopcodes.c U src/sys/contrib/dev/acpica/compiler/asloperands.c U src/sys/contrib/dev/acpica/compiler/aslopt.c U src/sys/contrib/dev/acpica/compiler/aslresource.c U src/sys/contrib/dev/acpica/compiler/aslrestype1.c U src/sys/contrib/dev/acpica/compiler/aslrestype2.c U src/sys/contrib/dev/acpica/compiler/aslstubs.c U src/sys/contrib/dev/acpica/compiler/asltransform.c U src/sys/contrib/dev/acpica/compiler/asltree.c U src/sys/contrib/dev/acpica/compiler/asltypes.h U src/sys/contrib/dev/acpica/compiler/aslutils.c 5 conflicts created by this import. Use the following command to help the merge: cvs checkout -jINTEL:yesterday -jINTEL src/sys/contrib/dev/acpica From owner-cvs-all@FreeBSD.ORG Tue Apr 13 19: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 E878B16A4CE; Tue, 13 Apr 2004 19:12:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAD8D43D2D; Tue, 13 Apr 2004 19:12:14 -0700 (PDT) (envelope-from vkashyap@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E2CEGe083080; Tue, 13 Apr 2004 19:12:14 -0700 (PDT) (envelope-from vkashyap@repoman.freebsd.org) Received: (from vkashyap@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E2CEb6083076; Tue, 13 Apr 2004 19:12:14 -0700 (PDT) (envelope-from vkashyap) Message-Id: <200404140212.i3E2CEb6083076@repoman.freebsd.org> From: Vinod Kashyap Date: Tue, 13 Apr 2004 19:12:14 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 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: Wed, 14 Apr 2004 02:12:15 -0000 vkashyap 2004/04/13 19:12:14 PDT FreeBSD src repository Added files: (Branch: RELENG_4) share/man/man4 twa.4 Log: Adding man page for 3ware's 9000 series storage controller driver (twa) into 4.x. Reviewed by: ru Approved by: re Revision Changes Path 1.1.2.1 +86 -0 src/share/man/man4/twa.4 (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 19:14: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 CBEAA16A4CE; Tue, 13 Apr 2004 19:14:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ABA1143D1F; Tue, 13 Apr 2004 19:14:51 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E2EpGe083348; Tue, 13 Apr 2004 19:14:51 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E2EpQs083347; Tue, 13 Apr 2004 19:14:51 -0700 (PDT) (envelope-from njl) Message-Id: <200404140214.i3E2EpQs083347@repoman.freebsd.org> From: Nate Lawson Date: Tue, 13 Apr 2004 19:14:51 -0700 (PDT) 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/acpica acconfig.h acutils.h utglobal.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 02:14:52 -0000 njl 2004/04/13 19:14:51 PDT FreeBSD src repository Modified files: sys/contrib/dev/acpica acconfig.h acutils.h utglobal.c Log: Check in unmodified files off the vendor branch. Revision Changes Path 1.29 +2 -2 src/sys/contrib/dev/acpica/acconfig.h 1.12 +2 -1 src/sys/contrib/dev/acpica/acutils.h 1.14 +38 -26 src/sys/contrib/dev/acpica/utglobal.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 19:15: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 4B22316A4EE; Tue, 13 Apr 2004 19:15:31 -0700 (PDT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9AB3343D2D; Tue, 13 Apr 2004 19:15:26 -0700 (PDT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 9C4AB5C7E4; Tue, 13 Apr 2004 19:15:26 -0700 (PDT) Date: Tue, 13 Apr 2004 19:15:26 -0700 From: Alfred Perlstein To: Tim Kientzle Message-ID: <20040414021526.GB63832@elvis.mu.org> References: <200404140040.i3E0esil061104@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404140040.i3E0esil061104@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/usr.bin/tar bsdtar.c bsdtar.h 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: Wed, 14 Apr 2004 02:15:31 -0000 While I applaud the effort here, it is a major violation of C POLA to have compilable code within a header file. I think you should basically move all the variables instantiated in bsdtar.h to their appropriate .c files. thank you, -Alfred * Tim Kientzle [040413 17:41] wrote: > kientzle 2004/04/13 17:40:54 PDT > > FreeBSD src repository > > Modified files: > usr.bin/tar bsdtar.c bsdtar.h write.c > Log: > A simple cache of uid->uname lookups and gid->gname lookups eliminates > almost 1/2 of the CPU time required to create an uncompressed archive > and makes a noticable reduction in wallclock time. > > Revision Changes Path > 1.6 +11 -0 src/usr.bin/tar/bsdtar.c > 1.3 +14 -0 src/usr.bin/tar/bsdtar.h > 1.7 +35 -12 src/usr.bin/tar/write.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 19:16: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 6C13E16A4CE; Tue, 13 Apr 2004 19:16:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DE3843D1F; Tue, 13 Apr 2004 19:16:23 -0700 (PDT) (envelope-from vkashyap@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E2GNGe083559; Tue, 13 Apr 2004 19:16:23 -0700 (PDT) (envelope-from vkashyap@repoman.freebsd.org) Received: (from vkashyap@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E2GNX8083558; Tue, 13 Apr 2004 19:16:23 -0700 (PDT) (envelope-from vkashyap) Message-Id: <200404140216.i3E2GNX8083558@repoman.freebsd.org> From: Vinod Kashyap Date: Tue, 13 Apr 2004 19:16:23 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/conf majors X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 02:16:23 -0000 vkashyap 2004/04/13 19:16:23 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/conf majors Log: Removed old, redundant entry for twa. Reviewed by: re Approved by: re Revision Changes Path 1.98.2.23 +0 -1 src/sys/conf/majors From owner-cvs-all@FreeBSD.ORG Tue Apr 13 19:17: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 87B2016A4CE; Tue, 13 Apr 2004 19:17:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 69DAC43D2F; Tue, 13 Apr 2004 19:17:00 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E2H0Ge083591; Tue, 13 Apr 2004 19:17:00 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E2H0HT083590; Tue, 13 Apr 2004 19:17:00 -0700 (PDT) (envelope-from njl) Message-Id: <200404140217.i3E2H0HT083590@repoman.freebsd.org> From: Nate Lawson Date: Tue, 13 Apr 2004 19:17:00 -0700 (PDT) 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/acpica exfldio.c hwsleep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 02:17:00 -0000 njl 2004/04/13 19:17:00 PDT FreeBSD src repository Modified files: sys/contrib/dev/acpica exfldio.c hwsleep.c Log: Check in files with local changes: * In the resume path, give up after waiting for a while for WAK_STS to be set. Some BIOSs never set it. * Allow access to the field if it is within the region size rounded up to a multiple of the access byte width. This overcomes "off-by-one" programming errors in the AML often found in Toshiba laptops. Revision Changes Path 1.21 +2 -2 src/sys/contrib/dev/acpica/exfldio.c 1.15 +18 -6 src/sys/contrib/dev/acpica/hwsleep.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 19:20: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 3360316A4CE; Tue, 13 Apr 2004 19:20:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1509043D31; Tue, 13 Apr 2004 19:20:02 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E2K1Ge083689; Tue, 13 Apr 2004 19:20:01 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E2K1Mx083688; Tue, 13 Apr 2004 19:20:01 -0700 (PDT) (envelope-from imp) Message-Id: <200404140220.i3E2K1Mx083688@repoman.freebsd.org> From: Warner Losh Date: Tue, 13 Apr 2004 19:20:01 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sx sx_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: Wed, 14 Apr 2004 02:20:02 -0000 imp 2004/04/13 19:20:01 PDT FreeBSD src repository Modified files: sys/dev/sx sx_pci.c Log: Prefer uint16_t to ushort. Submitted by: bde Revision Changes Path 1.3 +1 -1 src/sys/dev/sx/sx_pci.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 19: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 8C1BC16A4CE; Tue, 13 Apr 2004 19:20:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D7F943D41; Tue, 13 Apr 2004 19:20:36 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E2KaGe083777; Tue, 13 Apr 2004 19:20:36 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E2KaH4083776; Tue, 13 Apr 2004 19:20:36 -0700 (PDT) (envelope-from njl) Message-Id: <200404140220.i3E2KaH4083776@repoman.freebsd.org> From: Nate Lawson Date: Tue, 13 Apr 2004 19:20:35 -0700 (PDT) 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: Wed, 14 Apr 2004 02:20:36 -0000 njl 2004/04/13 19:20:35 PDT FreeBSD src repository Modified files: sys/dev/acpica acpi_ec.c Log: Update the name for edge triggered for the 20040402 import. Revision Changes Path 1.47 +1 -1 src/sys/dev/acpica/acpi_ec.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 19: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 EC30416A4CE; Tue, 13 Apr 2004 19:25:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC23D43D4C; Tue, 13 Apr 2004 19:25:31 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E2PVGe085711; Tue, 13 Apr 2004 19:25:31 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E2PVaD085710; Tue, 13 Apr 2004 19:25:31 -0700 (PDT) (envelope-from imp) Message-Id: <200404140225.i3E2PVaD085710@repoman.freebsd.org> From: Warner Losh Date: Tue, 13 Apr 2004 19:25:31 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/pc98/conf NOTES src/sys/i386/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, 14 Apr 2004 02:25:32 -0000 imp 2004/04/13 19:25:31 PDT FreeBSD src repository Modified files: sys/pc98/conf NOTES sys/i386/conf NOTES Log: sx was randomly added to NOTES. Instead, place it in the misc hardware in properly sorted order. Fix a little disorder while I'm here. Submitted by: bde Revision Changes Path 1.1153 +3 -4 src/sys/i386/conf/NOTES 1.35 +7 -8 src/sys/pc98/conf/NOTES From owner-cvs-all@FreeBSD.ORG Tue Apr 13 19:30: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 DD6E816A4CE for ; Tue, 13 Apr 2004 19:30:52 -0700 (PDT) Received: from rwcrmhc12.comcast.net (rwcrmhc12.comcast.net [216.148.227.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id B84B243D1F for ; Tue, 13 Apr 2004 19:30:50 -0700 (PDT) (envelope-from underway@comcast.net) Received: from localhost.localdomain (c-24-17-47-224.client.comcast.net[24.17.47.224]) by comcast.net (rwcrmhc12) with ESMTP id <20040414023048014001grffe>; Wed, 14 Apr 2004 02:30:50 +0000 Received: from localhost.localdomain (localhost [127.0.0.1]) i3E2UStq034323 for ; Tue, 13 Apr 2004 19:30:28 -0700 (PDT) (envelope-from underway@comcast.net) Received: (from jojo@localhost) by localhost.localdomain (8.12.11/8.12.11/Submit) id i3E2UL0K034322; Tue, 13 Apr 2004 19:30:21 -0700 (PDT) (envelope-from underway@comcast.net) To: cvs-all@freebsd.org From: underway@comcast.net (Gary W. Swearingen) Date: Tue, 13 Apr 2004 19:30:21 -0700 Message-ID: User-Agent: Gnus/5.1002 (Gnus v5.10.2) XEmacs/21.4 (Reasonable Discussion, berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: cvs commit: src/sys/modules/random Makefile src/sys/dev/random harvest.c hash.c hash.h nehemiah.c nehemiah.h probe.c randomdev.c randomdev.h randomdev_soft.c randomdev_soft.h yar X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 02:30:53 -0000 (I'm sorry if I didn't manange to get this into the appropriate thread; I'm not subscribed.) Does a good PRNG (and Yarrow) attempt to generate numbers that look truly random (albeit with a very long repeat) or does it try to generate numbers that are better (and thus different) than truly random numbers, in some ways that make sense for common uses? For instance, do good PRNGs give testably-fewer long sequences of zeroes or ones than you'd get from a truly RNG? (Some users hope so.) If there's supposed to be a difference, then would it be useful to offer a best attempt at truly RNs? I don't know who needs them, though, and I have no idea what post processing of the VIA HW RNG would be needed for that, if any. Maybe none. Also in that case, common users should definitely have some post- processing to remove the long strings of zeros, etc., to make the HW RNG look more like a good PRNG. (I wonder if VIA RNG's "string filter" has something to do with avoiding long strings of zeros or ones, but I don't care enough to look, since it probably wouldn't be the best way to handle the problem (?) in FreeBSD.) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 19:48: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 AF41B16A4CE; Tue, 13 Apr 2004 19:48:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 905D543D53; Tue, 13 Apr 2004 19:48:05 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E2m5Ge089813; Tue, 13 Apr 2004 19:48:05 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E2m5si089812; Tue, 13 Apr 2004 19:48:05 -0700 (PDT) (envelope-from linimon) Message-Id: <200404140248.i3E2m5si089812@repoman.freebsd.org> From: Mark Linimon Date: Tue, 13 Apr 2004 19:48:05 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/zpygresqlda 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, 14 Apr 2004 02:48:05 -0000 linimon 2004/04/13 19:48:05 PDT FreeBSD ports repository Modified files: databases/zpygresqlda Makefile Log: Fix mastersite and mark deprecated. The distfile has not been updated since 1999, and still depends on obsolete versions of Zope and Python. Other alternatives are available from zope.org. Revision Changes Path 1.17 +4 -1 ports/databases/zpygresqlda/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 19: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 E042316A4CE; Tue, 13 Apr 2004 19:54:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0B3F43D2D; Tue, 13 Apr 2004 19:54:22 -0700 (PDT) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E2sMGe091739; Tue, 13 Apr 2004 19:54:22 -0700 (PDT) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E2sMkx091738; Tue, 13 Apr 2004 19:54:22 -0700 (PDT) (envelope-from perky) Message-Id: <200404140254.i3E2sMkx091738@repoman.freebsd.org> From: Hye-Shik Chang Date: Tue, 13 Apr 2004 19:54:22 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/zope 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, 14 Apr 2004 02:54:23 -0000 perky 2004/04/13 19:54:22 PDT FreeBSD ports repository Modified files: www/zope Makefile Log: Assign maintainership to Gerhard Schmidt who have sent previous update PR. Submitted by: Gerhard Schmidt Revision Changes Path 1.56 +1 -1 ports/www/zope/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 19: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 3F3D516A4CE; Tue, 13 Apr 2004 19:56:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1FC5F43D2D; Tue, 13 Apr 2004 19:56:33 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E2uWGe091878; Tue, 13 Apr 2004 19:56:32 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E2uWMF091877; Tue, 13 Apr 2004 19:56:32 -0700 (PDT) (envelope-from kris) Message-Id: <200404140256.i3E2uWMF091877@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 19:56:32 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/ufmcontrol-i18n 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, 14 Apr 2004 02:56:33 -0000 kris 2004/04/13 19:56:32 PDT FreeBSD ports repository Modified files: audio/ufmcontrol-i18n pkg-plist Log: Fix typo in previous. Pointy hat to: kris Revision Changes Path 1.4 +1 -1 ports/audio/ufmcontrol-i18n/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 20:03: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 49E4416A4CE; Tue, 13 Apr 2004 20:03:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2ABCF43D1F; Tue, 13 Apr 2004 20:03:15 -0700 (PDT) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E33EGe094781; Tue, 13 Apr 2004 20:03:14 -0700 (PDT) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E33EMq094780; Tue, 13 Apr 2004 20:03:14 -0700 (PDT) (envelope-from perky) Message-Id: <200404140303.i3E33EMq094780@repoman.freebsd.org> From: Hye-Shik Chang Date: Tue, 13 Apr 2004 20:03:14 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/newt 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, 14 Apr 2004 03:03:15 -0000 perky 2004/04/13 20:03:14 PDT FreeBSD ports repository Modified files: devel/newt Makefile Log: Use OSVERSION instead of grep'ping libc.so to detect an existence of wcwidth(3). Suggested by: kris Revision Changes Path 1.25 +5 -5 ports/devel/newt/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 20: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 ED24A16A4CE for ; Tue, 13 Apr 2004 20:18:24 -0700 (PDT) Received: from root.org (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id B685943D58 for ; Tue, 13 Apr 2004 20:18:24 -0700 (PDT) (envelope-from nate@root.org) Received: (qmail 79381 invoked by uid 1000); 14 Apr 2004 03:18:26 -0000 Date: Tue, 13 Apr 2004 20:18:26 -0700 (PDT) From: Nate Lawson To: cvs-all@FreeBSD.org, cvs-src@FreeBSD.org, src-committers@FreeBSD.org In-Reply-To: <20040414021104.4552016A530@hub.freebsd.org> Message-ID: <20040413201252.U79128@root.org> References: <20040414021104.4552016A530@hub.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: Re: cvs commit: src/sys/contrib/dev/acpica - 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, 14 Apr 2004 03:18:25 -0000 On Tue, 13 Apr 2004, Nate Lawson wrote: > njl 2004/04/13 19:10:49 PDT > > FreeBSD src repository > > src/sys/contrib/dev/acpica - Imported sources > Update of /home/ncvs/src/sys/contrib/dev/acpica > In directory repoman.freebsd.org:/tmp/cvs-serv81310 > > Log Message: > Import ACPI-CA 20040402 distribution. > > Status: > > Vendor Tag: INTEL > Release Tags: r20040402 The major change in this import is the addition of differentiation between wake and runtime GPEs. Wake GPEs are now disabled at runtime, which should help users with SCI interrupt storms. There is one problem that should be solved by the next import for GPEs that are shared between wake/runtime. However, this is still better than before. -Nate From owner-cvs-all@FreeBSD.ORG Tue Apr 13 20: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 F203F16A4CE; Tue, 13 Apr 2004 20:27:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2FEA43D46; Tue, 13 Apr 2004 20:27:30 -0700 (PDT) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E3RUGe098865; Tue, 13 Apr 2004 20:27:30 -0700 (PDT) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E3RUHb098864; Tue, 13 Apr 2004 20:27:30 -0700 (PDT) (envelope-from perky) Message-Id: <200404140327.i3E3RUHb098864@repoman.freebsd.org> From: Hye-Shik Chang Date: Tue, 13 Apr 2004 20:27:30 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/astro/py-metar 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, 14 Apr 2004 03:27:31 -0000 perky 2004/04/13 20:27:30 PDT FreeBSD ports repository Modified files: astro/py-metar pkg-descr Log: WWW site is moved. Revision Changes Path 1.3 +1 -1 ports/astro/py-metar/pkg-descr From owner-cvs-all@FreeBSD.ORG Tue Apr 13 20:30: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 6037516A4CE; Tue, 13 Apr 2004 20:30:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 405CC43D41; Tue, 13 Apr 2004 20:30:10 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E3UAGe098999; Tue, 13 Apr 2004 20:30:10 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E3U93o098998; Tue, 13 Apr 2004 20:30:09 -0700 (PDT) (envelope-from njl) Message-Id: <200404140330.i3E3U93o098998@repoman.freebsd.org> From: Nate Lawson Date: Tue, 13 Apr 2004 20:30:09 -0700 (PDT) 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: Wed, 14 Apr 2004 03:30:10 -0000 njl 2004/04/13 20:30:09 PDT FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: Use TRUE for a boolean and a style nit. Revision Changes Path 1.137 +1 -2 src/sys/dev/acpica/acpi.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 20: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 ADF3F16A4CE; Tue, 13 Apr 2004 20:32:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E55A43D2D; Tue, 13 Apr 2004 20:32:01 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E3W1Ge000617; Tue, 13 Apr 2004 20:32:01 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E3W1Yr000613; Tue, 13 Apr 2004 20:32:01 -0700 (PDT) (envelope-from njl) Message-Id: <200404140332.i3E3W1Yr000613@repoman.freebsd.org> From: Nate Lawson Date: Tue, 13 Apr 2004 20:32:01 -0700 (PDT) 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: Wed, 14 Apr 2004 03:32:01 -0000 njl 2004/04/13 20:32:01 PDT FreeBSD src repository Modified files: sys/i386/acpica acpi_toshiba.c Log: Use METHOD_VIDEO instead of the method string itself. Pointed out by: Andrew Thompson Revision Changes Path 1.7 +1 -1 src/sys/i386/acpica/acpi_toshiba.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 20:33: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 C0FDC16A4CE; Tue, 13 Apr 2004 20:33:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A19F343D53; Tue, 13 Apr 2004 20:33:40 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E3XeGe001048; Tue, 13 Apr 2004 20:33:40 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E3XeX4001047; Tue, 13 Apr 2004 20:33:40 -0700 (PDT) (envelope-from kris) Message-Id: <200404140333.i3E3XeX4001047@repoman.freebsd.org> From: Kris Kennaway Date: Tue, 13 Apr 2004 20:33:40 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/yap 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, 14 Apr 2004 03:33:40 -0000 kris 2004/04/13 20:33:40 PDT FreeBSD ports repository Modified files: lang/yap Makefile Log: Info files cannot be installed in post-install Revision Changes Path 1.14 +1 -1 ports/lang/yap/Makefile From owner-cvs-all@FreeBSD.ORG Tue Apr 13 20:34: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 DA65E16A4CE; Tue, 13 Apr 2004 20:34:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC31C43D2D; Tue, 13 Apr 2004 20:34:11 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E3YBGe001092; Tue, 13 Apr 2004 20:34:11 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E3YBC1001091; Tue, 13 Apr 2004 20:34:11 -0700 (PDT) (envelope-from njl) Message-Id: <200404140334.i3E3YBC1001091@repoman.freebsd.org> From: Nate Lawson Date: Tue, 13 Apr 2004 20:34:11 -0700 (PDT) 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, 14 Apr 2004 03:34:12 -0000 njl 2004/04/13 20:34:11 PDT FreeBSD src repository Modified files: sys/dev/acpica acpi_pci_link.c Log: Style and printf message cleanups. Revision Changes Path 1.14 +79 -138 src/sys/dev/acpica/acpi_pci_link.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 20:39: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 D663116A4CE; Tue, 13 Apr 2004 20:39:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B699743D39; Tue, 13 Apr 2004 20:39:08 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E3d8Ge001325; Tue, 13 Apr 2004 20:39:08 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E3d8NV001324; Tue, 13 Apr 2004 20:39:08 -0700 (PDT) (envelope-from njl) Message-Id: <200404140339.i3E3d8NV001324@repoman.freebsd.org> From: Nate Lawson Date: Tue, 13 Apr 2004 20:39:08 -0700 (PDT) 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 src/sys/dev/acpica/Osd OsdDebug.c OsdHardware.c OsdMemory.c OsdStream.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 03:39:09 -0000 njl 2004/04/13 20:39:08 PDT FreeBSD src repository Modified files: sys/dev/acpica acpivar.h sys/dev/acpica/Osd OsdDebug.c OsdHardware.c OsdMemory.c OsdStream.c Log: Style cleanups to reduce diffs to locking tree. Revision Changes Path 1.6 +11 -19 src/sys/dev/acpica/Osd/OsdDebug.c 1.13 +55 -59 src/sys/dev/acpica/Osd/OsdHardware.c 1.11 +22 -28 src/sys/dev/acpica/Osd/OsdMemory.c 1.4 +2 -3 src/sys/dev/acpica/Osd/OsdStream.c 1.61 +1 -2 src/sys/dev/acpica/acpivar.h From owner-cvs-all@FreeBSD.ORG Tue Apr 13 20:41: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 0489616A4CE; Tue, 13 Apr 2004 20:41:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D9CEC43D31; Tue, 13 Apr 2004 20:41:06 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E3f6Ge001487; Tue, 13 Apr 2004 20:41:06 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E3f6mR001486; Tue, 13 Apr 2004 20:41:06 -0700 (PDT) (envelope-from njl) Message-Id: <200404140341.i3E3f6mR001486@repoman.freebsd.org> From: Nate Lawson Date: Tue, 13 Apr 2004 20:41:06 -0700 (PDT) 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: Wed, 14 Apr 2004 03:41:07 -0000 njl 2004/04/13 20:41:06 PDT FreeBSD src repository Modified files: sys/dev/acpica/Osd OsdInterrupt.c Log: Style cleanup, plus properly backup partial resource allocation in AcpiOsInstallInterruptHandler() in the case of failure to initialize. Revision Changes Path 1.17 +51 -44 src/sys/dev/acpica/Osd/OsdInterrupt.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 20:43: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 AA2D016A4CE; Tue, 13 Apr 2004 20:43:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C45243D49; Tue, 13 Apr 2004 20:43:07 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E3h7Ge003249; Tue, 13 Apr 2004 20:43:07 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E3h7di003248; Tue, 13 Apr 2004 20:43:07 -0700 (PDT) (envelope-from njl) Message-Id: <200404140343.i3E3h7di003248@repoman.freebsd.org> From: Nate Lawson Date: Tue, 13 Apr 2004 20:43:07 -0700 (PDT) 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 OsdSynch.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 03:43:07 -0000 njl 2004/04/13 20:43:07 PDT FreeBSD src repository Modified files: sys/dev/acpica/Osd OsdSynch.c Log: Style cleanups, use M_ZERO instead of bzero, unify the !semaphore and semaphore return paths. Revision Changes Path 1.19 +43 -44 src/sys/dev/acpica/Osd/OsdSynch.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 20:43: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 923E216A4CE; Tue, 13 Apr 2004 20:43:24 -0700 (PDT) Received: from kientzle.com (h-66-166-149-50.snvacaid.covad.net [66.166.149.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C05843D55; Tue, 13 Apr 2004 20:43:22 -0700 (PDT) (envelope-from tim@kientzle.com) Received: from kientzle.com (p54.kientzle.com [66.166.149.54]) by kientzle.com (8.12.9/8.12.9) with ESMTP id i3E3hL90026239; Tue, 13 Apr 2004 20:43:22 -0700 (PDT) (envelope-from tim@kientzle.com) Message-ID: <407CB356.7060102@kientzle.com> Date: Tue, 13 Apr 2004 20:43:18 -0700 From: Tim Kientzle User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.4) Gecko/20031006 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Alfred Perlstein References: <200404140040.i3E0esil061104@repoman.freebsd.org> <20040414021526.GB63832@elvis.mu.org> In-Reply-To: <20040414021526.GB63832@elvis.mu.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@freebsd.org cc: Tim Kientzle cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/tar bsdtar.c bsdtar.h 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: Wed, 14 Apr 2004 03:43:24 -0000 Huh? Maybe I'm missing something, but I don't see the instantiations to which you refer. I do see a lot of struct definitions, and a handful of function prototypes, but no variable declarations. If I messed up and did accidentally declare a variable, could you please point it out. I honestly can't see it. Tim Alfred Perlstein wrote: > While I applaud the effort here, it is a major violation of C > POLA to have compilable code within a header file. I think you > should basically move all the variables instantiated in bsdtar.h > to their appropriate .c files. > > thank you, > -Alfred > > * Tim Kientzle [040413 17:41] wrote: > >>kientzle 2004/04/13 17:40:54 PDT >> >> FreeBSD src repository >> >> Modified files: >> usr.bin/tar bsdtar.c bsdtar.h write.c >> Log: >> A simple cache of uid->uname lookups and gid->gname lookups eliminates >> almost 1/2 of the CPU time required to create an uncompressed archive >> and makes a noticable reduction in wallclock time. >> >> Revision Changes Path >> 1.6 +11 -0 src/usr.bin/tar/bsdtar.c >> 1.3 +14 -0 src/usr.bin/tar/bsdtar.h >> 1.7 +35 -12 src/usr.bin/tar/write.c > > > From owner-cvs-all@FreeBSD.ORG Tue Apr 13 20:45: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 8F90816A4CE; Tue, 13 Apr 2004 20:45:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70D5743D41; Tue, 13 Apr 2004 20:45:20 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E3jKGe003375; Tue, 13 Apr 2004 20:45:20 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E3jKLd003374; Tue, 13 Apr 2004 20:45:20 -0700 (PDT) (envelope-from njl) Message-Id: <200404140345.i3E3jKLd003374@repoman.freebsd.org> From: Nate Lawson Date: Tue, 13 Apr 2004 20:45:20 -0700 (PDT) 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: Wed, 14 Apr 2004 03:45:20 -0000 njl 2004/04/13 20:45:20 PDT FreeBSD src repository Modified files: sys/dev/acpica/Osd OsdSchedule.c Log: Style cleanups, M_ZERO instead of bzero. Revision Changes Path 1.27 +20 -22 src/sys/dev/acpica/Osd/OsdSchedule.c From owner-cvs-all@FreeBSD.ORG Tue Apr 13 21:42: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 32E8116A4CE; Tue, 13 Apr 2004 21:42:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 14EB843D1D; Tue, 13 Apr 2004 21:42:38 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E4gbGe022200; Tue, 13 Apr 2004 21:42:37 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E4gbs1022199; Tue, 13 Apr 2004 21:42:37 -0700 (PDT) (envelope-from marcus) Message-Id: <200404140442.i3E4gbs1022199@repoman.freebsd.org> From: Joe Marcus Clarke Date: Tue, 13 Apr 2004 21:42:37 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/anjuta/files patch-src_breakpoints.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 04:42:38 -0000 marcus 2004/04/13 21:42:37 PDT FreeBSD ports repository Added files: devel/anjuta/files patch-src_breakpoints.c Log: Fix build on 4.X. Revision Changes Path 1.1 +21 -0 ports/devel/anjuta/files/patch-src_breakpoints.c (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 22:30: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 539F216A4CE; Tue, 13 Apr 2004 22:30:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 34E2743D45; Tue, 13 Apr 2004 22:30:11 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E5UBGe031309; Tue, 13 Apr 2004 22:30:11 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E5UAvf031308; Tue, 13 Apr 2004 22:30:10 -0700 (PDT) (envelope-from linimon) Message-Id: <200404140530.i3E5UAvf031308@repoman.freebsd.org> From: Mark Linimon Date: Tue, 13 Apr 2004 22:30:10 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/unixODBC 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, 14 Apr 2004 05:30:11 -0000 linimon 2004/04/13 22:30:10 PDT FreeBSD ports repository Modified files: databases/unixODBC pkg-plist Log: Per dosirak run, add missing directories to plist. Revision Changes Path 1.19 +1 -0 ports/databases/unixODBC/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 22:46: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 00B6716A4CE; Tue, 13 Apr 2004 22:46:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D60FA43D46; Tue, 13 Apr 2004 22:46:43 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E5khGe035229; Tue, 13 Apr 2004 22:46:43 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E5kh6J035228; Tue, 13 Apr 2004 22:46:43 -0700 (PDT) (envelope-from linimon) Message-Id: <200404140546.i3E5kh6J035228@repoman.freebsd.org> From: Mark Linimon Date: Tue, 13 Apr 2004 22:46:43 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/teapop 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, 14 Apr 2004 05:46:44 -0000 linimon 2004/04/13 22:46:43 PDT FreeBSD ports repository Modified files: mail/teapop pkg-plist Log: Per dosirak run, correct plist. Revision Changes Path 1.5 +1 -0 ports/mail/teapop/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 22:48: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 496FE16A4CE; Tue, 13 Apr 2004 22:48:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A14043D1F; Tue, 13 Apr 2004 22:48:04 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E5m3Ge035276; Tue, 13 Apr 2004 22:48:03 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E5m3O6035275; Tue, 13 Apr 2004 22:48:03 -0700 (PDT) (envelope-from linimon) Message-Id: <200404140548.i3E5m3O6035275@repoman.freebsd.org> From: Mark Linimon Date: Tue, 13 Apr 2004 22:48:03 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/teapop-devel 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, 14 Apr 2004 05:48:04 -0000 linimon 2004/04/13 22:48:03 PDT FreeBSD ports repository Modified files: mail/teapop-devel pkg-plist Log: Per dosirak run, correct plist. Revision Changes Path 1.5 +1 -0 ports/mail/teapop-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 22:51: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 2360316A4CE; Tue, 13 Apr 2004 22:51:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 063EC43D4C; Tue, 13 Apr 2004 22:51:02 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E5p1Ge035491; Tue, 13 Apr 2004 22:51:01 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E5p1Dc035490; Tue, 13 Apr 2004 22:51:01 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404140551.i3E5p1Dc035490@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 13 Apr 2004 22:51:01 -0700 (PDT) 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/arp-sk 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, 14 Apr 2004 05:51:02 -0000 ijliao 2004/04/13 22:51:01 PDT FreeBSD ports repository Modified files: net Makefile Added files: net/arp-sk Makefile distinfo pkg-descr Log: add arp-sk 0.0.15 A tool designed to manipulate ARP tables of all kinds of equipment Revision Changes Path 1.1265 +1 -0 ports/net/Makefile 1.1 +34 -0 ports/net/arp-sk/Makefile (new) 1.1 +2 -0 ports/net/arp-sk/distinfo (new) 1.1 +4 -0 ports/net/arp-sk/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 22:51: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 0D4DA16A4CF; Tue, 13 Apr 2004 22:51:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E3AEC43D5F; Tue, 13 Apr 2004 22:51:11 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E5pBGe035535; Tue, 13 Apr 2004 22:51:11 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E5pBdS035534; Tue, 13 Apr 2004 22:51:11 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404140551.i3E5pBdS035534@repoman.freebsd.org> From: Ying-Chieh Liao Date: Tue, 13 Apr 2004 22:51:11 -0700 (PDT) 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, 14 Apr 2004 05:51:12 -0000 ijliao 2004/04/13 22:51:11 PDT FreeBSD ports repository Modified files: . modules Log: arp-sk --> ports/net/arp-sk Revision Changes Path 1.9900 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Tue Apr 13 23:08: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 6E0C016A4CE; Tue, 13 Apr 2004 23:08:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F8F243D4C; Tue, 13 Apr 2004 23:08:53 -0700 (PDT) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E68rGe040401; Tue, 13 Apr 2004 23:08:53 -0700 (PDT) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E68riv040400; Tue, 13 Apr 2004 23:08:53 -0700 (PDT) (envelope-from perky) Message-Id: <200404140608.i3E68riv040400@repoman.freebsd.org> From: Hye-Shik Chang Date: Tue, 13 Apr 2004 23:08:52 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/archivers/py-tarfile 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, 14 Apr 2004 06:08:53 -0000 perky 2004/04/13 23:08:52 PDT FreeBSD ports repository Modified files: archivers/py-tarfile Makefile distinfo pkg-plist Log: Update to 0.7.2 Revision Changes Path 1.15 +10 -2 ports/archivers/py-tarfile/Makefile 1.13 +2 -2 ports/archivers/py-tarfile/distinfo 1.5 +1 -1 ports/archivers/py-tarfile/pkg-plist From owner-cvs-all@FreeBSD.ORG Tue Apr 13 23:14: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 A821216A4CE; Tue, 13 Apr 2004 23:14:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0D5143D1F; Tue, 13 Apr 2004 23:14:48 -0700 (PDT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E6EmGe042335; Tue, 13 Apr 2004 23:14:48 -0700 (PDT) (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E6EmLZ042334; Tue, 13 Apr 2004 23:14:48 -0700 (PDT) (envelope-from bland) Message-Id: <200404140614.i3E6EmLZ042334@repoman.freebsd.org> From: Alexander Nedotsukov Date: Tue, 13 Apr 2004 23:14:48 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/sound-juicer Makefile distinfo patch-src::cd-drive.c patch-src::dvd_plus_rw_utils.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, 14 Apr 2004 06:14:48 -0000 bland 2004/04/13 23:14:48 PDT FreeBSD ports repository Modified files: audio/sound-juicer Makefile distinfo Removed files: audio/sound-juicer/files patch-configure patch-src::cd-drive.c patch-src::dvd_plus_rw_utils.cpp Log: Update to 0.5.11 PR: 56516 Submitted by: Tom McLaughlin Revision Changes Path 1.11 +1 -2 ports/audio/sound-juicer/Makefile 1.3 +2 -2 ports/audio/sound-juicer/distinfo 1.2 +0 -11 ports/audio/sound-juicer/files/patch-configure (dead) 1.4 +0 -20 ports/audio/sound-juicer/files/patch-src::cd-drive.c (dead) 1.2 +0 -11 ports/audio/sound-juicer/files/patch-src::dvd_plus_rw_utils.cpp (dead) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 23:33: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 C15D216A53B; Tue, 13 Apr 2004 23:33:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A496543D3F; Tue, 13 Apr 2004 23:33:36 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E6XaGe046286; Tue, 13 Apr 2004 23:33:36 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E6Xauf046285; Tue, 13 Apr 2004 23:33:36 -0700 (PDT) (envelope-from erwin) Message-Id: <200404140633.i3E6Xauf046285@repoman.freebsd.org> From: Erwin Lansing Date: Tue, 13 Apr 2004 23:33:36 -0700 (PDT) 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-SNPP 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, 14 Apr 2004 06:33:36 -0000 erwin 2004/04/13 23:33:36 PDT FreeBSD ports repository Modified files: net/p5-Net-SNPP Makefile distinfo Log: Update to 1.17 Revision Changes Path 1.10 +1 -1 ports/net/p5-Net-SNPP/Makefile 1.7 +2 -2 ports/net/p5-Net-SNPP/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 13 23:35: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 23D3416A4CE; Tue, 13 Apr 2004 23:35:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07AA843D1F; Tue, 13 Apr 2004 23:35:04 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E6Z3Ge046350; Tue, 13 Apr 2004 23:35:03 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E6Z3qF046349; Tue, 13 Apr 2004 23:35:03 -0700 (PDT) (envelope-from erwin) Message-Id: <200404140635.i3E6Z3qF046349@repoman.freebsd.org> From: Erwin Lansing Date: Tue, 13 Apr 2004 23:35:03 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/p5-Authen-SASL 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, 14 Apr 2004 06:35:04 -0000 erwin 2004/04/13 23:35:03 PDT FreeBSD ports repository Modified files: security/p5-Authen-SASL Makefile distinfo Log: Update to 2.07 Revision Changes Path 1.8 +1 -1 ports/security/p5-Authen-SASL/Makefile 1.7 +2 -2 ports/security/p5-Authen-SASL/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 13 23: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 8486A16A4CE; Tue, 13 Apr 2004 23:37:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65E8143D31; Tue, 13 Apr 2004 23:37:53 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E6brGe046495; Tue, 13 Apr 2004 23:37:53 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E6br7u046494; Tue, 13 Apr 2004 23:37:53 -0700 (PDT) (envelope-from erwin) Message-Id: <200404140637.i3E6br7u046494@repoman.freebsd.org> From: Erwin Lansing Date: Tue, 13 Apr 2004 23:37:53 -0700 (PDT) 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-StackTrace 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, 14 Apr 2004 06:37:53 -0000 erwin 2004/04/13 23:37:53 PDT FreeBSD ports repository Modified files: devel/p5-Devel-StackTrace Makefile distinfo Log: Update to 1.11 Revision Changes Path 1.17 +1 -1 ports/devel/p5-Devel-StackTrace/Makefile 1.12 +2 -2 ports/devel/p5-Devel-StackTrace/distinfo From owner-cvs-all@FreeBSD.ORG Tue Apr 13 23: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 C8A9216A4CE; Tue, 13 Apr 2004 23:48:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB0B143D2F; Tue, 13 Apr 2004 23:48:12 -0700 (PDT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E6mCGe048590; Tue, 13 Apr 2004 23:48:12 -0700 (PDT) (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E6mC9W048589; Tue, 13 Apr 2004 23:48:12 -0700 (PDT) (envelope-from roam) Message-Id: <200404140648.i3E6mC9W048589@repoman.freebsd.org> From: Peter Pentchev Date: Tue, 13 Apr 2004 23:48:12 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/dns/djbdns Makefile ports/dns/djbdns/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: Wed, 14 Apr 2004 06:48:13 -0000 roam 2004/04/13 23:48:12 PDT FreeBSD ports repository Modified files: dns/djbdns Makefile dns/djbdns/files patch-ab Log: Refrain from messing up the permissions on $PREFIX and $PREFIX/bin. Pointed out by: dosirak via kris Revision Changes Path 1.24 +1 -1 ports/dns/djbdns/Makefile 1.2 +10 -5 ports/dns/djbdns/files/patch-ab From owner-cvs-all@FreeBSD.ORG Tue Apr 13 23: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 089E016A4CE; Tue, 13 Apr 2004 23:49:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0269943D41; Tue, 13 Apr 2004 23:49:22 -0700 (PDT) (envelope-from perky@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E6nLGe048690; Tue, 13 Apr 2004 23:49:21 -0700 (PDT) (envelope-from perky@repoman.freebsd.org) Received: (from perky@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E6nLWN048689; Tue, 13 Apr 2004 23:49:21 -0700 (PDT) (envelope-from perky) Message-Id: <200404140649.i3E6nLWN048689@repoman.freebsd.org> From: Hye-Shik Chang Date: Tue, 13 Apr 2004 23:49:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/python Makefile ports/lang/python/files patch-configure ports/lang/python22 Makefile ports/lang/python22/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: Wed, 14 Apr 2004 06:49:22 -0000 perky 2004/04/13 23:49:21 PDT FreeBSD ports repository Modified files: lang/python Makefile lang/python/files patch-configure lang/python22 Makefile Added files: lang/python22/files patch-configure Log: Fixed a bug where the configure script couldn't detect getaddrinfo() properly if the KAME stack had SCTP support. Submitted by: suz Revision Changes Path 1.127 +1 -1 ports/lang/python/Makefile 1.8 +9 -1 ports/lang/python/files/patch-configure 1.108 +1 -1 ports/lang/python22/Makefile 1.3 +10 -0 ports/lang/python22/files/patch-configure (new) From owner-cvs-all@FreeBSD.ORG Tue Apr 13 23:52: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 E8C9C16A4CE; Tue, 13 Apr 2004 23:52:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB78743D39; Tue, 13 Apr 2004 23:52:47 -0700 (PDT) (envelope-from wilko@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E6qlGe050561; Tue, 13 Apr 2004 23:52:47 -0700 (PDT) (envelope-from wilko@repoman.freebsd.org) Received: (from wilko@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E6ql6q050560; Tue, 13 Apr 2004 23:52:47 -0700 (PDT) (envelope-from wilko) Message-Id: <200404140652.i3E6ql6q050560@repoman.freebsd.org> From: Wilko Bulte Date: Tue, 13 Apr 2004 23:52:47 -0700 (PDT) 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: Wed, 14 Apr 2004 06:52:48 -0000 wilko 2004/04/13 23:52:47 PDT FreeBSD src repository Modified files: . access Log: Take chris' commit bit for safekeeping per his request to core. With hat: core-secretary Revision Changes Path 1.658 +0 -1 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Wed Apr 14 00:08: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 6179516A4CE; Wed, 14 Apr 2004 00:08:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43B5E43D1D; Wed, 14 Apr 2004 00:08:10 -0700 (PDT) (envelope-from roam@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E789Ge053880; Wed, 14 Apr 2004 00:08:09 -0700 (PDT) (envelope-from roam@repoman.freebsd.org) Received: (from roam@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E789xD053879; Wed, 14 Apr 2004 00:08:09 -0700 (PDT) (envelope-from roam) Message-Id: <200404140708.i3E789xD053879@repoman.freebsd.org> From: Peter Pentchev Date: Wed, 14 Apr 2004 00:08:09 -0700 (PDT) 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/www/p5-WWW-Curl 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, 14 Apr 2004 07:08:10 -0000 roam 2004/04/14 00:08:09 PDT FreeBSD ports repository Modified files: ftp/curlpp Makefile www/p5-WWW-Curl Makefile Log: Take over maintainership of two ports related to ftp/curl as a preparation for fixing some breakage resulting from curl-7.11.1 finally removing two options marked obsolete for over a year. Revision Changes Path 1.5 +1 -1 ports/ftp/curlpp/Makefile 1.2 +1 -1 ports/www/p5-WWW-Curl/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 00: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 6444716A4CE; Wed, 14 Apr 2004 00:08:29 -0700 (PDT) Received: from buh.cameradicommercio.ro (buh.cameradicommercio.ro [81.196.25.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E90443D2F; Wed, 14 Apr 2004 00:08:29 -0700 (PDT) (envelope-from itetcu@apropo.ro) Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP id D868B622C; Wed, 14 Apr 2004 10:08:15 +0300 (EEST) Received: from localhost (localhost.buh.cameradicommercio.ro [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id DBC25231; Wed, 14 Apr 2004 10:11:31 +0300 (EEST) Received: from it.buh.cameradicommercio.ro ([127.0.0.1])port 10024) with ESMTP id 35156-09; Wed, 14 Apr 2004 10:11:31 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.cameradicommercio.ro [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with SMTP id 5B918213; Wed, 14 Apr 2004 10:11:31 +0300 (EEST) Date: Wed, 14 Apr 2004 10:11:31 +0300 From: Ion-Mihai Tetcu To: Markus Brueffer Message-Id: <20040414101131.09f95c0a@it.buh.cameradicommercio.ro> In-Reply-To: <200404132149.i3DLnuhr017154@repoman.freebsd.org> References: <200404132149.i3DLnuhr017154@repoman.freebsd.org> X-Mailer: Sylpheed version 0.9.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at it.buh.cameradicommercio.ro cc: cvs-ports@FreeBSD.org cc: kde@freebsd.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/net/kopete 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, 14 Apr 2004 07:08:29 -0000 On Tue, 13 Apr 2004 14:49:56 -0700 (PDT) Markus Brueffer wrote: > markus 2004/04/13 14:49:56 PDT > > FreeBSD ports repository > > Modified files: > net/kopete Makefile distinfo pkg-descr pkg-plist > Log: > - Update to version 0.8.0 Please also tell Makefile about this, she is a little jealous you love only the distfile :) > - Assign maintainership to kde@ [1] so kde@ cc'ed -- IOnut Unregistered ;) FreeBSD "user" From owner-cvs-all@FreeBSD.ORG Wed Apr 14 00:12: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 5B9D916A4CE; Wed, 14 Apr 2004 00:12:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DAC443D1D; Wed, 14 Apr 2004 00:12:48 -0700 (PDT) (envelope-from osa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E7ClGe055784; Wed, 14 Apr 2004 00:12:47 -0700 (PDT) (envelope-from osa@repoman.freebsd.org) Received: (from osa@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E7ClaF055783; Wed, 14 Apr 2004 00:12:47 -0700 (PDT) (envelope-from osa) Message-Id: <200404140712.i3E7ClaF055783@repoman.freebsd.org> From: "Sergey A. Osokin" Date: Wed, 14 Apr 2004 00:12:47 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mmosaic 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, 14 Apr 2004 07:12:48 -0000 osa 2004/04/14 00:12:47 PDT FreeBSD ports repository Modified files: www/mmosaic Makefile Log: Use DOCSDIR macro where it possible. Fix dynamic pkg-plist by adding @dirrm %%DOCSDIR%%. Bump PORTREVISION. Revision Changes Path 1.13 +10 -4 ports/www/mmosaic/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 00: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 CC38F16A4CE; Wed, 14 Apr 2004 00:48:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4B8943D5A; Wed, 14 Apr 2004 00:48:06 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E7m4Ge067996; Wed, 14 Apr 2004 00:48:05 -0700 (PDT) (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E7m4HV067995; Wed, 14 Apr 2004 00:48:04 -0700 (PDT) (envelope-from wpaul) Message-Id: <200404140748.i3E7m4HV067995@repoman.freebsd.org> From: Bill Paul Date: Wed, 14 Apr 2004 00:48:04 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/ndis hal_var.h kern_ndis.c ndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrnl.c src/sys/dev/if_ndis if_ndis.c if_ndisvar.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, 14 Apr 2004 07:48:06 -0000 wpaul 2004/04/14 00:48:03 PDT FreeBSD src repository Modified files: sys/compat/ndis hal_var.h kern_ndis.c ndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrnl.c sys/dev/if_ndis if_ndis.c if_ndisvar.h Log: Continue my efforts to imitate Windows as closely as possible by attempting to duplicate Windows spinlocks. Windows spinlocks differ from FreeBSD spinlocks in the way they block preemption. FreeBSD spinlocks use critical_enter(), which masks off _all_ interrupts. This prevents any other threads from being scheduled, but it also prevents ISRs from running. In Windows, preemption is achieved by raising the processor IRQL to DISPATCH_LEVEL, which prevents other threads from preempting you, but does _not_ prevent device ISRs from running. (This is essentially what Solaris calls dispatcher locks.) The Windows spinlock itself (kspin_lock) is just an integer value which is atomically set when you acquire the lock and atomically cleared when you release it. FreeBSD doesn't have IRQ levels, so we have to cheat a little by using thread priorities: normal thread priority is PASSIVE_LEVEL, lowest interrupt thread priority is DISPATCH_LEVEL, highest thread priority is DEVICE_LEVEL (PI_REALTIME) and critical_enter() is HIGH_LEVEL. In practice, only PASSIVE_LEVEL and DISPATCH_LEVEL matter to us. The immediate benefit of all this is that I no longer have to rely on a mutex pool. Now, I'm sure many people will be seized by the urge to criticize me for doing an end run around our own spinlock implementation, but it makes more sense to do it this way. Well, it does to me anyway. Overview of the changes: - Properly implement hal_lock(), hal_unlock(), hal_irql(), hal_raise_irql() and hal_lower_irql() so that they more closely resemble their Windows counterparts. The IRQL is determined by thread priority. - Make ntoskrnl_lock_dpc() and ntoskrnl_unlock_dpc() do what they do in Windows, which is to atomically set/clear the lock value. These routines are designed to be called from DISPATCH_LEVEL, and are actually half of the work involved in acquiring/releasing spinlocks. - Add FASTCALL1(), FASTCALL2() and FASTCALL3() macros/wrappers that allow us to call a _fastcall function in spite of the fact that our version of gcc doesn't support __attribute__((__fastcall__)) yet. The macros take 1, 2 or 3 arguments, respectively. We need to call hal_lock(), hal_unlock() etc... ourselves, but can't really invoke the function directly. I could have just made the underlying functions native routines and put _fastcall wrappers around them for the benefit of Windows binaries, but that would create needless bloat. - Remove ndis_mtxpool and all references to it. We don't need it anymore. - Re-implement the NdisSpinLock routines so that they use hal_lock() and friends like they do in Windows. - Use the new spinlock methods for handling lookaside lists and linked list updates in place of the mutex locks that were there before. - Remove mutex locking from ndis_isr() and ndis_intrhand() since they're already called with ndis_intrmtx held in if_ndis.c. - Put ndis_destroy_lock() code under explicit #ifdef notdef/#endif. It turns out there are some drivers which stupidly free the memory in which their spinlocks reside before calling ndis_destroy_lock() on them (touch-after-free bug). The ADMtek wireless driver is guilty of this faux pas. (Why this doesn't clobber Windows I have no idea.) - Make NdisDprAcquireSpinLock() and NdisDprReleaseSpinLock() into real functions instead of aliasing them to NdisAcaquireSpinLock() and NdisReleaseSpinLock(). The Dpr routines use KeAcquireSpinLockAtDpcLevel() level and KeReleaseSpinLockFromDpcLevel(), which acquires the lock without twiddling the IRQL. - In ndis_linksts_done(), do _not_ call ndis_80211_getstate(). Some drivers may call the status/status done callbacks as the result of setting an OID: ndis_80211_getstate() gets OIDs, which means we might cause the driver to recursively access some of its internal structures unexpectedly. The ndis_ticktask() routine will call ndis_80211_getstate() for us eventually anyway. - Fix the channel setting code a little in ndis_80211_setstate(), and initialize the channel to IEEE80211_CHAN_ANYC. (The Microsoft spec says you're not supposed to twiddle the channel in BSS mode; I may need to enforce this later.) This fixes the problems I was having with the ADMtek adm8211 driver: we were setting the channel to a non-standard default, which would cause it to fail to associate in BSS mode. - Use hal_raise_irql() to raise our IRQL to DISPATCH_LEVEL when calling certain miniport routines, per the Microsoft documentation. I think that's everything. Hopefully, other than fixing the ADMtek driver, there should be no apparent change in behavior. Revision Changes Path 1.3 +8 -0 src/sys/compat/ndis/hal_var.h 1.51 +79 -34 src/sys/compat/ndis/kern_ndis.c 1.25 +5 -0 src/sys/compat/ndis/ndis_var.h 1.13 +32 -7 src/sys/compat/ndis/ntoskrnl_var.h 1.7 +45 -0 src/sys/compat/ndis/pe_var.h 1.10 +118 -19 src/sys/compat/ndis/subr_hal.c 1.55 +68 -21 src/sys/compat/ndis/subr_ndis.c 1.34 +66 -75 src/sys/compat/ndis/subr_ntoskrnl.c 1.53 +40 -46 src/sys/dev/if_ndis/if_ndis.c 1.12 +7 -4 src/sys/dev/if_ndis/if_ndisvar.h From owner-cvs-all@FreeBSD.ORG Wed Apr 14 00:50: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 63D1A16A4CE; Wed, 14 Apr 2004 00:50:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E21B43D31; Wed, 14 Apr 2004 00:50:15 -0700 (PDT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E7oFGe068087; Wed, 14 Apr 2004 00:50:15 -0700 (PDT) (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E7oFQG068086; Wed, 14 Apr 2004 00:50:15 -0700 (PDT) (envelope-from den) Message-Id: <200404140750.i3E7oFQG068086@repoman.freebsd.org> From: Denis Peplin Date: Wed, 14 Apr 2004 00:50:14 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/ru/internal Makefile developer.sgml internal.sgml new-account.sgml photos.sgml policies.sgml rtp.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, 14 Apr 2004 07:50:15 -0000 den 2004/04/14 00:50:14 PDT FreeBSD doc repository Modified files: ru/internal Makefile developer.sgml internal.sgml new-account.sgml photos.sgml rtp.sgml Added files: ru/internal policies.sgml Log: Merge the following from the English version: 1.38 -> 1.40 Makefile 1.28 -> 1.31 developer.sgml 1.26 -> 1.27 internal.sgml 1.6 -> 1.7 new-account.sgml 1.22 -> 1.23 photos.sgml (new) -> 1.1 policies.sgml 1.3 -> 1.4 rtp.sgml Submitted by: Dmitry Morozovsky Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.12 +6 -3 www/ru/internal/Makefile 1.9 +25 -29 www/ru/internal/developer.sgml 1.8 +48 -47 www/ru/internal/internal.sgml 1.4 +17 -3 www/ru/internal/new-account.sgml 1.10 +4 -4 www/ru/internal/photos.sgml 1.1 +66 -0 www/ru/internal/policies.sgml (new) 1.2 +9 -9 www/ru/internal/rtp.sgml From owner-cvs-all@FreeBSD.ORG Wed Apr 14 00: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 3A63D16A4CE; Wed, 14 Apr 2004 00:54:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D3A043D2D; Wed, 14 Apr 2004 00:54:07 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E7s6Ge069992; Wed, 14 Apr 2004 00:54:06 -0700 (PDT) (envelope-from olgeni@repoman.freebsd.org) Received: (from olgeni@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E7s6qK069991; Wed, 14 Apr 2004 00:54:06 -0700 (PDT) (envelope-from olgeni) Message-Id: <200404140754.i3E7s6qK069991@repoman.freebsd.org> From: Jimmy Olgeni Date: Wed, 14 Apr 2004 00:54:06 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/webmin 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, 14 Apr 2004 07:54:07 -0000 olgeni 2004/04/14 00:54:06 PDT FreeBSD ports repository Modified files: sysutils/webmin Makefile distinfo Log: Update modules: mailboxes-1.140-1, samba-1.140-1. Revision Changes Path 1.203 +4 -1 ports/sysutils/webmin/Makefile 1.165 +4 -0 ports/sysutils/webmin/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 01:15: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 DA0BE16A4CE; Wed, 14 Apr 2004 01:15:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC90843D54; Wed, 14 Apr 2004 01:15:14 -0700 (PDT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E8FEGe075035; Wed, 14 Apr 2004 01:15:14 -0700 (PDT) (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E8FExB075034; Wed, 14 Apr 2004 01:15:14 -0700 (PDT) (envelope-from markus) Message-Id: <200404140815.i3E8FExB075034@repoman.freebsd.org> From: Markus Brueffer Date: Wed, 14 Apr 2004 01:15:14 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/kopete 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, 14 Apr 2004 08:15:15 -0000 markus 2004/04/14 01:15:14 PDT FreeBSD ports repository Modified files: net/kopete Makefile Log: Fix last commit by setting PORTVERSION and MAINTAINER accordingly as originally intended. Spottet by: Ion-Mihai Tetcu Revision Changes Path 1.20 +2 -3 ports/net/kopete/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 01: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 44BAD16A4CE; Wed, 14 Apr 2004 01:18:02 -0700 (PDT) Received: from smtp.tal.de (work5.tal.de [81.92.0.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3EDB43D49; Wed, 14 Apr 2004 01:18:01 -0700 (PDT) (envelope-from markus@FreeBSD.org) Received: from ramses.kicks-ass.net (unknown [82.139.198.15]) by smtp.tal.de (TAL.DE) with ESMTP id 10D44100BD8; Wed, 14 Apr 2004 10:20:37 +0200 (CEST) Received: from cheops.phoenix (cheops.phoenix [192.168.1.3]) by ramses.kicks-ass.net (Postfix) with ESMTP id 5B92AB81B; Wed, 14 Apr 2004 10:19:23 +0200 (CEST) From: Markus Brueffer To: cvs-all@freebsd.org Date: Wed, 14 Apr 2004 10:19:01 +0200 User-Agent: KMail/1.6.1 References: <200404132149.i3DLnuhr017154@repoman.freebsd.org> <20040414101131.09f95c0a@it.buh.cameradicommercio.ro> In-Reply-To: <20040414101131.09f95c0a@it.buh.cameradicommercio.ro> MIME-Version: 1.0 Content-Type: multipart/signed; protocol="application/pgp-signature"; micalg=pgp-sha1; boundary="Boundary-02=_+PPfATIXgEICGaO"; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200404141019.10299.markus@FreeBSD.org> cc: Ion-Mihai Tetcu cc: cvs-ports@FreeBSD.org cc: kde@freebsd.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/net/kopete 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, 14 Apr 2004 08:18:02 -0000 --Boundary-02=_+PPfATIXgEICGaO Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Content-Disposition: inline On Wednesday 14 April 2004 09:11, Ion-Mihai Tetcu wrote: > On Tue, 13 Apr 2004 14:49:56 -0700 (PDT) > > Markus Brueffer wrote: > > markus 2004/04/13 14:49:56 PDT > > > > FreeBSD ports repository > > > > Modified files: > > net/kopete Makefile distinfo pkg-descr pkg-plist > > Log: > > - Update to version 0.8.0 > > Please also tell Makefile about this, she is a little jealous you love > only the distfile :) =46ixed, thanks! Markus =2D-=20 Markus Brueffer | GPG-Key: http://people.FreeBSD.org/~markus/markus.asc markus@brueffer.de | FP: 3F9B EBE8 F290 E5CC 1447 8760 D48D 1072 78F8 A8D4 markus@FreeBSD.org | FreeBSD: The Power to Serve! --Boundary-02=_+PPfATIXgEICGaO Content-Type: application/pgp-signature Content-Description: signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBAfPP+1I0Qcnj4qNQRAkrkAKCWh3ZOr/wcAn4g295J1qroYSznXQCfRWA/ iiuxMptOjHbDbxKioCW44Ng= =H462 -----END PGP SIGNATURE----- --Boundary-02=_+PPfATIXgEICGaO-- From owner-cvs-all@FreeBSD.ORG Wed Apr 14 01:21: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 5D5B116A4CE; Wed, 14 Apr 2004 01:21:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4154643D53; Wed, 14 Apr 2004 01:21:02 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E8L2Ge075257; Wed, 14 Apr 2004 01:21:02 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E8L21J075256; Wed, 14 Apr 2004 01:21:02 -0700 (PDT) (envelope-from clement) Message-Id: <200404140821.i3E8L21J075256@repoman.freebsd.org> From: Clement Laforet Date: Wed, 14 Apr 2004 01:21:02 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/pear-Net_NNTP 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, 14 Apr 2004 08:21:02 -0000 clement 2004/04/14 01:21:01 PDT FreeBSD ports repository Modified files: net/pear-Net_NNTP Makefile Removed files: net/pear-Net_NNTP pkg-plist Log: - kill pkg-plist PR: 65497 Submitted by: Roman Neuhauser Revision Changes Path 1.9 +5 -26 ports/net/pear-Net_NNTP/Makefile 1.5 +0 -13 ports/net/pear-Net_NNTP/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 01:33: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 61D6A16A4CE; Wed, 14 Apr 2004 01:33:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4469043D53; Wed, 14 Apr 2004 01:33:09 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E8X8Ge079013; Wed, 14 Apr 2004 01:33:09 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E8X8sb079012; Wed, 14 Apr 2004 01:33:08 -0700 (PDT) (envelope-from krion) Message-Id: <200404140833.i3E8X8sb079012@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 01:33:08 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/arpwatch-devel Makefile ports/net-mgmt/arpwatch-devel/files patch-ai patch-an patch-ar X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 08:33:09 -0000 krion 2004/04/14 01:33:08 PDT FreeBSD ports repository Modified files: net-mgmt/arpwatch-devel Makefile net-mgmt/arpwatch-devel/files patch-ai patch-an Added files: net-mgmt/arpwatch-devel/files patch-ar Log: - Fix DNS resolution bug PR: ports/65501 Submitted by: maintainer Revision Changes Path 1.34 +1 -1 ports/net-mgmt/arpwatch-devel/Makefile 1.4 +10 -5 ports/net-mgmt/arpwatch-devel/files/patch-ai 1.3 +5 -3 ports/net-mgmt/arpwatch-devel/files/patch-an 1.1 +33 -0 ports/net-mgmt/arpwatch-devel/files/patch-ar (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 01:36: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 19F3D16A4CE; Wed, 14 Apr 2004 01:36:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F18DE43D45; Wed, 14 Apr 2004 01:36:27 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E8aRGe079175; Wed, 14 Apr 2004 01:36:27 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E8aRCt079174; Wed, 14 Apr 2004 01:36:27 -0700 (PDT) (envelope-from krion) Message-Id: <200404140836.i3E8aRCt079174@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 01:36:27 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/arpwatch Makefileports/net-mgmt/arpwatch/files patch-ah patch-al patch-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: Wed, 14 Apr 2004 08:36:28 -0000 krion 2004/04/14 01:36:27 PDT FreeBSD ports repository Modified files: net-mgmt/arpwatch Makefile net-mgmt/arpwatch/files patch-ah Added files: net-mgmt/arpwatch/files patch-al patch-am Log: - Fix DNS resolver bug PR: ports/65508 Submitted by: Matthew George Revision Changes Path 1.33 +1 -2 ports/net-mgmt/arpwatch/Makefile 1.3 +11 -2 ports/net-mgmt/arpwatch/files/patch-ah 1.1 +20 -0 ports/net-mgmt/arpwatch/files/patch-al (new) 1.1 +33 -0 ports/net-mgmt/arpwatch/files/patch-am (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 01: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 44D5616A4CE; Wed, 14 Apr 2004 01:45:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 26F3143D1F; Wed, 14 Apr 2004 01:45:32 -0700 (PDT) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E8jVGe081165; Wed, 14 Apr 2004 01:45:31 -0700 (PDT) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E8jVBt081164; Wed, 14 Apr 2004 01:45:31 -0700 (PDT) (envelope-from leeym) Message-Id: <200404140845.i3E8jVBt081164@repoman.freebsd.org> From: Yen-Ming Lee Date: Wed, 14 Apr 2004 01:45:31 -0700 (PDT) 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, 14 Apr 2004 08:45:32 -0000 leeym 2004/04/14 01:45:31 PDT FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: register UID/GID 153:153 for ports/dns/rbldnsd Revision Changes Path 1.396 +3 -1 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Wed Apr 14 01:51: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 7BA5316A4CE; Wed, 14 Apr 2004 01:51:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EF8243D1F; Wed, 14 Apr 2004 01:51:19 -0700 (PDT) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E8pAGe081401; Wed, 14 Apr 2004 01:51:10 -0700 (PDT) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E8p2Hn081386; Wed, 14 Apr 2004 01:51:02 -0700 (PDT) (envelope-from leeym) Message-Id: <200404140851.i3E8p2Hn081386@repoman.freebsd.org> From: Yen-Ming Lee Date: Wed, 14 Apr 2004 01:50:52 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/dns/rbldnsd 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, 14 Apr 2004 08:51:19 -0000 leeym 2004/04/14 01:50:52 PDT FreeBSD ports repository Modified files: dns/rbldnsd Makefile Log: register UID/GID 153:153 for ports/dns/rbldnsd in doc/en_US.ISO8859-1/books/porters-handbook/book.sgml v1.396 Noticed by: kris Revision Changes Path 1.6 +0 -0 ports/dns/rbldnsd/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 01:52: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 DC47416A4CE; Wed, 14 Apr 2004 01:52:17 -0700 (PDT) Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 683A143D53; Wed, 14 Apr 2004 01:52:17 -0700 (PDT) (envelope-from danfe@regency.nsu.ru) Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 4.30) id 1BDgAv-0002um-Qf; Wed, 14 Apr 2004 15:55:17 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.10/8.12.10) with ESMTP id i3E8qdGt070339; Wed, 14 Apr 2004 15:52:39 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.10/8.12.10/Submit) id i3E8qdBg070290; Wed, 14 Apr 2004 15:52:39 +0700 (NOVST) (envelope-from danfe) Date: Wed, 14 Apr 2004 15:52:39 +0700 From: Alexey Dokuchaev To: Kris Kennaway Message-ID: <20040414085239.GA65853@regency.nsu.ru> References: <200404130928.i3D9ShRc033254@repoman.freebsd.org> <20040413152837.GA94022@regency.nsu.ru> <20040413215733.GA37771@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040413215733.GA37771@xor.obsecurity.org> User-Agent: Mutt/1.4.2.1i cc: cvs-ports@freebsd.org cc: Erwin Lansing cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: 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, 14 Apr 2004 08:52:18 -0000 On Tue, Apr 13, 2004 at 02:57:33PM -0700, Kris Kennaway wrote: > On Tue, Apr 13, 2004 at 10:28:37PM +0700, Alexey Dokuchaev wrote: > > On Tue, Apr 13, 2004 at 02:28:43AM -0700, Erwin Lansing wrote: > > > erwin 2004/04/13 02:28:43 PDT > > > > > > FreeBSD ports repository > > > > > > Modified files: > > > . modules > > > Log: > > > Remove entry for www/Mosaic that was removed Apr 11, 2004. > > > > Just out of curiosity, why not just make this port build and run > > properly under both FreeBSD stable & current, and leave the port in? > > After all, Mosaic is the the major achievement of "older times" that made > > Internet how we see it now. Historical reason is probably strong > > enough in this case. > > That was the point of the 2 month deprecation cycle, which was widely > announced but which you obviously missed. Yeah, that's true.. I haven't been keeping a good eye on what's happening with ports recently due to "real life issues". ./danfe From owner-cvs-all@FreeBSD.ORG Wed Apr 14 02: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 AFB0D16A4CE; Wed, 14 Apr 2004 02:02:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 934C643D2F; Wed, 14 Apr 2004 02:02:01 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E920Ge084442; Wed, 14 Apr 2004 02:02:00 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E91wB8084412; Wed, 14 Apr 2004 02:01:58 -0700 (PDT) (envelope-from bde) Message-Id: <200404140901.i3E91wB8084412@repoman.freebsd.org> From: Bruce Evans Date: Wed, 14 Apr 2004 02:01:57 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/systat pigs.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 09:02:01 -0000 bde 2004/04/14 02:01:57 PDT FreeBSD src repository Modified files: usr.bin/systat pigs.c Log: Include for the definition of PS_INMEM instead of depending on namespace pollution in . Reduced nearby include messes. Revision Changes Path 1.19 +2 -3 src/usr.bin/systat/pigs.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 02:04: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 A911516A4CF; Wed, 14 Apr 2004 02:04:50 -0700 (PDT) Received: from ms-dienst.rz.rwth-aachen.de (ms-2.rz.RWTH-Aachen.DE [134.130.3.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id 47C6243D2D; Wed, 14 Apr 2004 02:04:50 -0700 (PDT) (envelope-from chris@unixpages.org) Received: from r220-1 (r220-1.rz.RWTH-Aachen.DE [134.130.3.31]) by ms-dienst.rz.rwth-aachen.de (iPlanet Messaging Server 5.2 HotFix 1.12 (built Feb 13 2003)) with ESMTP id <0HW5009ZML1T5J@ms-dienst.rz.rwth-aachen.de>; Wed, 14 Apr 2004 11:01:06 +0200 (MEST) Received: from relay.RWTH-Aachen.DE ([134.130.3.1]) by r220-1 (MailMonitor for SMTP v1.2.2 ) ; Wed, 14 Apr 2004 11:01:05 +0200 (MEST) Received: from haakonia.hitnet.rwth-aachen.de (haakonia.hitnet.RWTH-Aachen.DE [137.226.181.92])i3E915JC027467; Wed, 14 Apr 2004 11:01:05 +0200 (MEST) Received: from gondor.middleearth (gondor.middleearth [192.168.1.42]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))(Postfix) with ESMTP id 333C328427; Wed, 14 Apr 2004 11:00:59 +0200 (CEST) Received: by gondor.middleearth (Postfix, from userid 1001) id 028BB6138; Wed, 14 Apr 2004 11:00:57 +0200 (CEST) Date: Wed, 14 Apr 2004 11:00:57 +0200 From: Christian Brueffer In-reply-to: <200404130933.i3D9XXxl035113@repoman.freebsd.org> To: Ruslan Ermilov Message-id: <20040414090056.GC582@unixpages.org> MIME-version: 1.0 Content-type: multipart/signed; boundary=PuGuTyElPB9bOcsM; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-disposition: inline User-Agent: Mutt/1.5.5.1i X-Operating-System: FreeBSD 5.2-CURRENT X-PGP-Key: http://people.freebsd.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D References: <200404130933.i3D9XXxl035113@repoman.freebsd.org> cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: 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, 14 Apr 2004 09:04:50 -0000 --PuGuTyElPB9bOcsM Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Tue, Apr 13, 2004 at 02:33:33AM -0700, Ruslan Ermilov wrote: > ru 2004/04/13 02:33:33 PDT >=20 > FreeBSD src repository >=20 > Modified files: > sys/sys param.h=20 > Log: > Bump __FreeBSD_version on behalf of the new .warning directive in make(= 1). > =20 > Requested by: kris > =20 > Revision Changes Path > 1.191 +1 -1 src/sys/sys/param.h > _______________________________________________ > cvs-all@freebsd.org mailing list Please also document it in the porters handbook. - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --PuGuTyElPB9bOcsM Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfP3IbHYXjKDtmC0RAmHjAKCUxLVz06yBSnUEuHpc7XADX9FuzQCgtTx0 AwL1loINZAsaXx0ukNXPLPc= =2YhM -----END PGP SIGNATURE----- --PuGuTyElPB9bOcsM-- From owner-cvs-all@FreeBSD.ORG Wed Apr 14 02:06: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 A904716A4CE; Wed, 14 Apr 2004 02:06:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8BB8C43D2D; Wed, 14 Apr 2004 02:06:49 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E96mGe086594; Wed, 14 Apr 2004 02:06:48 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E96l7B086589; Wed, 14 Apr 2004 02:06:47 -0700 (PDT) (envelope-from krion) Message-Id: <200404140906.i3E96l7B086589@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 02:06:45 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/AquaGatekeeper Makefile distinfo distinfo.amd64 distinfo.i386 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 09:06:49 -0000 krion 2004/04/14 02:06:45 PDT FreeBSD ports repository Modified files: net/AquaGatekeeper Makefile Added files: net/AquaGatekeeper distinfo.amd64 distinfo.i386 Removed files: net/AquaGatekeeper distinfo Log: - Update to version 1.22 - Add amd64 support PR: ports/65518 Submitted by: maintainer Revision Changes Path 1.7 +10 -4 ports/net/AquaGatekeeper/Makefile 1.5 +0 -2 ports/net/AquaGatekeeper/distinfo (dead) 1.1 +2 -0 ports/net/AquaGatekeeper/distinfo.amd64 (new) 1.1 +2 -0 ports/net/AquaGatekeeper/distinfo.i386 (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 02:06: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 9B60A16A4CF; Wed, 14 Apr 2004 02:06:50 -0700 (PDT) Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4F2CA43D1F; Wed, 14 Apr 2004 02:06:50 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (be94dceb5f4ce84e00ed453f898f7822@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i3E96mh7005092; Wed, 14 Apr 2004 04:06:49 -0500 (CDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 8817B52322; Wed, 14 Apr 2004 02:06:48 -0700 (PDT) Date: Wed, 14 Apr 2004 02:06:48 -0700 From: Kris Kennaway To: Alexey Dokuchaev Message-ID: <20040414090648.GC46849@xor.obsecurity.org> References: <200404130928.i3D9ShRc033254@repoman.freebsd.org> <20040413152837.GA94022@regency.nsu.ru> <20040413215733.GA37771@xor.obsecurity.org> <20040414085239.GA65853@regency.nsu.ru> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="DIOMP1UsTsWJauNi" Content-Disposition: inline In-Reply-To: <20040414085239.GA65853@regency.nsu.ru> User-Agent: Mutt/1.4.2.1i cc: cvs-ports@freebsd.org cc: ports-committers@freebsd.org cc: Erwin Lansing cc: cvs-all@freebsd.org cc: Kris Kennaway Subject: Re: 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, 14 Apr 2004 09:06:50 -0000 --DIOMP1UsTsWJauNi Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 14, 2004 at 03:52:39PM +0700, Alexey Dokuchaev wrote: > On Tue, Apr 13, 2004 at 02:57:33PM -0700, Kris Kennaway wrote: > > On Tue, Apr 13, 2004 at 10:28:37PM +0700, Alexey Dokuchaev wrote: > > > On Tue, Apr 13, 2004 at 02:28:43AM -0700, Erwin Lansing wrote: > > > > erwin 2004/04/13 02:28:43 PDT > > > >=20 > > > > FreeBSD ports repository > > > >=20 > > > > Modified files: > > > > . modules=20 > > > > Log: > > > > Remove entry for www/Mosaic that was removed Apr 11, 2004. > > >=20 > > > Just out of curiosity, why not just make this port build and run > > > properly under both FreeBSD stable & current, and leave the port in? > > > After all, Mosaic is the the major achievement of "older times" that = made > > > Internet how we see it now. Historical reason is probably strong > > > enough in this case. > >=20 > > That was the point of the 2 month deprecation cycle, which was widely > > announced but which you obviously missed. >=20 > Yeah, that's true.. I haven't been keeping a good eye on what's > happening with ports recently due to "real life issues". Fair enough..anyway, if people care enough about a broken port to unbreak it posthumously, it can just be resurrected from the attic. Kris --DIOMP1UsTsWJauNi Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfP8nWry0BWjoQKURAi2iAJ9KeiXSDQ4qT+/L+4+wdSZxJijo1QCg2PUO 186H3aThkZvU0zUURfJPGfk= =sXv6 -----END PGP SIGNATURE----- --DIOMP1UsTsWJauNi-- From owner-cvs-all@FreeBSD.ORG Wed Apr 14 02: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 BD40316A4CE; Wed, 14 Apr 2004 02:27:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B7AE343D60; Wed, 14 Apr 2004 02:27:54 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E9RsGe090918; Wed, 14 Apr 2004 02:27:54 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E9Rs3c090917; Wed, 14 Apr 2004 02:27:54 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404140927.i3E9Rs3c090917@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 14 Apr 2004 02:27:54 -0700 (PDT) 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/flowdesigner Makefile distinfo pkg-descr pkg-plist ports/devel/flowdesigner/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: Wed, 14 Apr 2004 09:27:54 -0000 ijliao 2004/04/14 02:27:54 PDT FreeBSD ports repository Modified files: devel Makefile Added files: devel/flowdesigner Makefile distinfo pkg-descr pkg-plist devel/flowdesigner/files patch-ltmain.sh Log: add flowdesigner 0.8.0 A free (GPL) "data flow oriented" development environment Revision Changes Path 1.1521 +1 -0 ports/devel/Makefile 1.1 +40 -0 ports/devel/flowdesigner/Makefile (new) 1.1 +2 -0 ports/devel/flowdesigner/distinfo (new) 1.1 +15 -0 ports/devel/flowdesigner/files/patch-ltmain.sh (new) 1.1 +7 -0 ports/devel/flowdesigner/pkg-descr (new) 1.1 +8 -0 ports/devel/flowdesigner/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 02:29: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 84C5D16A4CE; Wed, 14 Apr 2004 02:29:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 68A5A43D68; Wed, 14 Apr 2004 02:29:52 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E9TqGe091044; Wed, 14 Apr 2004 02:29:52 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E9TqbR091043; Wed, 14 Apr 2004 02:29:52 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404140929.i3E9TqbR091043@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 14 Apr 2004 02:29:52 -0700 (PDT) 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, 14 Apr 2004 09:29:52 -0000 ijliao 2004/04/14 02:29:52 PDT FreeBSD ports repository Modified files: . modules Log: flowdesigner --> ports/devel/flowdesigner Revision Changes Path 1.9901 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 14 02:34: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 374B816A4CE; Wed, 14 Apr 2004 02:34:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A21B43D2F; Wed, 14 Apr 2004 02:34:18 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E9YHGe092903; Wed, 14 Apr 2004 02:34:17 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E9YHw1092902; Wed, 14 Apr 2004 02:34:17 -0700 (PDT) (envelope-from bde) Message-Id: <200404140934.i3E9YHw1092902@repoman.freebsd.org> From: Bruce Evans Date: Wed, 14 Apr 2004 02:34:17 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/w proc_compare.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 09:34:18 -0000 bde 2004/04/14 02:34:17 PDT FreeBSD src repository Modified files: usr.bin/w proc_compare.c Log: Include instead of depending on namespace pollution in for the definition of TDF_SINTR. Fixed anachronous spelling of TDF_SINTR in a comment Demangled VCS ids. There were 2 misplaced copies of $FreeBSD$ and of the include before it. The vendor id infrastructure was edited. Fixed the only other remaining style bug since rev.1.1 (expansion of struct member names made a line too long). Revision Changes Path 1.9 +9 -11 src/usr.bin/w/proc_compare.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 02:36: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 45B0A16A4CE; Wed, 14 Apr 2004 02:36:45 -0700 (PDT) Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8C1643D48; Wed, 14 Apr 2004 02:36:44 -0700 (PDT) (envelope-from danfe@regency.nsu.ru) Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 4.30) id 1BDgrw-00089A-Cf; Wed, 14 Apr 2004 16:39:44 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.10/8.12.10) with ESMTP id i3E9b6Gt085530; Wed, 14 Apr 2004 16:37:06 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.10/8.12.10/Submit) id i3E9b6oU085499; Wed, 14 Apr 2004 16:37:06 +0700 (NOVST) (envelope-from danfe) Date: Wed, 14 Apr 2004 16:37:06 +0700 From: Alexey Dokuchaev To: Alfred Perlstein Message-ID: <20040414093706.GB65853@regency.nsu.ru> References: <200404140040.i3E0esil061104@repoman.freebsd.org> <20040414021526.GB63832@elvis.mu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040414021526.GB63832@elvis.mu.org> User-Agent: Mutt/1.4.2.1i cc: cvs-src@freebsd.org cc: Tim Kientzle cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/tar bsdtar.c bsdtar.h 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: Wed, 14 Apr 2004 09:36:45 -0000 On Tue, Apr 13, 2004 at 07:15:26PM -0700, Alfred Perlstein wrote: > While I applaud the effort here, it is a major violation of C > POLA to have compilable code within a header file. I think you Seconded. Please keep *.h code-free. ./danfe From owner-cvs-all@FreeBSD.ORG Wed Apr 14 02: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 EE4E416A4CE; Wed, 14 Apr 2004 02:45:19 -0700 (PDT) Received: from neo.samodelkin.net (samodelkin.net [81.176.202.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EBD143D53; Wed, 14 Apr 2004 02:45:19 -0700 (PDT) (envelope-from fjoe@neo.samodelkin.net) Received: by neo.samodelkin.net (Postfix, from userid 1000) id C2ED7586; Wed, 14 Apr 2004 16:45:17 +0700 (NOVST) Date: Wed, 14 Apr 2004 16:45:17 +0700 From: Max Khon To: Bill Paul Message-ID: <20040414094517.GC2402@samodelkin.net> References: <200404140748.i3E7m4HV067995@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404140748.i3E7m4HV067995@repoman.freebsd.org> User-Agent: Mutt/1.4.2i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/compat/ndis hal_var.h kern_ndis.c ndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrnl.c src/sys/dev/if_ndis if_ndis.c if_ndisvar.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, 14 Apr 2004 09:45:20 -0000 hi, there! On Wed, Apr 14, 2004 at 12:48:04AM -0700, Bill Paul wrote: > wpaul 2004/04/14 00:48:03 PDT > > FreeBSD src repository > > Modified files: > sys/compat/ndis hal_var.h kern_ndis.c ndis_var.h > ntoskrnl_var.h pe_var.h subr_hal.c > subr_ndis.c subr_ntoskrnl.c > sys/dev/if_ndis if_ndis.c if_ndisvar.h > Log: [..] > - Properly implement hal_lock(), hal_unlock(), hal_irql(), > hal_raise_irql() and hal_lower_irql() so that they more closely > resemble their Windows counterparts. The IRQL is determined by > thread priority. [..] > - Use hal_raise_irql() to raise our IRQL to DISPATCH_LEVEL when > calling certain miniport routines, per the Microsoft documentation. I wonder when it will be possible to run NT kernel on top of your HAL layer? :) /fjoe From owner-cvs-all@FreeBSD.ORG Wed Apr 14 02: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 9FCA516A4CE; Wed, 14 Apr 2004 02:54:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84C7943D45; Wed, 14 Apr 2004 02:54:43 -0700 (PDT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E9shGe097024; Wed, 14 Apr 2004 02:54:43 -0700 (PDT) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E9shR9097023; Wed, 14 Apr 2004 02:54:43 -0700 (PDT) (envelope-from nork) Message-Id: <200404140954.i3E9shR9097023@repoman.freebsd.org> From: Norikatsu Shigemura Date: Wed, 14 Apr 2004 02:54:42 -0700 (PDT) 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, 14 Apr 2004 09:54:43 -0000 nork 2004/04/14 02:54:42 PDT FreeBSD doc repository (ports committer) Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: Reserve UID 554 and GID 554 for ports/net/DarwinStreamingServer. Reviewed by: hrs Inspired by: des's commit Revision Changes Path 1.397 +3 -1 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Wed Apr 14 02: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 F192716A4CE; Wed, 14 Apr 2004 02:55:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D52ED43D49; Wed, 14 Apr 2004 02:55:47 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E9tlGe097151; Wed, 14 Apr 2004 02:55:47 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E9tlUd097150; Wed, 14 Apr 2004 02:55:47 -0700 (PDT) (envelope-from krion) Message-Id: <200404140955.i3E9tlUd097150@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 02:55:47 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/libnet-devel 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, 14 Apr 2004 09:55:48 -0000 krion 2004/04/14 02:55:47 PDT FreeBSD ports repository Modified files: net/libnet-devel Makefile distinfo pkg-plist Log: - Update to version 1.1.2.1 Revision Changes Path 1.8 +1 -2 ports/net/libnet-devel/Makefile 1.4 +2 -2 ports/net/libnet-devel/distinfo 1.5 +18 -3 ports/net/libnet-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 02:56: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 B969916A4CF; Wed, 14 Apr 2004 02:56:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7EFA043D5E; Wed, 14 Apr 2004 02:56:36 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E9uTGe097202; Wed, 14 Apr 2004 02:56:29 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E9uSTe097196; Wed, 14 Apr 2004 02:56:28 -0700 (PDT) (envelope-from krion) Message-Id: <200404140956.i3E9uSTe097196@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 02:56:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/4g8 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, 14 Apr 2004 09:56:36 -0000 krion 2004/04/14 02:56:28 PDT FreeBSD ports repository Modified files: net/4g8 Makefile distinfo Log: - Update to version 1.0 Revision Changes Path 1.5 +1 -1 ports/net/4g8/Makefile 1.5 +2 -2 ports/net/4g8/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 02:57: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 2669416A4CE; Wed, 14 Apr 2004 02:57:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B69343D5A; Wed, 14 Apr 2004 02:57:29 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3E9vSGe097249; Wed, 14 Apr 2004 02:57:28 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3E9vSsU097248; Wed, 14 Apr 2004 02:57:28 -0700 (PDT) (envelope-from krion) Message-Id: <200404140957.i3E9vSsU097248@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 02:57:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/packit 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, 14 Apr 2004 09:57:29 -0000 krion 2004/04/14 02:57:28 PDT FreeBSD ports repository Modified files: net-mgmt/packit Makefile distinfo Log: - Update to version 1.0 Revision Changes Path 1.10 +1 -2 ports/net-mgmt/packit/Makefile 1.7 +2 -2 ports/net-mgmt/packit/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 03: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 16D8C16A4CE; Wed, 14 Apr 2004 03:01:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11AD443D4C; Wed, 14 Apr 2004 03:01:06 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EA15Ge097689; Wed, 14 Apr 2004 03:01:05 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EA154r097688; Wed, 14 Apr 2004 03:01:05 -0700 (PDT) (envelope-from krion) Message-Id: <200404141001.i3EA154r097688@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 03:01:05 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/gspoof Makefile ports/net/nast Makefile ports/net-mgmt/pixilate Makefile ports/net-mgmt/tcpreplay Makefile ports/security/firewalk 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, 14 Apr 2004 10:01:06 -0000 krion 2004/04/14 03:01:05 PDT FreeBSD ports repository Modified files: net/gspoof Makefile net/nast Makefile net-mgmt/pixilate Makefile net-mgmt/tcpreplay Makefile security/firewalk Makefile Log: - Bump PORTREVISION because of new libnet-devel version Revision Changes Path 1.14 +1 -0 ports/net-mgmt/pixilate/Makefile 1.17 +1 -0 ports/net-mgmt/tcpreplay/Makefile 1.10 +1 -1 ports/net/gspoof/Makefile 1.10 +1 -0 ports/net/nast/Makefile 1.17 +1 -0 ports/security/firewalk/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 03: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 4AED516A4CE; Wed, 14 Apr 2004 03:11:07 -0700 (PDT) Received: from pcwin002.win.tue.nl (pcwin002.win.tue.nl [131.155.71.72]) by mx1.FreeBSD.org (Postfix) with ESMTP id BBB7F43D6B; Wed, 14 Apr 2004 03:11:06 -0700 (PDT) (envelope-from stijn@pcwin002.win.tue.nl) Received: from pcwin002.win.tue.nl (orb_rules@localhost [127.0.0.1]) by pcwin002.win.tue.nl (8.12.11/8.12.11) with ESMTP id i3EAB5rM082551; Wed, 14 Apr 2004 12:11:05 +0200 (CEST) (envelope-from stijn@pcwin002.win.tue.nl) Received: (from stijn@localhost) by pcwin002.win.tue.nl (8.12.11/8.12.11/Submit) id i3EAB5gH082550; Wed, 14 Apr 2004 12:11:05 +0200 (CEST) (envelope-from stijn) Date: Wed, 14 Apr 2004 12:11:05 +0200 From: Stijn Hoop To: Max Khon Message-ID: <20040414101105.GN58667@pcwin002.win.tue.nl> References: <200404140748.i3E7m4HV067995@repoman.freebsd.org> <20040414094517.GC2402@samodelkin.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="vkEkAx9hr54EJ73W" Content-Disposition: inline In-Reply-To: <20040414094517.GC2402@samodelkin.net> User-Agent: Mutt/1.4.2.1i X-Bright-Idea: Let's abolish HTML mail! cc: Bill Paul cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/compat/ndis hal_var.h kern_ndis.c ndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrnl.c src/sys/dev/if_ndis if_ndis.c if_ndisvar.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, 14 Apr 2004 10:11:07 -0000 --vkEkAx9hr54EJ73W Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 14, 2004 at 04:45:17PM +0700, Max Khon wrote: > hi, there! >=20 > On Wed, Apr 14, 2004 at 12:48:04AM -0700, Bill Paul wrote: >=20 > [..] >=20 > > - Properly implement hal_lock(), hal_unlock(), hal_irql(), > > hal_raise_irql() and hal_lower_irql() so that they more closely > > resemble their Windows counterparts. The IRQL is determined by > > thread priority. >=20 > [..] >=20 > > - Use hal_raise_irql() to raise our IRQL to DISPATCH_LEVEL when > > calling certain miniport routines, per the Microsoft documentation. >=20 > I wonder when it will be possible to run NT kernel on top of your > HAL layer? :) I vote for a rename to 'Project TheUltimateEvil' in case that happens :) --Stijn --=20 "Harry, I'm going to let you in on a little secret. Every day, once a day, give yourself a present. Don't plan it, don't wait for it, just let it happen. Could be a new shirt at the men's store, a catnap in your office chair, or... two cups of good, hot, black coffee. Like this." -- Special Agent Dale Cooper, "Twin Peaks" --vkEkAx9hr54EJ73W Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfQ45Y3r/tLQmfWcRAr5UAJ9esPUlpOxCq+q+MFM5K/nQ0wI33wCfdWi9 8GR/wJoJ5ebqEMAYwD/bNqI= =nJc2 -----END PGP SIGNATURE----- --vkEkAx9hr54EJ73W-- From owner-cvs-all@FreeBSD.ORG Wed Apr 14 03: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 C096116A4CE for ; Wed, 14 Apr 2004 03:49:20 -0700 (PDT) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0AA8043D46 for ; Wed, 14 Apr 2004 03:49:20 -0700 (PDT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru id i3EAlAfH034956 for cvs-all@FreeBSD.org.checked; (8.12.8/vak/2.1) Wed, 14 Apr 2004 14:47: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 i3EAkD7O034850; (8.12.8/vak/2.1) Wed, 14 Apr 2004 14:46:13 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <407D166B.8010802@cronyx.ru> Date: Wed, 14 Apr 2004 14:46:03 +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: Max Khon References: <200404140748.i3E7m4HV067995@repoman.freebsd.org> <20040414094517.GC2402@samodelkin.net> In-Reply-To: <20040414094517.GC2402@samodelkin.net> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit cc: Bill Paul cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/compat/ndis hal_var.h kern_ndis.cndis_var.h src/sys/dev/if_ndis if_ndis.c if_ndisvar.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, 14 Apr 2004 10:49:20 -0000 Max Khon wrote: [...] >I wonder when it will be possible to run NT kernel on top of your >HAL layer? :) > > I think lawyers wouldn't allow it. By the way, can I run ndiswan devices? Best regards, Roman Kurakin From owner-cvs-all@FreeBSD.ORG Wed Apr 14 04: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 F26EE16A4CE; Wed, 14 Apr 2004 04:07:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D645343D2F; Wed, 14 Apr 2004 04:07:06 -0700 (PDT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EB76Ge013776; Wed, 14 Apr 2004 04:07:06 -0700 (PDT) (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EB7605013775; Wed, 14 Apr 2004 04:07:06 -0700 (PDT) (envelope-from mat) Message-Id: <200404141107.i3EB7605013775@repoman.freebsd.org> From: Mathieu Arnold Date: Wed, 14 Apr 2004 04:07:06 -0700 (PDT) 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-AbstractSearch 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, 14 Apr 2004 11:07:07 -0000 mat 2004/04/14 04:07:06 PDT FreeBSD ports repository Modified files: databases/p5-Class-DBI-AbstractSearch Makefile distinfo Log: Update to 0.05 Revision Changes Path 1.5 +1 -1 ports/databases/p5-Class-DBI-AbstractSearch/Makefile 1.5 +2 -2 ports/databases/p5-Class-DBI-AbstractSearch/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 04:08: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 E0B3216A4CE; Wed, 14 Apr 2004 04:08:34 -0700 (PDT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4FCF743D48; Wed, 14 Apr 2004 04:08:33 -0700 (PDT) (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 i3EBDRBR032098 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 14 Apr 2004 14:13:29 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i3EB8QEE002404; Wed, 14 Apr 2004 14:08:26 +0300 (EEST) (envelope-from ru) Date: Wed, 14 Apr 2004 14:08:26 +0300 From: Ruslan Ermilov To: Christian Brueffer Message-ID: <20040414110826.GC2318@ip.net.ua> References: <200404130933.i3D9XXxl035113@repoman.freebsd.org> <20040414090056.GC582@unixpages.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="0vzXIDBeUiKkjNJl" Content-Disposition: inline In-Reply-To: <20040414090056.GC582@unixpages.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: 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, 14 Apr 2004 11:08:35 -0000 --0vzXIDBeUiKkjNJl Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 14, 2004 at 11:00:57AM +0200, Christian Brueffer wrote: > On Tue, Apr 13, 2004 at 02:33:33AM -0700, Ruslan Ermilov wrote: > > ru 2004/04/13 02:33:33 PDT > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > sys/sys param.h=20 > > Log: > > Bump __FreeBSD_version on behalf of the new .warning directive in mak= e(1). > > =20 > > Requested by: kris > > =20 > > Revision Changes Path > > 1.191 +1 -1 src/sys/sys/param.h > > _______________________________________________ > > cvs-all@freebsd.org mailing list >=20 > Please also document it in the porters handbook. >=20 Please do it for me, I have zero SGML skills. ;) Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --0vzXIDBeUiKkjNJl Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfRuqUkv4P6juNwoRAuTAAJ98+hWL6dYqeKmOVUfi2rIT0SrDFQCeMlTJ t/3+kW+UPMkizl0rzVUBco8= =PIPQ -----END PGP SIGNATURE----- --0vzXIDBeUiKkjNJl-- From owner-cvs-all@FreeBSD.ORG Wed Apr 14 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 F055716A4CE; Wed, 14 Apr 2004 04:21:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D43B743D2F; Wed, 14 Apr 2004 04:21:52 -0700 (PDT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EBLoGe016825; Wed, 14 Apr 2004 04:21:50 -0700 (PDT) (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EBLn7g016812; Wed, 14 Apr 2004 04:21:49 -0700 (PDT) (envelope-from mat) Message-Id: <200404141121.i3EBLn7g016812@repoman.freebsd.org> From: Mathieu Arnold Date: Wed, 14 Apr 2004 04:21:49 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Data-Dump 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, 14 Apr 2004 11:21:53 -0000 mat 2004/04/14 04:21:49 PDT FreeBSD ports repository Modified files: devel/p5-Data-Dump Makefile distinfo Log: Update to 1.03 Revision Changes Path 1.2 +1 -1 ports/devel/p5-Data-Dump/Makefile 1.2 +2 -2 ports/devel/p5-Data-Dump/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 04:28: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 0AB8616A4CF; Wed, 14 Apr 2004 04:28:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E284C43D53; Wed, 14 Apr 2004 04:28:01 -0700 (PDT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EBS1Ge017796; Wed, 14 Apr 2004 04:28:01 -0700 (PDT) (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EBS1tH017795; Wed, 14 Apr 2004 04:28:01 -0700 (PDT) (envelope-from mat) Message-Id: <200404141128.i3EBS1tH017795@repoman.freebsd.org> From: Mathieu Arnold Date: Wed, 14 Apr 2004 04:28:01 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Time-Local 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, 14 Apr 2004 11:28:02 -0000 mat 2004/04/14 04:28:01 PDT FreeBSD ports repository Modified files: devel/p5-Time-Local Makefile distinfo Log: Update to 1.09, cleanup Revision Changes Path 1.3 +2 -2 ports/devel/p5-Time-Local/Makefile 1.3 +2 -2 ports/devel/p5-Time-Local/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 04: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 4C50D16A4CE; Wed, 14 Apr 2004 04:31:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2FF8E43D58; Wed, 14 Apr 2004 04:31:47 -0700 (PDT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EBVlGe019048; Wed, 14 Apr 2004 04:31:47 -0700 (PDT) (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EBVkDt019044; Wed, 14 Apr 2004 04:31:46 -0700 (PDT) (envelope-from bland) Message-Id: <200404141131.i3EBVkDt019044@repoman.freebsd.org> From: Alexander Nedotsukov Date: Wed, 14 Apr 2004 04:31:46 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/anjuta/files patch-src_breakpoints.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 11:31:47 -0000 bland 2004/04/14 04:31:46 PDT FreeBSD ports repository Modified files: devel/anjuta/files patch-src_breakpoints.c Log: Fix patch file. Revision Changes Path 1.2 +2 -2 ports/devel/anjuta/files/patch-src_breakpoints.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 04:49: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 9F78116A4CE; Wed, 14 Apr 2004 04:49:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7795243D41; Wed, 14 Apr 2004 04:49:59 -0700 (PDT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EBnxGe027875; Wed, 14 Apr 2004 04:49:59 -0700 (PDT) (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EBnxtc027874; Wed, 14 Apr 2004 04:49:59 -0700 (PDT) (envelope-from mat) Message-Id: <200404141149.i3EBnxtc027874@repoman.freebsd.org> From: Mathieu Arnold Date: Wed, 14 Apr 2004 04:49:59 -0700 (PDT) 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-Event-Easter 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, 14 Apr 2004 11:49:59 -0000 mat 2004/04/14 04:49:59 PDT FreeBSD ports repository Modified files: devel/p5-DateTime-Event-Easter Makefile distinfo Log: Update to 1.04 Revision Changes Path 1.6 +1 -1 ports/devel/p5-DateTime-Event-Easter/Makefile 1.5 +2 -2 ports/devel/p5-DateTime-Event-Easter/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 04:57: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 8A71816A4CE; Wed, 14 Apr 2004 04:57:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6F9D743D3F; Wed, 14 Apr 2004 04:57:42 -0700 (PDT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EBvgGe029861; Wed, 14 Apr 2004 04:57:42 -0700 (PDT) (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EBvg4a029860; Wed, 14 Apr 2004 04:57:42 -0700 (PDT) (envelope-from mat) Message-Id: <200404141157.i3EBvg4a029860@repoman.freebsd.org> From: Mathieu Arnold Date: Wed, 14 Apr 2004 04:57:42 -0700 (PDT) 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-Duration 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, 14 Apr 2004 11:57:42 -0000 mat 2004/04/14 04:57:42 PDT FreeBSD ports repository Modified files: devel/p5-DateTime-Format-Duration Makefile distinfo Log: Update to 1.02 Revision Changes Path 1.3 +2 -2 ports/devel/p5-DateTime-Format-Duration/Makefile 1.4 +2 -2 ports/devel/p5-DateTime-Format-Duration/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 05: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 78F6916A4CE; Wed, 14 Apr 2004 05:06:29 -0700 (PDT) Received: from smtp.des.no (flood.des.no [217.116.83.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id D54F143D39; Wed, 14 Apr 2004 05:06:28 -0700 (PDT) (envelope-from des@des.no) Received: by smtp.des.no (Pony Express, from userid 666) id 1C01E530A; Wed, 14 Apr 2004 14:06:27 +0200 (CEST) Received: from dwp.des.no (des.no [80.203.228.37]) by smtp.des.no (Pony Express) with ESMTP id 4DA2F5309; Wed, 14 Apr 2004 14:06:17 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 2602) id 0CD5533C6C; Wed, 14 Apr 2004 14:06:17 +0200 (CEST) To: Ruslan Ermilov References: <200404130933.i3D9XXxl035113@repoman.freebsd.org> <20040414090056.GC582@unixpages.org> <20040414110826.GC2318@ip.net.ua> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Wed, 14 Apr 2004 14:06:17 +0200 In-Reply-To: <20040414110826.GC2318@ip.net.ua> (Ruslan Ermilov's message of "Wed, 14 Apr 2004 14:08:26 +0300") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on flood.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=AWL autolearn=no version=2.63 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: 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, 14 Apr 2004 12:06:29 -0000 Ruslan Ermilov writes: > On Wed, Apr 14, 2004 at 11:00:57AM +0200, Christian Brueffer wrote: > > On Tue, Apr 13, 2004 at 02:33:33AM -0700, Ruslan Ermilov wrote: > > > Log: > > > Bump __FreeBSD_version on behalf of the new .warning directive in m= ake(1). > > Please also document it in the porters handbook. > Please do it for me, I have zero SGML skills. ;) You don't need SGML skills, just copy-paste skills. Just like for man pages ;) DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Wed Apr 14 05:11: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 5081916A4CE; Wed, 14 Apr 2004 05:11:38 -0700 (PDT) Received: from smtp.des.no (flood.des.no [217.116.83.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8DA543D55; Wed, 14 Apr 2004 05:11:37 -0700 (PDT) (envelope-from des@des.no) Received: by smtp.des.no (Pony Express, from userid 666) id E2AE3530A; Wed, 14 Apr 2004 14:11:36 +0200 (CEST) Received: from dwp.des.no (des.no [80.203.228.37]) by smtp.des.no (Pony Express) with ESMTP id 517435309; Wed, 14 Apr 2004 14:11:30 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 2602) id 34A6F33C6C; Wed, 14 Apr 2004 14:11:30 +0200 (CEST) To: Alexey Dokuchaev References: <200404140040.i3E0esil061104@repoman.freebsd.org> <20040414021526.GB63832@elvis.mu.org> <20040414093706.GB65853@regency.nsu.ru> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Wed, 14 Apr 2004 14:11:30 +0200 In-Reply-To: <20040414093706.GB65853@regency.nsu.ru> (Alexey Dokuchaev's message of "Wed, 14 Apr 2004 16:37:06 +0700") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on flood.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=AWL autolearn=no version=2.63 cc: cvs-src@freebsd.org cc: Tim Kientzle cc: Alfred Perlstein cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/tar bsdtar.c bsdtar.h 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: Wed, 14 Apr 2004 12:11:38 -0000 Alexey Dokuchaev writes: > On Tue, Apr 13, 2004 at 07:15:26PM -0700, Alfred Perlstein wrote: > > While I applaud the effort here, it is a major violation of C > > POLA to have compilable code within a header file. > Seconded. Please keep *.h code-free. What are you guys all smoking? Did you even look at the file in question? DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Wed Apr 14 05:31: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 97AE616A4CE; Wed, 14 Apr 2004 05:31:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7B8B643D2D; Wed, 14 Apr 2004 05:31:42 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ECVgGe037973; Wed, 14 Apr 2004 05:31:42 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ECVgnb037966; Wed, 14 Apr 2004 05:31:42 -0700 (PDT) (envelope-from blackend) Message-Id: <200404141231.i3ECVgnb037966@repoman.freebsd.org> From: Marc Fonvieille Date: Wed, 14 Apr 2004 05:31:42 -0700 (PDT) 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/hubs 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, 14 Apr 2004 12:31:42 -0000 blackend 2004/04/14 05:31:41 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/articles/hubs article.sgml Log: Use of &rel2.current; and &rel.current; entities to allow seamless update of releases number. PR: docs/65514 Submitted by: Jesus R.Camou Revision Changes Path 1.47 +3 -1 doc/en_US.ISO8859-1/articles/hubs/article.sgml From owner-cvs-all@FreeBSD.ORG Wed Apr 14 05:46: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 9353816A4CE; Wed, 14 Apr 2004 05:46:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E79F43D53; Wed, 14 Apr 2004 05:46:47 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ECklGe040833; Wed, 14 Apr 2004 05:46:47 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ECkl70040832; Wed, 14 Apr 2004 05:46:47 -0700 (PDT) (envelope-from krion) Message-Id: <200404141246.i3ECkl70040832@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 05:46:47 -0700 (PDT) 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/ncmpc 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, 14 Apr 2004 12:46:47 -0000 krion 2004/04/14 05:46:46 PDT FreeBSD ports repository Modified files: audio Makefile Added files: audio/ncmpc Makefile distinfo pkg-descr pkg-plist Log: Add ncmpc 0.10.0, ncmpc is a ncurses client for the Music Player Daemon (audio/musicpd). ncmpc connects to a musicpd running on a machine via a network. The interface was inspired by cplay. PR: ports/65521 Submitted by: Mark Reidel Revision Changes Path 1.508 +1 -0 ports/audio/Makefile 1.1 +35 -0 ports/audio/ncmpc/Makefile (new) 1.1 +2 -0 ports/audio/ncmpc/distinfo (new) 1.1 +5 -0 ports/audio/ncmpc/pkg-descr (new) 1.1 +4 -0 ports/audio/ncmpc/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 05:47: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 55C1D16A4CF; Wed, 14 Apr 2004 05:47:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 38FB643D1D; Wed, 14 Apr 2004 05:47:03 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ECl2Ge040881; Wed, 14 Apr 2004 05:47:02 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ECl2o0040880; Wed, 14 Apr 2004 05:47:02 -0700 (PDT) (envelope-from krion) Message-Id: <200404141247.i3ECl2o0040880@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 05:47:02 -0700 (PDT) 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, 14 Apr 2004 12:47:03 -0000 krion 2004/04/14 05:47:02 PDT FreeBSD ports repository Modified files: . modules Log: ncmpc --> ports/audio/ncmpc Revision Changes Path 1.9902 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 14 05:56: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 BE9B716A4CE; Wed, 14 Apr 2004 05:56:42 -0700 (PDT) Received: from mailout2.pacific.net.au (mailout2.pacific.net.au [61.8.0.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 07E8A43D4C; Wed, 14 Apr 2004 05:56:42 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.0.87])i3ECub5v005157; Wed, 14 Apr 2004 22:56:37 +1000 Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) i3ECuYsg017144; Wed, 14 Apr 2004 22:56:35 +1000 Date: Wed, 14 Apr 2004 22:56:33 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: =?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?= In-Reply-To: Message-ID: <20040414224330.Q3533@gamplex.bde.org> References: <200404140040.i3E0esil061104@repoman.freebsd.org> <20040414021526.GB63832@elvis.mu.org> <20040414093706.GB65853@regency.nsu.ru> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE cc: Alexey Dokuchaev cc: src-committers@freebsd.org cc: cvs-src@freebsd.org cc: Alfred Perlstein cc: cvs-all@freebsd.org cc: Tim Kientzle Subject: Re: cvs commit: src/usr.bin/tar bsdtar.c bsdtar.h 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: Wed, 14 Apr 2004 12:56:42 -0000 On Wed, 14 Apr 2004, [iso-8859-1] Dag-Erling Sm=F8rgrav wrote: > Alexey Dokuchaev writes: > > On Tue, Apr 13, 2004 at 07:15:26PM -0700, Alfred Perlstein wrote: > > > While I applaud the effort here, it is a major violation of C > > > POLA to have compilable code within a header file. > > Seconded. Please keep *.h code-free. > > What are you guys all smoking? Did you even look at the file in > question? The file does claim to do bad things in a comment: % /* Data for exclusion/inclusion handling: defined in matching.c */ % struct matching; % struct links_entry; % struct archive_dir_entry; Contrary to the comment, there is no data definition or even data declaration here, There are only bogus unsorted forward declarations here. These style bugs are not new; they were in rev.1.1. Bruce From owner-cvs-all@FreeBSD.ORG Wed Apr 14 06:00: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 A96AF16A4D7; Wed, 14 Apr 2004 06:00:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D21043D1F; Wed, 14 Apr 2004 06:00:58 -0700 (PDT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ED0wGe043090; Wed, 14 Apr 2004 06:00:58 -0700 (PDT) (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ED0v2x043089; Wed, 14 Apr 2004 06:00:57 -0700 (PDT) (envelope-from mat) Message-Id: <200404141300.i3ED0v2x043089@repoman.freebsd.org> From: Mathieu Arnold Date: Wed, 14 Apr 2004 06:00:57 -0700 (PDT) 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: Wed, 14 Apr 2004 13:00:58 -0000 mat 2004/04/14 06:00:57 PDT FreeBSD ports repository Modified files: www/p5-CGI-Framework Makefile distinfo Log: Update to 0.14 Revision Changes Path 1.2 +1 -1 ports/www/p5-CGI-Framework/Makefile 1.2 +2 -2 ports/www/p5-CGI-Framework/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 06:01: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 CBFD416A4CE; Wed, 14 Apr 2004 06:01:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B08D443D2F; Wed, 14 Apr 2004 06:01:15 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ED1FGe043126; Wed, 14 Apr 2004 06:01:15 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ED1FBT043125; Wed, 14 Apr 2004 06:01:15 -0700 (PDT) (envelope-from krion) Message-Id: <200404141301.i3ED1FBT043125@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 06:01:15 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/russian/ksocrat 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, 14 Apr 2004 13:01:15 -0000 krion 2004/04/14 06:01:15 PDT FreeBSD ports repository Modified files: russian/ksocrat Makefile Log: - Fix MASTER_SITES Revision Changes Path 1.10 +1 -2 ports/russian/ksocrat/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 06:01: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 B9A4C16A4CE; Wed, 14 Apr 2004 06:01:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9C17443D49; Wed, 14 Apr 2004 06:01:45 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ED1jGe044122; Wed, 14 Apr 2004 06:01:45 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ED1jdD044118; Wed, 14 Apr 2004 06:01:45 -0700 (PDT) (envelope-from krion) Message-Id: <200404141301.i3ED1jdD044118@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 06:01:45 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/smtpmail 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, 14 Apr 2004 13:01:45 -0000 krion 2004/04/14 06:01:45 PDT FreeBSD ports repository Modified files: mail/smtpmail Makefile Log: - Fix MASTER_SITES Revision Changes Path 1.8 +1 -1 ports/mail/smtpmail/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 06:11: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 2E61B16A4CE; Wed, 14 Apr 2004 06:11:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1022143D31; Wed, 14 Apr 2004 06:11:15 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EDBEGe046424; Wed, 14 Apr 2004 06:11:14 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EDBE5S046388; Wed, 14 Apr 2004 06:11:14 -0700 (PDT) (envelope-from blackend) Message-Id: <200404141311.i3EDBE5S046388@repoman.freebsd.org> From: Marc Fonvieille Date: Wed, 14 Apr 2004 06:11:14 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 13:11:15 -0000 blackend 2004/04/14 06:11:14 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/disks chapter.sgml Log: In the Creating and Using Optical Media (CDs) section: - s/acd0c/acd0/ and mention in various places 4.X needs the trailing c [1] - The ATAPI/CAM section is just a cut&paste from an article I wrote for bsdnews.org, so let's mention the author. PR: docs/62097 [1] Submitted by: Marc Blanchet Revision Changes Path 1.196 +23 -13 doc/en_US.ISO8859-1/books/handbook/disks/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Apr 14 06:13: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 3DE2C16A4CE; Wed, 14 Apr 2004 06:13:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 225D443D39; Wed, 14 Apr 2004 06:13:26 -0700 (PDT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EDDPGe048033; Wed, 14 Apr 2004 06:13:25 -0700 (PDT) (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EDDPfs048032; Wed, 14 Apr 2004 06:13:25 -0700 (PDT) (envelope-from mat) Message-Id: <200404141313.i3EDDPfs048032@repoman.freebsd.org> From: Mathieu Arnold Date: Wed, 14 Apr 2004 06:13:25 -0700 (PDT) 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-Smart 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, 14 Apr 2004 13:13:26 -0000 mat 2004/04/14 06:13:25 PDT FreeBSD ports repository Modified files: textproc/p5-XML-Smart Makefile distinfo Log: Update to 1.5.9 Revision Changes Path 1.11 +1 -1 ports/textproc/p5-XML-Smart/Makefile 1.11 +2 -2 ports/textproc/p5-XML-Smart/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 06: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 9105316A4CE; Wed, 14 Apr 2004 06:19:05 -0700 (PDT) Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 241D643D58; Wed, 14 Apr 2004 06:19:05 -0700 (PDT) (envelope-from danfe@regency.nsu.ru) Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 4.30) id 1BDkL8-0005IC-FR; Wed, 14 Apr 2004 20:22:06 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.10/8.12.10) with ESMTP id i3EDJRGt068316; Wed, 14 Apr 2004 20:19:27 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.10/8.12.10/Submit) id i3EDJQLR068242; Wed, 14 Apr 2004 20:19:26 +0700 (NOVST) (envelope-from danfe) Date: Wed, 14 Apr 2004 20:19:26 +0700 From: Alexey Dokuchaev To: Dag-Erling Sm?rgrav Message-ID: <20040414131926.GA67192@regency.nsu.ru> References: <200404140040.i3E0esil061104@repoman.freebsd.org> <20040414021526.GB63832@elvis.mu.org> <20040414093706.GB65853@regency.nsu.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.4.2.1i cc: cvs-src@freebsd.org cc: Tim Kientzle cc: Alfred Perlstein cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/tar bsdtar.c bsdtar.h 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: Wed, 14 Apr 2004 13:19:05 -0000 On Wed, Apr 14, 2004 at 02:11:30PM +0200, Dag-Erling Sm?rgrav wrote: > Alexey Dokuchaev writes: > > On Tue, Apr 13, 2004 at 07:15:26PM -0700, Alfred Perlstein wrote: > > > While I applaud the effort here, it is a major violation of C > > > POLA to have compilable code within a header file. > > Seconded. Please keep *.h code-free. > > What are you guys all smoking? Did you even look at the file in > question? Nope; sorry for the noise. I blindly believed that Alfred did though. Won't hesitate to _read_ the actual diffs next time. Thanks. ./danfe From owner-cvs-all@FreeBSD.ORG Wed Apr 14 06:48: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 1EB5116A4CE; Wed, 14 Apr 2004 06:48:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0327943D1D; Wed, 14 Apr 2004 06:48:31 -0700 (PDT) (envelope-from josef@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EDmUGe054322; Wed, 14 Apr 2004 06:48:30 -0700 (PDT) (envelope-from josef@repoman.freebsd.org) Received: (from josef@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EDmU4V054321; Wed, 14 Apr 2004 06:48:30 -0700 (PDT) (envelope-from josef) Message-Id: <200404141348.i3EDmU4V054321@repoman.freebsd.org> From: Josef El-Rayes Date: Wed, 14 Apr 2004 06:48:30 -0700 (PDT) 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: Wed, 14 Apr 2004 13:48:31 -0000 josef 2004/04/14 06:48:30 PDT FreeBSD doc repository Modified files: en/events events.xml Log: Remove unnecessary tags introduced by my previous commits. Revision Changes Path 1.28 +1 -4 www/en/events/events.xml From owner-cvs-all@FreeBSD.ORG Wed Apr 14 07: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 EAF6316A4CE; Wed, 14 Apr 2004 07:34:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF06543D2D; Wed, 14 Apr 2004 07:34:59 -0700 (PDT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EEYxGe065332; Wed, 14 Apr 2004 07:34:59 -0700 (PDT) (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EEYxZQ065331; Wed, 14 Apr 2004 07:34:59 -0700 (PDT) (envelope-from bland) Message-Id: <200404141434.i3EEYxZQ065331@repoman.freebsd.org> From: Alexander Nedotsukov Date: Wed, 14 Apr 2004 07:34:59 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 14:35:00 -0000 bland 2004/04/14 07:34:59 PDT FreeBSD ports repository Modified files: ftp/downloader Makefile Log: Fix build with GTK 2.4 Revision Changes Path 1.49 +2 -1 ports/ftp/downloader/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 07:57: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 B9E0716A4CE; Wed, 14 Apr 2004 07:57:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B321643D58; Wed, 14 Apr 2004 07:57:50 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EEvoGe069563; Wed, 14 Apr 2004 07:57:50 -0700 (PDT) (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EEvo7h069562; Wed, 14 Apr 2004 07:57:50 -0700 (PDT) (envelope-from green) Message-Id: <200404141457.i3EEvo7h069562@repoman.freebsd.org> From: Brian Feldman Date: Wed, 14 Apr 2004 07:57:50 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sound/isa ad1816.c ess.c mss.c sb16.c sb8.c sbc.c src/sys/dev/sound/pci cmi.c csa.c csapcm.c ds1.c emu10k1.c ich.c t4dwave.c src/sys/dev/sound/pcm sound.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, 14 Apr 2004 14:57:50 -0000 green 2004/04/14 07:57:50 PDT FreeBSD src repository Modified files: sys/dev/sound/isa ad1816.c ess.c mss.c sb16.c sb8.c sbc.c sys/dev/sound/pci cmi.c csa.c csapcm.c ds1.c emu10k1.c ich.c t4dwave.c sys/dev/sound/pcm sound.h Log: The newpcm headers currently #define away INTR_MPSAFE and INTR_TYPE_AV because they bogusly check for defined(INTR_MPSAFE) -- something which never was a #define. Correct the definitions. This make INTR_TYPE_AV finally get used instead of the lower-priority INTR_TYPE_TTY, so it's quite possible some improvement will be had on sound driver performance. It would also make all the drivers marked INTR_MPSAFE actually run without Giant (which does seem to work for me), but: INTR_MPSAFE HAS BEEN REMOVED FROM EVERY SOUND DRIVER! It needs to be re-added on a case-by-case basis since there is no one who will vouch for which sound drivers, if any, willy actually operate correctly without Giant, since there hasn't been testing because of this bug disabling INTR_MPSAFE. Found by: "Yuriy Tsibizov" Revision Changes Path 1.32 +1 -1 src/sys/dev/sound/isa/ad1816.c 1.30 +1 -1 src/sys/dev/sound/isa/ess.c 1.88 +2 -2 src/sys/dev/sound/isa/mss.c 1.83 +1 -1 src/sys/dev/sound/isa/sb16.c 1.76 +1 -1 src/sys/dev/sound/isa/sb8.c 1.40 +1 -1 src/sys/dev/sound/isa/sbc.c 1.27 +1 -1 src/sys/dev/sound/pci/cmi.c 1.29 +1 -1 src/sys/dev/sound/pci/csa.c 1.30 +1 -1 src/sys/dev/sound/pci/csapcm.c 1.39 +1 -1 src/sys/dev/sound/pci/ds1.c 1.48 +1 -1 src/sys/dev/sound/pci/emu10k1.c 1.41 +1 -1 src/sys/dev/sound/pci/ich.c 1.43 +1 -1 src/sys/dev/sound/pci/t4dwave.c 1.58 +3 -8 src/sys/dev/sound/pcm/sound.h From owner-cvs-all@FreeBSD.ORG Wed Apr 14 08: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 5212016A4CE; Wed, 14 Apr 2004 08:03:23 -0700 (PDT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id E1F6D43D2D; Wed, 14 Apr 2004 08:03:22 -0700 (PDT) (envelope-from scottl@freebsd.org) Received: from freebsd.org (junior-wifi.samsco.home [192.168.0.11]) by pooker.samsco.org (8.12.10/8.12.10) with ESMTP id i3EF5Qc8096539; Wed, 14 Apr 2004 09:05:26 -0600 (MDT) (envelope-from scottl@freebsd.org) Message-ID: <407D52B7.80507@freebsd.org> Date: Wed, 14 Apr 2004 09:03:19 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040304 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Brian Feldman References: <200404141457.i3EEvo7h069562@repoman.freebsd.org> In-Reply-To: <200404141457.i3EEvo7h069562@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/sys/dev/sound/isa ad1816.c ess.c mss.c sb16.c sb8.c sbc.c src/sys/dev/sound/pci cmi.c csa.c csapcm.c ds1.c emu10k1.c ich.c t4dwave.c src/sys/dev/sound/pcm sound.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, 14 Apr 2004 15:03:23 -0000 Brian Feldman wrote: > green 2004/04/14 07:57:50 PDT > > FreeBSD src repository > > Modified files: > sys/dev/sound/isa ad1816.c ess.c mss.c sb16.c sb8.c sbc.c > sys/dev/sound/pci cmi.c csa.c csapcm.c ds1.c emu10k1.c > ich.c t4dwave.c > sys/dev/sound/pcm sound.h > Log: > The newpcm headers currently #define away INTR_MPSAFE and INTR_TYPE_AV > because they bogusly check for defined(INTR_MPSAFE) -- something which > never was a #define. Correct the definitions. > > This make INTR_TYPE_AV finally get used instead of the lower-priority > INTR_TYPE_TTY, so it's quite possible some improvement will be had > on sound driver performance. It would also make all the drivers > marked INTR_MPSAFE actually run without Giant (which does seem to > work for me), but: > INTR_MPSAFE HAS BEEN REMOVED FROM EVERY SOUND DRIVER! > It needs to be re-added on a case-by-case basis since there is no one > who will vouch for which sound drivers, if any, willy actually operate > correctly without Giant, since there hasn't been testing because of > this bug disabling INTR_MPSAFE. > Ha! you touched it last! Neener neener neener! Scott From owner-cvs-all@FreeBSD.ORG Wed Apr 14 08:10: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 7221E16A4CF; Wed, 14 Apr 2004 08:10:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 54CB843D1D; Wed, 14 Apr 2004 08:10:13 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EFADGe072676; Wed, 14 Apr 2004 08:10:13 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EFAC8c072675; Wed, 14 Apr 2004 08:10:12 -0700 (PDT) (envelope-from nectar) Message-Id: <200404141510.i3EFAC8c072675@repoman.freebsd.org> From: Jacques Vidrine Date: Wed, 14 Apr 2004 08:10:12 -0700 (PDT) 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: Wed, 14 Apr 2004 15:10:13 -0000 nectar 2004/04/14 08:10:12 PDT FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Document another racoon DoS vulnerability. Note that racoon was also affected by the tcpdump ISAKMP vulnerability. Revision Changes Path 1.74 +41 -2 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Wed Apr 14 08: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 25A2316A4CE; Wed, 14 Apr 2004 08:15:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08AAD43D5C; Wed, 14 Apr 2004 08:15:45 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EFFiGe074659; Wed, 14 Apr 2004 08:15:44 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EFFiYi074658; Wed, 14 Apr 2004 08:15:44 -0700 (PDT) (envelope-from krion) Message-Id: <200404141515.i3EFFiYi074658@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 08:15:44 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/pmacct 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, 14 Apr 2004 15:15:45 -0000 krion 2004/04/14 08:15:44 PDT FreeBSD ports repository Modified files: net-mgmt/pmacct Makefile distinfo Log: - Update to version 0.6.2 Revision Changes Path 1.17 +1 -1 ports/net-mgmt/pmacct/Makefile 1.14 +2 -2 ports/net-mgmt/pmacct/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 08:22:02 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 D6CB216A4CE; Wed, 14 Apr 2004 08:22:01 -0700 (PDT) Received: from localhost (green@localhost [127.0.0.1]) by green.homeunix.org (8.12.11/8.12.11) with ESMTP id i3EFM1eS049089; Wed, 14 Apr 2004 11:22:01 -0400 (EDT) (envelope-from green@green.homeunix.org) Message-Id: <200404141522.i3EFM1eS049089@green.homeunix.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Scott Long In-Reply-To: Message from Scott Long of "Wed, 14 Apr 2004 09:03:19 MDT." <407D52B7.80507@freebsd.org> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Wed, 14 Apr 2004 11:22:01 -0400 Sender: green@green.homeunix.org cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/sys/dev/sound/isa ad1816.c ess.c mss.c sb16.c sb8.c sbc.c src/sys/dev/sound/pci cmi.c csa.c csapcm.c ds1.c emu10k1.c ich.c t4dwave.c src/sys/dev/sound/pcm sound.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, 14 Apr 2004 15:22:02 -0000 Scott Long wrote: > Brian Feldman wrote: > > green 2004/04/14 07:57:50 PDT > > INTR_MPSAFE HAS BEEN REMOVED FROM EVERY SOUND DRIVER! > Ha! you touched it last! Neener neener neener! Heh, I'll certainly do my own part to make sure the drivers I use get converted. It would suck less trying to do driver development if current drivers didn't panic so much because of kldload/kldunload. For example, kldload usb stuff after it's been unloaded sees something stale and crashes, and sound drivers get EBUSY when I don't see any openers, then the second kldunload causes a crash instead of returning EBUSY again because things must have been half-torn-down. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-all@FreeBSD.ORG Wed Apr 14 08:42: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 C17F016A4D0 for ; Wed, 14 Apr 2004 08:42:29 -0700 (PDT) Received: from mail6.speakeasy.net (mail6.speakeasy.net [216.254.0.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5F3AE43D39 for ; Wed, 14 Apr 2004 08:42:29 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (qmail 16959 invoked from network); 14 Apr 2004 15:42:25 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 14 Apr 2004 15:42:25 -0000 Received: from 10.50.40.205 (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.10/8.12.10) with ESMTP id i3EFfYe0001084; Wed, 14 Apr 2004 11:42:06 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Mark Murray Date: Tue, 13 Apr 2004 22:58:31 -0400 User-Agent: KMail/1.6 References: <200404120913.i3C9DOkd075451@repoman.freebsd.org> In-Reply-To: <200404120913.i3C9DOkd075451@repoman.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200404132258.31816.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/dev/random randomdev.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 15:42:30 -0000 On Monday 12 April 2004 05:13 am, Mark Murray wrote: > markm 2004/04/12 02:13:24 PDT > > FreeBSD src repository > > Modified files: > sys/dev/random randomdev.c > Log: > Fix "sleeping without a mutex" panic. You should drop the lock before uiomove(). If the uio can possibly reference user memory, then uiomove() will do a copyout() which can fault and thus sleep if the page is in swap. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Wed Apr 14 08: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 4AE3416A4CE for ; Wed, 14 Apr 2004 08:42:59 -0700 (PDT) Received: from mail2.speakeasy.net (mail2.speakeasy.net [216.254.0.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0900443D39 for ; Wed, 14 Apr 2004 08:42:59 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (qmail 1302 invoked from network); 14 Apr 2004 15:42:56 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 14 Apr 2004 15:42:56 -0000 Received: from 10.50.40.205 (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.10/8.12.10) with ESMTP id i3EFfYe3001084; Wed, 14 Apr 2004 11:42:36 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Bill Paul Date: Wed, 14 Apr 2004 11:05:43 -0400 User-Agent: KMail/1.6 References: <200404140748.i3E7m4HV067995@repoman.freebsd.org> In-Reply-To: <200404140748.i3E7m4HV067995@repoman.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200404141105.43663.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/compat/ndis hal_var.h kern_ndis.c ndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrnl.c src/sys/dev/if_ndis if_ndis.c if_ndisvar.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, 14 Apr 2004 15:42:59 -0000 On Wednesday 14 April 2004 03:48 am, Bill Paul wrote: > wpaul 2004/04/14 00:48:03 PDT > > FreeBSD src repository > > Modified files: > sys/compat/ndis hal_var.h kern_ndis.c ndis_var.h > ntoskrnl_var.h pe_var.h subr_hal.c > subr_ndis.c subr_ntoskrnl.c > sys/dev/if_ndis if_ndis.c if_ndisvar.h > Log: > Continue my efforts to imitate Windows as closely as possible by > attempting to duplicate Windows spinlocks. Windows spinlocks differ > from FreeBSD spinlocks in the way they block preemption. FreeBSD > spinlocks use critical_enter(), which masks off _all_ interrupts. > This prevents any other threads from being scheduled, but it also > prevents ISRs from running. In Windows, preemption is achieved by > raising the processor IRQL to DISPATCH_LEVEL, which prevents other > threads from preempting you, but does _not_ prevent device ISRs > from running. (This is essentially what Solaris calls dispatcher > locks.) The Windows spinlock itself (kspin_lock) is just an integer > value which is atomically set when you acquire the lock and atomically > cleared when you release it. > > FreeBSD doesn't have IRQ levels, so we have to cheat a little by > using thread priorities: normal thread priority is PASSIVE_LEVEL, > lowest interrupt thread priority is DISPATCH_LEVEL, highest thread > priority is DEVICE_LEVEL (PI_REALTIME) and critical_enter() is > HIGH_LEVEL. In practice, only PASSIVE_LEVEL and DISPATCH_LEVEL > matter to us. The immediate benefit of all this is that I no > longer have to rely on a mutex pool. > > Now, I'm sure many people will be seized by the urge to criticize > me for doing an end run around our own spinlock implementation, but > it makes more sense to do it this way. Well, it does to me anyway. If you don't use atomic ops with memory barriers somewhere (like the mutex implementation does) then NDIS won't work on SMP. Really, IRQL is basically spl()s, and we don't use an spl-like model anymore. Just using mutexes for locking should give you all the protection you need. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Wed Apr 14 08: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 4647916A4CE; Wed, 14 Apr 2004 08:51:22 -0700 (PDT) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id C84DC43D53; Wed, 14 Apr 2004 08:51:21 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (acs-24-154-235-189.zoominternet.net [24.154.235.189]) (authenticated bits=0) by pittgoth.com (8.12.11/8.12.11) with ESMTP id i3EFpJnG056097 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Wed, 14 Apr 2004 11:51:20 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Wed, 14 Apr 2004 11:51:43 -0400 From: Tom Rhodes To: "Brian F. Feldman" Message-Id: <20040414115143.20efa1b1@localhost> In-Reply-To: <200404141522.i3EFM1eS049089@green.homeunix.org> References: <407D52B7.80507@freebsd.org> <200404141522.i3EFM1eS049089@green.homeunix.org> X-Mailer: Sylpheed version 0.9.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Scott Long cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/sound/isa ad1816.c ess.c mss.c sb16.c sb8.c sbc.c src/sys/dev/sound/pci cmi.c csa.c csapcm.c ds1.c emu10k1.c ich.c t4dwave.c src/sys/dev/sound/pcm sound.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, 14 Apr 2004 15:51:22 -0000 On Wed, 14 Apr 2004 11:22:01 -0400 "Brian F. Feldman" wrote: > Scott Long wrote: > > Brian Feldman wrote: > > > green 2004/04/14 07:57:50 PDT > > > INTR_MPSAFE HAS BEEN REMOVED FROM EVERY SOUND DRIVER! > > Ha! you touched it last! Neener neener neener! > > Heh, I'll certainly do my own part to make sure the drivers I use get > converted. It would suck less trying to do driver development if current > drivers didn't panic so much because of kldload/kldunload. For example, For another example, my laptop (IBM G40) panics and drops into the debugger at every boot if I have any USB or PCMCIA devices hooked up. Another oddity is that I can put these devices in after I have logged in and have no problems, ever. Hmmmm ... -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Wed Apr 14 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 86A3116A4CE; Wed, 14 Apr 2004 08:54:07 -0700 (PDT) Received: from pooker.samsco.org (pooker.samsco.org [168.103.85.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 308FB43D4C; Wed, 14 Apr 2004 08:54:07 -0700 (PDT) (envelope-from scottl@freebsd.org) Received: from freebsd.org (junior-wifi.samsco.home [192.168.0.11]) by pooker.samsco.org (8.12.10/8.12.10) with ESMTP id i3EFuAc8096791; Wed, 14 Apr 2004 09:56:10 -0600 (MDT) (envelope-from scottl@freebsd.org) Message-ID: <407D5E9B.5010605@freebsd.org> Date: Wed, 14 Apr 2004 09:54:03 -0600 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.6) Gecko/20040304 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Tom Rhodes References: <407D52B7.80507@freebsd.org> <200404141522.i3EFM1eS049089@green.homeunix.org> <20040414115143.20efa1b1@localhost> In-Reply-To: <20040414115143.20efa1b1@localhost> 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: "Brian F. Feldman" cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sys/dev/sound/isa ad1816.c ess.c mss.c sb16.cich.c t4dwave.c src/sys/dev/sound/pcm sound.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, 14 Apr 2004 15:54:08 -0000 Tom Rhodes wrote: > On Wed, 14 Apr 2004 11:22:01 -0400 > "Brian F. Feldman" wrote: > > >>Scott Long wrote: >> >>>Brian Feldman wrote: >>> >>>>green 2004/04/14 07:57:50 PDT >>>> INTR_MPSAFE HAS BEEN REMOVED FROM EVERY SOUND DRIVER! >>> >>>Ha! you touched it last! Neener neener neener! >> >>Heh, I'll certainly do my own part to make sure the drivers I use get >>converted. It would suck less trying to do driver development if current >>drivers didn't panic so much because of kldload/kldunload. For example, > > > For another example, my laptop (IBM G40) panics and drops into the > debugger at every boot if I have any USB or PCMCIA devices hooked > up. Another oddity is that I can put these devices in after I have > logged in and have no problems, ever. Hmmmm ... > What is the panic? Scott From owner-cvs-all@FreeBSD.ORG Wed Apr 14 08:56: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 258A116A4D1; Wed, 14 Apr 2004 08:56:44 -0700 (PDT) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADDD143D5E; Wed, 14 Apr 2004 08:56:43 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.10/8.12.9) with ESMTP id i3EFugkj024526; Wed, 14 Apr 2004 09:56:42 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 14 Apr 2004 09:57:34 -0600 (MDT) Message-Id: <20040414.095734.10291306.imp@bsdimp.com> To: green@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200404141522.i3EFM1eS049089@green.homeunix.org> References: <200404141522.i3EFM1eS049089@green.homeunix.org> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: scottl@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/sound/isa ad1816.c ess.c mss.c sb16.c sb8.c sbc.c src/sys/dev/sound/pci cmi.c csa.c csapcm.c ds1.c emu10k1.c ich.c t4dwave.c src/sys/dev/sound/pcm sound.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, 14 Apr 2004 15:56:44 -0000 In message: <200404141522.i3EFM1eS049089@green.homeunix.org> "Brian F. Feldman" writes: : Scott Long wrote: : > Brian Feldman wrote: : > > green 2004/04/14 07:57:50 PDT : > > INTR_MPSAFE HAS BEEN REMOVED FROM EVERY SOUND DRIVER! : > Ha! you touched it last! Neener neener neener! : : Heh, I'll certainly do my own part to make sure the drivers I use get : converted. It would suck less trying to do driver development if current : drivers didn't panic so much because of kldload/kldunload. For example, : kldload usb stuff after it's been unloaded sees something stale and crashes, : and sound drivers get EBUSY when I don't see any openers, then the second : kldunload causes a crash instead of returning EBUSY again because things : must have been half-torn-down. kldload/kldunload have nothing to do with it. If the drivers are stupid, that's their own damn fault. usb is a known problem child that needs to be fixed. If there are others that need to be fixed, then fix them. You have the source, use it :-). I've used kldload/kldunload extensively in the development of cardbus, pccard and pccbb. I'd be totally lost w/o it. Warner From owner-cvs-all@FreeBSD.ORG Wed Apr 14 08: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 71CBD16A4CE; Wed, 14 Apr 2004 08:58:18 -0700 (PDT) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6997F43D1D; Wed, 14 Apr 2004 08:58:14 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.10/8.12.9) with ESMTP id i3EFwDkj024549; Wed, 14 Apr 2004 09:58:13 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Wed, 14 Apr 2004 09:59:04 -0600 (MDT) Message-Id: <20040414.095904.26534062.imp@bsdimp.com> To: trhodes@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <20040414115143.20efa1b1@localhost> References: <407D52B7.80507@freebsd.org> <200404141522.i3EFM1eS049089@green.homeunix.org> <20040414115143.20efa1b1@localhost> 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: green@FreeBSD.org cc: src-committers@FreeBSD.org cc: scottl@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/sound/isa ad1816.c ess.c mss.c sb16.c sb8.c sbc.c src/sys/dev/sound/pci cmi.c csa.c csapcm.c ds1.c emu10k1.c ich.c t4dwave.c src/sys/dev/sound/pcm sound.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, 14 Apr 2004 15:58:18 -0000 In message: <20040414115143.20efa1b1@localhost> Tom Rhodes writes: : On Wed, 14 Apr 2004 11:22:01 -0400 : "Brian F. Feldman" wrote: : : > Scott Long wrote: : > > Brian Feldman wrote: : > > > green 2004/04/14 07:57:50 PDT : > > > INTR_MPSAFE HAS BEEN REMOVED FROM EVERY SOUND DRIVER! : > > Ha! you touched it last! Neener neener neener! : > : > Heh, I'll certainly do my own part to make sure the drivers I use get : > converted. It would suck less trying to do driver development if current : > drivers didn't panic so much because of kldload/kldunload. For example, : : For another example, my laptop (IBM G40) panics and drops into the : debugger at every boot if I have any USB or PCMCIA devices hooked : up. Another oddity is that I can put these devices in after I have : logged in and have no problems, ever. Hmmmm ... I'm interested in the PC Card related panics at boot. All of my laptops stopped doing that so long ago I have trouble believing it is still a problem. :-) Warner From owner-cvs-all@FreeBSD.ORG Wed Apr 14 08:58: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 0B29816A4D1; Wed, 14 Apr 2004 08:58:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA4B743D3F; Wed, 14 Apr 2004 08:58:50 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EFwoGe088661; Wed, 14 Apr 2004 08:58:50 -0700 (PDT) (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EFwo6V088657; Wed, 14 Apr 2004 08:58:50 -0700 (PDT) (envelope-from green) Message-Id: <200404141558.i3EFwo6V088657@repoman.freebsd.org> From: Brian Feldman Date: Wed, 14 Apr 2004 08:58:50 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/bin/sh sh.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, 14 Apr 2004 15:58:51 -0000 green 2004/04/14 08:58:50 PDT FreeBSD src repository Modified files: bin/sh sh.1 Log: Document the "return" built-in better: it will exit . (sources) and the top-level shell instance, too. Revision Changes Path 1.90 +7 -1 src/bin/sh/sh.1 From owner-cvs-all@FreeBSD.ORG Wed Apr 14 09: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 AFE1916A4CE; Wed, 14 Apr 2004 09:06:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 93EBC43D39; Wed, 14 Apr 2004 09:06:05 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EG65Ge091570; Wed, 14 Apr 2004 09:06:05 -0700 (PDT) (envelope-from trevor@repoman.freebsd.org) Received: (from trevor@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EG65xe091569; Wed, 14 Apr 2004 09:06:05 -0700 (PDT) (envelope-from trevor) Message-Id: <200404141606.i3EG65xe091569@repoman.freebsd.org> From: Trevor Johnson Date: Wed, 14 Apr 2004 09:06:04 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/pawm Makefile ports/x11-wm/pawm/files patch-src_wm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 16:06:05 -0000 trevor 2004/04/14 09:06:04 PDT FreeBSD ports repository Modified files: x11-wm/pawm Makefile Added files: x11-wm/pawm/files patch-src_wm.c Log: fix for 4-STABLE Submitted by: vs Revision Changes Path 1.7 +1 -7 ports/x11-wm/pawm/Makefile 1.1 +17 -0 ports/x11-wm/pawm/files/patch-src_wm.c (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 09: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 D7AEC16A4CE; Wed, 14 Apr 2004 09:06:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D1A6543D1F; Wed, 14 Apr 2004 09:06:19 -0700 (PDT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EG6JGe091676; Wed, 14 Apr 2004 09:06:19 -0700 (PDT) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EG6Jm7091675; Wed, 14 Apr 2004 09:06:19 -0700 (PDT) (envelope-from harti) Message-Id: <200404141606.i3EG6Jm7091675@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 14 Apr 2004 09:06:19 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src Makefile.inc1 src/etc/mtree BSD.usr.dist src/lib/libbsnmp/modules Makefile.inc src/share/man/man7 hier.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: Wed, 14 Apr 2004 16:06:20 -0000 harti 2004/04/14 09:06:19 PDT FreeBSD src repository Modified files: . Makefile.inc1 etc/mtree BSD.usr.dist lib/libbsnmp/modules Makefile.inc share/man/man7 hier.7 Log: Move the SNMP MIBs and tree definitions from /usr/share/bsnmp to /usr/share/snmp. This mirrors the use of /usr/local/share/snmp and makes also more sense when non-bsnmp-specific MIBs go in. Revision Changes Path 1.423 +1 -1 src/Makefile.inc1 1.302 +6 -6 src/etc/mtree/BSD.usr.dist 1.5 +2 -2 src/lib/libbsnmp/modules/Makefile.inc 1.97 +11 -0 src/share/man/man7/hier.7 From owner-cvs-all@FreeBSD.ORG Wed Apr 14 09: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 A36B616A4CE; Wed, 14 Apr 2004 09:09:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84C9F43D31; Wed, 14 Apr 2004 09:09:20 -0700 (PDT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EG9KGe091781; Wed, 14 Apr 2004 09:09:20 -0700 (PDT) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EG9KKF091780; Wed, 14 Apr 2004 09:09:20 -0700 (PDT) (envelope-from harti) Message-Id: <200404141609.i3EG9KKF091780@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 14 Apr 2004 09:09:20 -0700 (PDT) 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_netgraph snmp_netgraph.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 16:09:20 -0000 harti 2004/04/14 09:09:20 PDT FreeBSD src repository Modified files: lib/libbsnmp/modules/snmp_netgraph snmp_netgraph.c Log: Compare with 0 if comparing an integer, not with NULL. Revision Changes Path 1.4 +1 -1 src/lib/libbsnmp/modules/snmp_netgraph/snmp_netgraph.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 09:11: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 BB2AD16A4CF; Wed, 14 Apr 2004 09:11:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7FCE143D3F; Wed, 14 Apr 2004 09:11:06 -0700 (PDT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EGB6Ge091899; Wed, 14 Apr 2004 09:11:06 -0700 (PDT) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EGB6ew091898; Wed, 14 Apr 2004 09:11:06 -0700 (PDT) (envelope-from harti) Message-Id: <200404141611.i3EGB6ew091898@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 14 Apr 2004 09:11:06 -0700 (PDT) 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_netgraph snmp_netgraph.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: Wed, 14 Apr 2004 16:11:06 -0000 harti 2004/04/14 09:11:06 PDT FreeBSD src repository Modified files: lib/libbsnmp/modules/snmp_netgraph snmp_netgraph.3 Log: Put the name of the module first in the list of all .Nm calls with argument. This makes the output of calling .Nm without an argument more senseful later on. Revision Changes Path 1.3 +1 -0 src/lib/libbsnmp/modules/snmp_netgraph/snmp_netgraph.3 From owner-cvs-all@FreeBSD.ORG Wed Apr 14 09:20: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 D8E5C16A4CF; Wed, 14 Apr 2004 09:20:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BA76B43D45; Wed, 14 Apr 2004 09:20:15 -0700 (PDT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EGKFGe093849; Wed, 14 Apr 2004 09:20:15 -0700 (PDT) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EGKF4j093848; Wed, 14 Apr 2004 09:20:15 -0700 (PDT) (envelope-from harti) Message-Id: <200404141620.i3EGKF4j093848@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 14 Apr 2004 09:20:15 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: BEGEMOT Subject: cvs commit: src/contrib/bsnmp - 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, 14 Apr 2004 16:20:16 -0000 harti 2004/04/14 09:20:15 PDT FreeBSD src repository src/contrib/bsnmp - Imported sources Update of /home/ncvs/src/contrib/bsnmp In directory repoman.freebsd.org:/tmp/cvs-serv93791 Log Message: Import of bsnmpd 1.6 Status: Vendor Tag: BEGEMOT Release Tags: BSNMP_1_6 U src/contrib/bsnmp/NEWS U src/contrib/bsnmp/README U src/contrib/bsnmp/TODO U src/contrib/bsnmp/VERSION U src/contrib/bsnmp/lib/asn1.3 U src/contrib/bsnmp/lib/asn1.c U src/contrib/bsnmp/lib/asn1.h U src/contrib/bsnmp/lib/bsnmpagent.3 U src/contrib/bsnmp/lib/bsnmpclient.3 U src/contrib/bsnmp/lib/bsnmplib.3 U src/contrib/bsnmp/lib/snmp.c U src/contrib/bsnmp/lib/snmp.h U src/contrib/bsnmp/lib/snmpagent.c U src/contrib/bsnmp/lib/snmpagent.h U src/contrib/bsnmp/lib/snmpclient.c U src/contrib/bsnmp/lib/snmpclient.h U src/contrib/bsnmp/lib/snmppriv.h N src/contrib/bsnmp/gensnmpdef/gensnmpdef.1 N src/contrib/bsnmp/gensnmpdef/gensnmpdef.c U src/contrib/bsnmp/gensnmptree/gensnmptree.1 U src/contrib/bsnmp/gensnmptree/gensnmptree.c U src/contrib/bsnmp/snmp_mibII/mibII.c U src/contrib/bsnmp/snmp_mibII/mibII.h U src/contrib/bsnmp/snmp_mibII/mibII_ifmib.c U src/contrib/bsnmp/snmp_mibII/mibII_ifstack.c U src/contrib/bsnmp/snmp_mibII/mibII_interfaces.c U src/contrib/bsnmp/snmp_mibII/mibII_ip.c U src/contrib/bsnmp/snmp_mibII/mibII_ipaddr.c U src/contrib/bsnmp/snmp_mibII/mibII_nettomedia.c U src/contrib/bsnmp/snmp_mibII/mibII_rcvaddr.c U src/contrib/bsnmp/snmp_mibII/mibII_route.c U src/contrib/bsnmp/snmp_mibII/mibII_tcp.c U src/contrib/bsnmp/snmp_mibII/mibII_tree.def U src/contrib/bsnmp/snmp_mibII/mibII_udp.c U src/contrib/bsnmp/snmp_mibII/snmp_mibII.3 U src/contrib/bsnmp/snmp_mibII/snmp_mibII.h U src/contrib/bsnmp/snmpd/.gdbinit U src/contrib/bsnmp/snmpd/BEGEMOT-MIB.txt U src/contrib/bsnmp/snmpd/BEGEMOT-SNMPD.txt U src/contrib/bsnmp/snmpd/FOKUS-MIB.txt U src/contrib/bsnmp/snmpd/action.c U src/contrib/bsnmp/snmpd/bsnmpd.1 U src/contrib/bsnmp/snmpd/config.c U src/contrib/bsnmp/snmpd/export.c U src/contrib/bsnmp/snmpd/main.c U src/contrib/bsnmp/snmpd/snmpd.config U src/contrib/bsnmp/snmpd/snmpd.h U src/contrib/bsnmp/snmpd/snmpd.sh U src/contrib/bsnmp/snmpd/snmpmod.3 U src/contrib/bsnmp/snmpd/snmpmod.h U src/contrib/bsnmp/snmpd/trans_lsock.c U src/contrib/bsnmp/snmpd/trans_lsock.h U src/contrib/bsnmp/snmpd/trans_udp.c U src/contrib/bsnmp/snmpd/trans_udp.h U src/contrib/bsnmp/snmpd/trap.c U src/contrib/bsnmp/snmpd/tree.def No conflicts created by this import From owner-cvs-all@FreeBSD.ORG Wed Apr 14 09:24: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 B47C916A4CE; Wed, 14 Apr 2004 09:24:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9838443D53; Wed, 14 Apr 2004 09:24:28 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EGOSGe095692; Wed, 14 Apr 2004 09:24:28 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EGOSUl095691; Wed, 14 Apr 2004 09:24:28 -0700 (PDT) (envelope-from njl) Message-Id: <200404141624.i3EGOSUl095691@repoman.freebsd.org> From: Nate Lawson Date: Wed, 14 Apr 2004 09:24:28 -0700 (PDT) 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 OsdDebug.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 16:24:28 -0000 njl 2004/04/14 09:24:28 PDT FreeBSD src repository Modified files: sys/dev/acpica/Osd OsdDebug.c Log: Unbreak the DDB build by replacing #includes that were deleted. Pointed out by: Tai-hwa Liang, Xin LI Pointed hat to: njl Revision Changes Path 1.7 +2 -0 src/sys/dev/acpica/Osd/OsdDebug.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 09:29: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 CE7C716A4CE; Wed, 14 Apr 2004 09:29:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0FBC43D3F; Wed, 14 Apr 2004 09:29:46 -0700 (PDT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EGTkGe095898; Wed, 14 Apr 2004 09:29:46 -0700 (PDT) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EGTk8c095897; Wed, 14 Apr 2004 09:29:46 -0700 (PDT) (envelope-from harti) Message-Id: <200404141629.i3EGTk8c095897@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 14 Apr 2004 09:29:46 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/lib/libbsnmp 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: Wed, 14 Apr 2004 16:29:47 -0000 harti 2004/04/14 09:29:46 PDT FreeBSD src repository Modified files: lib/libbsnmp Makefile.inc Log: Bump the shared library version number for the bsnmp v1.6 import because of incompatible interface changes. Revision Changes Path 1.4 +1 -1 src/lib/libbsnmp/Makefile.inc From owner-cvs-all@FreeBSD.ORG Wed Apr 14 09: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 EC10416A4CE; Wed, 14 Apr 2004 09:31:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D047943D58; Wed, 14 Apr 2004 09:31:54 -0700 (PDT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EGVsGe097378; Wed, 14 Apr 2004 09:31:54 -0700 (PDT) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EGVsUQ097374; Wed, 14 Apr 2004 09:31:54 -0700 (PDT) (envelope-from harti) Message-Id: <200404141631.i3EGVsUQ097374@repoman.freebsd.org> From: Hartmut Brandt Date: Wed, 14 Apr 2004 09:31:54 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/bsnmpd/bsnmpd Makefilesrc/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: Wed, 14 Apr 2004 16:31:55 -0000 harti 2004/04/14 09:31:54 PDT FreeBSD src repository Modified files: usr.sbin/bsnmpd/bsnmpd Makefile lib/libbsnmp/modules Makefile.inc Log: Use a MANFILTER to patch the man pages to point to the right path. Noted by: phk Revision Changes Path 1.6 +4 -0 src/lib/libbsnmp/modules/Makefile.inc 1.7 +4 -0 src/usr.sbin/bsnmpd/bsnmpd/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 09: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 9CC6A16A4CE; Wed, 14 Apr 2004 09:40:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97BB743D5D; Wed, 14 Apr 2004 09:40:50 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EGeoGe098206; Wed, 14 Apr 2004 09:40:50 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EGeoYL098205; Wed, 14 Apr 2004 09:40:50 -0700 (PDT) (envelope-from nectar) Message-Id: <200404141640.i3EGeoYL098205@repoman.freebsd.org> From: Jacques Vidrine Date: Wed, 14 Apr 2004 09:40:50 -0700 (PDT) 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/cvs/cvs Makefile client.patch modules.patch X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 16:40:50 -0000 nectar 2004/04/14 09:40:50 PDT FreeBSD src repository Modified files: gnu/usr.bin/cvs/cvs Makefile Added files: gnu/usr.bin/cvs/cvs client.patch modules.patch Log: Patch vulnerabilities in the CVS client and server: A malicious CVS server could cause your CVS client to overwrite arbitrary files (CAN-2004-0180). When a CVS client uses the `-p' checkout option, the server could be fooled into checking out files from outside the given $CVSROOT. (This patch is applied in an unorthodox manner so as not to complicate a later vendor import of CVS.) Revision Changes Path 1.45 +10 -2 src/gnu/usr.bin/cvs/cvs/Makefile 1.1 +30 -0 src/gnu/usr.bin/cvs/cvs/client.patch (new) 1.1 +25 -0 src/gnu/usr.bin/cvs/cvs/modules.patch (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 09:48: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 0E53716A4CE; Wed, 14 Apr 2004 09:48:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E518043D45; Wed, 14 Apr 2004 09:48:28 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EGmSGe000312; Wed, 14 Apr 2004 09:48:28 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EGmSZR000311; Wed, 14 Apr 2004 09:48:28 -0700 (PDT) (envelope-from nectar) Message-Id: <200404141648.i3EGmSZR000311@repoman.freebsd.org> From: Jacques Vidrine Date: Wed, 14 Apr 2004 09:48:27 -0700 (PDT) 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/cvs/cvs Makefile client.patch modules.patch X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 16:48:29 -0000 nectar 2004/04/14 09:48:27 PDT FreeBSD src repository Modified files: gnu/usr.bin/cvs/cvs Makefile client.patch modules.patch Log: Forced commit to note that the CVS patches in the previous commit were Submitted by: Derek Robert Price Revision Changes Path 1.46 +0 -0 src/gnu/usr.bin/cvs/cvs/Makefile 1.2 +0 -0 src/gnu/usr.bin/cvs/cvs/client.patch 1.2 +0 -0 src/gnu/usr.bin/cvs/cvs/modules.patch From owner-cvs-all@FreeBSD.ORG Wed Apr 14 09:50: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 8489516A4CE; Wed, 14 Apr 2004 09:50:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 665FE43D5C; Wed, 14 Apr 2004 09:50:33 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EGoXGe000467; Wed, 14 Apr 2004 09:50:33 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EGoWLa000466; Wed, 14 Apr 2004 09:50:32 -0700 (PDT) (envelope-from njl) Message-Id: <200404141650.i3EGoWLa000466@repoman.freebsd.org> From: Nate Lawson Date: Wed, 14 Apr 2004 09:50:32 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: INTEL Subject: cvs commit: src/sys/contrib/dev/acpica hwsleep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 16:50:33 -0000 njl 2004/04/14 09:50:32 PDT FreeBSD src repository Modified files: (Branch: INTEL) sys/contrib/dev/acpica hwsleep.c Log: Only avoid disabling bus mastering on the sleep path. This should fix power off for some users. The patch has been submitted to Intel. Bug: http://bugme.osdl.org/show_bug.cgi?id=2109 Revision Changes Path 1.1.1.21 +13 -13 src/sys/contrib/dev/acpica/hwsleep.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 09:52: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 DF84D16A4CE; Wed, 14 Apr 2004 09:52:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C23FD43D39; Wed, 14 Apr 2004 09:52:19 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EGqJGe001951; Wed, 14 Apr 2004 09:52:19 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EGqJqh001947; Wed, 14 Apr 2004 09:52:19 -0700 (PDT) (envelope-from njl) Message-Id: <200404141652.i3EGqJqh001947@repoman.freebsd.org> From: Nate Lawson Date: Wed, 14 Apr 2004 09:52:19 -0700 (PDT) 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/acpica hwsleep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 16:52:20 -0000 njl 2004/04/14 09:52:19 PDT FreeBSD src repository Modified files: sys/contrib/dev/acpica hwsleep.c Log: Even though the patch has been submitted to the vendor, this file is off the vendor branch. Once more, with feeling! Revision Changes Path 1.16 +13 -13 src/sys/contrib/dev/acpica/hwsleep.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 10:02: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 F41E216A4CE; Wed, 14 Apr 2004 10:02:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6FFF43D62; Wed, 14 Apr 2004 10:02:43 -0700 (PDT) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EH2hGe004219; Wed, 14 Apr 2004 10:02:43 -0700 (PDT) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EH2hIR004215; Wed, 14 Apr 2004 10:02:43 -0700 (PDT) (envelope-from phantom) Message-Id: <200404141702.i3EH2hIR004215@repoman.freebsd.org> From: Alexey Zelkin Date: Wed, 14 Apr 2004 10:02:43 -0700 (PDT) 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/ppp-primer 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, 14 Apr 2004 17:02:44 -0000 phantom 2004/04/14 10:02:43 PDT FreeBSD doc repository Modified files: ru_RU.KOI8-R/books/ppp-primer book.sgml Log: Fix translation. Submitted by: Dyagtev Stanislav Obtained from: The FreeBSD Russian Documetnation Project Revision Changes Path 1.6 +1 -1 doc/ru_RU.KOI8-R/books/ppp-primer/book.sgml From owner-cvs-all@FreeBSD.ORG Wed Apr 14 10: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 D6BBE16A4CE; Wed, 14 Apr 2004 10:11:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9F2B43D39; Wed, 14 Apr 2004 10:11:16 -0700 (PDT) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EHBGGe006258; Wed, 14 Apr 2004 10:11:16 -0700 (PDT) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EHBF3S006248; Wed, 14 Apr 2004 10:11:16 -0700 (PDT) (envelope-from phantom) Message-Id: <200404141711.i3EHBF3S006248@repoman.freebsd.org> From: Alexey Zelkin Date: Wed, 14 Apr 2004 10:11:15 -0700 (PDT) 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: Wed, 14 Apr 2004 17:11:17 -0000 phantom 2004/04/14 10:11:15 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook book.sgml Log: Use absolute url while referencing main web site (not relative reference). I have two reasons to do this change: . We are referencing 'main web site', so need to refer *main* website . When handbook is installed on into /usr/share/doc, or mirrored on third part site (handbook only) -- this link is broken. Revision Changes Path 1.146 +1 -1 doc/en_US.ISO8859-1/books/handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Wed Apr 14 10: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 4851B16A4CE; Wed, 14 Apr 2004 10:18:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B56343D58; Wed, 14 Apr 2004 10:18:53 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EHIrGe007502; Wed, 14 Apr 2004 10:18:53 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EHIqPZ007501; Wed, 14 Apr 2004 10:18:52 -0700 (PDT) (envelope-from nectar) Message-Id: <200404141718.i3EHIqPZ007501@repoman.freebsd.org> From: Jacques Vidrine Date: Wed, 14 Apr 2004 10:18:52 -0700 (PDT) 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: Wed, 14 Apr 2004 17:18:53 -0000 nectar 2004/04/14 10:18:52 PDT FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Add CVS vulnerabilities. Revision Changes Path 1.75 +42 -0 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Wed Apr 14 10: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 BE69B16A4CE; Wed, 14 Apr 2004 10:19:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9D15543D55; Wed, 14 Apr 2004 10:19:57 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EHJvGe007542; Wed, 14 Apr 2004 10:19:57 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EHJvOh007541; Wed, 14 Apr 2004 10:19:57 -0700 (PDT) (envelope-from nectar) Message-Id: <200404141719.i3EHJvOh007541@repoman.freebsd.org> From: Jacques Vidrine Date: Wed, 14 Apr 2004 10:19:57 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/cvs+ipv6 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, 14 Apr 2004 17:19:57 -0000 nectar 2004/04/14 10:19:57 PDT FreeBSD ports repository Modified files: devel/cvs+ipv6 Makefile Log: Mark FORBIDDEN due to remotely exploitable vulnerabilities. http://vuxml.freebsd.org/0792e7a7-8e37-11d8-90d1-0020ed76ef5a.html Revision Changes Path 1.12 +2 -0 ports/devel/cvs+ipv6/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 10: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 E802916A4CE; Wed, 14 Apr 2004 10:23:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2D9E43D1D; Wed, 14 Apr 2004 10:23:23 -0700 (PDT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EHNNGe009446; Wed, 14 Apr 2004 10:23:23 -0700 (PDT) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EHNNka009445; Wed, 14 Apr 2004 10:23:23 -0700 (PDT) (envelope-from nork) Message-Id: <200404141723.i3EHNNka009445@repoman.freebsd.org> From: Norikatsu Shigemura Date: Wed, 14 Apr 2004 10:23:23 -0700 (PDT) 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/irrd Makefile distinfo pkg-descr pkg-plist ports/net/irrd/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: Wed, 14 Apr 2004 17:23:24 -0000 nork 2004/04/14 10:23:23 PDT FreeBSD ports repository Modified files: net Makefile Added files: net/irrd Makefile distinfo pkg-descr pkg-plist net/irrd/files patch-configure Log: Add Internet Routing Registry database server(2.1.5). Submitted by: TAKANO Yuji Revision Changes Path 1.1266 +1 -0 ports/net/Makefile 1.1 +53 -0 ports/net/irrd/Makefile (new) 1.1 +2 -0 ports/net/irrd/distinfo (new) 1.1 +24 -0 ports/net/irrd/files/patch-configure (new) 1.1 +3 -0 ports/net/irrd/pkg-descr (new) 1.1 +8 -0 ports/net/irrd/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 10:23: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 4960116A4CE; Wed, 14 Apr 2004 10:23:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CB2043D39; Wed, 14 Apr 2004 10:23:38 -0700 (PDT) (envelope-from nork@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EHNcGe009490; Wed, 14 Apr 2004 10:23:38 -0700 (PDT) (envelope-from nork@repoman.freebsd.org) Received: (from nork@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EHNbk2009489; Wed, 14 Apr 2004 10:23:37 -0700 (PDT) (envelope-from nork) Message-Id: <200404141723.i3EHNbk2009489@repoman.freebsd.org> From: Norikatsu Shigemura Date: Wed, 14 Apr 2004 10:23:37 -0700 (PDT) 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, 14 Apr 2004 17:23:38 -0000 nork 2004/04/14 10:23:37 PDT FreeBSD ports repository Modified files: . modules Log: irrd --> ports/net/irrd Revision Changes Path 1.9903 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 14 10:26: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 E253D16A4CE; Wed, 14 Apr 2004 10:26:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C432643D48; Wed, 14 Apr 2004 10:26:21 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EHQLGe009641; Wed, 14 Apr 2004 10:26:21 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EHQLAR009640; Wed, 14 Apr 2004 10:26:21 -0700 (PDT) (envelope-from linimon) Message-Id: <200404141726.i3EHQLAR009640@repoman.freebsd.org> From: Mark Linimon Date: Wed, 14 Apr 2004 10:26:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/ruby-python 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, 14 Apr 2004 17:26:22 -0000 linimon 2004/04/14 10:26:21 PDT FreeBSD ports repository Modified files: lang/ruby-python Makefile Log: Mark as deprecated: its dependendencies are broken, and it relies on an antique version of Python. Per the manintainer (knu): "Ruby now has hundreds of native libraries, and no one would need or want to use ruby-python to borrow libraries from python." Revision Changes Path 1.21 +2 -0 ports/lang/ruby-python/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 10: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 B954E16A4CE; Wed, 14 Apr 2004 10:44:58 -0700 (PDT) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC9B143D45; Wed, 14 Apr 2004 10:44:58 -0700 (PDT) (envelope-from bright@elvis.mu.org) Received: by elvis.mu.org (Postfix, from userid 1192) id 97EFE5C7FE; Wed, 14 Apr 2004 10:44:58 -0700 (PDT) Date: Wed, 14 Apr 2004 10:44:58 -0700 From: Alfred Perlstein To: Tim Kientzle Message-ID: <20040414174458.GG63832@elvis.mu.org> References: <200404140040.i3E0esil061104@repoman.freebsd.org> <20040414021526.GB63832@elvis.mu.org> <407CB356.7060102@kientzle.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <407CB356.7060102@kientzle.com> User-Agent: Mutt/1.4.2.1i cc: cvs-src@freebsd.org cc: Tim Kientzle cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/usr.bin/tar bsdtar.c bsdtar.h 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: Wed, 14 Apr 2004 17:44:58 -0000 * Tim Kientzle [040413 20:43] wrote: > Huh? Maybe I'm missing something, but I don't > see the instantiations to which you refer. My apologies, I mis-read the diffs. From owner-cvs-all@FreeBSD.ORG Wed Apr 14 10: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 29B7116A4CE; Wed, 14 Apr 2004 10:46:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C60D43D5F; Wed, 14 Apr 2004 10:46:22 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EHkLGe013702; Wed, 14 Apr 2004 10:46:21 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EHkLKI013701; Wed, 14 Apr 2004 10:46:21 -0700 (PDT) (envelope-from njl) Message-Id: <200404141746.i3EHkLKI013701@repoman.freebsd.org> From: Nate Lawson Date: Wed, 14 Apr 2004 10:46:21 -0700 (PDT) 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: Wed, 14 Apr 2004 17:46:22 -0000 njl 2004/04/14 10:46:21 PDT FreeBSD src repository Modified files: sys/dev/acpica acpi_pci.c Log: Only try to set the ACPI power state if the handle is valid. There was probably no problem with this except it may have had the side effect of registering a NULL consumer. Revision Changes Path 1.13 +10 -6 src/sys/dev/acpica/acpi_pci.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 10:47: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 4B12816A4CE; Wed, 14 Apr 2004 10:47:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DB7643D49; Wed, 14 Apr 2004 10:47:43 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EHlhGe013763; Wed, 14 Apr 2004 10:47:43 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EHlgBQ013762; Wed, 14 Apr 2004 10:47:42 -0700 (PDT) (envelope-from njl) Message-Id: <200404141747.i3EHlgBQ013762@repoman.freebsd.org> From: Nate Lawson Date: Wed, 14 Apr 2004 10:47:42 -0700 (PDT) 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: Wed, 14 Apr 2004 17:47:43 -0000 njl 2004/04/14 10:47:42 PDT FreeBSD src repository Modified files: sys/dev/acpica acpi_powerres.c Log: Fix some warnings by commenting out unused code. Revision Changes Path 1.21 +8 -0 src/sys/dev/acpica/acpi_powerres.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 10: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 B75B016A4CE; Wed, 14 Apr 2004 10:48:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9CA9A43D48; Wed, 14 Apr 2004 10:48:33 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EHmXGe013808; Wed, 14 Apr 2004 10:48:33 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EHmXF4013807; Wed, 14 Apr 2004 10:48:33 -0700 (PDT) (envelope-from njl) Message-Id: <200404141748.i3EHmXF4013807@repoman.freebsd.org> From: Nate Lawson Date: Wed, 14 Apr 2004 10:48:33 -0700 (PDT) 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: Wed, 14 Apr 2004 17:48:33 -0000 njl 2004/04/14 10:48:33 PDT FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: Remove a non-variable static and move other static variables to the same location. Revision Changes Path 1.138 +5 -8 src/sys/dev/acpica/acpi.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 10:52: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 B957316A4CE; Wed, 14 Apr 2004 10:52:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E1EA43D53; Wed, 14 Apr 2004 10:52:10 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EHq9Ge015251; Wed, 14 Apr 2004 10:52:09 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EHq9Jm015232; Wed, 14 Apr 2004 10:52:09 -0700 (PDT) (envelope-from imp) Message-Id: <200404141752.i3EHq9Jm015232@repoman.freebsd.org> From: Warner Losh Date: Wed, 14 Apr 2004 10:52:08 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pci 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: Wed, 14 Apr 2004 17:52:10 -0000 imp 2004/04/14 10:52:08 PDT FreeBSD src repository Modified files: sys/dev/pci pci.c Log: Now that the dust has settled on the resource issues, turn on the power parts of my patches and see what breaks. Don't (yet) throw the chatty messages behind a if (bootverbose). Revision Changes Path 1.242 +2 -2 src/sys/dev/pci/pci.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 10: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 E041C16A4CF; Wed, 14 Apr 2004 10:54:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AEC0443D53; Wed, 14 Apr 2004 10:54:19 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EHsJGe015790; Wed, 14 Apr 2004 10:54:19 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EHsJAO015785; Wed, 14 Apr 2004 10:54:19 -0700 (PDT) (envelope-from imp) Message-Id: <200404141754.i3EHsJAO015785@repoman.freebsd.org> From: Warner Losh Date: Wed, 14 Apr 2004 10:54:19 -0700 (PDT) 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: Wed, 14 Apr 2004 17:54:20 -0000 imp 2004/04/14 10:54:19 PDT FreeBSD src repository Modified files: . UPDATING Log: Add notes about the pci stuff that's currently working its way through current. Revision Changes Path 1.303 +14 -0 src/UPDATING From owner-cvs-all@FreeBSD.ORG Wed Apr 14 10:58: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 7054E16A4CE; Wed, 14 Apr 2004 10:58:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 530CE43D48; Wed, 14 Apr 2004 10:58:20 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EHwJGe015970; Wed, 14 Apr 2004 10:58:19 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EHwJ5i015969; Wed, 14 Apr 2004 10:58:19 -0700 (PDT) (envelope-from njl) Message-Id: <200404141758.i3EHwJ5i015969@repoman.freebsd.org> From: Nate Lawson Date: Wed, 14 Apr 2004 10:58:19 -0700 (PDT) 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: Wed, 14 Apr 2004 17:58:20 -0000 njl 2004/04/14 10:58:19 PDT FreeBSD src repository Modified files: sys/dev/acpica acpi_powerres.c Log: Return an error immediately if asked to switch a non-existent consumer. Revision Changes Path 1.22 +4 -0 src/sys/dev/acpica/acpi_powerres.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11:03: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 F2DEF16A4CE; Wed, 14 Apr 2004 11:03:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D666443D53; Wed, 14 Apr 2004 11:03:30 -0700 (PDT) (envelope-from vkashyap@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EI3UGe018849; Wed, 14 Apr 2004 11:03:30 -0700 (PDT) (envelope-from vkashyap@repoman.freebsd.org) Received: (from vkashyap@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EI3UWg018848; Wed, 14 Apr 2004 11:03:30 -0700 (PDT) (envelope-from vkashyap) Message-Id: <200404141803.i3EI3UWg018848@repoman.freebsd.org> From: Vinod Kashyap Date: Wed, 14 Apr 2004 11:03:30 -0700 (PDT) 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 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, 14 Apr 2004 18:03:31 -0000 vkashyap 2004/04/14 11:03:30 PDT FreeBSD src repository Modified files: share/man/man4 Makefile Log: Added an entry for twa.4. Reviewed by: ru Revision Changes Path 1.264 +1 -0 src/share/man/man4/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11:08: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 EC1AD16A4D9; Wed, 14 Apr 2004 11:08:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDDC443D1D; Wed, 14 Apr 2004 11:08:17 -0700 (PDT) (envelope-from vkashyap@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EI8HGe019063; Wed, 14 Apr 2004 11:08:17 -0700 (PDT) (envelope-from vkashyap@repoman.freebsd.org) Received: (from vkashyap@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EI8H1u019062; Wed, 14 Apr 2004 11:08:17 -0700 (PDT) (envelope-from vkashyap) Message-Id: <200404141808.i3EI8H1u019062@repoman.freebsd.org> From: Vinod Kashyap Date: Wed, 14 Apr 2004 11:08:17 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/share/man/man4 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, 14 Apr 2004 18:08:18 -0000 vkashyap 2004/04/14 11:08:17 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) share/man/man4 Makefile Log: Added an entry for twa.4 (for 4.x). Reviewed by: ru Approved by: re Revision Changes Path 1.83.2.76 +1 -0 src/share/man/man4/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11:11: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 1EB2716A4CE; Wed, 14 Apr 2004 11:11:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0168D43D39; Wed, 14 Apr 2004 11:11:09 -0700 (PDT) (envelope-from jeh@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIB8Ge019233; Wed, 14 Apr 2004 11:11:08 -0700 (PDT) (envelope-from jeh@repoman.freebsd.org) Received: (from jeh@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIB8ZN019232; Wed, 14 Apr 2004 11:11:08 -0700 (PDT) (envelope-from jeh) Message-Id: <200404141811.i3EIB8ZN019232@repoman.freebsd.org> From: "James E. Housley" Date: Wed, 14 Apr 2004 11:11:08 -0700 (PDT) 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, 14 Apr 2004 18:11:09 -0000 jeh 2004/04/14 11:11:08 PDT FreeBSD ports repository Modified files: security/uvscan-dat Makefile distinfo Log: Update to 4351 Revision Changes Path 1.229 +1 -1 ports/security/uvscan-dat/Makefile 1.227 +2 -2 ports/security/uvscan-dat/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11:12: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 68CC016A4CE; Wed, 14 Apr 2004 11:12:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CB6343D58; Wed, 14 Apr 2004 11:12:30 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EICUGe020925; Wed, 14 Apr 2004 11:12:30 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EICTI7020921; Wed, 14 Apr 2004 11:12:29 -0700 (PDT) (envelope-from njl) Message-Id: <200404141812.i3EICTI7020921@repoman.freebsd.org> From: Nate Lawson Date: Wed, 14 Apr 2004 11:12:29 -0700 (PDT) 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/acpica dmopcode.c hwregs.c uteval.c utglobal.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 18:12:30 -0000 njl 2004/04/14 11:12:29 PDT FreeBSD src repository Modified files: sys/contrib/dev/acpica dmopcode.c hwregs.c uteval.c utglobal.c Log: Remove warnings from vendor files. This takes some files off the vendor branch but they have indicated they will not fix these warnings. Revision Changes Path 1.2 +26 -40 src/sys/contrib/dev/acpica/dmopcode.c 1.2 +617 -467 src/sys/contrib/dev/acpica/hwregs.c 1.2 +490 -194 src/sys/contrib/dev/acpica/uteval.c 1.15 +6 -6 src/sys/contrib/dev/acpica/utglobal.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11: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 A1B5916A4CE; Wed, 14 Apr 2004 11:13:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84BEE43D41; Wed, 14 Apr 2004 11:13:17 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIDHGe021041; Wed, 14 Apr 2004 11:13:17 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIDGoc021040; Wed, 14 Apr 2004 11:13:16 -0700 (PDT) (envelope-from njl) Message-Id: <200404141813.i3EIDGoc021040@repoman.freebsd.org> From: Nate Lawson Date: Wed, 14 Apr 2004 11:13:16 -0700 (PDT) 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, 14 Apr 2004 18:13:17 -0000 njl 2004/04/14 11:13:16 PDT FreeBSD src repository Modified files: sys/conf files Log: Remove nowerror lines now that acpica is warns clean. Revision Changes Path 1.886 +5 -5 src/sys/conf/files From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11:31: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 3173B16A4CE; Wed, 14 Apr 2004 11:31:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 155E743D5F; Wed, 14 Apr 2004 11:31:32 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIVVGe024047; Wed, 14 Apr 2004 11:31:31 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIVVCZ024043; Wed, 14 Apr 2004 11:31:31 -0700 (PDT) (envelope-from erwin) Message-Id: <200404141831.i3EIVVCZ024043@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 14 Apr 2004 11:31:31 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/finance/p5-Business-OnlinePayment-MerchantCommerce 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, 14 Apr 2004 18:31:32 -0000 erwin 2004/04/14 11:31:31 PDT FreeBSD ports repository Modified files: finance/p5-Business-OnlinePayment-MerchantCommerce pkg-plist Log: Add missing dirrm Submitted by: dosirak Revision Changes Path 1.3 +1 -0 ports/finance/p5-Business-OnlinePayment-MerchantCommerce/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11:35: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 F26E916A4CE; Wed, 14 Apr 2004 11:35:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6D3343D2D; Wed, 14 Apr 2004 11:35:45 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIZjGe025189; Wed, 14 Apr 2004 11:35:45 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIZjt7025188; Wed, 14 Apr 2004 11:35:45 -0700 (PDT) (envelope-from erwin) Message-Id: <200404141835.i3EIZjt7025188@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 14 Apr 2004 11:35:45 -0700 (PDT) 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-Freshmeat 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, 14 Apr 2004 18:35:46 -0000 erwin 2004/04/14 11:35:45 PDT FreeBSD ports repository Modified files: mail/p5-Mail-Freshmeat pkg-plist Log: Add missing dirrm Revision Changes Path 1.5 +1 -0 ports/mail/p5-Mail-Freshmeat/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11:37: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 E0B4616A4CE; Wed, 14 Apr 2004 11:37:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C4B5D43D4C; Wed, 14 Apr 2004 11:37:20 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIbKGe025279; Wed, 14 Apr 2004 11:37:20 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIbKBJ025278; Wed, 14 Apr 2004 11:37:20 -0700 (PDT) (envelope-from erwin) Message-Id: <200404141837.i3EIbKBJ025278@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 14 Apr 2004 11:37:20 -0700 (PDT) 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-String 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, 14 Apr 2004 18:37:21 -0000 erwin 2004/04/14 11:37:20 PDT FreeBSD ports repository Modified files: devel/p5-IO-String pkg-plist Log: Don't remove %%SITE_PERL%%/%%PERL_ARCH%%/auto on deinstall Submitted by: dosirak Revision Changes Path 1.6 +0 -1 ports/devel/p5-IO-String/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11:37: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 C14D616A4CE; Wed, 14 Apr 2004 11:37:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A4CE443D2F; Wed, 14 Apr 2004 11:37:38 -0700 (PDT) (envelope-from trevor@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIbcGe025316; Wed, 14 Apr 2004 11:37:38 -0700 (PDT) (envelope-from trevor@repoman.freebsd.org) Received: (from trevor@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIbccH025315; Wed, 14 Apr 2004 11:37:38 -0700 (PDT) (envelope-from trevor) Message-Id: <200404141837.i3EIbccH025315@repoman.freebsd.org> From: Trevor Johnson Date: Wed, 14 Apr 2004 11:37:38 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports CHANGES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 18:37:38 -0000 trevor 2004/04/14 11:37:38 PDT FreeBSD ports repository Modified files: . CHANGES Log: Mention USE_GNOME=gtk20 (gleaned from marcus' commits to the nogger, gringotts, aumix, groundhog and gtk-qnxtheme ports). Revision Changes Path 1.15 +6 -1 ports/CHANGES From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11:38: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 194F116A4CE; Wed, 14 Apr 2004 11:38:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA6CA43D3F; Wed, 14 Apr 2004 11:38:46 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIckGe025367; Wed, 14 Apr 2004 11:38:46 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIckH7025366; Wed, 14 Apr 2004 11:38:46 -0700 (PDT) (envelope-from erwin) Message-Id: <200404141838.i3EIckH7025366@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 14 Apr 2004 11:38:46 -0700 (PDT) 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-Tty 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, 14 Apr 2004 18:38:47 -0000 erwin 2004/04/14 11:38:46 PDT FreeBSD ports repository Modified files: devel/p5-IO-Tty pkg-plist Log: Don't remove directories that are part of the perl distro. Submitted by: dosirak Revision Changes Path 1.4 +0 -2 ports/devel/p5-IO-Tty/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11: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 476BB16A4CE; Wed, 14 Apr 2004 11:41:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BD8E43D48; Wed, 14 Apr 2004 11:41:45 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIfiGe026688; Wed, 14 Apr 2004 11:41:44 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIfiZA026681; Wed, 14 Apr 2004 11:41:44 -0700 (PDT) (envelope-from krion) Message-Id: <200404141841.i3EIfiZA026681@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 11:41:44 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/nas 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, 14 Apr 2004 18:41:45 -0000 krion 2004/04/14 11:41:44 PDT FreeBSD ports repository Modified files: audio/nas Makefile Log: - Fix MASTER_SITES PR: ports/65531 Submitted by: Ports Fury Revision Changes Path 1.27 +1 -1 ports/audio/nas/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11: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 87E6516A4CE; Wed, 14 Apr 2004 11:42:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C40C43D60; Wed, 14 Apr 2004 11:42:34 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIgYGe027262; Wed, 14 Apr 2004 11:42:34 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIgYEN027261; Wed, 14 Apr 2004 11:42:34 -0700 (PDT) (envelope-from marcus) Message-Id: <200404141842.i3EIgYEN027261@repoman.freebsd.org> From: Joe Marcus Clarke Date: Wed, 14 Apr 2004 11:42:34 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports CHANGES X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 18:42:34 -0000 marcus 2004/04/14 11:42:34 PDT FreeBSD ports repository Modified files: . CHANGES Log: Augment Trevor's GNOME instructions by linking to the GNOME porting guide. Revision Changes Path 1.16 +5 -1 ports/CHANGES From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11:42: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 6C39916A4CE; Wed, 14 Apr 2004 11:42:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4E3C143D49; Wed, 14 Apr 2004 11:42:57 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIgvGe027294; Wed, 14 Apr 2004 11:42:57 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIgvAS027293; Wed, 14 Apr 2004 11:42:57 -0700 (PDT) (envelope-from erwin) Message-Id: <200404141842.i3EIgvAS027293@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 14 Apr 2004 11:42:57 -0700 (PDT) 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-SSI 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, 14 Apr 2004 18:42:57 -0000 erwin 2004/04/14 11:42:57 PDT FreeBSD ports repository Modified files: www/p5-Apache-SSI Makefile Log: Add missing man page Remove MAN3PREFIX while I'm here Submitted by: dosirak Revision Changes Path 1.8 +2 -2 ports/www/p5-Apache-SSI/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11:48: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 530CE16A4CE; Wed, 14 Apr 2004 11:48:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3646F43D54; Wed, 14 Apr 2004 11:48:41 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EImfGe027514; Wed, 14 Apr 2004 11:48:41 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EImeVh027513; Wed, 14 Apr 2004 11:48:40 -0700 (PDT) (envelope-from krion) Message-Id: <200404141848.i3EImeVh027513@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 11:48:40 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/unixODBC 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, 14 Apr 2004 18:48:41 -0000 krion 2004/04/14 11:48:40 PDT FreeBSD ports repository Modified files: databases/unixODBC pkg-plist Log: - Fix handling empty directory PR: ports/65532 Submitted by: Ports Fury Revision Changes Path 1.20 +2 -1 ports/databases/unixODBC/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11: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 59E4A16A4CE; Wed, 14 Apr 2004 11:49:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ECF843D1D; Wed, 14 Apr 2004 11:49:01 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIn1Ge027571; Wed, 14 Apr 2004 11:49:01 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIn0Hc027570; Wed, 14 Apr 2004 11:49:01 -0700 (PDT) (envelope-from erwin) Message-Id: <200404141849.i3EIn0Hc027570@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 14 Apr 2004 11:49:00 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/astro/p5-Astro-Catalog 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, 14 Apr 2004 18:49:01 -0000 erwin 2004/04/14 11:49:00 PDT FreeBSD ports repository Modified files: astro/p5-Astro-Catalog pkg-plist Log: Add missing binaries Submitted by: dosirak Revision Changes Path 1.3 +3 -0 ports/astro/p5-Astro-Catalog/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11:49: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 5F6F016A4D0; Wed, 14 Apr 2004 11:49:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 430DC43D1F; Wed, 14 Apr 2004 11:49:25 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EInPGe027636; Wed, 14 Apr 2004 11:49:25 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EInPXu027635; Wed, 14 Apr 2004 11:49:25 -0700 (PDT) (envelope-from krion) Message-Id: <200404141849.i3EInPXu027635@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 11:49:25 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/t1lib Makefile distinfo pkg-plist ports/devel/t1lib/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: Wed, 14 Apr 2004 18:49:25 -0000 krion 2004/04/14 11:49:25 PDT FreeBSD ports repository Modified files: devel/t1lib Makefile distinfo pkg-plist Added files: devel/t1lib/files patch-Makefile.in Log: - Update to version 5.0.2 PR: ports/65533 Submitted by: Ports Fury Revision Changes Path 1.26 +7 -7 ports/devel/t1lib/Makefile 1.13 +2 -2 ports/devel/t1lib/distinfo 1.1 +11 -0 ports/devel/t1lib/files/patch-Makefile.in (new) 1.12 +4 -4 ports/devel/t1lib/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11: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 E5C1916A4CF; Wed, 14 Apr 2004 11:49:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDF6643D48; Wed, 14 Apr 2004 11:49:56 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EInuGe027682; Wed, 14 Apr 2004 11:49:56 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EInu9O027681; Wed, 14 Apr 2004 11:49:56 -0700 (PDT) (envelope-from krion) Message-Id: <200404141849.i3EInu9O027681@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 11:49:56 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/mahjong 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, 14 Apr 2004 18:49:57 -0000 krion 2004/04/14 11:49:56 PDT FreeBSD ports repository Modified files: games/mahjong Makefile distinfo Removed files: games/mahjong pkg-plist Log: - Update to version 1.6.1 PR: ports/65534 Submitted by: Ports Fury Revision Changes Path 1.26 +3 -6 ports/games/mahjong/Makefile 1.20 +2 -2 ports/games/mahjong/distinfo 1.2 +0 -3 ports/games/mahjong/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11: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 59A7D16A4CE; Wed, 14 Apr 2004 11:50:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3EE3D43D2D; Wed, 14 Apr 2004 11:50:56 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIotGe027813; Wed, 14 Apr 2004 11:50:55 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIotna027812; Wed, 14 Apr 2004 11:50:55 -0700 (PDT) (envelope-from krion) Message-Id: <200404141850.i3EIotna027812@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 11:50:55 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/subconv 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: Wed, 14 Apr 2004 18:50:56 -0000 krion 2004/04/14 11:50:55 PDT FreeBSD ports repository Modified files: multimedia/subconv Makefile pkg-descr Removed files: multimedia/subconv pkg-plist Log: - Fix COMMENT format - Support PLIST_FILES - Add WWW: line PR: ports/65535 Submitted by: Ports Fury Revision Changes Path 1.3 +6 -2 ports/multimedia/subconv/Makefile 1.2 +2 -0 ports/multimedia/subconv/pkg-descr 1.3 +0 -3 ports/multimedia/subconv/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11:51: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 BEA7816A4CE; Wed, 14 Apr 2004 11:51:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A15A443D4C; Wed, 14 Apr 2004 11:51:18 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIpIGe027887; Wed, 14 Apr 2004 11:51:18 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIpILx027886; Wed, 14 Apr 2004 11:51:18 -0700 (PDT) (envelope-from krion) Message-Id: <200404141851.i3EIpILx027886@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 11:51:18 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/glload Makefile distinfo pkg-descr ports/sysutils/glload/files patch-Makefile.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, 14 Apr 2004 18:51:19 -0000 krion 2004/04/14 11:51:18 PDT FreeBSD ports repository Modified files: sysutils/glload Makefile distinfo pkg-descr sysutils/glload/files patch-Makefile.FreeBSD Log: - Update to version 0.4.2 PR: ports/65536 Submitted by: Ports Fury Revision Changes Path 1.19 +11 -8 ports/sysutils/glload/Makefile 1.4 +2 -2 ports/sysutils/glload/distinfo 1.2 +13 -7 ports/sysutils/glload/files/patch-Makefile.FreeBSD 1.4 +0 -2 ports/sysutils/glload/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Apr 14 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 B7F9216A4CE; Wed, 14 Apr 2004 11:51:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A6B743D1F; Wed, 14 Apr 2004 11:51:38 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIpbGe028699; Wed, 14 Apr 2004 11:51:37 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIpbLD028692; Wed, 14 Apr 2004 11:51:37 -0700 (PDT) (envelope-from krion) Message-Id: <200404141851.i3EIpbLD028692@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 11:51:37 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/pwg 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, 14 Apr 2004 18:51:38 -0000 krion 2004/04/14 11:51:37 PDT FreeBSD ports repository Modified files: sysutils/pwg Makefile pkg-descr Log: - Update MASTER_SITES and WWW: line PR: ports/65537 Submitted by: Ports Fury Revision Changes Path 1.8 +7 -11 ports/sysutils/pwg/Makefile 1.2 +1 -1 ports/sysutils/pwg/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11:51: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 E4D3A16A51F; Wed, 14 Apr 2004 11:51:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C79C443D1D; Wed, 14 Apr 2004 11:51:50 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIpoGe028897; Wed, 14 Apr 2004 11:51:50 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIpnxI028890; Wed, 14 Apr 2004 11:51:49 -0700 (PDT) (envelope-from erwin) Message-Id: <200404141851.i3EIpnxI028890@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 14 Apr 2004 11:51:49 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/finance/p5-Business-OCV 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, 14 Apr 2004 18:51:51 -0000 erwin 2004/04/14 11:51:49 PDT FreeBSD ports repository Modified files: finance/p5-Business-OCV pkg-plist Log: Add missing dirrm Submitted by: dosirak Revision Changes Path 1.2 +1 -0 ports/finance/p5-Business-OCV/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11:51: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 A1F1716A4CE; Wed, 14 Apr 2004 11:51:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 85F1A43D1D; Wed, 14 Apr 2004 11:51:59 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIpxGe029052; Wed, 14 Apr 2004 11:51:59 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIpwS3029045; Wed, 14 Apr 2004 11:51:58 -0700 (PDT) (envelope-from krion) Message-Id: <200404141851.i3EIpwS3029045@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 11:51:58 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/opensched 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, 14 Apr 2004 18:51:59 -0000 krion 2004/04/14 11:51:58 PDT FreeBSD ports repository Modified files: textproc/opensched Makefile pkg-descr Log: - Update MASTER_SITES and WWW: line PR: ports/65538 Submitted by: Ports Fury Revision Changes Path 1.9 +1 -2 ports/textproc/opensched/Makefile 1.2 +5 -23 ports/textproc/opensched/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11: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 9D72F16A4CE; Wed, 14 Apr 2004 11:52:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8137443D1D; Wed, 14 Apr 2004 11:52:22 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIqMGe029439; Wed, 14 Apr 2004 11:52:22 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIqLVb029432; Wed, 14 Apr 2004 11:52:21 -0700 (PDT) (envelope-from krion) Message-Id: <200404141852.i3EIqLVb029432@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 11:52:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/httrack 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, 14 Apr 2004 18:52:22 -0000 krion 2004/04/14 11:52:21 PDT FreeBSD ports repository Modified files: www/httrack Makefile distinfo pkg-plist Log: - Update to version 3.32.00 PR: ports/65539 Submitted by: Ports Fury Revision Changes Path 1.19 +3 -6 ports/www/httrack/Makefile 1.12 +2 -2 ports/www/httrack/distinfo 1.11 +22 -1 ports/www/httrack/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11: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 6812A16A4CE; Wed, 14 Apr 2004 11:52:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BADC43D54; Wed, 14 Apr 2004 11:52:43 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIqgGe029757; Wed, 14 Apr 2004 11:52:42 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIqfpn029730; Wed, 14 Apr 2004 11:52:41 -0700 (PDT) (envelope-from krion) Message-Id: <200404141852.i3EIqfpn029730@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 11:52:41 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/pekwm 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, 14 Apr 2004 18:52:43 -0000 krion 2004/04/14 11:52:41 PDT FreeBSD ports repository Modified files: x11-wm/pekwm Makefile pkg-descr Log: - Update MASTER_SITES and WWW: line PR: ports/65540 Submitted by: Ports Fury Revision Changes Path 1.12 +7 -7 ports/x11-wm/pekwm/Makefile 1.3 +1 -1 ports/x11-wm/pekwm/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11:55: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 5D1B516A4CE; Wed, 14 Apr 2004 11:55:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4088243D45; Wed, 14 Apr 2004 11:55:30 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EItTGe029901; Wed, 14 Apr 2004 11:55:29 -0700 (PDT) (envelope-from ps@repoman.freebsd.org) Received: (from ps@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EItTXK029900; Wed, 14 Apr 2004 11:55:29 -0700 (PDT) (envelope-from ps) Message-Id: <200404141855.i3EItTXK029900@repoman.freebsd.org> From: Paul Saab Date: Wed, 14 Apr 2004 11:55:28 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ciss ciss.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 18:55:30 -0000 ps 2004/04/14 11:55:28 PDT FreeBSD src repository Modified files: sys/dev/ciss ciss.c Log: Do not catch signals when waiting for a request. This fixes a nasty race when issuing commands from userland. Revision Changes Path 1.38 +2 -14 src/sys/dev/ciss/ciss.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11: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 B716916A4CE; Wed, 14 Apr 2004 11:56:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 99D2E43D49; Wed, 14 Apr 2004 11:56:54 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIurGe029963; Wed, 14 Apr 2004 11:56:53 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIuqO0029962; Wed, 14 Apr 2004 11:56:52 -0700 (PDT) (envelope-from krion) Message-Id: <200404141856.i3EIuqO0029962@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 11:56:52 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/aap 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, 14 Apr 2004 18:56:54 -0000 krion 2004/04/14 11:56:52 PDT FreeBSD ports repository Modified files: devel/aap Makefile distinfo pkg-plist Log: - Update to version 1.057 PR: ports/65543 Submitted by: maintainer Revision Changes Path 1.13 +4 -1 ports/devel/aap/Makefile 1.12 +2 -2 ports/devel/aap/distinfo 1.12 +7 -5 ports/devel/aap/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 11: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 A88CD16A4CE; Wed, 14 Apr 2004 11:59:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C1C343D48; Wed, 14 Apr 2004 11:59:41 -0700 (PDT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EIxfGe030082; Wed, 14 Apr 2004 11:59:41 -0700 (PDT) (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EIxeUl030079; Wed, 14 Apr 2004 11:59:40 -0700 (PDT) (envelope-from vs) Message-Id: <200404141859.i3EIxeUl030079@repoman.freebsd.org> From: Volker Stolz Date: Wed, 14 Apr 2004 11:59:40 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/inti-sourceview 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, 14 Apr 2004 18:59:41 -0000 vs 2004/04/14 11:59:40 PDT FreeBSD ports repository Modified files: x11-toolkits/inti-sourceview Makefile Log: Unbreak, the PORTREV-bump affected path-name generation. Noticed by: bento via kris Approved by: linimon (mentor) Revision Changes Path 1.4 +1 -1 ports/x11-toolkits/inti-sourceview/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12:08: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 88D2816A4CE; Wed, 14 Apr 2004 12:08:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D05E43D2F; Wed, 14 Apr 2004 12:08:01 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJ80Ge031308; Wed, 14 Apr 2004 12:08:00 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJ807E031305; Wed, 14 Apr 2004 12:08:00 -0700 (PDT) (envelope-from clement) Message-Id: <200404141908.i3EJ807E031305@repoman.freebsd.org> From: Clement Laforet Date: Wed, 14 Apr 2004 12:07:59 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/dns/maradns 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, 14 Apr 2004 19:08:01 -0000 clement 2004/04/14 12:07:59 PDT FreeBSD ports repository Modified files: dns/maradns Makefile distinfo Log: - Update to 1.0.21 Revision Changes Path 1.40 +1 -1 ports/dns/maradns/Makefile 1.33 +2 -2 ports/dns/maradns/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12:09: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 EFAFD16A4CE; Wed, 14 Apr 2004 12:09:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA7E243D2D; Wed, 14 Apr 2004 12:09:08 -0700 (PDT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJ98Ge031381; Wed, 14 Apr 2004 12:09:08 -0700 (PDT) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJ98uc031380; Wed, 14 Apr 2004 12:09:08 -0700 (PDT) (envelope-from alfred) Message-Id: <200404141909.i3EJ98uc031380@repoman.freebsd.org> From: Alfred Perlstein Date: Wed, 14 Apr 2004 12:09:08 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/irc/insub 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, 14 Apr 2004 19:09:09 -0000 alfred 2004/04/14 12:09:08 PDT FreeBSD ports repository Modified files: irc/insub Makefile distinfo Log: update from 8.3 to 8.6. you can now filter arbitrary programs/text through this wonderful program! 8.6: Tue Apr 13 15:22:01 PDT 2004 - add flags for cli: -stdin will use data from STDIN - add flags for cli: -cat, -exec to hook irssi functionality - stop processing if we don't have text after first pass 8.5: Tue Apr 13 13:03:30 PDT 2004 - remove legacy open3() and use IPC::Open3 -- works in 5.8 now - support for specifying color in -4 .. for example -4red - added some more spookwords - added the -unused command 8.4: This release did not go public Revision Changes Path 1.14 +1 -1 ports/irc/insub/Makefile 1.9 +2 -2 ports/irc/insub/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12: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 3C9DD16A4CE; Wed, 14 Apr 2004 12:11:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 200FD43D46; Wed, 14 Apr 2004 12:11:32 -0700 (PDT) (envelope-from scottl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJBVGe031482; Wed, 14 Apr 2004 12:11:31 -0700 (PDT) (envelope-from scottl@repoman.freebsd.org) Received: (from scottl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJBUM2031481; Wed, 14 Apr 2004 12:11:30 -0700 (PDT) (envelope-from scottl) Message-Id: <200404141911.i3EJBUM2031481@repoman.freebsd.org> From: Scott Long Date: Wed, 14 Apr 2004 12:11:30 -0700 (PDT) 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: Wed, 14 Apr 2004 19:11:32 -0000 scottl 2004/04/14 12:11:30 PDT FreeBSD src repository Modified files: sys/dev/aac aac.c Log: Remove the 'timeout' argument from aac_wait_command() as it isn't used and never will be. Update the XXX comment for this function to accurately reflect why things are the way they are. Revision Changes Path 1.91 +10 -14 src/sys/dev/aac/aac.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12: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 2617416A4CE; Wed, 14 Apr 2004 12:13:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 096DA43D4C; Wed, 14 Apr 2004 12:13:16 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJDFGe031538; Wed, 14 Apr 2004 12:13:15 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJDFjG031537; Wed, 14 Apr 2004 12:13:15 -0700 (PDT) (envelope-from erwin) Message-Id: <200404141913.i3EJDFjG031537@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 14 Apr 2004 12:13:14 -0700 (PDT) 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-File 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, 14 Apr 2004 19:13:16 -0000 erwin 2004/04/14 12:13:14 PDT FreeBSD ports repository Modified files: databases/p5-DBD-File pkg-plist Log: Fix typo Submitted by: dosirak Revision Changes Path 1.2 +1 -1 ports/databases/p5-DBD-File/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12:14: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 6482416A4CE; Wed, 14 Apr 2004 12:14:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 472F343D45; Wed, 14 Apr 2004 12:14:26 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJEPGe031597; Wed, 14 Apr 2004 12:14:25 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJEPxu031596; Wed, 14 Apr 2004 12:14:25 -0700 (PDT) (envelope-from krion) Message-Id: <200404141914.i3EJEPxu031596@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 12:14:25 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/pmacct 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, 14 Apr 2004 19:14:26 -0000 krion 2004/04/14 12:14:25 PDT FreeBSD ports repository Modified files: net-mgmt/pmacct Makefile pkg-plist Log: - Install additional examples - Bump PORTREVISION Revision Changes Path 1.18 +3 -0 ports/net-mgmt/pmacct/Makefile 1.5 +7 -0 ports/net-mgmt/pmacct/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12:15: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 57C9C16A4CE; Wed, 14 Apr 2004 12:15:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3A3B243D3F; Wed, 14 Apr 2004 12:15:35 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJFYGe031679; Wed, 14 Apr 2004 12:15:34 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJFXDl031678; Wed, 14 Apr 2004 12:15:33 -0700 (PDT) (envelope-from clement) Message-Id: <200404141915.i3EJFXDl031678@repoman.freebsd.org> From: Clement Laforet Date: Wed, 14 Apr 2004 12:15:33 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/bandwidthd 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, 14 Apr 2004 19:15:35 -0000 clement 2004/04/14 12:15:33 PDT FreeBSD ports repository Modified files: net-mgmt/bandwidthd Makefile distinfo Log: - Update to 1.2.1(b) Revision Changes Path 1.9 +2 -3 ports/net-mgmt/bandwidthd/Makefile 1.6 +2 -2 ports/net-mgmt/bandwidthd/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 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 EBCD116A4CE; Wed, 14 Apr 2004 12:16:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF7BC43D2F; Wed, 14 Apr 2004 12:16:25 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJGPGe031728; Wed, 14 Apr 2004 12:16:25 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJGOKt031727; Wed, 14 Apr 2004 12:16:24 -0700 (PDT) (envelope-from erwin) Message-Id: <200404141916.i3EJGOKt031727@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 14 Apr 2004 12:16:24 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Getopt-Mixed 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, 14 Apr 2004 19:16:26 -0000 erwin 2004/04/14 12:16:24 PDT FreeBSD ports repository Modified files: devel/p5-Getopt-Mixed pkg-plist Log: Add missing dirrm Submitted by: dosirak Revision Changes Path 1.3 +1 -0 ports/devel/p5-Getopt-Mixed/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12:16: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 E366416A4CE; Wed, 14 Apr 2004 12:16:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEA2643D4C; Wed, 14 Apr 2004 12:16:57 -0700 (PDT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJGvGe031766; Wed, 14 Apr 2004 12:16:57 -0700 (PDT) (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJGvpE031765; Wed, 14 Apr 2004 12:16:57 -0700 (PDT) (envelope-from vs) Message-Id: <200404141916.i3EJGvpE031765@repoman.freebsd.org> From: Volker Stolz Date: Wed, 14 Apr 2004 12:16:57 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/cad/pdnmesh 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, 14 Apr 2004 19:16:58 -0000 vs 2004/04/14 12:16:57 PDT FreeBSD ports repository Modified files: cad/pdnmesh Makefile distinfo pkg-descr pkg-plist Removed files: cad/pdnmesh pkg-message Log: Update to 0.1.4: - GUI support with GTK and GTKGLExt - New triangulation routine - Interactive refinement of mesh - Importing DXF files natively - Eigensolver for Wave Equation type problems Minor port cleanup. PR: 65471 Submitted by: Sarod Yatawatta (maintainer) Approved by: linimon (mentor) Revision Changes Path 1.3 +6 -5 ports/cad/pdnmesh/Makefile 1.3 +2 -2 ports/cad/pdnmesh/distinfo 1.2 +8 -10 ports/cad/pdnmesh/pkg-descr 1.2 +0 -3 ports/cad/pdnmesh/pkg-message (dead) 1.3 +6 -6 ports/cad/pdnmesh/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12: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 E952616A4CE; Wed, 14 Apr 2004 12:19:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC5F443D41; Wed, 14 Apr 2004 12:19:13 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJJDGe031845; Wed, 14 Apr 2004 12:19:13 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJJCnF031844; Wed, 14 Apr 2004 12:19:12 -0700 (PDT) (envelope-from erwin) Message-Id: <200404141919.i3EJJCnF031844@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 14 Apr 2004 12:19:11 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Include 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, 14 Apr 2004 19:19:14 -0000 erwin 2004/04/14 12:19:11 PDT FreeBSD ports repository Modified files: devel/p5-Include Makefile pkg-plist Log: Add missing file and man page Submitted by: dosirak Revision Changes Path 1.21 +2 -0 ports/devel/p5-Include/Makefile 1.7 +1 -0 ports/devel/p5-Include/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12:20: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 6DE4B16A4CF; Wed, 14 Apr 2004 12:20:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 521BE43D46; Wed, 14 Apr 2004 12:20:09 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJK8Ge031882; Wed, 14 Apr 2004 12:20:08 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJK8c7031881; Wed, 14 Apr 2004 12:20:08 -0700 (PDT) (envelope-from clement) Message-Id: <200404141920.i3EJK8c7031881@repoman.freebsd.org> From: Clement Laforet Date: Wed, 14 Apr 2004 12:20:08 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/news/inn-current 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, 14 Apr 2004 19:20:09 -0000 clement 2004/04/14 12:20:08 PDT FreeBSD ports repository Modified files: news/inn-current Makefile Log: - Fix forgotten man page. Reminded by: erwin on IRC via dosirak Revision Changes Path 1.71 +1 -1 ports/news/inn-current/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12:26: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 DF29716A4CE; Wed, 14 Apr 2004 12:26:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C30EE43D5C; Wed, 14 Apr 2004 12:26:25 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJQPGe032056; Wed, 14 Apr 2004 12:26:25 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJQPsC032055; Wed, 14 Apr 2004 12:26:25 -0700 (PDT) (envelope-from erwin) Message-Id: <200404141926.i3EJQPsC032055@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 14 Apr 2004 12:26:25 -0700 (PDT) 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-Ispell 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, 14 Apr 2004 19:26:26 -0000 erwin 2004/04/14 12:26:25 PDT FreeBSD ports repository Modified files: textproc/p5-Lingua-Ispell pkg-plist Log: Add missing and fix existing dirrm Submitted by: dosirak Revision Changes Path 1.3 +2 -1 ports/textproc/p5-Lingua-Ispell/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12: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 6514016A4CF; Wed, 14 Apr 2004 12:28:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 487C843D3F; Wed, 14 Apr 2004 12:28:46 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJSjGe032126; Wed, 14 Apr 2004 12:28:45 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJSjMF032125; Wed, 14 Apr 2004 12:28:45 -0700 (PDT) (envelope-from erwin) Message-Id: <200404141928.i3EJSjMF032125@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 14 Apr 2004 12:28:45 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/p5-Math-Round 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, 14 Apr 2004 19:28:46 -0000 erwin 2004/04/14 12:28:45 PDT FreeBSD ports repository Modified files: math/p5-Math-Round pkg-plist Log: Add missing dirrm's Submitted by: dosirak Revision Changes Path 1.2 +2 -0 ports/math/p5-Math-Round/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12: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 149DB16A4CE; Wed, 14 Apr 2004 12:34:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAA7743D45; Wed, 14 Apr 2004 12:34:29 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJYTGe034091; Wed, 14 Apr 2004 12:34:29 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJYTBd034090; Wed, 14 Apr 2004 12:34:29 -0700 (PDT) (envelope-from erwin) Message-Id: <200404141934.i3EJYTBd034090@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 14 Apr 2004 12:34:29 -0700 (PDT) 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-Manifest 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, 14 Apr 2004 19:34:30 -0000 erwin 2004/04/14 12:34:29 PDT FreeBSD ports repository Modified files: devel/p5-Test-Manifest pkg-plist Log: Add missing dirrm Submitted by: dosirak Revision Changes Path 1.2 +1 -0 ports/devel/p5-Test-Manifest/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12:38: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 9A73416A4CE; Wed, 14 Apr 2004 12:38:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7D6FD43D58; Wed, 14 Apr 2004 12:38:46 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJckGe034273; Wed, 14 Apr 2004 12:38:46 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJcjME034272; Wed, 14 Apr 2004 12:38:45 -0700 (PDT) (envelope-from erwin) Message-Id: <200404141938.i3EJcjME034272@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 14 Apr 2004 12:38:45 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/p5-Text-CSV 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, 14 Apr 2004 19:38:46 -0000 erwin 2004/04/14 12:38:45 PDT FreeBSD ports repository Modified files: textproc/p5-Text-CSV pkg-plist Log: Don't hardcode PERL_ARCH and SITE_PERL Submitted by: dosirak Revision Changes Path 1.3 +5 -5 ports/textproc/p5-Text-CSV/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12: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 756A116A4CF; Wed, 14 Apr 2004 12:39:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58B3143D54; Wed, 14 Apr 2004 12:39:02 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJd2Ge034307; Wed, 14 Apr 2004 12:39:02 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJd1xU034306; Wed, 14 Apr 2004 12:39:01 -0700 (PDT) (envelope-from clement) Message-Id: <200404141939.i3EJd1xU034306@repoman.freebsd.org> From: Clement Laforet Date: Wed, 14 Apr 2004 12:39:01 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/qmailanalog 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, 14 Apr 2004 19:39:02 -0000 clement 2004/04/14 12:39:01 PDT FreeBSD ports repository Modified files: mail/qmailanalog pkg-plist Log: - add @dirrm Spotted by: erwin Reported on: dosirak Revision Changes Path 1.2 +1 -0 ports/mail/qmailanalog/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12:41: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 80D5016A4CE; Wed, 14 Apr 2004 12:41:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63D8243D2F; Wed, 14 Apr 2004 12:41:40 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJfeGe035408; Wed, 14 Apr 2004 12:41:40 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJfewW035404; Wed, 14 Apr 2004 12:41:40 -0700 (PDT) (envelope-from clement) Message-Id: <200404141941.i3EJfewW035404@repoman.freebsd.org> From: Clement Laforet Date: Wed, 14 Apr 2004 12:41:40 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/pyzor 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, 14 Apr 2004 19:41:40 -0000 clement 2004/04/14 12:41:40 PDT FreeBSD ports repository Modified files: mail/pyzor pkg-plist Log: - add @dirrm - Use %%DOCSDIR%% Spotted by: erwin Reported on: dosirak Revision Changes Path 1.2 +3 -2 ports/mail/pyzor/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12:45: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 A8BD016A4CE; Wed, 14 Apr 2004 12:45:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DB6F43D1D; Wed, 14 Apr 2004 12:45:07 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJj7Ge036299; Wed, 14 Apr 2004 12:45:07 -0700 (PDT) (envelope-from ps@repoman.freebsd.org) Received: (from ps@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJj7HG036298; Wed, 14 Apr 2004 12:45:07 -0700 (PDT) (envelope-from ps) Message-Id: <200404141945.i3EJj7HG036298@repoman.freebsd.org> From: Paul Saab Date: Wed, 14 Apr 2004 12:45:07 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ciss ciss.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 19:45:07 -0000 ps 2004/04/14 12:45:07 PDT FreeBSD src repository Modified files: sys/dev/ciss ciss.c Log: Don't allow the driver to be unloaded if the device node is open. Revision Changes Path 1.39 +4 -1 src/sys/dev/ciss/ciss.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12: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 4B96F16A4CE; Wed, 14 Apr 2004 12:52:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 300A243D2D; Wed, 14 Apr 2004 12:52:56 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJqtGe044283; Wed, 14 Apr 2004 12:52:55 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJqtaV044282; Wed, 14 Apr 2004 12:52:55 -0700 (PDT) (envelope-from clement) Message-Id: <200404141952.i3EJqtaV044282@repoman.freebsd.org> From: Clement Laforet Date: Wed, 14 Apr 2004 12:52:55 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/pavuk 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, 14 Apr 2004 19:52:56 -0000 clement 2004/04/14 12:52:55 PDT FreeBSD ports repository Modified files: ftp/pavuk pkg-plist Log: - Fix pkg-plist Reported on: dosirak Revision Changes Path 1.9 +14 -7 ports/ftp/pavuk/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12: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 B3E2716A4F1; Wed, 14 Apr 2004 12:54:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97B4743D5A; Wed, 14 Apr 2004 12:54:02 -0700 (PDT) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJs2Ge044359; Wed, 14 Apr 2004 12:54:02 -0700 (PDT) (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJs2hO044358; Wed, 14 Apr 2004 12:54:02 -0700 (PDT) (envelope-from gerald) Message-Id: <200404141954.i3EJs2hO044358@repoman.freebsd.org> From: Gerald Pfeifer Date: Wed, 14 Apr 2004 12:54:02 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators/wine Makefile distinfo pkg-plist ports/emulators/wine/files patch-ad X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 19:54:02 -0000 gerald 2004/04/14 12:54:02 PDT FreeBSD ports repository Modified files: emulators/wine Makefile distinfo pkg-plist Removed files: emulators/wine/files patch-ad Log: Update to the 20040408 snapshot of Wine. Improve installation to non-default prefix as regular user on the way. Revision Changes Path 1.173 +2 -2 ports/emulators/wine/Makefile 1.92 +2 -2 ports/emulators/wine/distinfo 1.9 +0 -12 ports/emulators/wine/files/patch-ad (dead) 1.65 +16 -3 ports/emulators/wine/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 12: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 5ED4816A4CE; Wed, 14 Apr 2004 12:56:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 43AA543D1F; Wed, 14 Apr 2004 12:56:38 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EJubGe044469; Wed, 14 Apr 2004 12:56:37 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EJubf0044468; Wed, 14 Apr 2004 12:56:37 -0700 (PDT) (envelope-from clement) Message-Id: <200404141956.i3EJubf0044468@repoman.freebsd.org> From: Clement Laforet Date: Wed, 14 Apr 2004 12:56:37 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/pdmenu 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, 14 Apr 2004 19:56:38 -0000 clement 2004/04/14 12:56:37 PDT FreeBSD ports repository Modified files: misc/pdmenu pkg-plist Log: - add @dirrm Reported on: dosirak Revision Changes Path 1.4 +5 -3 ports/misc/pdmenu/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 13:13: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 5358C16A4CE; Wed, 14 Apr 2004 13:13:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3846D43D5C; Wed, 14 Apr 2004 13:13:49 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EKDmGe047695; Wed, 14 Apr 2004 13:13:48 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EKDm53047694; Wed, 14 Apr 2004 13:13:48 -0700 (PDT) (envelope-from blackend) Message-Id: <200404142013.i3EKDm53047694@repoman.freebsd.org> From: Marc Fonvieille Date: Wed, 14 Apr 2004 13:13:48 -0700 (PDT) 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/mail 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, 14 Apr 2004 20:13:49 -0000 blackend 2004/04/14 13:13:48 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/mail chapter.sgml Log: - Some punctuation fixes - Remove a contraction Revision Changes Path 1.111 +3 -3 doc/en_US.ISO8859-1/books/handbook/mail/chapter.sgml From owner-cvs-all@FreeBSD.ORG Wed Apr 14 13:15: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 3349216A4D0; Wed, 14 Apr 2004 13:15:13 -0700 (PDT) Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.157.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id C103F43D45; Wed, 14 Apr 2004 13:15:07 -0700 (PDT) (envelope-from mark@grondar.org) Received: from storm.FreeBSD.org.uk (Ugrondar@localhost [127.0.0.1]) i3EKF6Ae083980; Wed, 14 Apr 2004 21:15:06 +0100 (BST) (envelope-from mark@grondar.org) Received: (from Ugrondar@localhost)i3EKF69P083979; Wed, 14 Apr 2004 21:15:06 +0100 (BST) (envelope-from mark@grondar.org) X-Authentication-Warning: storm.FreeBSD.org.uk: Ugrondar set sender to mark@grondar.org using -f Received: from grondar.org (localhost [127.0.0.1])i3EKCZIn013035; Wed, 14 Apr 2004 21:12:35 +0100 (BST) (envelope-from mark@grondar.org) From: Mark Murray Message-Id: <200404142012.i3EKCZIn013035@grimreaper.grondar.org> To: John Baldwin In-Reply-To: Your message of "Tue, 13 Apr 2004 22:58:31 EDT." <200404132258.31816.jhb@FreeBSD.org> Date: Wed, 14 Apr 2004 21:12:34 +0100 Sender: mark@grondar.org X-Spam-Score: 4 (****) FROM_NO_LOWER,MSGID_FROM_MTA_SHORT X-Scanned-By: MIMEDefang 2.39 cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: Mark Murray cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/random randomdev.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 20:15:13 -0000 John Baldwin writes: > On Monday 12 April 2004 05:13 am, Mark Murray wrote: > > markm 2004/04/12 02:13:24 PDT > > > > FreeBSD src repository > > > > Modified files: > > sys/dev/random randomdev.c > > Log: > > Fix "sleeping without a mutex" panic. > > You should drop the lock before uiomove(). If the uio can possibly reference > user memory, then uiomove() will do a copyout() which can fault and thus > sleep if the page is in swap. Oops. Thank you! Will do. M -- Mark Murray iumop ap!sdn w,I idlaH From owner-cvs-all@FreeBSD.ORG Wed Apr 14 13:32: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 4C9C016A4CE; Wed, 14 Apr 2004 13:32:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3007643D48; Wed, 14 Apr 2004 13:32:46 -0700 (PDT) (envelope-from naddy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EKWjGe048206; Wed, 14 Apr 2004 13:32:45 -0700 (PDT) (envelope-from naddy@repoman.freebsd.org) Received: (from naddy@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EKWj6f048205; Wed, 14 Apr 2004 13:32:45 -0700 (PDT) (envelope-from naddy) Message-Id: <200404142032.i3EKWj6f048205@repoman.freebsd.org> From: Christian Weisgerber Date: Wed, 14 Apr 2004 13:32:45 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/comms/kermit 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, 14 Apr 2004 20:32:46 -0000 naddy 2004/04/14 13:32:45 PDT FreeBSD ports repository Modified files: comms/kermit Makefile distinfo Log: - Update to 8.0.211: bugfix release. - Drop maintainership. Revision Changes Path 1.37 +3 -4 ports/comms/kermit/Makefile 1.17 +2 -2 ports/comms/kermit/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 13: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 378E816A4CF; Wed, 14 Apr 2004 13:42:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 12E6343D1F; Wed, 14 Apr 2004 13:42:15 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EKgEGe048358; Wed, 14 Apr 2004 13:42:14 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EKgEpY048357; Wed, 14 Apr 2004 13:42:14 -0700 (PDT) (envelope-from krion) Message-Id: <200404142042.i3EKgEpY048357@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 13:42:14 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/nast 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, 14 Apr 2004 20:42:15 -0000 krion 2004/04/14 13:42:14 PDT FreeBSD ports repository Modified files: net/nast Makefile Log: - Fix MASTER_SITES Revision Changes Path 1.11 +1 -1 ports/net/nast/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 13:50: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 A5A5616A4CE; Wed, 14 Apr 2004 13:50:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A36343D2F; Wed, 14 Apr 2004 13:50:18 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EKoIGe048603; Wed, 14 Apr 2004 13:50:18 -0700 (PDT) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EKoHS2048595; Wed, 14 Apr 2004 13:50:17 -0700 (PDT) (envelope-from dinoex) Message-Id: <200404142050.i3EKoHS2048595@repoman.freebsd.org> From: Dirk Meyer Date: Wed, 14 Apr 2004 13:50:16 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/tinyldap 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, 14 Apr 2004 20:50:18 -0000 dinoex 2004/04/14 13:50:16 PDT FreeBSD ports repository Modified files: net/tinyldap Makefile Log: - support request of all attributes Revision Changes Path 1.4 +1 -0 ports/net/tinyldap/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 13:50: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 758AC16A4CE; Wed, 14 Apr 2004 13:50:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 58FE943D39; Wed, 14 Apr 2004 13:50:42 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EKofGe048664; Wed, 14 Apr 2004 13:50:41 -0700 (PDT) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EKofBx048663; Wed, 14 Apr 2004 13:50:41 -0700 (PDT) (envelope-from dinoex) Message-Id: <200404142050.i3EKofBx048663@repoman.freebsd.org> From: Dirk Meyer Date: Wed, 14 Apr 2004 13:50:41 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/tinyldap/files patch-tinyldap.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 20:50:42 -0000 dinoex 2004/04/14 13:50:41 PDT FreeBSD ports repository Added files: net/tinyldap/files patch-tinyldap.c Log: - support request of all attributes Revision Changes Path 1.3 +97 -0 ports/net/tinyldap/files/patch-tinyldap.c (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 13:59: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 7F2F616A4CE; Wed, 14 Apr 2004 13:59:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 614FA43D54; Wed, 14 Apr 2004 13:59:09 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EKx8Ge048786; Wed, 14 Apr 2004 13:59:08 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EKx6uk048785; Wed, 14 Apr 2004 13:59:06 -0700 (PDT) (envelope-from krion) Message-Id: <200404142059.i3EKx6uk048785@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 13:59:04 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/grip 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, 14 Apr 2004 20:59:09 -0000 krion 2004/04/14 13:59:04 PDT FreeBSD ports repository Modified files: audio/grip Makefile distinfo Log: - Update to 3.1.9 Revision Changes Path 1.44 +1 -2 ports/audio/grip/Makefile 1.22 +2 -2 ports/audio/grip/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 14: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 CD82316A4CE; Wed, 14 Apr 2004 14:25:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD1D543D1D; Wed, 14 Apr 2004 14:25:09 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ELP9Ge053904; Wed, 14 Apr 2004 14:25:09 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ELP9JE053903; Wed, 14 Apr 2004 14:25:09 -0700 (PDT) (envelope-from krion) Message-Id: <200404142125.i3ELP9JE053903@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 14:25:09 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/comms/gnokii Makefile distinfo pkg-plist ports/comms/gnokii/files patch-config-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: Wed, 14 Apr 2004 21:25:14 -0000 krion 2004/04/14 14:25:09 PDT FreeBSD ports repository Modified files: comms/gnokii Makefile distinfo pkg-plist comms/gnokii/files patch-config-ltmain.sh Log: - Update to version 0.6.1 PR: ports/65547 Submitted by: maintainer Revision Changes Path 1.36 +1 -1 ports/comms/gnokii/Makefile 1.13 +2 -2 ports/comms/gnokii/distinfo 1.2 +9 -9 ports/comms/gnokii/files/patch-config-ltmain.sh 1.10 +3 -1 ports/comms/gnokii/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 14:30: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 0D4D616A4CE; Wed, 14 Apr 2004 14:30:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E635D43D58; Wed, 14 Apr 2004 14:30:24 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ELUOGe054200; Wed, 14 Apr 2004 14:30:24 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ELUOYG054199; Wed, 14 Apr 2004 14:30:24 -0700 (PDT) (envelope-from krion) Message-Id: <200404142130.i3ELUOYG054199@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 14:30:24 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/arpwatch-devel Makefile pkg-descr ports/net-mgmt/arpwatch-devel/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, 14 Apr 2004 21:30:25 -0000 krion 2004/04/14 14:30:24 PDT FreeBSD ports repository Modified files: net-mgmt/arpwatch-devel Makefile pkg-descr net-mgmt/arpwatch-devel/files patch-aa Log: - Respect PTHREAD_CFLAGS[LIBS] - Correct pkg-descr PR: ports/65549 Submitted by: maintainer Revision Changes Path 1.35 +2 -0 ports/net-mgmt/arpwatch-devel/Makefile 1.7 +16 -5 ports/net-mgmt/arpwatch-devel/files/patch-aa 1.5 +1 -1 ports/net-mgmt/arpwatch-devel/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Apr 14 14:53: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 EE3AE16A4CE; Wed, 14 Apr 2004 14:53:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2C6743D58; Wed, 14 Apr 2004 14:53:18 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ELrIGe060066; Wed, 14 Apr 2004 14:53:18 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ELrIMN060065; Wed, 14 Apr 2004 14:53:18 -0700 (PDT) (envelope-from thierry) Message-Id: <200404142153.i3ELrIMN060065@repoman.freebsd.org> From: Thierry Thomas Date: Wed, 14 Apr 2004 14:53:18 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/pear-PEAR Makefile.common 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, 14 Apr 2004 21:53:19 -0000 thierry 2004/04/14 14:53:18 PDT FreeBSD ports repository Modified files: devel/pear-PEAR Makefile.common pkg-descr Log: Indentation fix in Makefile.common. PR: ports/65505 Submitted by: Roman Neuhauser Approved by: mat (mentor). Revision Changes Path 1.6 +7 -7 ports/devel/pear-PEAR/Makefile.common 1.3 +1 -1 ports/devel/pear-PEAR/pkg-descr From owner-cvs-all@FreeBSD.ORG Wed Apr 14 14:54: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 4E2DC16A4D0; Wed, 14 Apr 2004 14:54:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3252443D5D; Wed, 14 Apr 2004 14:54:25 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ELsOGe060131; Wed, 14 Apr 2004 14:54:24 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ELsOjX060130; Wed, 14 Apr 2004 14:54:24 -0700 (PDT) (envelope-from thierry) Message-Id: <200404142154.i3ELsOjX060130@repoman.freebsd.org> From: Thierry Thomas Date: Wed, 14 Apr 2004 14:54:24 -0700 (PDT) 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 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, 14 Apr 2004 21:54:25 -0000 thierry 2004/04/14 14:54:24 PDT FreeBSD ports repository Modified files: www/pear-HTTP_Upload Makefile pkg-descr Removed files: www/pear-HTTP_Upload pkg-plist Log: Utilize devel/pear-PEAR/Makefile.common PR: ports/65510 Submitted by: Roman Neuhauser Approved by: mat (mentor). Revision Changes Path 1.3 +6 -11 ports/www/pear-HTTP_Upload/Makefile 1.2 +4 -4 ports/www/pear-HTTP_Upload/pkg-descr 1.2 +0 -5 ports/www/pear-HTTP_Upload/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Apr 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 EB80F16A4CF; Wed, 14 Apr 2004 14:55:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEDEB43D45; Wed, 14 Apr 2004 14:55:27 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ELtRGe060230; Wed, 14 Apr 2004 14:55:27 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ELtQKu060229; Wed, 14 Apr 2004 14:55:26 -0700 (PDT) (envelope-from thierry) Message-Id: <200404142155.i3ELtQKu060229@repoman.freebsd.org> From: Thierry Thomas Date: Wed, 14 Apr 2004 14:55:26 -0700 (PDT) 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 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: Wed, 14 Apr 2004 21:55:28 -0000 thierry 2004/04/14 14:55:26 PDT FreeBSD ports repository Modified files: www/pear-HTTP Makefile pkg-descr Removed files: www/pear-HTTP pkg-plist Log: Utilize devel/pear-PEAR/Makefile.common. PR: ports/65512 Submitted by: Roman Neuhauser Approved by: mat (mentor). Revision Changes Path 1.3 +2 -5 ports/www/pear-HTTP/Makefile 1.2 +1 -1 ports/www/pear-HTTP/pkg-descr 1.2 +0 -3 ports/www/pear-HTTP/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 14:56: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 4497716A4CE; Wed, 14 Apr 2004 14:56:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2802F43D53; Wed, 14 Apr 2004 14:56:34 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ELuXGe060307; Wed, 14 Apr 2004 14:56:33 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ELuWF6060306; Wed, 14 Apr 2004 14:56:32 -0700 (PDT) (envelope-from thierry) Message-Id: <200404142156.i3ELuWF6060306@repoman.freebsd.org> From: Thierry Thomas Date: Wed, 14 Apr 2004 14:56:32 -0700 (PDT) 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_Header 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: Wed, 14 Apr 2004 21:56:34 -0000 thierry 2004/04/14 14:56:32 PDT FreeBSD ports repository Modified files: www/pear-HTTP_Header Makefile pkg-descr Removed files: www/pear-HTTP_Header pkg-plist Log: Utilize devel/pear-PEAR/Makefile.common. PR: ports/65511 Submitted by: Roman Neuhauser Approved by: mat (mentor). Revision Changes Path 1.3 +8 -17 ports/www/pear-HTTP_Header/Makefile 1.2 +1 -1 ports/www/pear-HTTP_Header/pkg-descr 1.2 +0 -7 ports/www/pear-HTTP_Header/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 15:04:53 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 618) id 7806316A4CF; Wed, 14 Apr 2004 15:04:53 -0700 (PDT) In-Reply-To: <200404141105.43663.jhb@FreeBSD.org> from John Baldwin at "Apr 14, 2004 11:05:43 am" To: jhb@FreeBSD.org (John Baldwin) Date: Wed, 14 Apr 2004 15:04:53 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Message-Id: <20040414220453.7806316A4CF@hub.freebsd.org> From: wpaul@FreeBSD.ORG (Bill Paul) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/compat/ndis hal_var.h kern_ndis.c ndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrn X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 22:04:53 -0000 > > Now, I'm sure many people will be seized by the urge to criticize > > me for doing an end run around our own spinlock implementation, but > > it makes more sense to do it this way. Well, it does to me anyway. > > If you don't use atomic ops with memory barriers somewhere (like the mutex > implementation does) then NDIS won't work on SMP. Really, IRQL is basically > spl()s, and we don't use an spl-like model anymore. Just using mutexes for > locking should give you all the protection you need. Protection is all well and good, but I need to provide the right semantics as well. I need to fool the drivers into thinking they can depend on the usual Windows behavior, and make it easy to use the Windows data types, and it's a pain in the butt to do that with regular mutexes. And besides, I wanna. Now, from subr_ntoskrnl.c: __stdcall void ntoskrnl_lock_dpc(/*lock*/ void) { kspin_lock *lock; __asm__ __volatile__ ("" : "=c" (lock)); while (atomic_cmpset_int((volatile u_int *)lock, 0, 1) == 0) /* do nothing */; return; } __stdcall void ntoskrnl_unlock_dpc(/*lock*/ void) { kspin_lock *lock; __asm__ __volatile__ ("" : "=c" (lock)); atomic_cmpset_int((volatile u_int *)lock, 1, 0); return; } These two routines do the actual work of acquiring and releasing the lock (they map to KefAcquireSpinLockAtDpcLevel() and KefReleaseSpinLockFromDpcLevel). Are you saying the former routine should use atomic_cmpset_acq_int() and the latter atomic_cmpset_rel_int()? -Bill -- ============================================================================= -Bill Paul (510) 749-2329 | Senior Engineer, Master of Unix-Fu wpaul@windriver.com | Wind River Systems ============================================================================= you're just BEGGING to face the moose ============================================================================= From owner-cvs-all@FreeBSD.ORG Wed Apr 14 15:34: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 3767416A4CE; Wed, 14 Apr 2004 15:34:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C0E543D48; Wed, 14 Apr 2004 15:34:51 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EMYoGe069149; Wed, 14 Apr 2004 15:34:50 -0700 (PDT) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EMYoNG069148; Wed, 14 Apr 2004 15:34:50 -0700 (PDT) (envelope-from lioux) Message-Id: <200404142234.i3EMYoNG069148@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Wed, 14 Apr 2004 15:34:50 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/ffmpeg 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, 14 Apr 2004 22:34:51 -0000 lioux 2004/04/14 15:34:50 PDT FreeBSD ports repository Modified files: multimedia/ffmpeg Makefile Log: Fix build on -CURRENT i386 ARCH, OSVERSION >= 502000 PR: 64825 Submitted by: mike johnson Revision Changes Path 1.40 +3 -4 ports/multimedia/ffmpeg/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 15: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 C501116A4CE; Wed, 14 Apr 2004 15:37:14 -0700 (PDT) Received: from postal2.es.net (postal2.es.net [198.128.3.206]) by mx1.FreeBSD.org (Postfix) with ESMTP id B059843D41; Wed, 14 Apr 2004 15:37:14 -0700 (PDT) (envelope-from oberman@es.net) Received: from ptavv.es.net ([198.128.4.29]) by postal2.es.net (Postal Node 2) with ESMTP (SSL) id IBA74465; Wed, 14 Apr 2004 15:37:14 -0700 Received: from ptavv (localhost [127.0.0.1]) by ptavv.es.net (Tachyon Server) with ESMTP id 091FE5D07; Wed, 14 Apr 2004 15:37:14 -0700 (PDT) To: Nate Lawson In-reply-to: Your message of "Wed, 14 Apr 2004 09:52:19 PDT." <200404141652.i3EGqJqh001947@repoman.freebsd.org> Date: Wed, 14 Apr 2004 15:37:14 -0700 From: "Kevin Oberman" Message-Id: <20040414223714.091FE5D07@ptavv.es.net> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/contrib/dev/acpica hwsleep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 22:37:14 -0000 > From: Nate Lawson > Date: Wed, 14 Apr 2004 09:52:19 -0700 (PDT) > Sender: owner-cvs-all@freebsd.org > > njl 2004/04/14 09:52:19 PDT > > FreeBSD src repository > > Modified files: > sys/contrib/dev/acpica hwsleep.c > Log: > Even though the patch has been submitted to the vendor, this file is off > the vendor branch. Once more, with feeling! Boy, my timing suck of late. I just rebuilt my system to see if unloading and loading the sound driver would fix my sound-too-fast-after-resume problem. To my amazement, using the loadable drivers I no longer had the problem. I did all sorts of testing to try to figure out why this would make a difference. Then I decided to catch up on cvs-all. Thanks, Nate. This fixes the sound problem on my T30. My only remaining issue is turning off the @#$% back-light! (Not that there might not be other issues I have not hit.) First rule of troubleshooting...change only one variable at a time! Learned that over 30 year ago, but still ignore it too often. -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 From owner-cvs-all@FreeBSD.ORG Wed Apr 14 15:39: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 01E3716A4CE; Wed, 14 Apr 2004 15:39:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8B9243D54; Wed, 14 Apr 2004 15:39:23 -0700 (PDT) (envelope-from lioux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3EMdNGe069323; Wed, 14 Apr 2004 15:39:23 -0700 (PDT) (envelope-from lioux@repoman.freebsd.org) Received: (from lioux@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3EMdNl5069322; Wed, 14 Apr 2004 15:39:23 -0700 (PDT) (envelope-from lioux) Message-Id: <200404142239.i3EMdNl5069322@repoman.freebsd.org> From: Mario Sergio Fujikawa Ferreira Date: Wed, 14 Apr 2004 15:39:23 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/djbfft 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, 14 Apr 2004 22:39:24 -0000 lioux 2004/04/14 15:39:23 PDT FreeBSD ports repository Modified files: math/djbfft Makefile Log: Fix typo: LOCALBASE -> PREFIX; when installing Revision Changes Path 1.12 +2 -2 ports/math/djbfft/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 16:00: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 BC3AE16A4D4; Wed, 14 Apr 2004 16:00:38 -0700 (PDT) Received: from mtaw6.prodigy.net (mtaw6.prodigy.net [64.164.98.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9494B43D1F; Wed, 14 Apr 2004 16:00:38 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (6a650e37c7eda5a3e3da6263d08e7453@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw6.prodigy.net (8.12.10/8.12.10) with ESMTP id i3EMxR8G008871; Wed, 14 Apr 2004 15:59:27 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 2AD6352322; Wed, 14 Apr 2004 16:00:37 -0700 (PDT) Date: Wed, 14 Apr 2004 16:00:37 -0700 From: Kris Kennaway To: Erwin Lansing Message-ID: <20040414230036.GA56307@xor.obsecurity.org> References: <200404141849.i3EIn0Hc027570@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="FCuugMFkClbJLl1L" Content-Disposition: inline In-Reply-To: <200404141849.i3EIn0Hc027570@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/astro/p5-Astro-Catalog 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, 14 Apr 2004 23:00:39 -0000 --FCuugMFkClbJLl1L Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 14, 2004 at 11:49:00AM -0700, Erwin Lansing wrote: > erwin 2004/04/14 11:49:00 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > astro/p5-Astro-Catalog pkg-plist=20 > Log: > Add missing binaries > =20 > Submitted by: dosirak > =20 > Revision Changes Path > 1.3 +3 -0 ports/astro/p5-Astro-Catalog/pkg-plist > http://cvsweb.FreeBSD.org/ports/astro/p5-Astro-Catalog/pkg-plist.diff?r1= =3D1.2&r2=3D1.3 > | =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/astro/p5-Astro-Catalog/p= kg-plist,v > | retrieving revision 1.2 > | retrieving revision 1.3 > | diff -u -p -r1.2 -r1.3 > | --- ports/astro/p5-Astro-Catalog/pkg-plist 2003/10/14 11:58:15 1.2 > | +++ ports/astro/p5-Astro-Catalog/pkg-plist 2004/04/14 18:49:00 1.3 > | @@ -1,3 +1,6 @@ > | +bin/finder > | +bin/supercosmos > | +bin/catalogs Unsorted :) Thanks for working on these, BTW. It's my intention to work towards making it a fatal error on bento to leave files behind after deinstallation, but there are some false positives to weed out first. Kris --FCuugMFkClbJLl1L Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfcKUWry0BWjoQKURAq1AAKDaylRw+ICyahnAfs1H03hy80DrwwCgmwRD 2gTwyQJgtX20JHwHNNFmV9k= =KvA5 -----END PGP SIGNATURE----- --FCuugMFkClbJLl1L-- From owner-cvs-all@FreeBSD.ORG Wed Apr 14 16:01: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 243E116A4D0; Wed, 14 Apr 2004 16:01:53 -0700 (PDT) Received: from mtaw4.prodigy.net (mtaw4.prodigy.net [64.164.98.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3C6E43D3F; Wed, 14 Apr 2004 16:01:52 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (8fa3ed1c6dca4bca6585b89f2801e9fc@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw4.prodigy.net (8.12.10/8.12.10) with ESMTP id i3EN1p5k006002; Wed, 14 Apr 2004 16:01:52 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id CF93B53910; Wed, 14 Apr 2004 16:01:51 -0700 (PDT) Date: Wed, 14 Apr 2004 16:01:51 -0700 From: Kris Kennaway To: Alfred Perlstein Message-ID: <20040414230151.GB56307@xor.obsecurity.org> References: <200404141909.i3EJ98uc031380@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="7iMSBzlTiPOCCT2k" Content-Disposition: inline In-Reply-To: <200404141909.i3EJ98uc031380@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/irc/insub 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, 14 Apr 2004 23:01:53 -0000 --7iMSBzlTiPOCCT2k Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 14, 2004 at 12:09:08PM -0700, Alfred Perlstein wrote: > alfred 2004/04/14 12:09:08 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > irc/insub Makefile distinfo=20 > Log: > update from 8.3 to 8.6. > =20 > you can now filter arbitrary programs/text through this wonderful > program! BTW, this port seems to have plist errors: http://dosirak.kr.freebsd.org/errorlogs/i386-4-latest-logs/insub-8.3.log Kris --7iMSBzlTiPOCCT2k Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfcLfWry0BWjoQKURAoeFAJ9GjUD6cWCP9Z1WnL+WCtz1WkSdEQCg3833 uHyl6XoxpoGLgjTM58fhf90= =37BO -----END PGP SIGNATURE----- --7iMSBzlTiPOCCT2k-- From owner-cvs-all@FreeBSD.ORG Wed Apr 14 16: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 19A6316A4CF; Wed, 14 Apr 2004 16:03:03 -0700 (PDT) Received: from mta4.rcsntx.swbell.net (mta4.rcsntx.swbell.net [151.164.30.28]) by mx1.FreeBSD.org (Postfix) with ESMTP id D447343D49; Wed, 14 Apr 2004 16:03:02 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (d164989ceee699e75db1c0df213f88e6@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128])i3EN31h7019892; Wed, 14 Apr 2004 18:03:01 -0500 (CDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id DACB552322; Wed, 14 Apr 2004 16:03:00 -0700 (PDT) Date: Wed, 14 Apr 2004 16:03:00 -0700 From: Kris Kennaway To: Clement Laforet Message-ID: <20040414230300.GC56307@xor.obsecurity.org> References: <200404141956.i3EJubf0044468@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="TiqCXmo5T1hvSQQg" Content-Disposition: inline In-Reply-To: <200404141956.i3EJubf0044468@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/misc/pdmenu 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, 14 Apr 2004 23:03:03 -0000 --TiqCXmo5T1hvSQQg Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 14, 2004 at 12:56:37PM -0700, Clement Laforet wrote: > clement 2004/04/14 12:56:37 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > misc/pdmenu pkg-plist=20 > Log: > - add @dirrm > =20 > Reported on: dosirak > | @@ -1,5 +1,7 @@ > | bin/pdmenu > | etc/pdmenurc > | -share/pdmenu/editdir.pl > | -share/pdmenu/showdir.pl > | -@dirrm share/pdmenu > | +%%DATADIR%%/editdir.pl > | +%%DATADIR%%/showdir.pl > | +@dirrm %%DATADIR%% > | +@dirrm lib/pdmenu > | + Extraneous newline. Kris --TiqCXmo5T1hvSQQg Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfcMjWry0BWjoQKURAnzRAKC0IpehQd61yGJ7F+W3GVJfv/yA3QCg1x3U QI09EAUx77xBu5F/7Of2yb4= =CcOh -----END PGP SIGNATURE----- --TiqCXmo5T1hvSQQg-- From owner-cvs-all@FreeBSD.ORG Wed Apr 14 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 8753716A4CE; Wed, 14 Apr 2004 16:17:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6BA6443D1F; Wed, 14 Apr 2004 16:17:38 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ENHcGe078227; Wed, 14 Apr 2004 16:17:38 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ENHcSQ078226; Wed, 14 Apr 2004 16:17:38 -0700 (PDT) (envelope-from peter) Message-Id: <200404142317.i3ENHcSQ078226@repoman.freebsd.org> From: Peter Wemm Date: Wed, 14 Apr 2004 16:17:38 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/freebsd32 freebsd32.h freebsd32_misc.c syscalls.master X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 23:17:38 -0000 peter 2004/04/14 16:17:37 PDT FreeBSD src repository Modified files: sys/compat/freebsd32 freebsd32.h freebsd32_misc.c syscalls.master Log: Catch up to the not-so-recent statfs(2) changes. Revision Changes Path 1.4 +4 -3 src/sys/compat/freebsd32/freebsd32.h 1.21 +32 -5 src/sys/compat/freebsd32/freebsd32_misc.c 1.37 +13 -10 src/sys/compat/freebsd32/syscalls.master From owner-cvs-all@FreeBSD.ORG Wed Apr 14 16:17: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 D36C916A4D3; Wed, 14 Apr 2004 16:17:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B6B8043D2D; Wed, 14 Apr 2004 16:17:57 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ENHvGe078283; Wed, 14 Apr 2004 16:17:57 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ENHvmt078282; Wed, 14 Apr 2004 16:17:57 -0700 (PDT) (envelope-from peter) Message-Id: <200404142317.i3ENHvmt078282@repoman.freebsd.org> From: Peter Wemm Date: Wed, 14 Apr 2004 16:17:57 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/freebsd32 freebsd32_proto.hfreebsd32_syscall.h freebsd32_syscalls.c freebsd32_sysent.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 14 Apr 2004 23:17:58 -0000 peter 2004/04/14 16:17:57 PDT FreeBSD src repository Modified files: sys/compat/freebsd32 freebsd32_proto.h freebsd32_syscall.h freebsd32_syscalls.c freebsd32_sysent.c Log: Regen Revision Changes Path 1.25 +22 -17 src/sys/compat/freebsd32/freebsd32_proto.h 1.25 +9 -5 src/sys/compat/freebsd32/freebsd32_syscall.h 1.16 +9 -9 src/sys/compat/freebsd32/freebsd32_syscalls.c 1.26 +9 -9 src/sys/compat/freebsd32/freebsd32_sysent.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 16:20: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 85C1D16A4D6; Wed, 14 Apr 2004 16:20:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 691C643D41; Wed, 14 Apr 2004 16:20:15 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ENKFGe078357; Wed, 14 Apr 2004 16:20:15 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ENKF8U078356; Wed, 14 Apr 2004 16:20:15 -0700 (PDT) (envelope-from peter) Message-Id: <200404142320.i3ENKF8U078356@repoman.freebsd.org> From: Peter Wemm Date: Wed, 14 Apr 2004 16:20:15 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/ia32 ia32_signal.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, 14 Apr 2004 23:20:15 -0000 peter 2004/04/14 16:20:14 PDT FreeBSD src repository Modified files: sys/compat/ia32 ia32_signal.h Log: Check in structure definitions for the FreeBSD-3.x signal syscall stuff. Nothing uses these yet, but I dont want to lose them. Revision Changes Path 1.6 +43 -0 src/sys/compat/ia32/ia32_signal.h From owner-cvs-all@FreeBSD.ORG Wed Apr 14 16:21: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 EB9ED16A4CE; Wed, 14 Apr 2004 16:21:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D089143D3F; Wed, 14 Apr 2004 16:21:53 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ENLrGe080067; Wed, 14 Apr 2004 16:21:53 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ENLrGW080066; Wed, 14 Apr 2004 16:21:53 -0700 (PDT) (envelope-from clement) Message-Id: <200404142321.i3ENLrGW080066@repoman.freebsd.org> From: Clement Laforet Date: Wed, 14 Apr 2004 16:21:53 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/pdmenu 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, 14 Apr 2004 23:21:54 -0000 clement 2004/04/14 16:21:53 PDT FreeBSD ports repository Modified files: misc/pdmenu pkg-plist Log: - remove extraneous blankline Noticed by: kris Pointy hat to: me Revision Changes Path 1.5 +0 -1 ports/misc/pdmenu/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 16:22: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 65A1A16A4CE; Wed, 14 Apr 2004 16:22:47 -0700 (PDT) Received: from b.mail.sonic.net (b.mail.sonic.net [64.142.19.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48E5843D3F; Wed, 14 Apr 2004 16:22:47 -0700 (PDT) (envelope-from bmah@tomcat.kitchenlab.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 i3ENMkft010417 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Wed, 14 Apr 2004 16:22:47 -0700 Received: from tomcat.kitchenlab.org (localhost.kitchenlab.org [127.0.0.1]) i3ENMkmw093624; Wed, 14 Apr 2004 16:22:46 -0700 (PDT) (envelope-from bmah@tomcat.kitchenlab.org) Message-Id: <200404142322.i3ENMkmw093624@tomcat.kitchenlab.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Hartmut Brandt In-Reply-To: <200404141631.i3EGVsUQ097374@repoman.freebsd.org> References: <200404141631.i3EGVsUQ097374@repoman.freebsd.org> Comments: In-reply-to Hartmut Brandt message dated "Wed, 14 Apr 2004 09:31:54 -0700." From: "Bruce A. Mah" X-Face: g~c`.{#4q0"(V*b#g[i~rXgm*w;:nMfz%_RZLma)UgGN&=j`5vXoU^@n5v4:OO)c["!w)nD/!!~e4Sj7LiT'6*wZ83454H""lb{CC%T37O!!'S$S&D}sem7I[A 2V%N&+ X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-Url: http://www.employees.org/~bmah/ Mime-Version: 1.0 Content-Type: multipart/signed; boundary="==_Exmh_507021838P"; micalg=pgp-sha1; protocol="application/pgp-signature" Content-Transfer-Encoding: 7bit Date: Wed, 14 Apr 2004 16:22:46 -0700 Sender: bmah@tomcat.kitchenlab.org cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/bsnmpd/bsnmpd Makefile src/lib/libbsnmp/modules Makefile.inc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: bmah@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, 14 Apr 2004 23:22:47 -0000 --==_Exmh_507021838P Content-Type: text/plain; charset=us-ascii If memory serves me right, Hartmut Brandt wrote: > harti 2004/04/14 09:31:54 PDT > > FreeBSD src repository > > Modified files: > usr.sbin/bsnmpd/bsnmpd Makefile > lib/libbsnmp/modules Makefile.inc > Log: > Use a MANFILTER to patch the man pages to point to the right path. > > Noted by: phk > > Revision Changes Path > 1.6 +4 -0 src/lib/libbsnmp/modules/Makefile.inc > 1.7 +4 -0 src/usr.sbin/bsnmpd/bsnmpd/Makefile In usr.sbin/bsnmpd/bsnmpd/Makefile, you still have BMIBSDIR and DEFSDIR pointing to the old locations under /usr/share/bsnmp, not the new locations under /usr/share/snmp. If I understand this correctly, this breaks release building (very late in the build, while creating the distributions): ===> usr.sbin/bsnmpd/bsnmpd cd /usr/src/usr.sbin/bsnmpd/bsnmpd; make install -DNO_SUBDIR DESTDIR=/R/stage/trees/base SHARED=copies install -s -o root -g wheel -m 555 bsnmpd /R/stage/trees/base/usr/sbin install -o root -g wheel -m 444 /usr/src/usr.sbin/bsnmpd/bsnmpd/../../../contrib/bsnmp/snmpd/FOKUS-MIB.txt /usr/src/usr.sbin/bsnmpd/bsnmpd/../../../contrib/bsnmp/snmpd/BEGEMOT-MIB.txt /usr/src/usr.sbin/bsnmpd/bsnmpd/../../../contrib/bsnmp/snmpd/BEGEMOT-SNMPD.txt /R/stage/trees/base/usr/share/bsnmp/mibs install: wrong number or types of arguments usage: install [-bCcpSsv] [-B suffix] [-f flags] [-g group] [-m mode] [-o owner] file1 file2 install [-bCcpSsv] [-B suffix] [-f flags] [-g group] [-m mode] [-o owner] file1 ... fileN directory install -d [-v] [-g group] [-m mode] [-o owner] directory ... *** Error code 64 Bruce. --==_Exmh_507021838P Content-Type: application/pgp-signature -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) Comment: Exmh version 2.5+ 20020506 iD8DBQFAfcfG2MoxcVugUsMRArohAKCrI0mjMGEQ3yN0BTgoCmliWQ/LawCfWLBY NEqgCZ95Jw3eXiUSkkA6Gvw= =jcY3 -----END PGP SIGNATURE----- --==_Exmh_507021838P-- From owner-cvs-all@FreeBSD.ORG Wed Apr 14 16:23: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 8AB6716A4E3; Wed, 14 Apr 2004 16:23:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C99943D1D; Wed, 14 Apr 2004 16:23:56 -0700 (PDT) (envelope-from peadar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ENNuGe080788; Wed, 14 Apr 2004 16:23:56 -0700 (PDT) (envelope-from peadar@repoman.freebsd.org) Received: (from peadar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ENNueX080787; Wed, 14 Apr 2004 16:23:56 -0700 (PDT) (envelope-from peadar) Message-Id: <200404142323.i3ENNueX080787@repoman.freebsd.org> From: Peter Edwards Date: Wed, 14 Apr 2004 16:23:56 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/nfsclient nfs_bio.c nfs_subs.c nfsnode.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, 14 Apr 2004 23:23:56 -0000 peadar 2004/04/14 16:23:56 PDT FreeBSD src repository Modified files: sys/nfsclient nfs_bio.c nfs_subs.c nfsnode.h Log: Let the NFS client notice a file's size changing as a modification. This avoids presenting invalid data to the client's applications when the file is modified, and then extended within the window of the resolution of the modifcation timestamp. Reviewed By: iedowse PR: kern/64091 Revision Changes Path 1.130 +3 -1 src/sys/nfsclient/nfs_bio.c 1.128 +9 -2 src/sys/nfsclient/nfs_subs.c 1.43 +1 -0 src/sys/nfsclient/nfsnode.h From owner-cvs-all@FreeBSD.ORG Wed Apr 14 16: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 F0F9D16A4CE; Wed, 14 Apr 2004 16:26:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5A0743D46; Wed, 14 Apr 2004 16:26:26 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3ENQQGe080942; Wed, 14 Apr 2004 16:26:26 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3ENQQ21080941; Wed, 14 Apr 2004 16:26:26 -0700 (PDT) (envelope-from peter) Message-Id: <200404142326.i3ENQQ21080941@repoman.freebsd.org> From: Peter Wemm Date: Wed, 14 Apr 2004 16:26:26 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: 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: Wed, 14 Apr 2004 23:26:27 -0000 peter 2004/04/14 16:26:26 PDT FreeBSD src repository Modified files: secure/lib/libcrypto Makefile Log: Turn on the amd64-specific bignum code in openssl. This is actually a variant of the C code but with some scattered asm and things laid out more optimally for the platform. This means that we need to the asm directory to the search path for the amd64 case so that make can find the source. Revision Changes Path 1.67 +7 -0 src/secure/lib/libcrypto/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 17:18: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 0EF9D16A4CE; Wed, 14 Apr 2004 17:18:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E5C2743D5A; Wed, 14 Apr 2004 17:18:19 -0700 (PDT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F0IJGe097940; Wed, 14 Apr 2004 17:18:19 -0700 (PDT) (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F0IJKv097939; Wed, 14 Apr 2004 17:18:19 -0700 (PDT) (envelope-from markus) Message-Id: <200404150018.i3F0IJKv097939@repoman.freebsd.org> From: Markus Brueffer Date: Wed, 14 Apr 2004 17:18:19 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/deskutils/basket 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, 15 Apr 2004 00:18:20 -0000 markus 2004/04/14 17:18:19 PDT FreeBSD ports repository Modified files: deskutils/basket Makefile distinfo pkg-plist Log: Update to version 0.4.0c Revision Changes Path 1.11 +1 -1 ports/deskutils/basket/Makefile 1.8 +2 -2 ports/deskutils/basket/distinfo 1.4 +1 -0 ports/deskutils/basket/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 18:01: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 7CA6716A4CE; Wed, 14 Apr 2004 18:01:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5E80443D5C; Wed, 14 Apr 2004 18:01:08 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F118Ge006183; Wed, 14 Apr 2004 18:01:08 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F117Ru006182; Wed, 14 Apr 2004 18:01:07 -0700 (PDT) (envelope-from peter) Message-Id: <200404150101.i3F117Ru006182@repoman.freebsd.org> From: Peter Wemm Date: Wed, 14 Apr 2004 18:01:07 -0700 (PDT) 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 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, 15 Apr 2004 01:01:08 -0000 peter 2004/04/14 18:01:07 PDT FreeBSD src repository Modified files: gnu/usr.bin Makefile Log: Turn off cvs build for a few hours while importing. Revision Changes Path 1.77 +3 -3 src/gnu/usr.bin/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 18: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 058E116A4CE; Wed, 14 Apr 2004 18:02:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F064943D5A; Wed, 14 Apr 2004 18:02:05 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F125Ge007384; Wed, 14 Apr 2004 18:02:05 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F125GV007383; Wed, 14 Apr 2004 18:02:05 -0700 (PDT) (envelope-from peter) Message-Id: <200404150102.i3F125GV007383@repoman.freebsd.org> From: Peter Wemm Date: Wed, 14 Apr 2004 18:02:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: CVSHOME Subject: cvs commit: src/contrib/cvs - 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, 15 Apr 2004 01:02:06 -0000 peter 2004/04/14 18:02:05 PDT FreeBSD src repository src/contrib/cvs - Imported sources Update of /home/ncvs/src/contrib/cvs In directory repoman.freebsd.org:/tmp/cvs-serv7101 Log Message: Import cvs-1.11.15 Status: Vendor Tag: CVSHOME Release Tags: v1_11_15 U src/contrib/cvs/README U src/contrib/cvs/Makefile.in U src/contrib/cvs/configure U src/contrib/cvs/AUTHORS U src/contrib/cvs/COPYING U src/contrib/cvs/COPYING.LIB U src/contrib/cvs/ChangeLog U src/contrib/cvs/INSTALL U src/contrib/cvs/Makefile.am U src/contrib/cvs/NEWS U src/contrib/cvs/TODO U src/contrib/cvs/acinclude.m4 U src/contrib/cvs/aclocal.m4 U src/contrib/cvs/compile U src/contrib/cvs/config.h.in U src/contrib/cvs/configure.in U src/contrib/cvs/depcomp U src/contrib/cvs/install-sh U src/contrib/cvs/mdate-sh U src/contrib/cvs/missing U src/contrib/cvs/mkinstalldirs U src/contrib/cvs/BUGS U src/contrib/cvs/ChangeLog.zoo U src/contrib/cvs/DEVEL-CVS U src/contrib/cvs/FAQ U src/contrib/cvs/HACKING U src/contrib/cvs/MINOR-BUGS U src/contrib/cvs/PROJECTS U src/contrib/cvs/TESTS U src/contrib/cvs/cvs-format.el N src/contrib/cvs/mktemp.sh U src/contrib/cvs/contrib/README U src/contrib/cvs/contrib/Makefile.in U src/contrib/cvs/contrib/ChangeLog U src/contrib/cvs/contrib/Makefile.am U src/contrib/cvs/contrib/check_cvs.in U src/contrib/cvs/contrib/clmerge.in U src/contrib/cvs/contrib/cln_hist.in U src/contrib/cvs/contrib/commit_prep.in U src/contrib/cvs/contrib/cvs_acls.in U src/contrib/cvs/contrib/log.in U src/contrib/cvs/contrib/log_accum.in U src/contrib/cvs/contrib/mfpipe.in U src/contrib/cvs/contrib/pvcs2rcs.in U src/contrib/cvs/contrib/rcs2log.sh U src/contrib/cvs/contrib/rcslock.in C src/contrib/cvs/contrib/sccs2rcs.in U src/contrib/cvs/contrib/intro.doc U src/contrib/cvs/contrib/cvscheck.man U src/contrib/cvs/contrib/cvs2vendor.sh U src/contrib/cvs/contrib/cvscheck.sh U src/contrib/cvs/contrib/cvshelp.man U src/contrib/cvs/contrib/debug_check_log.sh U src/contrib/cvs/contrib/descend.sh U src/contrib/cvs/contrib/descend.man U src/contrib/cvs/contrib/dirfns.shar U src/contrib/cvs/contrib/rcs-to-cvs.sh U src/contrib/cvs/contrib/rcs2sccs.sh U src/contrib/cvs/src/Makefile.in U src/contrib/cvs/src/ChangeLog U src/contrib/cvs/src/Makefile.am U src/contrib/cvs/src/cvsbug.in U src/contrib/cvs/src/add.c U src/contrib/cvs/src/admin.c U src/contrib/cvs/src/annotate.c C src/contrib/cvs/src/buffer.c U src/contrib/cvs/src/checkin.c C src/contrib/cvs/src/checkout.c U src/contrib/cvs/src/classify.c C src/contrib/cvs/src/client.c C src/contrib/cvs/src/commit.c U src/contrib/cvs/src/create_adm.c U src/contrib/cvs/src/cvsrc.c C src/contrib/cvs/src/diff.c U src/contrib/cvs/src/edit.c C src/contrib/cvs/src/entries.c U src/contrib/cvs/src/error.c U src/contrib/cvs/src/expand_path.c U src/contrib/cvs/src/fileattr.c C src/contrib/cvs/src/filesubr.c U src/contrib/cvs/src/find_names.c U src/contrib/cvs/src/hardlink.c U src/contrib/cvs/src/hash.c U src/contrib/cvs/src/history.c U src/contrib/cvs/src/ignore.c C src/contrib/cvs/src/import.c C src/contrib/cvs/src/lock.c U src/contrib/cvs/src/log.c C src/contrib/cvs/src/login.c C src/contrib/cvs/src/logmsg.c C src/contrib/cvs/src/main.c C src/contrib/cvs/src/mkmodules.c U src/contrib/cvs/src/modules.c U src/contrib/cvs/src/myndbm.c U src/contrib/cvs/src/no_diff.c C src/contrib/cvs/src/parseinfo.c U src/contrib/cvs/src/patch.c C src/contrib/cvs/src/rcs.c C src/contrib/cvs/src/rcscmds.c C src/contrib/cvs/src/recurse.c U src/contrib/cvs/src/release.c U src/contrib/cvs/src/remove.c U src/contrib/cvs/src/repos.c U src/contrib/cvs/src/root.c U src/contrib/cvs/src/run.c U src/contrib/cvs/src/scramble.c C src/contrib/cvs/src/server.c N src/contrib/cvs/src/stack.c U src/contrib/cvs/src/status.c U src/contrib/cvs/src/subr.c U src/contrib/cvs/src/tag.c C src/contrib/cvs/src/update.c U src/contrib/cvs/src/version.c U src/contrib/cvs/src/vers_ts.c U src/contrib/cvs/src/watch.c U src/contrib/cvs/src/wrapper.c U src/contrib/cvs/src/zlib.c U src/contrib/cvs/src/buffer.h U src/contrib/cvs/src/client.h C src/contrib/cvs/src/cvs.h U src/contrib/cvs/src/edit.h U src/contrib/cvs/src/error.h U src/contrib/cvs/src/fileattr.h U src/contrib/cvs/src/hardlink.h U src/contrib/cvs/src/hash.h N src/contrib/cvs/src/history.h U src/contrib/cvs/src/myndbm.h C src/contrib/cvs/src/rcs.h U src/contrib/cvs/src/root.h U src/contrib/cvs/src/server.h N src/contrib/cvs/src/stack.h C src/contrib/cvs/src/update.h U src/contrib/cvs/src/watch.h U src/contrib/cvs/src/ChangeLog-9194 U src/contrib/cvs/src/ChangeLog-9395 U src/contrib/cvs/src/ChangeLog-96 U src/contrib/cvs/src/sanity.sh U src/contrib/cvs/src/ChangeLog-97 U src/contrib/cvs/lib/Makefile.in U src/contrib/cvs/lib/ChangeLog U src/contrib/cvs/lib/Makefile.am U src/contrib/cvs/lib/dup2.c U src/contrib/cvs/lib/fncase.c U src/contrib/cvs/lib/fnmatch.c U src/contrib/cvs/lib/fnmatch.h.in U src/contrib/cvs/lib/ftruncate.c U src/contrib/cvs/lib/gethostname.c U src/contrib/cvs/lib/memmove.c U src/contrib/cvs/lib/mkdir.c U src/contrib/cvs/lib/rename.c U src/contrib/cvs/lib/strerror.c U src/contrib/cvs/lib/strstr.c U src/contrib/cvs/lib/strtoul.c U src/contrib/cvs/lib/valloc.c U src/contrib/cvs/lib/waitpid.c U src/contrib/cvs/lib/argmatch.c U src/contrib/cvs/lib/getdate.y U src/contrib/cvs/lib/getline.c U src/contrib/cvs/lib/getopt.c U src/contrib/cvs/lib/getopt1.c N src/contrib/cvs/lib/getpass.c U src/contrib/cvs/lib/md5.c U src/contrib/cvs/lib/regex.c U src/contrib/cvs/lib/savecwd.c U src/contrib/cvs/lib/sighandle.c U src/contrib/cvs/lib/stripslash.c U src/contrib/cvs/lib/xgetwd.c U src/contrib/cvs/lib/yesno.c U src/contrib/cvs/lib/getline.h U src/contrib/cvs/lib/getopt.h U src/contrib/cvs/lib/getpagesize.h U src/contrib/cvs/lib/md5.h U src/contrib/cvs/lib/regex.h U src/contrib/cvs/lib/savecwd.h U src/contrib/cvs/lib/system.h U src/contrib/cvs/lib/wait.h U src/contrib/cvs/lib/xselect.h U src/contrib/cvs/lib/xtime.h U src/contrib/cvs/lib/ChangeLog.fsf U src/contrib/cvs/lib/xgssapi.h U src/contrib/cvs/diff/Makefile.in U src/contrib/cvs/diff/ChangeLog U src/contrib/cvs/diff/Makefile.am U src/contrib/cvs/diff/diff.c C src/contrib/cvs/diff/diff3.c U src/contrib/cvs/diff/analyze.c U src/contrib/cvs/diff/cmpbuf.c U src/contrib/cvs/diff/cmpbuf.h U src/contrib/cvs/diff/io.c U src/contrib/cvs/diff/context.c U src/contrib/cvs/diff/ed.c U src/contrib/cvs/diff/normal.c U src/contrib/cvs/diff/ifdef.c U src/contrib/cvs/diff/util.c U src/contrib/cvs/diff/dir.c U src/contrib/cvs/diff/version.c U src/contrib/cvs/diff/diff.h U src/contrib/cvs/diff/side.c U src/contrib/cvs/diff/system.h U src/contrib/cvs/diff/diffrun.h U src/contrib/cvs/diff/diagmeet.note U src/contrib/cvs/man/Makefile.in U src/contrib/cvs/man/ChangeLog U src/contrib/cvs/man/Makefile.am C src/contrib/cvs/man/cvs.1 U src/contrib/cvs/man/cvs.5 U src/contrib/cvs/man/cvsbug.8 U src/contrib/cvs/doc/Makefile.in U src/contrib/cvs/doc/ChangeLog U src/contrib/cvs/doc/Makefile.am U src/contrib/cvs/doc/mdate-sh U src/contrib/cvs/doc/stamp-1 U src/contrib/cvs/doc/stamp-vti U src/contrib/cvs/doc/version-client.texi U src/contrib/cvs/doc/version.texi U src/contrib/cvs/doc/cvs.texinfo U src/contrib/cvs/doc/cvsclient.texi U src/contrib/cvs/doc/ChangeLog.fsf U src/contrib/cvs/doc/RCSFILES U src/contrib/cvs/doc/cvs-paper.ms U src/contrib/cvs/tools/README U src/contrib/cvs/tools/Makefile.in U src/contrib/cvs/tools/ChangeLog U src/contrib/cvs/tools/Makefile.am 25 conflicts created by this import. Use the following command to help the merge: cvs checkout -jCVSHOME:yesterday -jCVSHOME src/contrib/cvs From owner-cvs-all@FreeBSD.ORG Wed Apr 14 18: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 5DA3616A4CE; Wed, 14 Apr 2004 18:17:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3FE0C43D53; Wed, 14 Apr 2004 18:17:29 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F1HTGe011281; Wed, 14 Apr 2004 18:17:29 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F1HSlI011280; Wed, 14 Apr 2004 18:17:28 -0700 (PDT) (envelope-from peter) Message-Id: <200404150117.i3F1HSlI011280@repoman.freebsd.org> From: Peter Wemm Date: Wed, 14 Apr 2004 18:17:28 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/cvs/contrib sccs2rcs.insrc/contrib/cvs/diff diff3.c src/contrib/cvs/man cvs.1 src/contrib/cvs/src buffer.c checkout.c client.c commit.c cvs.h diff.c entries.c filesubr.c... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 01:17:29 -0000 peter 2004/04/14 18:17:28 PDT FreeBSD src repository Modified files: contrib/cvs/contrib sccs2rcs.in contrib/cvs/diff diff3.c contrib/cvs/man cvs.1 contrib/cvs/src buffer.c checkout.c client.c commit.c cvs.h diff.c entries.c filesubr.c import.c lock.c login.c logmsg.c main.c mkmodules.c parseinfo.c rcs.c rcs.h rcscmds.c recurse.c server.c update.c update.h Log: Initial merge of cvs-1.11.5 -> 1.11.15 changes onto mainline Revision Changes Path 1.5 +43 -8 src/contrib/cvs/contrib/sccs2rcs.in 1.6 +1 -0 src/contrib/cvs/diff/diff3.c 1.21 +6 -22 src/contrib/cvs/man/cvs.1 1.5 +72 -42 src/contrib/cvs/src/buffer.c 1.5 +104 -74 src/contrib/cvs/src/checkout.c 1.11 +660 -662 src/contrib/cvs/src/client.c 1.14 +331 -382 src/contrib/cvs/src/commit.c 1.18 +123 -104 src/contrib/cvs/src/cvs.h 1.20 +251 -185 src/contrib/cvs/src/diff.c 1.3 +27 -26 src/contrib/cvs/src/entries.c 1.11 +78 -134 src/contrib/cvs/src/filesubr.c 1.12 +41 -29 src/contrib/cvs/src/import.c 1.13 +113 -57 src/contrib/cvs/src/lock.c 1.8 +23 -20 src/contrib/cvs/src/login.c 1.12 +41 -35 src/contrib/cvs/src/logmsg.c 1.24 +34 -27 src/contrib/cvs/src/main.c 1.13 +11 -9 src/contrib/cvs/src/mkmodules.c 1.3 +35 -25 src/contrib/cvs/src/parseinfo.c 1.26 +314 -259 src/contrib/cvs/src/rcs.c 1.10 +27 -22 src/contrib/cvs/src/rcs.h 1.10 +78 -63 src/contrib/cvs/src/rcscmds.c 1.12 +77 -25 src/contrib/cvs/src/recurse.c 1.21 +545 -544 src/contrib/cvs/src/server.c 1.13 +207 -163 src/contrib/cvs/src/update.c 1.3 +2 -2 src/contrib/cvs/src/update.h From owner-cvs-all@FreeBSD.ORG Wed Apr 14 18: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 5D1FB16A4DC; Wed, 14 Apr 2004 18:19:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3F4B043D2D; Wed, 14 Apr 2004 18:19:12 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F1JCGe011374; Wed, 14 Apr 2004 18:19:12 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F1JCCL011373; Wed, 14 Apr 2004 18:19:12 -0700 (PDT) (envelope-from peter) Message-Id: <200404150119.i3F1JCCL011373@repoman.freebsd.org> From: Peter Wemm Date: Wed, 14 Apr 2004 18:19:12 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: CVSHOME Subject: cvs commit: src/contrib/cvs noautomake.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, 15 Apr 2004 01:19:12 -0000 peter 2004/04/14 18:19:12 PDT FreeBSD src repository Removed files: (Branch: CVSHOME) contrib/cvs noautomake.sh Log: File removed from vendor branch Revision Changes Path 1.1.1.3 +0 -92 src/contrib/cvs/noautomake.sh (dead) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 18:30: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 89E3216A4CE; Wed, 14 Apr 2004 18:30:03 -0700 (PDT) Received: from avgw.bjut.edu.cn (avgw.bjut.edu.cn [202.112.78.85]) by mx1.FreeBSD.org (Postfix) with SMTP id B90EB43D3F; Wed, 14 Apr 2004 18:30:01 -0700 (PDT) (envelope-from delphij@frontfree.net) Received: from beastie.frontfree.net ([218.107.145.7]) by avgw.bjut.edu.cn (SAVSMTP 3.1.5.43) with SMTP id M2004041509300218301 ; Thu, 15 Apr 2004 09:30:02 +0800 Received: from localhost (localhost [127.0.0.1]) by beastie.frontfree.net (Postfix) with ESMTP id 027DD11645; Thu, 15 Apr 2004 09:29:59 +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 02222-07; Thu, 15 Apr 2004 09:29:58 +0800 (CST) Received: by beastie.frontfree.net (Postfix, from userid 1001) id 76F96115A7; Thu, 15 Apr 2004 09:29:58 +0800 (CST) Date: Thu, 15 Apr 2004 09:29:58 +0800 From: Xin LI To: Peter Wemm Message-ID: <20040415012958.GA1010@frontfree.net> References: <200404150102.i3F125GV007383@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="ZGiS0Q5IWpPtfppv" Content-Disposition: inline In-Reply-To: <200404150102.i3F125GV007383@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-CURRENT FreeBSD 5.2-CURRENT #22: Wed Apr 14 17:57:37 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/contrib/cvs - 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, 15 Apr 2004 01:30:03 -0000 --ZGiS0Q5IWpPtfppv Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 14, 2004 at 06:02:05PM -0700, Peter Wemm wrote: >=20 > peter 2004/04/14 18:02:05 PDT >=20 > FreeBSD src repository >=20 > src/contrib/cvs - Imported sources > Update of /home/ncvs/src/contrib/cvs > In directory repoman.freebsd.org:/tmp/cvs-serv7101 > =20 > Log Message: > Import cvs-1.11.15 > =20 > Status: > =20 > Vendor Tag: CVSHOME > Release Tags: v1_11_15 > =09 Yay! Thanks! Cheers, --=20 Xin LI http://www.delphij.net/ See complete headers for GPG key and other information. --ZGiS0Q5IWpPtfppv Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfeWWOfuToMruuMARAnFcAKCL5CBrmxPym/1w6UW6olXOotgxrACghzaf vRvll8kxiTDjUx+LiMMvD4M= =GBXs -----END PGP SIGNATURE----- --ZGiS0Q5IWpPtfppv-- From owner-cvs-all@FreeBSD.ORG Wed Apr 14 18:31: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 96F7816A4CE; Wed, 14 Apr 2004 18:31:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A49E43D39; Wed, 14 Apr 2004 18:31:28 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F1VSGe014270; Wed, 14 Apr 2004 18:31:28 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F1VS31014269; Wed, 14 Apr 2004 18:31:28 -0700 (PDT) (envelope-from peter) Message-Id: <200404150131.i3F1VS31014269@repoman.freebsd.org> From: Peter Wemm Date: Wed, 14 Apr 2004 18:31:28 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/cvs/src diff.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 01:31:28 -0000 peter 2004/04/14 18:31:28 PDT FreeBSD src repository Modified files: contrib/cvs/src diff.c Log: Fix merge typo. Add missing ",". Revision Changes Path 1.21 +1 -1 src/contrib/cvs/src/diff.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 18:41: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 921A516A4CE; Wed, 14 Apr 2004 18:41:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7492743D31; Wed, 14 Apr 2004 18:41:06 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F1f6Ge015899; Wed, 14 Apr 2004 18:41:06 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F1f5oM015868; Wed, 14 Apr 2004 18:41:05 -0700 (PDT) (envelope-from peter) Message-Id: <200404150141.i3F1f5oM015868@repoman.freebsd.org> From: Peter Wemm Date: Wed, 14 Apr 2004 18:41:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/cvs/src cvs.h entries.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 01:41:06 -0000 peter 2004/04/14 18:41:05 PDT FreeBSD src repository Modified files: contrib/cvs/src cvs.h entries.c Log: Change WriteTemplate to take const char * args. The Name_Root() call seems to be defunct, remove it because it was causing compile problems. The real magic seems to be in the Parse_Info() callback (which was also updated for const char * args). Revision Changes Path 1.19 +1 -1 src/contrib/cvs/src/cvs.h 1.4 +3 -7 src/contrib/cvs/src/entries.c From owner-cvs-all@FreeBSD.ORG Wed Apr 14 18:49: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 0DCE616A4CE; Wed, 14 Apr 2004 18:49:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E65C743D4C; Wed, 14 Apr 2004 18:49:25 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F1nPGe017746; Wed, 14 Apr 2004 18:49:25 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F1nPxt017745; Wed, 14 Apr 2004 18:49:25 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404150149.i3F1nPxt017745@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 14 Apr 2004 18:49:25 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/blt 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, 15 Apr 2004 01:49:26 -0000 ijliao 2004/04/14 18:49:25 PDT FreeBSD ports repository Modified files: x11-toolkits/blt Makefile Log: utilize MASTER_SITE_SOURCEFORGE Revision Changes Path 1.43 +3 -2 ports/x11-toolkits/blt/Makefile From owner-cvs-all@FreeBSD.ORG Wed Apr 14 18: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 5430116A4CE; Wed, 14 Apr 2004 18:54:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B29643D45; Wed, 14 Apr 2004 18:54:29 -0700 (PDT) (envelope-from peter@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F1sSGe019666; Wed, 14 Apr 2004 18:54:28 -0700 (PDT) (envelope-from peter@repoman.freebsd.org) Received: (from peter@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F1sS50019665; Wed, 14 Apr 2004 18:54:28 -0700 (PDT) (envelope-from peter) Message-Id: <200404150154.i3F1sS50019665@repoman.freebsd.org> From: Peter Wemm Date: Wed, 14 Apr 2004 18:54:28 -0700 (PDT) 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 Makefile src/gnu/usr.bin/cvs/cvs Makefile client.patch modules.patch X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 01:54:29 -0000 peter 2004/04/14 18:54:28 PDT FreeBSD src repository Modified files: gnu/usr.bin Makefile gnu/usr.bin/cvs/cvs Makefile Removed files: gnu/usr.bin/cvs/cvs client.patch modules.patch Log: Update bmake glue for cvs-1.11.15, with apologies to Jacques for messing up his day. The *.patch files are still fine for MFC'ing. Revision Changes Path 1.78 +3 -3 src/gnu/usr.bin/Makefile 1.47 +4 -11 src/gnu/usr.bin/cvs/cvs/Makefile 1.3 +0 -30 src/gnu/usr.bin/cvs/cvs/client.patch (dead) 1.3 +0 -25 src/gnu/usr.bin/cvs/cvs/modules.patch (dead) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 18:59: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 8B43816A4CE; Wed, 14 Apr 2004 18:59:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8589843D45; Wed, 14 Apr 2004 18:59:31 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F1xVGe019965; Wed, 14 Apr 2004 18:59:31 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F1xVwT019964; Wed, 14 Apr 2004 18:59:31 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404150159.i3F1xVwT019964@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 14 Apr 2004 18:59:31 -0700 (PDT) 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/TkTopNetFlows 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, 15 Apr 2004 01:59:31 -0000 ijliao 2004/04/14 18:59:31 PDT FreeBSD ports repository Modified files: net-mgmt Makefile Added files: net-mgmt/TkTopNetFlows Makefile distinfo pkg-descr pkg-plist Log: add TkTopNetFlows 0.4 GUI tool for NetFlow data visualisation PR: 65542 Submitted by: Viktor Fomichev Revision Changes Path 1.9 +1 -0 ports/net-mgmt/Makefile 1.1 +44 -0 ports/net-mgmt/TkTopNetFlows/Makefile (new) 1.1 +2 -0 ports/net-mgmt/TkTopNetFlows/distinfo (new) 1.1 +6 -0 ports/net-mgmt/TkTopNetFlows/pkg-descr (new) 1.1 +7 -0 ports/net-mgmt/TkTopNetFlows/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 18:59: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 BBE4716A4CF; Wed, 14 Apr 2004 18:59:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9E86E43D54; Wed, 14 Apr 2004 18:59:40 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F1xeGe020009; Wed, 14 Apr 2004 18:59:40 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F1xeRU020008; Wed, 14 Apr 2004 18:59:40 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404150159.i3F1xeRU020008@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 14 Apr 2004 18:59:40 -0700 (PDT) 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, 15 Apr 2004 01:59:40 -0000 ijliao 2004/04/14 18:59:40 PDT FreeBSD ports repository Modified files: . modules Log: TkTopNetFlows --> ports/net-mgmt/TkTopNetFlows Revision Changes Path 1.9904 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 14 21: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 0F24016A4CE; Wed, 14 Apr 2004 21:43:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E61F743D45; Wed, 14 Apr 2004 21:43:20 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F4hKGe062341; Wed, 14 Apr 2004 21:43:20 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F4hKhO062337; Wed, 14 Apr 2004 21:43:20 -0700 (PDT) (envelope-from krion) Message-Id: <200404150443.i3F4hKhO062337@repoman.freebsd.org> From: Kirill Ponomarew Date: Wed, 14 Apr 2004 21:43:20 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/p5-File-Scan 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, 15 Apr 2004 04:43:21 -0000 krion 2004/04/14 21:43:20 PDT FreeBSD ports repository Modified files: security/p5-File-Scan Makefile distinfo Log: - Update to version 1.02 PR: ports/65552 Submitted by: maintainer Revision Changes Path 1.41 +1 -1 ports/security/p5-File-Scan/Makefile 1.38 +2 -2 ports/security/p5-File-Scan/distinfo From owner-cvs-all@FreeBSD.ORG Wed Apr 14 22: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 878C816A4CE; Wed, 14 Apr 2004 22:20:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B53F43D53; Wed, 14 Apr 2004 22:20:39 -0700 (PDT) (envelope-from erwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F5KdGe069535; Wed, 14 Apr 2004 22:20:39 -0700 (PDT) (envelope-from erwin@repoman.freebsd.org) Received: (from erwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F5KdFQ069534; Wed, 14 Apr 2004 22:20:39 -0700 (PDT) (envelope-from erwin) Message-Id: <200404150520.i3F5KdFQ069534@repoman.freebsd.org> From: Erwin Lansing Date: Wed, 14 Apr 2004 22:20:39 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/astro/p5-Astro-Catalog 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, 15 Apr 2004 05:20:39 -0000 erwin 2004/04/14 22:20:39 PDT FreeBSD ports repository Modified files: astro/p5-Astro-Catalog pkg-plist Log: Sort the entries I just added. Submitted by: kris Revision Changes Path 1.4 +1 -1 ports/astro/p5-Astro-Catalog/pkg-plist From owner-cvs-all@FreeBSD.ORG Wed Apr 14 22:26: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 C79CA16A4CE; Wed, 14 Apr 2004 22:26:02 -0700 (PDT) Received: from mail.droso.net (koala.droso.net [193.88.12.38]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4DBF143D54; Wed, 14 Apr 2004 22:26:02 -0700 (PDT) (envelope-from erwin@mail.droso.net) Received: by mail.droso.net (Postfix, from userid 1001) id 0CACF2285D; Thu, 15 Apr 2004 07:26:03 +0200 (CEST) Date: Thu, 15 Apr 2004 07:26:02 +0200 From: Erwin Lansing To: Kris Kennaway Message-ID: <20040415052602.GB7701@droso.net> References: <200404141849.i3EIn0Hc027570@repoman.freebsd.org> <20040414230036.GA56307@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="82I3+IH0IqGh5yIs" Content-Disposition: inline In-Reply-To: <20040414230036.GA56307@xor.obsecurity.org> User-Agent: Mutt/1.4.2.1i X-Operating-System: FreeBSD/i386 5.2.1-RELEASE-p1 cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/astro/p5-Astro-Catalog 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, 15 Apr 2004 05:26:02 -0000 --82I3+IH0IqGh5yIs Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 14, 2004 at 04:00:37PM -0700, Kris Kennaway wrote: > On Wed, Apr 14, 2004 at 11:49:00AM -0700, Erwin Lansing wrote: > > erwin 2004/04/14 11:49:00 PDT > >=20 > > FreeBSD ports repository > >=20 > > Modified files: > > astro/p5-Astro-Catalog pkg-plist=20 > > Log: > > Add missing binaries > > =20 > > Submitted by: dosirak > > =20 > > Revision Changes Path > > 1.3 +3 -0 ports/astro/p5-Astro-Catalog/pkg-plist > > http://cvsweb.FreeBSD.org/ports/astro/p5-Astro-Catalog/pkg-plist.diff?r= 1=3D1.2&r2=3D1.3 > > | =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/astro/p5-Astro-Catalog= /pkg-plist,v > > | retrieving revision 1.2 > > | retrieving revision 1.3 > > | diff -u -p -r1.2 -r1.3 > > | --- ports/astro/p5-Astro-Catalog/pkg-plist 2003/10/14 11:58:15 1.2 > > | +++ ports/astro/p5-Astro-Catalog/pkg-plist 2004/04/14 18:49:00 1.3 > > | @@ -1,3 +1,6 @@ > > | +bin/finder > > | +bin/supercosmos > > | +bin/catalogs >=20 > Unsorted :) Darn. I thought of blaming tobez who kindly gave me the script I'm using, but looking at the code it's me that needs to send him patches :) # XXX - wrong order? >=20 > Thanks for working on these, BTW. It's my intention to work towards > making it a fatal error on bento to leave files behind after > deinstallation, but there are some false positives to weed out first. >=20 The length of the list on dosirak scared me, so I think anything that gives it some more attention is very welcome, especially as most are to easy to fix. Good to see dosirak is come into use. -erwin --=20 _._ _,-'""`-._ Erwin Lansing (,-.`._,'( |\`-/| erwin@lansing.dk http://droso.org `-.-' \ )-`( , o o) erwin@FreeBSD.org -bf- `- \`_`"'- --82I3+IH0IqGh5yIs Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfhzqqy9aWxUlaZARAqC3AJ4763LCfNSm6lN+Tk79dw//cVlf3QCggQYz 2DH7XxVQSD/wY2VMkVxme2I= =AVgS -----END PGP SIGNATURE----- --82I3+IH0IqGh5yIs-- From owner-cvs-all@FreeBSD.ORG Wed Apr 14 22:42: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 6450616A4CF for ; Wed, 14 Apr 2004 22:42:27 -0700 (PDT) Received: from root.org (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id DF22043D53 for ; Wed, 14 Apr 2004 22:42:26 -0700 (PDT) (envelope-from nate@root.org) Received: (qmail 87305 invoked by uid 1000); 15 Apr 2004 05:42:29 -0000 Date: Wed, 14 Apr 2004 22:42:29 -0700 (PDT) From: Nate Lawson To: Kevin Oberman In-Reply-To: <20040414223714.091FE5D07@ptavv.es.net> Message-ID: <20040414223743.V87135@root.org> References: <20040414223714.091FE5D07@ptavv.es.net> 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/contrib/dev/acpica hwsleep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 05:42:27 -0000 On Wed, 14 Apr 2004, Kevin Oberman wrote: > > njl 2004/04/14 09:52:19 PDT > > > > FreeBSD src repository > > > > Modified files: > > sys/contrib/dev/acpica hwsleep.c > > Log: > > Even though the patch has been submitted to the vendor, this file is off > > the vendor branch. Once more, with feeling! > > Boy, my timing suck of late. I just rebuilt my system to see if > unloading and loading the sound driver would fix my > sound-too-fast-after-resume problem. To my amazement, using the loadable > drivers I no longer had the problem. I did all sorts of testing to try > to figure out why this would make a difference. Then I decided to catch > up on cvs-all. > > Thanks, Nate. This fixes the sound problem on my T30. My only remaining > issue is turning off the @#$% back-light! (Not that there might not be > other issues I have not hit.) I can't see how this commit fixes your sound problem. Are you loading/unloading the device drivers (i.e. via /etc/rc.suspend,resume)? I could see that helping. Or is the problem fixed even without doing that? > First rule of troubleshooting...change only one variable at a time! > Learned that over 30 year ago, but still ignore it too often. It's often difficult to sit down and come up with the optimal test plan (for instance, binary search) and then stick to it. Usually after a while, the temptation is too great to just try what you think will fix it and then get lost in random, duplicative tests. I think this is related to the high we get from succeeding in record time due to intuition. Of course, we don't later remember the hours spent pursuing unfruitful intuitions and compare, we only remember the good ones. :-) -Nate From owner-cvs-all@FreeBSD.ORG Wed Apr 14 22:50: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 5B55716A4CE; Wed, 14 Apr 2004 22:50:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E80843D5A; Wed, 14 Apr 2004 22:50:38 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F5obGe075540; Wed, 14 Apr 2004 22:50:37 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F5obE0075539; Wed, 14 Apr 2004 22:50:37 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404150550.i3F5obE0075539@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 14 Apr 2004 22:50:37 -0700 (PDT) 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/py-cgkit 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, 15 Apr 2004 05:50:38 -0000 ijliao 2004/04/14 22:50:37 PDT FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/py-cgkit Makefile distinfo pkg-descr pkg-plist Log: add py-cgkit 1.1.0 Python Computer Graphics Kit Revision Changes Path 1.678 +1 -0 ports/graphics/Makefile 1.1 +27 -0 ports/graphics/py-cgkit/Makefile (new) 1.1 +2 -0 ports/graphics/py-cgkit/distinfo (new) 1.1 +14 -0 ports/graphics/py-cgkit/pkg-descr (new) 1.1 +42 -0 ports/graphics/py-cgkit/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Wed Apr 14 22:50: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 47D2F16A4CF; Wed, 14 Apr 2004 22:50:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B22443D1D; Wed, 14 Apr 2004 22:50:47 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F5okGe075584; Wed, 14 Apr 2004 22:50:46 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F5ok1A075583; Wed, 14 Apr 2004 22:50:46 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404150550.i3F5ok1A075583@repoman.freebsd.org> From: Ying-Chieh Liao Date: Wed, 14 Apr 2004 22:50:46 -0700 (PDT) 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, 15 Apr 2004 05:50:47 -0000 ijliao 2004/04/14 22:50:46 PDT FreeBSD ports repository Modified files: . modules Log: py-cgkit --> ports/graphics/py-cgkit Revision Changes Path 1.9905 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Wed Apr 14 23:01: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 282A516A4CE; Wed, 14 Apr 2004 23:01:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01CC343D49; Wed, 14 Apr 2004 23:01:44 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F61hGe078540; Wed, 14 Apr 2004 23:01:43 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F61h8g078536; Wed, 14 Apr 2004 23:01:43 -0700 (PDT) (envelope-from thierry) Message-Id: <200404150601.i3F61h8g078536@repoman.freebsd.org> From: Thierry Thomas Date: Wed, 14 Apr 2004 23:01:43 -0700 (PDT) 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.nn X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 06:01:44 -0000 thierry 2004/04/14 23:01:43 PDT FreeBSD ports repository Modified files: textproc/aspell Makefile distinfo pkg-plist.nn Log: Norwegian dictionaries have been upgraded. No PORTREVISION bump, but users of these dictionaries are encouraged to upgrade. Noticed by: Kris / bento Approved by: mat (implicit). Revision Changes Path 1.57 +2 -2 ports/textproc/aspell/Makefile 1.30 +4 -4 ports/textproc/aspell/distinfo 1.2 +1 -1 ports/textproc/aspell/pkg-plist.nn From owner-cvs-all@FreeBSD.ORG Wed Apr 14 23:06: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 310AE16A4CE; Wed, 14 Apr 2004 23:06:11 -0700 (PDT) Received: from signal.itea.ntnu.no (signal.itea.ntnu.no [129.241.190.231]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CD2743D55; Wed, 14 Apr 2004 23:06:10 -0700 (PDT) (envelope-from morten@rodal.no) Received: from localhost (localhost [127.0.0.1]) by signal.itea.ntnu.no (Postfix) with ESMTP id AD5A53487B; Thu, 15 Apr 2004 08:06:08 +0200 (CEST) Received: from atlantis.rodal.no (m097g.studby.ntnu.no [129.241.134.97]) by signal.itea.ntnu.no (Postfix) with ESMTP id 76CA934419; Thu, 15 Apr 2004 08:06:08 +0200 (CEST) Received: (from morten@localhost) by atlantis.rodal.no (8.12.11/8.12.11/Submit) id i3F667fm000737; Thu, 15 Apr 2004 08:06:07 +0200 (CEST) (envelope-from morten) Date: Thu, 15 Apr 2004 08:06:07 +0200 From: Morten Rodal To: Max Khon Message-ID: <20040415060606.GA655@atlantis.rodal.no> References: <200404051626.i35GQM6k035503@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="dc+cDN39EJAMEtIO" Content-Disposition: inline In-Reply-To: <200404051626.i35GQM6k035503@repoman.freebsd.org> X-Content-Scanned: with sophos and spamassassin at mailgw.ntnu.no. cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org Subject: Re: cvs commit: src/etc/rc.d sendmail X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 06:06:11 -0000 --dc+cDN39EJAMEtIO Content-Type: multipart/mixed; boundary="n8g4imXOkfNTN/H1" Content-Disposition: inline --n8g4imXOkfNTN/H1 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Mon, Apr 05, 2004 at 09:26:22AM -0700, Max Khon wrote: > fjoe 2004/04/05 09:26:22 PDT >=20 > FreeBSD src repository >=20 > Modified files: > etc/rc.d sendmail=20 > Log: > Allow this script to be used for Postfix: > - Use sendmail_foo variables after load_rc_config so that they actually= work. > - Utilize sendmail_procname. > - Check sendmail_submit_enable instead of sendmail_enable when dealing > with mail submission MTA. > =20 > Revision Changes Path > 1.10 +4 -3 src/etc/rc.d/sendmail With this change I am not able to start the sendmail submit mail daemon, which results in no daemons listening on localhost:25. In the rc.conf I have: sendmail_enable=3D"NO" sendmail_submit_enable=3D"YES" If I apply the attached patch I am able to start the submit mail daemon. Probably not the correct way to do it, but it works. --=20 Morten Rodal --n8g4imXOkfNTN/H1 Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="sendmail.patch" Content-Transfer-Encoding: quoted-printable --- /tmp/sendmail Thu Apr 15 08:02:03 2004 +++ sendmail Thu Apr 15 08:02:19 2004 @@ -74,7 +74,7 @@ =20 required_files=3D =20 -if ! checkyesno sendmail_submit_enable; then +if checkyesno sendmail_submit_enable; then name=3D"sendmail_submit" rcvar=3D`set_rcvar` start_cmd=3D"${command} ${sendmail_submit_flags}" --n8g4imXOkfNTN/H1-- --dc+cDN39EJAMEtIO Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfiZObWe1Cy11WVsRAkpeAJ9xSQLLJraIyO1yUTb8o6/zsU/3fACg3ZUE FOq3cMVy68NhXP4lwdha6qU= =zb+c -----END PGP SIGNATURE----- --dc+cDN39EJAMEtIO-- From owner-cvs-all@FreeBSD.ORG Thu Apr 15 00:24: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 E874F16A4CE; Thu, 15 Apr 2004 00:24:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC10443D2D; Thu, 15 Apr 2004 00:24:10 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F7OAGe097156; Thu, 15 Apr 2004 00:24:10 -0700 (PDT) (envelope-from markm@repoman.freebsd.org) Received: (from markm@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F7OA4k097155; Thu, 15 Apr 2004 00:24:10 -0700 (PDT) (envelope-from markm) Message-Id: <200404150724.i3F7OA4k097155@repoman.freebsd.org> From: Mark Murray Date: Thu, 15 Apr 2004 00:24:10 -0700 (PDT) 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 uio.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, 15 Apr 2004 07:24:11 -0000 markm 2004/04/15 00:24:10 PDT FreeBSD src repository Modified files: share/man/man9 uio.9 Log: Do a style fixup on the example function. Revision Changes Path 1.15 +9 -9 src/share/man/man9/uio.9 From owner-cvs-all@FreeBSD.ORG Thu Apr 15 00: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 B76E416A4D5; Thu, 15 Apr 2004 00:24:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9890443D46; Thu, 15 Apr 2004 00:24:21 -0700 (PDT) (envelope-from mckay@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F7OLGe097190; Thu, 15 Apr 2004 00:24:21 -0700 (PDT) (envelope-from mckay@repoman.freebsd.org) Received: (from mckay@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F7OLg4097189; Thu, 15 Apr 2004 00:24:21 -0700 (PDT) (envelope-from mckay) Message-Id: <200404150724.i3F7OLg4097189@repoman.freebsd.org> From: Stephen McKay Date: Thu, 15 Apr 2004 00:24:21 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/pci if_sk.c if_skreg.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, 15 Apr 2004 07:24:24 -0000 mckay 2004/04/15 00:24:21 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/pci if_sk.c if_skreg.h Log: MFC: if_sk.c (revs 1.67 and 1.78), if_skreg.h (revs 1.17 and 1.20). Add support for Linksys EG1032 and D-Link DGE-530T cards. Approved by: re (scottl) Obtained from: OpenBSD/NetBSD (partially) Revision Changes Path 1.19.2.12 +24 -1 src/sys/pci/if_sk.c 1.8.2.4 +20 -0 src/sys/pci/if_skreg.h From owner-cvs-all@FreeBSD.ORG Thu Apr 15 00:24: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 E8E1616A4CF for ; Thu, 15 Apr 2004 00:24:30 -0700 (PDT) Received: from relay.pair.com (relay.pair.com [209.68.1.20]) by mx1.FreeBSD.org (Postfix) with SMTP id 5E7D443D53 for ; Thu, 15 Apr 2004 00:24:30 -0700 (PDT) (envelope-from silby@silby.com) Received: (qmail 67892 invoked from network); 15 Apr 2004 07:24:29 -0000 Received: from niwun.pair.com (HELO localhost) (209.68.2.70) by relay.pair.com with SMTP; 15 Apr 2004 07:24:29 -0000 X-pair-Authenticated: 209.68.2.70 Date: Thu, 15 Apr 2004 02:32:48 -0500 (CDT) From: Mike Silbersack To: John Baldwin In-Reply-To: <200404132258.31816.jhb@FreeBSD.org> Message-ID: <20040415023200.D10243@odysseus.silby.com> References: <200404120913.i3C9DOkd075451@repoman.freebsd.org> <200404132258.31816.jhb@FreeBSD.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Mark Murray cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/random randomdev.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 07:24:31 -0000 On Tue, 13 Apr 2004, John Baldwin wrote: > You should drop the lock before uiomove(). If the uio can possibly reference > user memory, then uiomove() will do a copyout() which can fault and thus > sleep if the page is in swap. > > -- > John Baldwin <>< http://www.FreeBSD.org/~jhb/ I'm going to have a similar problem in sendfile when I try to de-giantify it, and I'm sure read / write will have issues as well... will WITNESS catch this potential problem? Mike "Silby" Silbersack From owner-cvs-all@FreeBSD.ORG Thu Apr 15 00:37: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 B834E16A4DC; Thu, 15 Apr 2004 00:37:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 966D943D5A; Thu, 15 Apr 2004 00:37:06 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F7b6Ge099323; Thu, 15 Apr 2004 00:37:06 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F7b6IF099322; Thu, 15 Apr 2004 00:37:06 -0700 (PDT) (envelope-from krion) Message-Id: <200404150737.i3F7b6IF099322@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 15 Apr 2004 00:37:06 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/pixilate/files patch-packetize.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 07:37:07 -0000 krion 2004/04/15 00:37:06 PDT FreeBSD ports repository Added files: net-mgmt/pixilate/files patch-packetize.c Log: - Fix build with libnet-devel Reported by: bento via kris Revision Changes Path 1.1 +123 -0 ports/net-mgmt/pixilate/files/patch-packetize.c (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 15 00:38: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 1482716A4CE; Thu, 15 Apr 2004 00:38:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EBE1543D46; Thu, 15 Apr 2004 00:38:44 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F7ciGe099382; Thu, 15 Apr 2004 00:38:44 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F7ciEe099381; Thu, 15 Apr 2004 00:38:44 -0700 (PDT) (envelope-from ru) Message-Id: <200404150738.i3F7ciEe099381@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 15 Apr 2004 00:38:44 -0700 (PDT) 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_poll.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 07:38:45 -0000 ru 2004/04/15 00:38:44 PDT FreeBSD src repository Modified files: sys/kern kern_poll.c Log: Ensure that the poll_burst <= poll_burst_max constraint really holds. Reviewed by: luigi Revision Changes Path 1.17 +2 -0 src/sys/kern/kern_poll.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 00: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 0E7CE16A4CE; Thu, 15 Apr 2004 00:39:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E682D43D45; Thu, 15 Apr 2004 00:39:33 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F7dXGe099449; Thu, 15 Apr 2004 00:39:33 -0700 (PDT) (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F7dX4i099448; Thu, 15 Apr 2004 00:39:33 -0700 (PDT) (envelope-from kuriyama) Message-Id: <200404150739.i3F7dX4i099448@repoman.freebsd.org> From: Jun Kuriyama Date: Thu, 15 Apr 2004 00:39:33 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 07:39:34 -0000 kuriyama 2004/04/15 00:39:33 PDT FreeBSD ports repository Modified files: archivers/p5-Archive-Tar Makefile Log: o Remove dependency on p5-Test-Simple for perl-5.8. o Depends on p5-IO-Zlib rather than p5-Compress-Zlib as described in Makefile.PL. No response from: maintainer Revision Changes Path 1.13 +6 -3 ports/archivers/p5-Archive-Tar/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 01:12: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 E55EC16A4CE; Thu, 15 Apr 2004 01:12:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C892C43D5D; Thu, 15 Apr 2004 01:12:37 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F8CbGe014619; Thu, 15 Apr 2004 01:12:37 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F8CbsH014618; Thu, 15 Apr 2004 01:12:37 -0700 (PDT) (envelope-from kris) Message-Id: <200404150812.i3F8CbsH014618@repoman.freebsd.org> From: Kris Kennaway Date: Thu, 15 Apr 2004 01:12:37 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/alsaplayer 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, 15 Apr 2004 08:12:38 -0000 kris 2004/04/15 01:12:37 PDT FreeBSD ports repository Modified files: audio/alsaplayer pkg-plist Log: Add missing directory # XXX This port detects and uses the jackit port if it is installed, # but no dependency is registered Revision Changes Path 1.2 +1 -0 ports/audio/alsaplayer/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 01: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 DD3C916A4CE; Thu, 15 Apr 2004 01:15:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFC6C43D60; Thu, 15 Apr 2004 01:15:58 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F8FwGe014809; Thu, 15 Apr 2004 01:15:58 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F8Fwhj014808; Thu, 15 Apr 2004 01:15:58 -0700 (PDT) (envelope-from kris) Message-Id: <200404150815.i3F8Fwhj014808@repoman.freebsd.org> From: Kris Kennaway Date: Thu, 15 Apr 2004 01:15:58 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/daaplib 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, 15 Apr 2004 08:15:59 -0000 kris 2004/04/15 01:15:58 PDT FreeBSD ports repository Modified files: audio/daaplib pkg-plist Log: Add missing directories Revision Changes Path 1.2 +2 -0 ports/audio/daaplib/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 01:18: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 0D07E16A4CE; Thu, 15 Apr 2004 01:18:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D95BB43D62; Thu, 15 Apr 2004 01:18:09 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F8I9Ge014870; Thu, 15 Apr 2004 01:18:09 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F8I9Wd014869; Thu, 15 Apr 2004 01:18:09 -0700 (PDT) (envelope-from kris) Message-Id: <200404150818.i3F8I9Wd014869@repoman.freebsd.org> From: Kris Kennaway Date: Thu, 15 Apr 2004 01:18:09 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/dict 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, 15 Apr 2004 08:18:10 -0000 kris 2004/04/15 01:18:09 PDT FreeBSD ports repository Modified files: textproc/dict Makefile pkg-plist Log: Add missing file and manpage Revision Changes Path 1.32 +1 -1 ports/textproc/dict/Makefile 1.5 +2 -1 ports/textproc/dict/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 01:18: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 AA8BA16A4CE; Thu, 15 Apr 2004 01:18:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D56043D5E; Thu, 15 Apr 2004 01:18:37 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F8IbGe014905; Thu, 15 Apr 2004 01:18:37 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F8Ibkl014904; Thu, 15 Apr 2004 01:18:37 -0700 (PDT) (envelope-from kris) Message-Id: <200404150818.i3F8Ibkl014904@repoman.freebsd.org> From: Kris Kennaway Date: Thu, 15 Apr 2004 01:18:37 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/ficl-devel 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, 15 Apr 2004 08:18:37 -0000 kris 2004/04/15 01:18:37 PDT FreeBSD ports repository Modified files: lang/ficl-devel pkg-plist Log: Add missing @dirrm and correct syntax errors in the NOPORTDOCS case Revision Changes Path 1.2 +4 -3 ports/lang/ficl-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 01:19: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 7BDC416A4CF; Thu, 15 Apr 2004 01:19:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D6AA43D3F; Thu, 15 Apr 2004 01:19:31 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F8JVGe014946; Thu, 15 Apr 2004 01:19:31 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F8JVtn014945; Thu, 15 Apr 2004 01:19:31 -0700 (PDT) (envelope-from kris) Message-Id: <200404150819.i3F8JVtn014945@repoman.freebsd.org> From: Kris Kennaway Date: Thu, 15 Apr 2004 01:19:31 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/dylan 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, 15 Apr 2004 08:19:31 -0000 kris 2004/04/15 01:19:31 PDT FreeBSD ports repository Modified files: lang/dylan Makefile Log: Add missing manpage Revision Changes Path 1.34 +1 -1 ports/lang/dylan/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 01:26: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 0D5B316A4CE; Thu, 15 Apr 2004 01:26:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E550B43D1D; Thu, 15 Apr 2004 01:26:10 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F8QAGe016894; Thu, 15 Apr 2004 01:26:10 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F8QAx0016893; Thu, 15 Apr 2004 01:26:10 -0700 (PDT) (envelope-from kris) Message-Id: <200404150826.i3F8QAx0016893@repoman.freebsd.org> From: Kris Kennaway Date: Thu, 15 Apr 2004 01:26:10 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/pam_krb5 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, 15 Apr 2004 08:26:11 -0000 kris 2004/04/15 01:26:10 PDT FreeBSD ports repository Modified files: security/pam_krb5 Makefile Log: Add missing manpages Revision Changes Path 1.18 +2 -1 ports/security/pam_krb5/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 01:28: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 796B216A4CE; Thu, 15 Apr 2004 01:28:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CB9343D4C; Thu, 15 Apr 2004 01:28:48 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F8SmGe017032; Thu, 15 Apr 2004 01:28:48 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F8Sm9r017031; Thu, 15 Apr 2004 01:28:48 -0700 (PDT) (envelope-from kris) Message-Id: <200404150828.i3F8Sm9r017031@repoman.freebsd.org> From: Kris Kennaway Date: Thu, 15 Apr 2004 01:28:48 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/libstatgrab 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, 15 Apr 2004 08:28:48 -0000 kris 2004/04/15 01:28:48 PDT FreeBSD ports repository Modified files: devel/libstatgrab pkg-plist Log: Don't remove a directory we didn't create Revision Changes Path 1.8 +0 -1 ports/devel/libstatgrab/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 01: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 C1B4716A4CE; Thu, 15 Apr 2004 01:32:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A690E43D4C; Thu, 15 Apr 2004 01:32:04 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F8W4Ge018742; Thu, 15 Apr 2004 01:32:04 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F8W4V2018738; Thu, 15 Apr 2004 01:32:04 -0700 (PDT) (envelope-from kris) Message-Id: <200404150832.i3F8W4V2018738@repoman.freebsd.org> From: Kris Kennaway Date: Thu, 15 Apr 2004 01:32:04 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/libdict 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, 15 Apr 2004 08:32:04 -0000 kris 2004/04/15 01:32:04 PDT FreeBSD ports repository Modified files: devel/libdict pkg-plist Log: Add missing files and directories, and sort. Revision Changes Path 1.2 +5 -2 ports/devel/libdict/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 01:32: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 DCD6816A4D1; Thu, 15 Apr 2004 01:32:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C103743D45; Thu, 15 Apr 2004 01:32:12 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F8WCGe018903; Thu, 15 Apr 2004 01:32:12 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F8WCxn018902; Thu, 15 Apr 2004 01:32:12 -0700 (PDT) (envelope-from kris) Message-Id: <200404150832.i3F8WCxn018902@repoman.freebsd.org> From: Kris Kennaway Date: Thu, 15 Apr 2004 01:32:12 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/htdig 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, 15 Apr 2004 08:32:13 -0000 kris 2004/04/15 01:32:12 PDT FreeBSD ports repository Modified files: textproc/htdig pkg-plist Log: Add missing file Revision Changes Path 1.8 +1 -0 ports/textproc/htdig/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 01: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 9498016A4CE; Thu, 15 Apr 2004 01:33:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7793843D45; Thu, 15 Apr 2004 01:33:05 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F8X5Ge018947; Thu, 15 Apr 2004 01:33:05 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F8X5Vc018946; Thu, 15 Apr 2004 01:33:05 -0700 (PDT) (envelope-from kris) Message-Id: <200404150833.i3F8X5Vc018946@repoman.freebsd.org> From: Kris Kennaway Date: Thu, 15 Apr 2004 01:33:05 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/libhttpd-persistent 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, 15 Apr 2004 08:33:05 -0000 kris 2004/04/15 01:33:05 PDT FreeBSD ports repository Modified files: www/libhttpd-persistent pkg-plist Log: Add missing directory Revision Changes Path 1.3 +1 -0 ports/www/libhttpd-persistent/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 01:37: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 5117916A4CE; Thu, 15 Apr 2004 01:37:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3349643D41; Thu, 15 Apr 2004 01:37:35 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F8bYGe019142; Thu, 15 Apr 2004 01:37:34 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F8bYbj019141; Thu, 15 Apr 2004 01:37:34 -0700 (PDT) (envelope-from ru) Message-Id: <200404150837.i3F8bYbj019141@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 15 Apr 2004 01:37:34 -0700 (PDT) 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 kern_poll.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 08:37:35 -0000 ru 2004/04/15 01:37:34 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/kern kern_poll.c Log: MFC: 1.17: Enforce the poll_burst <= poll_burst_max constraint. Approved by: re (scottl) Revision Changes Path 1.2.2.6 +2 -0 src/sys/kern/kern_poll.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 01: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 CA1C916A4CE; Thu, 15 Apr 2004 01:45:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA96643D54; Thu, 15 Apr 2004 01:45:06 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F8j6Ge021114; Thu, 15 Apr 2004 01:45:06 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F8j6TZ021113; Thu, 15 Apr 2004 01:45:06 -0700 (PDT) (envelope-from krion) Message-Id: <200404150845.i3F8j6TZ021113@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 15 Apr 2004 01:45:06 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/howl Makefile ports/net/howl/files patch-src_lib_howl_NotOSX_notosx_mdns.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 08:45:07 -0000 krion 2004/04/15 01:45:06 PDT FreeBSD ports repository Modified files: net/howl Makefile Added files: net/howl/files patch-src_lib_howl_NotOSX_notosx_mdns.c Log: - Fix build on 4-x - Respect PTHREAD_CFLAGS[LIBS] Reported by: bento via kris Revision Changes Path 1.9 +5 -0 ports/net/howl/Makefile 1.1 +11 -0 ports/net/howl/files/patch-src_lib_howl_NotOSX_notosx_mdns.c (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 15 01:56: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 0010C16A4CE; Thu, 15 Apr 2004 01:56:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D853143D2D; Thu, 15 Apr 2004 01:56:07 -0700 (PDT) (envelope-from harti@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F8u7Ge023246; Thu, 15 Apr 2004 01:56:07 -0700 (PDT) (envelope-from harti@repoman.freebsd.org) Received: (from harti@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F8u798023245; Thu, 15 Apr 2004 01:56:07 -0700 (PDT) (envelope-from harti) Message-Id: <200404150856.i3F8u798023245@repoman.freebsd.org> From: Hartmut Brandt Date: Thu, 15 Apr 2004 01:56:06 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/bsnmpd/bsnmpd 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, 15 Apr 2004 08:56:08 -0000 harti 2004/04/15 01:56:06 PDT FreeBSD src repository Modified files: usr.sbin/bsnmpd/bsnmpd Makefile Log: Install the MIBs and the definition file to the new location under /usr/share/snmp. Noted by: bmah Revision Changes Path 1.8 +2 -2 src/usr.sbin/bsnmpd/bsnmpd/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 01: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 41E5116A4CE; Thu, 15 Apr 2004 01:59:15 -0700 (PDT) Received: from mail.cs.tu-berlin.de (mail.cs.tu-berlin.de [130.149.17.13]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBDE443D3F; Thu, 15 Apr 2004 01:59:13 -0700 (PDT) (envelope-from novo@cs.tu-berlin.de) Received: from 130-149-145-43.dialup.cs.tu-berlin.de (130-149-145-43.dialup.cs.tu-berlin.de [130.149.145.43]) by mail.cs.tu-berlin.de (8.9.3p2/8.9.3) with ESMTP id KAA22812; Thu, 15 Apr 2004 10:57:04 +0200 (MET DST) Date: Thu, 15 Apr 2004 10:57:32 +0200 (CEST) From: Harti Brandt X-X-Sender: novo@130-149-145-43.dialup.cs.tu-berlin.de To: "Bruce A. Mah" In-Reply-To: <200404142322.i3ENMkmw093624@tomcat.kitchenlab.org> Message-ID: <20040415105644.I602@130-149-145-43.dialup.cs.tu-berlin.de> References: <200404141631.i3EGVsUQ097374@repoman.freebsd.org> <200404142322.i3ENMkmw093624@tomcat.kitchenlab.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/usr.sbin/bsnmpd/bsnmpd Makefile src/lib/libbsnmp/modules Makefile.inc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: harti@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, 15 Apr 2004 08:59:15 -0000 On Wed, 14 Apr 2004, Bruce A. Mah wrote: > If memory serves me right, Hartmut Brandt wrote: > > harti 2004/04/14 09:31:54 PDT > > > > FreeBSD src repository > > > > Modified files: > > usr.sbin/bsnmpd/bsnmpd Makefile > > lib/libbsnmp/modules Makefile.inc > > Log: > > Use a MANFILTER to patch the man pages to point to the right path. > > > > Noted by: phk > > > > Revision Changes Path > > 1.6 +4 -0 src/lib/libbsnmp/modules/Makefile.inc > > 1.7 +4 -0 src/usr.sbin/bsnmpd/bsnmpd/Makefile > > In usr.sbin/bsnmpd/bsnmpd/Makefile, you still have BMIBSDIR and DEFSDIR > pointing to the old locations under /usr/share/bsnmp, not the new > locations under /usr/share/snmp. Sorry, I missed this one. Fix just committed. harti From owner-cvs-all@FreeBSD.ORG Thu Apr 15 02: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 298F716A4CF; Thu, 15 Apr 2004 02:08:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0DF8843D39; Thu, 15 Apr 2004 02:08:19 -0700 (PDT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F98IGe026377; Thu, 15 Apr 2004 02:08:18 -0700 (PDT) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F98IP3026376; Thu, 15 Apr 2004 02:08:18 -0700 (PDT) (envelope-from sanpei) Message-Id: <200404150908.i3F98IP3026376@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Thu, 15 Apr 2004 02:08:18 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/wdiff Makefileports/textproc/wdiff/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: Thu, 15 Apr 2004 09:08:19 -0000 sanpei 2004/04/15 02:08:18 PDT FreeBSD ports repository Modified files: textproc/wdiff Makefile textproc/wdiff/files patch-ac Log: fix -v and --version options Submitted by: Daniel V Klein Revision Changes Path 1.11 +1 -1 ports/textproc/wdiff/Makefile 1.2 +29 -2 ports/textproc/wdiff/files/patch-ac From owner-cvs-all@FreeBSD.ORG Thu Apr 15 02:45: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 B6C6016A4CF; Thu, 15 Apr 2004 02:45:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9982743D2F; Thu, 15 Apr 2004 02:45:11 -0700 (PDT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F9jBGe034349; Thu, 15 Apr 2004 02:45:11 -0700 (PDT) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F9jBe4034348; Thu, 15 Apr 2004 02:45:11 -0700 (PDT) (envelope-from brueffer) Message-Id: <200404150945.i3F9jBe4034348@repoman.freebsd.org> From: Christian Brueffer Date: Thu, 15 Apr 2004 02:45:11 -0700 (PDT) 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: Thu, 15 Apr 2004 09:45:11 -0000 brueffer 2004/04/15 02:45:11 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: Document FreeBSD version 502112 (addition of .warning directive for make) Revision Changes Path 1.398 +5 -0 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 15 02: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 CE28516A4CE; Thu, 15 Apr 2004 02:47:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C912443D4C; Thu, 15 Apr 2004 02:47:39 -0700 (PDT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3F9ldGe034522; Thu, 15 Apr 2004 02:47:39 -0700 (PDT) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3F9ldkO034521; Thu, 15 Apr 2004 02:47:39 -0700 (PDT) (envelope-from sanpei) Message-Id: <200404150947.i3F9ldkO034521@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Thu, 15 Apr 2004 02:47:39 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/wdiff Makefileports/textproc/wdiff/files patch-aa patch-ab patch-ac patch-ad patch-ae X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 09:47:39 -0000 sanpei 2004/04/15 02:47:39 PDT FreeBSD ports repository Modified files: textproc/wdiff Makefile textproc/wdiff/files patch-aa patch-ab patch-ac Added files: textproc/wdiff/files patch-ad patch-ae Log: use INFO_PATH Obtainde from NetBSD - Enable termcap. Chack tputs() after -ltermcap is detected (configure*). - Use mkstemp() instead of tmpnam(), for safety. Revision Changes Path 1.12 +2 -2 ports/textproc/wdiff/Makefile 1.2 +24 -1 ports/textproc/wdiff/files/patch-aa 1.2 +110 -6 ports/textproc/wdiff/files/patch-ab 1.3 +90 -5 ports/textproc/wdiff/files/patch-ac 1.1 +20 -0 ports/textproc/wdiff/files/patch-ad (new) 1.1 +14 -0 ports/textproc/wdiff/files/patch-ae (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 15 02: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 B90DF16A4CE; Thu, 15 Apr 2004 02:56:21 -0700 (PDT) Received: from ms-dienst.rz.rwth-aachen.de (ms-2.rz.RWTH-Aachen.DE [134.130.3.131]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B82643D48; Thu, 15 Apr 2004 02:56:21 -0700 (PDT) (envelope-from chris@unixpages.org) Received: from r220-1 (r220-1.rz.RWTH-Aachen.DE [134.130.3.31]) by ms-dienst.rz.rwth-aachen.de (iPlanet Messaging Server 5.2 HotFix 1.12 (built Feb 13 2003)) with ESMTP id <0HW7005L8I38O5@ms-dienst.rz.rwth-aachen.de>; Thu, 15 Apr 2004 11:52:21 +0200 (MEST) Received: from relay.RWTH-Aachen.DE ([134.130.3.1]) by r220-1 (MailMonitor for SMTP v1.2.2 ) ; Thu, 15 Apr 2004 11:52:20 +0200 (MEST) Received: from haakonia.hitnet.rwth-aachen.de (haakonia.hitnet.RWTH-Aachen.DE [137.226.181.92])i3F9qJJC015561; Thu, 15 Apr 2004 11:52:19 +0200 (MEST) Received: from gondor.middleearth (gondor.middleearth [192.168.1.42]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))(Postfix) with ESMTP id 8EEEA28427; Thu, 15 Apr 2004 11:52:18 +0200 (CEST) Received: by gondor.middleearth (Postfix, from userid 1001) id 497066138; Thu, 15 Apr 2004 11:52:18 +0200 (CEST) Date: Thu, 15 Apr 2004 11:52:18 +0200 From: Christian Brueffer In-reply-to: <20040414110826.GC2318@ip.net.ua> To: Ruslan Ermilov Message-id: <20040415095218.GD582@unixpages.org> MIME-version: 1.0 Content-type: multipart/signed; boundary=OROCMA9jn6tkzFBc; protocol="application/pgp-signature"; micalg=pgp-sha1 Content-disposition: inline User-Agent: Mutt/1.5.5.1i X-Operating-System: FreeBSD 5.2-CURRENT X-PGP-Key: http://people.freebsd.org/~brueffer/brueffer.key.asc X-PGP-Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D References: <200404130933.i3D9XXxl035113@repoman.freebsd.org> <20040414090056.GC582@unixpages.org> <20040414110826.GC2318@ip.net.ua> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: 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: Thu, 15 Apr 2004 09:56:21 -0000 --OROCMA9jn6tkzFBc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Wed, Apr 14, 2004 at 02:08:26PM +0300, Ruslan Ermilov wrote: > On Wed, Apr 14, 2004 at 11:00:57AM +0200, Christian Brueffer wrote: > > On Tue, Apr 13, 2004 at 02:33:33AM -0700, Ruslan Ermilov wrote: > > > ru 2004/04/13 02:33:33 PDT > > >=20 > > > FreeBSD src repository > > >=20 > > > Modified files: > > > sys/sys param.h=20 > > > Log: > > > Bump __FreeBSD_version on behalf of the new .warning directive in m= ake(1). > > > =20 > > > Requested by: kris > > > =20 > > > Revision Changes Path > > > 1.191 +1 -1 src/sys/sys/param.h > > > _______________________________________________ > > > cvs-all@freebsd.org mailing list > >=20 > > Please also document it in the porters handbook. > >=20 > Please do it for me, I have zero SGML skills. ;) >=20 Added. Like Dag said, it's really just copy and paste :-) - Christian --=20 Christian Brueffer chris@unixpages.org brueffer@FreeBSD.org GPG Key: http://people.freebsd.org/~brueffer/brueffer.key.asc GPG Fingerprint: A5C8 2099 19FF AACA F41B B29B 6C76 178C A0ED 982D --OROCMA9jn6tkzFBc Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfltRbHYXjKDtmC0RAjnuAKDu5k+2E+00lTbehzIAkKwmOTwjAwCgvdN/ DJwRco5d61GKSl1hhLd4xcA= =hKTE -----END PGP SIGNATURE----- --OROCMA9jn6tkzFBc-- From owner-cvs-all@FreeBSD.ORG Thu Apr 15 03: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 BBDFD16A4CE; Thu, 15 Apr 2004 03:10:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F92043D46; Thu, 15 Apr 2004 03:10:08 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FAA8Ge039816; Thu, 15 Apr 2004 03:10:08 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FAA83D039815; Thu, 15 Apr 2004 03:10:08 -0700 (PDT) (envelope-from krion) Message-Id: <200404151010.i3FAA83D039815@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 15 Apr 2004 03:10:08 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/gopchop/files patch-src::Main.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, 15 Apr 2004 10:10:08 -0000 krion 2004/04/15 03:10:08 PDT FreeBSD ports repository Added files: multimedia/gopchop/files patch-src::Main.cpp Log: - Fix build on amd64 Reported by: bento via kris Revision Changes Path 1.3 +10 -0 ports/multimedia/gopchop/files/patch-src::Main.cpp (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 15 03: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 2569C16A4CE; Thu, 15 Apr 2004 03:17:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 08E0743D5C; Thu, 15 Apr 2004 03:17:01 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FAH0Ge041822; Thu, 15 Apr 2004 03:17:00 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FAH0mp041821; Thu, 15 Apr 2004 03:17:00 -0700 (PDT) (envelope-from kris) Message-Id: <200404151017.i3FAH0mp041821@repoman.freebsd.org> From: Kris Kennaway Date: Thu, 15 Apr 2004 03:17:00 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-clocks/wmtime Makefile ports/net/wmnet Makefile ports/audio/wmmixer 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, 15 Apr 2004 10:17:01 -0000 kris 2004/04/15 03:17:00 PDT FreeBSD ports repository Modified files: x11-clocks/wmtime Makefile net/wmnet Makefile audio/wmmixer Makefile Log: Reset bouncing maintainer address: 550 5.1.1 ... User unknown Revision Changes Path 1.15 +1 -1 ports/audio/wmmixer/Makefile 1.10 +1 -1 ports/net/wmnet/Makefile 1.17 +1 -1 ports/x11-clocks/wmtime/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 03:32: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 74D4416A4CE; Thu, 15 Apr 2004 03:32:30 -0700 (PDT) Received: from smtp.des.no (flood.des.no [217.116.83.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 225BB43D4C; Thu, 15 Apr 2004 03:32:30 -0700 (PDT) (envelope-from des@des.no) Received: by smtp.des.no (Pony Express, from userid 666) id 097A6530C; Thu, 15 Apr 2004 12:32:29 +0200 (CEST) Received: from dwp.des.no (des.no [80.203.228.37]) by smtp.des.no (Pony Express) with ESMTP id 97D335309; Thu, 15 Apr 2004 12:32:22 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 2602) id 7EC3D33C6C; Thu, 15 Apr 2004 12:32:22 +0200 (CEST) To: Morten Rodal References: <200404051626.i35GQM6k035503@repoman.freebsd.org> <20040415060606.GA655@atlantis.rodal.no> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Thu, 15 Apr 2004 12:32:22 +0200 In-Reply-To: <20040415060606.GA655@atlantis.rodal.no> (Morten Rodal's message of "Thu, 15 Apr 2004 08:06:07 +0200") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on flood.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=AWL autolearn=no version=2.63 cc: Max Khon cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/etc/rc.d sendmail X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 10:32:30 -0000 Morten Rodal writes: > With this change I am not able to start the sendmail submit mail > daemon, which results in no daemons listening on localhost:25. The submission daemon is supposed to listen on port 587, not 25. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Thu Apr 15 03: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 8DA1B16A4CF; Thu, 15 Apr 2004 03:39:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71FDF43D53; Thu, 15 Apr 2004 03:39:02 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FAd2Ge045816; Thu, 15 Apr 2004 03:39:02 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FAd2ie045815; Thu, 15 Apr 2004 03:39:02 -0700 (PDT) (envelope-from kris) Message-Id: <200404151039.i3FAd2ie045815@repoman.freebsd.org> From: Kris Kennaway Date: Thu, 15 Apr 2004 03:39:02 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/korean/mod_url 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, 15 Apr 2004 10:39:02 -0000 kris 2004/04/15 03:39:02 PDT FreeBSD ports repository Modified files: korean/mod_url pkg-plist Log: Add missing @dirrm Revision Changes Path 1.2 +1 -0 ports/korean/mod_url/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 03:41: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 848AF16A4CE; Thu, 15 Apr 2004 03:41:57 -0700 (PDT) Received: from ray.idi.ntnu.no (ray.idi.ntnu.no [129.241.107.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6B2A443D46; Thu, 15 Apr 2004 03:41:56 -0700 (PDT) (envelope-from morten@rodal.no) Received: from stud326.idi.ntnu.no (stud326.idi.ntnu.no [129.241.103.26]) by ray.idi.ntnu.no (8.12.10/8.12.10) with ESMTP id i3FAfqgE009017; Thu, 15 Apr 2004 12:41:52 +0200 (MEST) Received: (from morten@localhost) by stud326.idi.ntnu.no (8.12.11/8.12.11/Submit) id i3FAfqUP076403; Thu, 15 Apr 2004 12:41:52 +0200 (CEST) (envelope-from morten) Date: Thu, 15 Apr 2004 12:41:52 +0200 From: Morten Rodal To: Dag-Erling =?iso-8859-1?Q?Sm=F8rgrav?= Message-ID: <20040415104152.GB28286@stud326.idi.ntnu.no> References: <200404051626.i35GQM6k035503@repoman.freebsd.org> <20040415060606.GA655@atlantis.rodal.no> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="wRRV7LY7NUeQGEoC" Content-Disposition: inline In-Reply-To: cc: Max Khon cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/etc/rc.d sendmail X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 10:41:57 -0000 --wRRV7LY7NUeQGEoC Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 15, 2004 at 12:32:22PM +0200, Dag-Erling Sm=F8rgrav wrote: > Morten Rodal writes: > > With this change I am not able to start the sendmail submit mail > > daemon, which results in no daemons listening on localhost:25. >=20 > The submission daemon is supposed to listen on port 587, not 25. >=20 Ok, but without the patch I am not able to send any mail. All mail gets deferred; Apr 15 07:48:04 slurp sendmail[99622]: i3F5m26P099513: to=3Droot, ctladdr= =3Droot (0/0), delay=3D00:00:02, xdelay=3D00:00:00, mailer=3Drelay, pri=3D1= 20265, relay=3D[127.0.0.1] [127.0.0.1], dsn=3D4.0.0, stat=3DDeferred: Conne= ction refused by [127.0.0.1] A computer running 5.2-CURRENT from sometime in March lists these processes: root 441 0.0 0.6 3572 1552 ?? Ss 26Mar04 1:03.78 sendmail: acc= epting connections (sendmail) smmsp 444 0.0 0.5 3448 1356 ?? Ss 26Mar04 0:01.40 sendmail: Que= ue runner@00:30:00 for /var/spool/clientmqueue (sendmail) which listens on: [stud326] /etc/mail# sockstat | grep sendmail smmsp sendmail 444 3 dgram -> /var/run/log root sendmail 441 3 dgram -> /var/run/log root sendmail 441 4 tcp4 127.0.0.1:25 *:* Is my mail setup wrong in some way? --=20 Morten Rodal --wRRV7LY7NUeQGEoC Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfmbwbWe1Cy11WVsRApkLAJ4zFaAy1tn79/gtf2ToGJGd5ylqwwCgkSYT YzUYe6pRaL1pPrMQWby4m6U= =qWnm -----END PGP SIGNATURE----- --wRRV7LY7NUeQGEoC-- From owner-cvs-all@FreeBSD.ORG Thu Apr 15 03:43: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 35A3A16A4CE; Thu, 15 Apr 2004 03:43:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1924943D5A; Thu, 15 Apr 2004 03:43:24 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FAhNGe047677; Thu, 15 Apr 2004 03:43:23 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FAhNp3047676; Thu, 15 Apr 2004 03:43:23 -0700 (PDT) (envelope-from kris) Message-Id: <200404151043.i3FAhNp3047676@repoman.freebsd.org> From: Kris Kennaway Date: Thu, 15 Apr 2004 03:43:23 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/libsamplerate 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, 15 Apr 2004 10:43:24 -0000 kris 2004/04/15 03:43:23 PDT FreeBSD ports repository Modified files: audio/libsamplerate pkg-plist Log: Add missing file Revision Changes Path 1.5 +1 -0 ports/audio/libsamplerate/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 03:45: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 1B53116A4CE; Thu, 15 Apr 2004 03:45:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F2C5C43D1D; Thu, 15 Apr 2004 03:45:56 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FAjuGe047801; Thu, 15 Apr 2004 03:45:56 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FAjuUn047800; Thu, 15 Apr 2004 03:45:56 -0700 (PDT) (envelope-from kris) Message-Id: <200404151045.i3FAjuUn047800@repoman.freebsd.org> From: Kris Kennaway Date: Thu, 15 Apr 2004 03:45:56 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/libxml++ 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, 15 Apr 2004 10:45:57 -0000 kris 2004/04/15 03:45:56 PDT FreeBSD ports repository Modified files: textproc/libxml++ pkg-plist Log: Add missing directory Revision Changes Path 1.16 +1 -0 ports/textproc/libxml++/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 03:47: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 9FD7716A4CE; Thu, 15 Apr 2004 03:47:48 -0700 (PDT) Received: from neo.samodelkin.net (samodelkin.net [81.176.202.194]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09C2543D2F; Thu, 15 Apr 2004 03:47:48 -0700 (PDT) (envelope-from fjoe@neo.samodelkin.net) Received: by neo.samodelkin.net (Postfix, from userid 1000) id D0643582; Thu, 15 Apr 2004 17:47:45 +0700 (NOVST) Date: Thu, 15 Apr 2004 17:47:45 +0700 From: Max Khon To: Morten Rodal Message-ID: <20040415104745.GB21942@samodelkin.net> References: <200404051626.i35GQM6k035503@repoman.freebsd.org> <20040415060606.GA655@atlantis.rodal.no> <20040415104152.GB28286@stud326.idi.ntnu.no> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040415104152.GB28286@stud326.idi.ntnu.no> User-Agent: Mutt/1.4.2i cc: Dag-Erling Sm?rgrav cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: cvs-src@freebsd.org cc: Max Khon Subject: Re: cvs commit: src/etc/rc.d sendmail X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 10:47:48 -0000 Hello! On Thu, Apr 15, 2004 at 12:41:52PM +0200, Morten Rodal wrote: > > > With this change I am not able to start the sendmail submit mail > > > daemon, which results in no daemons listening on localhost:25. > > > > The submission daemon is supposed to listen on port 587, not 25. > > Ok, but without the patch I am not able to send any mail. All mail > gets deferred; Your patch seems to be correct. I'll review it more carefully when I get home in the evening and commit it. /fjoe From owner-cvs-all@FreeBSD.ORG Thu Apr 15 03: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 E20F616A4CE; Thu, 15 Apr 2004 03:48:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6CF043D2D; Thu, 15 Apr 2004 03:48:37 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FAmbGe047879; Thu, 15 Apr 2004 03:48:37 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FAmbrP047878; Thu, 15 Apr 2004 03:48:37 -0700 (PDT) (envelope-from kris) Message-Id: <200404151048.i3FAmbrP047878@repoman.freebsd.org> From: Kris Kennaway Date: Thu, 15 Apr 2004 03:48:37 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/mythserver 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, 15 Apr 2004 10:48:38 -0000 kris 2004/04/15 03:48:37 PDT FreeBSD ports repository Modified files: games/mythserver pkg-plist Log: Add missing files and directories Revision Changes Path 1.2 +6 -0 ports/games/mythserver/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 03:51: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 836E616A4CE; Thu, 15 Apr 2004 03:51:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6790643D53; Thu, 15 Apr 2004 03:51:09 -0700 (PDT) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FAp9Ge048042; Thu, 15 Apr 2004 03:51:09 -0700 (PDT) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FAp933048041; Thu, 15 Apr 2004 03:51:09 -0700 (PDT) (envelope-from phantom) Message-Id: <200404151051.i3FAp933048041@repoman.freebsd.org> From: Alexey Zelkin Date: Thu, 15 Apr 2004 03:51:08 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/gifs Makefile las523a.jpg sm_bar.gif X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 10:51:09 -0000 phantom 2004/04/15 03:51:08 PDT FreeBSD doc repository Modified files: en/gifs Makefile Removed files: en/gifs las523a.jpg sm_bar.gif Log: Finish cleanup of unused images. Remove those which will not be used, and add two advertisement banners to build queue (to be used in art.html) Revision Changes Path 1.50 +3 -1 www/en/gifs/Makefile 1.2 +0 -68 www/en/gifs/las523a.jpg (dead) 1.2 +0 -39 www/en/gifs/sm_bar.gif (dead) From owner-cvs-all@FreeBSD.ORG Thu Apr 15 03:52: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 0607916A4CE; Thu, 15 Apr 2004 03:52:27 -0700 (PDT) Received: from zaphod.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D39843D31; Thu, 15 Apr 2004 03:52:26 -0700 (PDT) (envelope-from simon@zaphod.nitro.dk) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id DAAE811956; Thu, 15 Apr 2004 12:52:23 +0200 (CEST) Date: Thu, 15 Apr 2004 12:52:23 +0200 From: "Simon L. Nielsen" To: Marc Fonvieille Message-ID: <20040415105223.GA771@zaphod.nitro.dk> References: <200404141231.i3ECVgnb037966@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="bg08WKrSYDhXBjb5" Content-Disposition: inline In-Reply-To: <200404141231.i3ECVgnb037966@repoman.freebsd.org> User-Agent: Mutt/1.5.6i cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/articles/hubs 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: Thu, 15 Apr 2004 10:52:27 -0000 --bg08WKrSYDhXBjb5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2004.04.14 05:31:42 -0700, Marc Fonvieille wrote: > blackend 2004/04/14 05:31:41 PDT >=20 > FreeBSD doc repository >=20 > Modified files: > en_US.ISO8859-1/articles/hubs article.sgml=20 > Log: > Use of &rel2.current; and &rel.current; entities to allow seamless > update of releases number. I'm rather sure it was on purpose that the version numbers were hardcoded. In the text they are used to describe how much space each release, and now the release numbers will be updated without the space requirements being updated per release. Therefor new mirrors cannot easily see if the space requirements are out of date... --=20 Simon L. Nielsen FreeBSD Documentation Team --bg08WKrSYDhXBjb5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfmlnh9pcDSc1mlERAoDSAJ0d20Hyy4tqANA7kNPSuxwH9jAYZQCfTovH hK5ccbzHBMq6eL0hOn5yeXU= =oQRm -----END PGP SIGNATURE----- --bg08WKrSYDhXBjb5-- From owner-cvs-all@FreeBSD.ORG Thu Apr 15 03: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 1575D16A4CE; Thu, 15 Apr 2004 03:52:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ECE7E43D1F; Thu, 15 Apr 2004 03:52:52 -0700 (PDT) (envelope-from phantom@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FAqqGe049778; Thu, 15 Apr 2004 03:52:52 -0700 (PDT) (envelope-from phantom@repoman.freebsd.org) Received: (from phantom@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FAqpo8049777; Thu, 15 Apr 2004 03:52:51 -0700 (PDT) (envelope-from phantom) Message-Id: <200404151052.i3FAqpo8049777@repoman.freebsd.org> From: Alexey Zelkin Date: Thu, 15 Apr 2004 03:52:51 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en art.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, 15 Apr 2004 10:52:53 -0000 phantom 2004/04/15 03:52:51 PDT FreeBSD doc repository Modified files: en art.sgml Log: . Fix collspan in first table, so all images got centered . Add "Old advertisement banners" section and link appropriate arts there . Change README link (via cvsweb.cgi), to fetch actual document, not its change log. Revision Changes Path 1.2 +19 -5 www/en/art.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 15 03: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 D579616A4CE; Thu, 15 Apr 2004 03:54:50 -0700 (PDT) Received: from lakermmtao03.cox.net (lakermmtao03.cox.net [68.230.240.36]) by mx1.FreeBSD.org (Postfix) with ESMTP id E4A8643D5F; Thu, 15 Apr 2004 03:54:49 -0700 (PDT) (envelope-from conrads@ip68-14-60-78.no.no.cox.net) Received: from ip68-14-60-78.no.no.cox.net ([68.14.60.78]) by lakermmtao03.cox.netESMTP <20040415105448.MDFZ2958.lakermmtao03.cox.net@ip68-14-60-78.no.no.cox.net>; Thu, 15 Apr 2004 06:54:48 -0400 Received: from ip68-14-60-78.no.no.cox.net (localhost [127.0.0.1]) i3FAskMQ064708; Thu, 15 Apr 2004 05:54:46 -0500 (CDT) (envelope-from conrads@ip68-14-60-78.no.no.cox.net) Received: (from conrads@localhost)i3FAsfDL064707; Thu, 15 Apr 2004 05:54:41 -0500 (CDT) (envelope-from conrads) 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: <407C6758.1030606@FreeBSD.org> Date: Thu, 15 Apr 2004 05:54:41 -0500 (CDT) From: Conrad Sabatier To: Alex Dupre cc: Daniel Eischen cc: cvs-ports@freebsd.org cc: freebsd-ports-bugs@freebsd.org cc: cvs-all@freebsd.org cc: ports-committers@freebsd.org Subject: Re: cvs commit: ports/audio/xmcd Makefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list Reply-To: conrads@cox.net List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 10:54:51 -0000 On 13-Apr-2004 Alex Dupre wrote: > Daniel Eischen wrote: > >> deischen 2004/04/13 15:02:07 PDT >> >> FreeBSD ports repository >> >> Modified files: >> audio/xmcd Makefile >> Log: >> Make audio/flac a LIB_DEPENDS instead of a RUN_DEPENDS. > > Hmmm, then you should change the dependency from binary to library. Also: LIB_DEPENDS+= vorbis.3:${PORTSDIR}/audio/libvorbis \ flac:${PORTSDIR}/audio/flac The libraries are named libFLAC*, not libflac*. The above will (and does) fail. -- Conrad Sabatier - "In Unix veritas" From owner-cvs-all@FreeBSD.ORG Thu Apr 15 04:07: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 287F616A4CE; Thu, 15 Apr 2004 04:07:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B3D343D4C; Thu, 15 Apr 2004 04:07:50 -0700 (PDT) (envelope-from sf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FB7nGe052947; Thu, 15 Apr 2004 04:07:49 -0700 (PDT) (envelope-from sf@repoman.freebsd.org) Received: (from sf@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FB7nQj052946; Thu, 15 Apr 2004 04:07:49 -0700 (PDT) (envelope-from sf) Message-Id: <200404151107.i3FB7nQj052946@repoman.freebsd.org> From: FUJISHIMA Satsuki Date: Thu, 15 Apr 2004 04:07:49 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/opera-devel Makefile distinfo pkg-plist ports/www/opera-devel/files patch-install.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, 15 Apr 2004 11:07:50 -0000 sf 2004/04/15 04:07:49 PDT FreeBSD ports repository Modified files: www/opera-devel Makefile distinfo pkg-plist www/opera-devel/files patch-install.sh Log: update to 7.50 Preview 4 (dated 20040414). A changelog can be found here: http://snapshot.opera.com/unix/7.50-Preview-4/u750p4.html PR: 65558 Submitted by: maintainer Revision Changes Path 1.30 +2 -4 ports/www/opera-devel/Makefile 1.24 +2 -2 ports/www/opera-devel/distinfo 1.10 +14 -11 ports/www/opera-devel/files/patch-install.sh 1.17 +1 -3 ports/www/opera-devel/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 04:19: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 D415816A4CE; Thu, 15 Apr 2004 04:19:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B8A2D43D31; Thu, 15 Apr 2004 04:19:54 -0700 (PDT) (envelope-from murray@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FBJsGe055022; Thu, 15 Apr 2004 04:19:54 -0700 (PDT) (envelope-from murray@repoman.freebsd.org) Received: (from murray@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FBJsYM055021; Thu, 15 Apr 2004 04:19:54 -0700 (PDT) (envelope-from murray) Message-Id: <200404151119.i3FBJsYM055021@repoman.freebsd.org> From: Murray Stokely Date: Thu, 15 Apr 2004 04:19:54 -0700 (PDT) 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/eresources 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, 15 Apr 2004 11:19:55 -0000 murray 2004/04/15 04:19:54 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/eresources chapter.sgml Log: cvs-doc includes changes fo rthe www/ tree as well as doc/ Revision Changes Path 1.139 +2 -2 doc/en_US.ISO8859-1/books/handbook/eresources/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 15 04: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 5178316A4CE; Thu, 15 Apr 2004 04:29:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 362E943D1F; Thu, 15 Apr 2004 04:29:21 -0700 (PDT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FBTLGe057059; Thu, 15 Apr 2004 04:29:21 -0700 (PDT) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FBTKiG057056; Thu, 15 Apr 2004 04:29:20 -0700 (PDT) (envelope-from sanpei) Message-Id: <200404151129.i3FBTKiG057056@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Thu, 15 Apr 2004 04:29:20 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/doc Makefile ports/net/doc/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, 15 Apr 2004 11:29:21 -0000 sanpei 2004/04/15 04:29:20 PDT FreeBSD ports repository Modified files: net/doc Makefile net/doc/files patch-aa Log: statically define dig command. doc was only support bind-8's dig, not support bind-9 one. Revision Changes Path 1.7 +1 -0 ports/net/doc/Makefile 1.2 +11 -2 ports/net/doc/files/patch-aa From owner-cvs-all@FreeBSD.ORG Thu Apr 15 04:41: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 2CB2C16A4CE; Thu, 15 Apr 2004 04:41:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1027243D66; Thu, 15 Apr 2004 04:41:08 -0700 (PDT) (envelope-from sanpei@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FBf7Ge059173; Thu, 15 Apr 2004 04:41:07 -0700 (PDT) (envelope-from sanpei@repoman.freebsd.org) Received: (from sanpei@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FBf7wR059172; Thu, 15 Apr 2004 04:41:07 -0700 (PDT) (envelope-from sanpei) Message-Id: <200404151141.i3FBf7wR059172@repoman.freebsd.org> From: MIHIRA Sanpei Yoshiro Date: Thu, 15 Apr 2004 04:41:07 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/doc 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, 15 Apr 2004 11:41:08 -0000 sanpei 2004/04/15 04:41:07 PDT FreeBSD ports repository Modified files: net/doc Makefile Log: found new master site URL Revision Changes Path 1.8 +1 -2 ports/net/doc/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 04:50: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 DD79216A4CE; Thu, 15 Apr 2004 04:50:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C1A7D43D1D; Thu, 15 Apr 2004 04:50:45 -0700 (PDT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FBojGe067192; Thu, 15 Apr 2004 04:50:45 -0700 (PDT) (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FBojns067191; Thu, 15 Apr 2004 04:50:45 -0700 (PDT) (envelope-from mat) Message-Id: <200404151150.i3FBojns067191@repoman.freebsd.org> From: Mathieu Arnold Date: Thu, 15 Apr 2004 04:50:45 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/perltidy 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, 15 Apr 2004 11:50:46 -0000 mat 2004/04/15 04:50:45 PDT FreeBSD ports repository Modified files: devel/perltidy pkg-plist Log: Fix directories deleting order Obtained from: dosirak.kr Revision Changes Path 1.9 +1 -1 ports/devel/perltidy/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 05: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 21DCE16A4CE; Thu, 15 Apr 2004 05:01:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04F8543D39; Thu, 15 Apr 2004 05:01:16 -0700 (PDT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FC1FGe069264; Thu, 15 Apr 2004 05:01:15 -0700 (PDT) (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FC1F7N069263; Thu, 15 Apr 2004 05:01:15 -0700 (PDT) (envelope-from mat) Message-Id: <200404151201.i3FC1F7N069263@repoman.freebsd.org> From: Mathieu Arnold Date: Thu, 15 Apr 2004 05:01:15 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/p5-HTTP-Proxy 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, 15 Apr 2004 12:01:16 -0000 mat 2004/04/15 05:01:15 PDT FreeBSD ports repository Modified files: www/p5-HTTP-Proxy Makefile Log: Remove the .orig files because perl 5.005 will think it's clever to install them Found out by: dosirak.kr Revision Changes Path 1.2 +3 -0 ports/www/p5-HTTP-Proxy/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 05:12: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 A672F16A4CE; Thu, 15 Apr 2004 05:12:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A5A143D48; Thu, 15 Apr 2004 05:12:15 -0700 (PDT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FCCFGe073732; Thu, 15 Apr 2004 05:12:15 -0700 (PDT) (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FCCFgD073731; Thu, 15 Apr 2004 05:12:15 -0700 (PDT) (envelope-from cperciva) Message-Id: <200404151212.i3FCCFgD073731@repoman.freebsd.org> From: Colin Percival Date: Thu, 15 Apr 2004 05:12:15 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: 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: Thu, 15 Apr 2004 12:12:15 -0000 cperciva 2004/04/15 05:12:15 PDT FreeBSD src repository Modified files: sys/boot/forth loader.conf Log: s/atspeaker/speaker/ cf. revision 1.2 of src/sys/modules/speaker/Makefile PR: conf/65195 Submitted by: daichi Revision Changes Path 1.77 +1 -1 src/sys/boot/forth/loader.conf From owner-cvs-all@FreeBSD.ORG Thu Apr 15 05:27: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 E41D116A4CE; Thu, 15 Apr 2004 05:27:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C851A43D2F; Thu, 15 Apr 2004 05:27:11 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FCRBGe076073; Thu, 15 Apr 2004 05:27:11 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FCRBvu076072; Thu, 15 Apr 2004 05:27:11 -0700 (PDT) (envelope-from krion) Message-Id: <200404151227.i3FCRBvu076072@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 15 Apr 2004 05:27:11 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/bozohttpd 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, 15 Apr 2004 12:27:12 -0000 krion 2004/04/15 05:27:11 PDT FreeBSD ports repository Modified files: www/bozohttpd Makefile Log: - Fix MASTER_SITES PR: ports/65568 Submitted by: maintainer Revision Changes Path 1.9 +2 -1 ports/www/bozohttpd/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 05:30: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 0ACA816A4CE; Thu, 15 Apr 2004 05:30:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E24E143D1F; Thu, 15 Apr 2004 05:30:42 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FCUgGe076280; Thu, 15 Apr 2004 05:30:42 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FCUg3c076279; Thu, 15 Apr 2004 05:30:42 -0700 (PDT) (envelope-from krion) Message-Id: <200404151230.i3FCUg3c076279@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 15 Apr 2004 05:30:42 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 12:30:43 -0000 krion 2004/04/15 05:30:42 PDT FreeBSD ports repository Modified files: databases/qdbm Makefile distinfo Log: - Update to version 1.8.8 PR: ports/65566 Submitted by: maintainer Revision Changes Path 1.21 +1 -1 ports/databases/qdbm/Makefile 1.21 +2 -2 ports/databases/qdbm/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 15 05: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 4BCAF16A4CE; Thu, 15 Apr 2004 05:31:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EC2B43D54; Thu, 15 Apr 2004 05:31:52 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FCVqGe077658; Thu, 15 Apr 2004 05:31:52 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FCVpRG077654; Thu, 15 Apr 2004 05:31:51 -0700 (PDT) (envelope-from krion) Message-Id: <200404151231.i3FCVpRG077654@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 15 Apr 2004 05:31:51 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/pwm 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, 15 Apr 2004 12:31:52 -0000 krion 2004/04/15 05:31:51 PDT FreeBSD ports repository Modified files: x11-wm/pwm Makefile Log: - Fix build on amd64 Submitted by: Ports Fury Reported by: bento via kris Revision Changes Path 1.11 +1 -1 ports/x11-wm/pwm/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 05: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 CCB3E16A4CF; Thu, 15 Apr 2004 05:44:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A92DC43D5A; Thu, 15 Apr 2004 05:44:31 -0700 (PDT) (envelope-from sf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FCiVGe080156; Thu, 15 Apr 2004 05:44:31 -0700 (PDT) (envelope-from sf@repoman.freebsd.org) Received: (from sf@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FCiVxo080155; Thu, 15 Apr 2004 05:44:31 -0700 (PDT) (envelope-from sf) Message-Id: <200404151244.i3FCiVxo080155@repoman.freebsd.org> From: FUJISHIMA Satsuki Date: Thu, 15 Apr 2004 05:44:31 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/opera Makefile pkg-plist ports/www/opera/files patch-install.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, 15 Apr 2004 12:44:32 -0000 sf 2004/04/15 05:44:31 PDT FreeBSD ports repository Modified files: www/opera Makefile pkg-plist www/opera/files patch-install.sh Log: sync with opera-devel: o remove LIB_DEPENDS on png since that's now statically compiled in. o stop installing icons into non-standard places. PR: 65558 Submitted by: maintainer Revision Changes Path 1.26 +1 -2 ports/www/opera/Makefile 1.7 +12 -9 ports/www/opera/files/patch-install.sh 1.14 +0 -3 ports/www/opera/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 05: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 39C7016A4CE; Thu, 15 Apr 2004 05:56:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EB1443D45; Thu, 15 Apr 2004 05:56:40 -0700 (PDT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FCudGe082256; Thu, 15 Apr 2004 05:56:39 -0700 (PDT) (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FCudmL082255; Thu, 15 Apr 2004 05:56:39 -0700 (PDT) (envelope-from mat) Message-Id: <200404151256.i3FCudmL082255@repoman.freebsd.org> From: Mathieu Arnold Date: Thu, 15 Apr 2004 05:56:38 -0700 (PDT) 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-Radius 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, 15 Apr 2004 12:56:40 -0000 mat 2004/04/15 05:56:38 PDT FreeBSD ports repository Modified files: www/p5-Apache-Radius pkg-plist Log: Fix plist Revision Changes Path 1.3 +3 -0 ports/www/p5-Apache-Radius/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 06: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 1F43216A4CE; Thu, 15 Apr 2004 06:16:41 -0700 (PDT) Received: from plouf.absolight.net (plouf.absolight.net [212.43.217.12]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFA8043D4C; Thu, 15 Apr 2004 06:16:40 -0700 (PDT) (envelope-from mat@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by plouf.absolight.net (Postfix) with ESMTP id 961A6411E; Thu, 15 Apr 2004 15:16:39 +0200 (CEST) Received: from andromede.faubourg.reaumur.net (ATuileries-152-1-4-148.w82-123.abo.wanadoo.fr [82.123.34.148]) (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 52DBB411B; Thu, 15 Apr 2004 15:16:38 +0200 (CEST) Date: Thu, 15 Apr 2004 15:14:32 +0200 From: Mathieu Arnold To: Jun Kuriyama Message-ID: <3016259171.1082042072@andromede.faubourg.reaumur.net> In-Reply-To: <20040415073946.80B3C16A4D7@hub.freebsd.org> References: <20040415073946.80B3C16A4D7@hub.freebsd.org> X-Mailer: Mulberry/3.1.1 (Win32) MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="==========82076CA197E6DD4C41AA==========" 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/archivers/p5-Archive-Tar 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, 15 Apr 2004 13:16:41 -0000 --==========82076CA197E6DD4C41AA========== Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Content-Disposition: inline +-le 15/04/2004 00:39 -0700, Jun Kuriyama a dit : | kuriyama 2004/04/15 00:39:33 PDT | | FreeBSD ports repository | | Modified files: | archivers/p5-Archive-Tar Makefile | Log: | o Remove dependency on p5-Test-Simple for perl-5.8. You could have removed it totally, it's only needed when make'ing test in the sources directory (which nobody does). -- Mathieu Arnold --==========82076CA197E6DD4C41AA========== Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (MingW32) iQEVAwUBQH6Ku1vROjYJ63c1AQJ2JQgAnL65vj5KJJ/E2fF9KDNaUkFwHfcHu2+/ DShG++0EuGLkXttXUSzey+rNxIZroqZIOqEe6LINk2b7CuHxh4AvHlxiulY81bcL 7qZ1Uq+/W9zOOBk+sHJDY1jBLnqLyIzsPUaBUOe29LKqgxT+UNkKXbi5RMsX6H2R ZyjeUJr+/GX3hGjwnL6igXPKfa+NYdUnaRzmaETqnOqxh6YRVspen0QB72rbO6J3 8ZrCWnhKXlvqThXbs2FWDFV0MnxVMe5Cf8OHEOz7PKMHCwcp47z120jAc+IOlkgz S4H4swgVjFPssYim5P7BmYEonct+ARZHVYGAlrJz9xhPHi1Tuvq+pw== =TmZu -----END PGP SIGNATURE----- --==========82076CA197E6DD4C41AA==========-- From owner-cvs-all@FreeBSD.ORG Thu Apr 15 06:21: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 1079B16A4CE; Thu, 15 Apr 2004 06:21:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7CF143D53; Thu, 15 Apr 2004 06:21:03 -0700 (PDT) (envelope-from matusita@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FDL3Ge087360; Thu, 15 Apr 2004 06:21:03 -0700 (PDT) (envelope-from matusita@repoman.freebsd.org) Received: (from matusita@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FDL34Y087359; Thu, 15 Apr 2004 06:21:03 -0700 (PDT) (envelope-from matusita) Message-Id: <200404151321.i3FDL34Y087359@repoman.freebsd.org> From: Makoto Matsushita Date: Thu, 15 Apr 2004 06:21:02 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/jwhois 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, 15 Apr 2004 13:21:04 -0000 matusita 2004/04/15 06:21:02 PDT FreeBSD ports repository Modified files: net/jwhois Makefile pkg-plist Log: Cleanup. - Fix pkg-plist, add missing files to the list (gimme a pointy hat to me...) - Introduce INFO variable. - Don't touch share/locale/ directory. - Employ WITHOUT_NLS macro as other ports did. Since pkg-plist is changed, bump PORTREVISION. Submitted by: sf Revision Changes Path 1.22 +9 -2 ports/net/jwhois/Makefile 1.7 +12 -13 ports/net/jwhois/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 06:35: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 43E9B16A4CE; Thu, 15 Apr 2004 06:35:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2740E43D41; Thu, 15 Apr 2004 06:35:39 -0700 (PDT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FDZcGe091171; Thu, 15 Apr 2004 06:35:38 -0700 (PDT) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FDZc6t091170; Thu, 15 Apr 2004 06:35:38 -0700 (PDT) (envelope-from edwin) Message-Id: <200404151335.i3FDZc6t091170@repoman.freebsd.org> From: Edwin Groothuis Date: Thu, 15 Apr 2004 06:35:38 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/xmcd 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, 15 Apr 2004 13:35:39 -0000 edwin 2004/04/15 06:35:38 PDT FreeBSD ports repository Modified files: audio/xmcd Makefile Log: libflac -> libFLAC pointy hat to: deischen@ PR: ports/65565 Submitted by: Shigetomo Kimura Revision Changes Path 1.47 +1 -1 ports/audio/xmcd/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 06: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 812BF16A4CE for ; Thu, 15 Apr 2004 06:39:20 -0700 (PDT) Received: from wasley.bl.mmtr.or.jp (wasley.bl.mmtr.or.jp [210.228.173.142]) by mx1.FreeBSD.org (Postfix) with SMTP id 1A5BD43D58 for ; Thu, 15 Apr 2004 06:39:19 -0700 (PDT) (envelope-from rushani@bl.mmtr.or.jp) Received: (qmail 17161 invoked from network); 15 Apr 2004 13:39:17 -0000 Received: from unknown (HELO localhost) (210.153.208.115) by wasley.bl.mmtr.or.jp with SMTP; 15 Apr 2004 13:39:17 -0000 Date: Thu, 15 Apr 2004 22:38:53 +0900 (JST) Message-Id: <20040415.223853.59480249.rushani@bl.mmtr.or.jp> To: cperciva@FreeBSD.org From: Hideyuki KURASHINA In-Reply-To: <200404151212.i3FCCFgD073731@repoman.freebsd.org> References: <200404151212.i3FCCFgD073731@repoman.freebsd.org> X-URL: http://www.rushani.jp/ X-PGP-Public-Key: http://www.rushani.jp/rushani.asc X-PGP-Fingerprint: A052 6F98 6146 6FE3 91E2 DA6B F2FA 2088 439A DC57 X-RC5-72-Stats: http://stats.distributed.net/participant/psummary.php?project_id=8&id=432320 X-Mailer: Mew version 4.0.65 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: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: 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: Thu, 15 Apr 2004 13:39:20 -0000 >>> On Thu, 15 Apr 2004 05:12:15 -0700 (PDT), Colin Percival said: > cperciva 2004/04/15 05:12:15 PDT > > FreeBSD src repository > > Modified files: > sys/boot/forth loader.conf > Log: > s/atspeaker/speaker/ > cf. revision 1.2 of src/sys/modules/speaker/Makefile Could you please also take care about conf/58016? Regards, -- rushani From owner-cvs-all@FreeBSD.ORG Thu Apr 15 06:45: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 54E5D16A4CE; Thu, 15 Apr 2004 06:45:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3972443D48; Thu, 15 Apr 2004 06:45:53 -0700 (PDT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FDjrGe093230; Thu, 15 Apr 2004 06:45:53 -0700 (PDT) (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FDjqqQ093229; Thu, 15 Apr 2004 06:45:52 -0700 (PDT) (envelope-from mat) Message-Id: <200404151345.i3FDjqqQ093229@repoman.freebsd.org> From: Mathieu Arnold Date: Thu, 15 Apr 2004 06:45:52 -0700 (PDT) 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-Folder 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, 15 Apr 2004 13:45:53 -0000 mat 2004/04/15 06:45:52 PDT FreeBSD ports repository Modified files: mail/p5-Mail-Folder Makefile Log: fix depends list Revision Changes Path 1.27 +1 -3 ports/mail/p5-Mail-Folder/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 06:46: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 F34E716A4CE for ; Thu, 15 Apr 2004 06:46:43 -0700 (PDT) Received: from tx2.oucs.ox.ac.uk (tx2.oucs.ox.ac.uk [163.1.2.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A7AB43D58 for ; Thu, 15 Apr 2004 06:46:43 -0700 (PDT) (envelope-from colin.percival@wadham.ox.ac.uk) Received: from scan2.oucs.ox.ac.uk ([163.1.2.162] helo=localhost) by tx2.oucs.ox.ac.uk with esmtp (Exim 4.24) id 1BE7CU-0007jr-Ks for cvs-all@FreeBSD.org; Thu, 15 Apr 2004 14:46:42 +0100 Received: from rx2.oucs.ox.ac.uk ([163.1.2.161]) by localhost (scan2.oucs.ox.ac.uk [163.1.2.162]) (amavisd-new, port 25) with ESMTP id 29637-02 for ; Thu, 15 Apr 2004 14:46:42 +0100 (BST) Received: from gateway.wadham.ox.ac.uk ([163.1.161.253]) by rx2.oucs.ox.ac.uk with smtp (Exim 4.24) id 1BE7CU-0007jk-7P for cvs-all@FreeBSD.org; Thu, 15 Apr 2004 14:46:42 +0100 Received: (qmail 3549 invoked by uid 1004); 15 Apr 2004 13:46:42 -0000 Received: from colin.percival@wadham.ox.ac.uk by gateway by uid 71 with qmail-scanner-1.20 (clamscan: 0.67. sweep: 2.18/3.79. Clear:RC:1(163.1.161.131):. Processed in 0.065583 secs); 15 Apr 2004 13:46:42 -0000 Received: from dhcp1131.wadham.ox.ac.uk (HELO piii600.wadham.ox.ac.uk) (163.1.161.131) by gateway.wadham.ox.ac.uk with SMTP; 15 Apr 2004 13:46:41 -0000 Message-Id: <6.0.1.1.1.20040415144434.03c10478@imap.sfu.ca> X-Sender: cperciva@imap.sfu.ca (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 6.0.1.1 Date: Thu, 15 Apr 2004 14:46:30 +0100 To: Hideyuki KURASHINA From: Colin Percival In-Reply-To: <20040415.223853.59480249.rushani@bl.mmtr.or.jp> References: <200404151212.i3FCCFgD073731@repoman.freebsd.org> <20040415.223853.59480249.rushani@bl.mmtr.or.jp> 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 cc: cperciva@FreeBSD.org Subject: Re: cvs commit: 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: Thu, 15 Apr 2004 13:46:44 -0000 At 14:38 15/04/2004, Hideyuki KURASHINA wrote: >>>> On Thu, 15 Apr 2004 05:12:15 -0700 (PDT), Colin Percival said: >> cperciva 2004/04/15 05:12:15 PDT >> Modified files: >> sys/boot/forth loader.conf >> Log: >> s/atspeaker/speaker/ >> cf. revision 1.2 of src/sys/modules/speaker/Makefile > >Could you please also take care about conf/58016? Heh, it didn't occur to me that two different committers might have submitted PRs containing exactly the same one-line bug fix. :-) Colin Percival From owner-cvs-all@FreeBSD.ORG Thu Apr 15 06: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 4BEEF16A4CE; Thu, 15 Apr 2004 06:52:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CA1643D48; Thu, 15 Apr 2004 06:52:50 -0700 (PDT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FDqnGe095132; Thu, 15 Apr 2004 06:52:49 -0700 (PDT) (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FDqngB095131; Thu, 15 Apr 2004 06:52:49 -0700 (PDT) (envelope-from mat) Message-Id: <200404151352.i3FDqngB095131@repoman.freebsd.org> From: Mathieu Arnold Date: Thu, 15 Apr 2004 06:52:49 -0700 (PDT) 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-Folder 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, 15 Apr 2004 13:52:50 -0000 mat 2004/04/15 06:52:49 PDT FreeBSD ports repository Modified files: mail/p5-Mail-Folder pkg-plist Log: fix plist Revision Changes Path 1.9 +2 -0 ports/mail/p5-Mail-Folder/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 06: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 3A06616A4CE; Thu, 15 Apr 2004 06:56:21 -0700 (PDT) Received: from b.mail.sonic.net (b.mail.sonic.net [64.142.19.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1361A43D55; Thu, 15 Apr 2004 06:56:21 -0700 (PDT) (envelope-from bmah@tomcat.kitchenlab.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 i3FDuKMX006443 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Thu, 15 Apr 2004 06:56:20 -0700 Received: from tomcat.kitchenlab.org (localhost.kitchenlab.org [127.0.0.1]) i3FDuK4S096786; Thu, 15 Apr 2004 06:56:20 -0700 (PDT) (envelope-from bmah@tomcat.kitchenlab.org) Received: (from bmah@localhost) by tomcat.kitchenlab.org (8.12.11/8.12.11/Submit) id i3FDuK6l096785; Thu, 15 Apr 2004 06:56:20 -0700 (PDT) (envelope-from bmah) Date: Thu, 15 Apr 2004 06:56:20 -0700 From: "Bruce A. Mah" To: harti@FreeBSD.org Message-ID: <20040415135620.GA96774@tomcat.kitchenlab.org> References: <200404141631.i3EGVsUQ097374@repoman.freebsd.org> <200404142322.i3ENMkmw093624@tomcat.kitchenlab.org> <20040415105644.I602@130-149-145-43.dialup.cs.tu-berlin.de> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="LZvS9be/3tNcYl/X" Content-Disposition: inline In-Reply-To: <20040415105644.I602@130-149-145-43.dialup.cs.tu-berlin.de> User-Agent: Mutt/1.4.2.1i X-Image-Url: http://www.employees.org/~bmah/Images/bmah-cisco-small.gif X-url: http://www.employees.org/~bmah/ cc: "Bruce A. Mah" cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: cvs-src@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/bsnmpd/bsnmpd Makefile 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: Thu, 15 Apr 2004 13:56:21 -0000 --LZvS9be/3tNcYl/X Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable If memory serves me right, Harti Brandt wrote: > On Wed, 14 Apr 2004, Bruce A. Mah wrote: >=20 > > If memory serves me right, Hartmut Brandt wrote: > > > harti 2004/04/14 09:31:54 PDT > > > > > > FreeBSD src repository > > > > > > Modified files: > > > usr.sbin/bsnmpd/bsnmpd Makefile > > > lib/libbsnmp/modules Makefile.inc > > > Log: > > > Use a MANFILTER to patch the man pages to point to the right path. > > > > > > Noted by: phk > > > > > > Revision Changes Path > > > 1.6 +4 -0 src/lib/libbsnmp/modules/Makefile.inc > > > 1.7 +4 -0 src/usr.sbin/bsnmpd/bsnmpd/Makefile > > > > In usr.sbin/bsnmpd/bsnmpd/Makefile, you still have BMIBSDIR and DEFSDIR > > pointing to the old locations under /usr/share/bsnmp, not the new > > locations under /usr/share/snmp. >=20 > Sorry, I missed this one. Fix just committed. Thanks! Bruce. --LZvS9be/3tNcYl/X Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfpSE2MoxcVugUsMRAo4ZAKCOxmOLs2/u5xmxSl/dfz13rPaTrwCgiYew fbnZTNsa5luzzFDxXFm6vtM= =nya3 -----END PGP SIGNATURE----- --LZvS9be/3tNcYl/X-- From owner-cvs-all@FreeBSD.ORG Thu Apr 15 06:57: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 5D4FD16A4D0; Thu, 15 Apr 2004 06:57:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4119D43D49; Thu, 15 Apr 2004 06:57:03 -0700 (PDT) (envelope-from sf@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FDv2Ge095307; Thu, 15 Apr 2004 06:57:02 -0700 (PDT) (envelope-from sf@repoman.freebsd.org) Received: (from sf@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FDv2AL095306; Thu, 15 Apr 2004 06:57:02 -0700 (PDT) (envelope-from sf) Message-Id: <200404151357.i3FDv2AL095306@repoman.freebsd.org> From: FUJISHIMA Satsuki Date: Thu, 15 Apr 2004 06:57:02 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/opera Makefile pkg-plist ports/www/opera/files patch-install.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, 15 Apr 2004 13:57:03 -0000 sf 2004/04/15 06:57:02 PDT FreeBSD ports repository Modified files: www/opera Makefile pkg-plist www/opera/files patch-install.sh Log: (null commit) previous commit was actually: PR: 65569 Revision Changes Path 1.27 +0 -0 ports/www/opera/Makefile 1.8 +0 -0 ports/www/opera/files/patch-install.sh 1.15 +0 -0 ports/www/opera/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 07:11: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 5179C16A4CE; Thu, 15 Apr 2004 07:11:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BFC943D55; Thu, 15 Apr 2004 07:11:19 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FEBIGe098590; Thu, 15 Apr 2004 07:11:18 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FEBHJD098561; Thu, 15 Apr 2004 07:11:17 -0700 (PDT) (envelope-from krion) Message-Id: <200404151411.i3FEBHJD098561@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 15 Apr 2004 07:11:17 -0700 (PDT) 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/zgv 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, 15 Apr 2004 14:11:19 -0000 krion 2004/04/15 07:11:17 PDT FreeBSD ports repository Modified files: graphics Makefile Added files: graphics/zgv Makefile distinfo pkg-descr Log: Add zgv 5.8, zgv is an svgalib-based viewer which views GIF, JPEG, PNG, PBM/PGM/PPM, TIFF, BMP, TGA, PCX, mrf, XBM, and XPM files, with a full-screen file selector front-end. It can be used as a simple command, with zgv filename(s), which bypasses the front-end. For more on how zgv works and how to use it, do `info zgv' or `man zgv' once it's installed. PR: ports/65577 Submitted by: Radim Kolar Revision Changes Path 1.679 +1 -0 ports/graphics/Makefile 1.1 +52 -0 ports/graphics/zgv/Makefile (new) 1.1 +2 -0 ports/graphics/zgv/distinfo (new) 1.1 +8 -0 ports/graphics/zgv/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 15 07: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 C44BF16A4CF; Thu, 15 Apr 2004 07:11:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A58DE43D41; Thu, 15 Apr 2004 07:11:21 -0700 (PDT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FEBLGe098781; Thu, 15 Apr 2004 07:11:21 -0700 (PDT) (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FEBKwf098740; Thu, 15 Apr 2004 07:11:20 -0700 (PDT) (envelope-from eik) Message-Id: <200404151411.i3FEBKwf098740@repoman.freebsd.org> From: Oliver Eikemeier Date: Thu, 15 Apr 2004 07:11:20 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/exim 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, 15 Apr 2004 14:11:21 -0000 eik 2004/04/15 07:11:20 PDT FreeBSD ports repository Modified files: mail/exim Makefile distinfo Log: Update to Exim release 4.32 + exiscan 17 - ftp://ftp.csx.cam.ac.uk/pub/software/email/exim/ChangeLogs/ChangeLog-4.32 - http://duncanthrax.net/exiscan-acl/CHANGELOG Revision Changes Path 1.173 +2 -2 ports/mail/exim/Makefile 1.65 +4 -4 ports/mail/exim/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 15 07:11: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 DEB6716A4D0; Thu, 15 Apr 2004 07:11:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C332143D2D; Thu, 15 Apr 2004 07:11:35 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FEBZGe099362; Thu, 15 Apr 2004 07:11:35 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FEBZsj099358; Thu, 15 Apr 2004 07:11:35 -0700 (PDT) (envelope-from krion) Message-Id: <200404151411.i3FEBZsj099358@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 15 Apr 2004 07:11:35 -0700 (PDT) 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, 15 Apr 2004 14:11:36 -0000 krion 2004/04/15 07:11:34 PDT FreeBSD ports repository Modified files: . modules Log: zgv --> ports/graphics/zgv Revision Changes Path 1.9906 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Apr 15 07: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 ABCC016A4CE; Thu, 15 Apr 2004 07:41:33 -0700 (PDT) Received: from mail.pcnet.com (mail.pcnet.com [204.213.232.4]) by mx1.FreeBSD.org (Postfix) with ESMTP id 40AE543D1F; Thu, 15 Apr 2004 07:41:33 -0700 (PDT) (envelope-from eischen@vigrid.com) Received: from mail.pcnet.com (mail.pcnet.com [204.213.232.4]) by mail.pcnet.com (8.12.10/8.12.1) with ESMTP id i3FEfWtf022435; Thu, 15 Apr 2004 10:41:32 -0400 (EDT) Date: Thu, 15 Apr 2004 10:41:32 -0400 (EDT) From: Daniel Eischen X-Sender: eischen@pcnet5.pcnet.com To: Edwin Groothuis In-Reply-To: <200404151335.i3FDZc6t091170@repoman.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/audio/xmcd 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, 15 Apr 2004 14:41:33 -0000 On Thu, 15 Apr 2004, Edwin Groothuis wrote: > edwin 2004/04/15 06:35:38 PDT > > FreeBSD ports repository > > Modified files: > audio/xmcd Makefile > Log: > libflac -> libFLAC > pointy hat to: deischen@ Thanks -- Dan From owner-cvs-all@FreeBSD.ORG Thu Apr 15 08: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 4C3D416A4CE; Thu, 15 Apr 2004 08:11:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F37343D49; Thu, 15 Apr 2004 08:11:07 -0700 (PDT) (envelope-from josef@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FFB6Ge012163; Thu, 15 Apr 2004 08:11:06 -0700 (PDT) (envelope-from josef@repoman.freebsd.org) Received: (from josef@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FFB5RY012162; Thu, 15 Apr 2004 08:11:05 -0700 (PDT) (envelope-from josef) Message-Id: <200404151511.i3FFB5RY012162@repoman.freebsd.org> From: Josef El-Rayes Date: Thu, 15 Apr 2004 08:11:05 -0700 (PDT) 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 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: Thu, 15 Apr 2004 15:11:07 -0000 josef 2004/04/15 08:11:05 PDT FreeBSD src repository (doc committer) Modified files: sys/i386/conf GENERIC NOTES Log: Add note that npx depends on isa. Approved by: green Revision Changes Path 1.400 +1 -1 src/sys/i386/conf/GENERIC 1.1154 +1 -1 src/sys/i386/conf/NOTES From owner-cvs-all@FreeBSD.ORG Thu Apr 15 08:13: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 A0CC516A4CE; Thu, 15 Apr 2004 08:13:26 -0700 (PDT) Received: from postal3.es.net (postal3.es.net [198.128.3.207]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A37B43D31; Thu, 15 Apr 2004 08:13:26 -0700 (PDT) (envelope-from oberman@es.net) Received: from ptavv.es.net ([198.128.4.29]) by postal3.es.net (Postal Node 3) with ESMTP (SSL) id IBA74465; Thu, 15 Apr 2004 08:13:25 -0700 Received: from ptavv (localhost [127.0.0.1]) by ptavv.es.net (Tachyon Server) with ESMTP id 8888A5D07; Thu, 15 Apr 2004 08:13:25 -0700 (PDT) To: Nate Lawson In-reply-to: Your message of "Wed, 14 Apr 2004 22:42:29 PDT." <20040414223743.V87135@root.org> Date: Thu, 15 Apr 2004 08:13:25 -0700 From: "Kevin Oberman" Message-Id: <20040415151325.8888A5D07@ptavv.es.net> cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/contrib/dev/acpica hwsleep.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 15:13:26 -0000 > Date: Wed, 14 Apr 2004 22:42:29 -0700 (PDT) > From: Nate Lawson > > On Wed, 14 Apr 2004, Kevin Oberman wrote: > > > njl 2004/04/14 09:52:19 PDT > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sys/contrib/dev/acpica hwsleep.c > > > Log: > > > Even though the patch has been submitted to the vendor, this file is off > > > the vendor branch. Once more, with feeling! > > > > Boy, my timing suck of late. I just rebuilt my system to see if > > unloading and loading the sound driver would fix my > > sound-too-fast-after-resume problem. To my amazement, using the loadable > > drivers I no longer had the problem. I did all sorts of testing to try > > to figure out why this would make a difference. Then I decided to catch > > up on cvs-all. > > > > Thanks, Nate. This fixes the sound problem on my T30. My only remaining > > issue is turning off the @#$% back-light! (Not that there might not be > > other issues I have not hit.) > > I can't see how this commit fixes your sound problem. Are you > loading/unloading the device drivers (i.e. via /etc/rc.suspend,resume)? > I could see that helping. Or is the problem fixed even without doing > that? It is fixed WITHOUT doing that. I built a new kernel without "device pcm" and manually loaded the driver. I then suspended and resumed. Prior to you last round of updates (and one patch from Warner that did not appear to be related to this), the sound would work after the system resumed, but would run at about 52K, it's raw speed, rather than at the desired 48K. Now the sound works fine after a resume. Unfortunately, after I sent this message and over an hour after the system had been resumed, irq11 failed again. All devices using irq11 simply stopped working including the network and sound devices. This delay completely baffles me. I can see why there might be interrupt issues after a resume, but I can't imagine why interrupts would work for an hour and then fail. And only irq11. All other interrupts are fine. That does kind of make sense as that irq is the one shared by multiple devices. I also now see that if I either load the driver at boot time (from loader.conf) or build it into the kernel, the driver fails to attach. The probe returns "(no driver attached)". I think this is attributable to Warner's last PCI patch. Perhaps that is responsible for the change in the sound behavior, as well. (Noto Bene! When I say his last patch, I refer to the one late yesterday morning. I have not cvsuped today and have not checked out either current@ or cvs-all@, so things may have changed by now.) > > First rule of troubleshooting...change only one variable at a time! > > Learned that over 30 year ago, but still ignore it too often. > > It's often difficult to sit down and come up with the optimal test plan > (for instance, binary search) and then stick to it. Usually after a > while, the temptation is too great to just try what you think will fix it > and then get lost in random, duplicative tests. I think this is related > to the high we get from succeeding in record time due to intuition. Of > course, we don't later remember the hours spent pursuing unfruitful > intuitions and compare, we only remember the good ones. :-) Exactly! Thanks again for all of your help. -- R. Kevin Oberman, Network Engineer Energy Sciences Network (ESnet) Ernest O. Lawrence Berkeley National Laboratory (Berkeley Lab) E-mail: oberman@es.net Phone: +1 510 486-8634 From owner-cvs-all@FreeBSD.ORG Thu Apr 15 08: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 C0E1916A4CE; Thu, 15 Apr 2004 08:20:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A402B43D5A; Thu, 15 Apr 2004 08:20:30 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FFKUGe014259; Thu, 15 Apr 2004 08:20:30 -0700 (PDT) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FFKUXe014258; Thu, 15 Apr 2004 08:20:30 -0700 (PDT) (envelope-from trhodes) Message-Id: <200404151520.i3FFKUXe014258@repoman.freebsd.org> From: Tom Rhodes Date: Thu, 15 Apr 2004 08:20:30 -0700 (PDT) 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 doc/en_US.ISO8859-1/books/handbook/eresources 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, 15 Apr 2004 15:20:30 -0000 trhodes 2004/04/15 08:20:30 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/config chapter.sgml en_US.ISO8859-1/books/handbook/eresources chapter.sgml Log: Add a new ACPI mailing list. PR: 65567 Submitted by: Ion-Mihai Tetcu Requested by: njl (but I forgot to add it) Revision Changes Path 1.144 +15 -9 doc/en_US.ISO8859-1/books/handbook/config/chapter.sgml 1.140 +15 -0 doc/en_US.ISO8859-1/books/handbook/eresources/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 15 08: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 6652716A4CF; Thu, 15 Apr 2004 08:22:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D91443D5E; Thu, 15 Apr 2004 08:22:16 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FFMGGe015831; Thu, 15 Apr 2004 08:22:16 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FFMFbK015827; Thu, 15 Apr 2004 08:22:15 -0700 (PDT) (envelope-from krion) Message-Id: <200404151522.i3FFMFbK015827@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 15 Apr 2004 08:22:15 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/colortail 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: Thu, 15 Apr 2004 15:22:16 -0000 krion 2004/04/15 08:22:15 PDT FreeBSD ports repository Modified files: misc/colortail Makefile pkg-descr Log: - Fix WWW: and MASTER_SITES PR: ports/65580 Submitted by: Jason Harris Revision Changes Path 1.22 +1 -1 ports/misc/colortail/Makefile 1.4 +1 -1 ports/misc/colortail/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Apr 15 08: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 D002E16A4CE; Thu, 15 Apr 2004 08:35:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B13D743D46; Thu, 15 Apr 2004 08:35:27 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FFZRGe018148; Thu, 15 Apr 2004 08:35:27 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FFZRl7018147; Thu, 15 Apr 2004 08:35:27 -0700 (PDT) (envelope-from nectar) Message-Id: <200404151535.i3FFZRl7018147@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Apr 2004 08:35:27 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/contrib/cvs/src client.c modules.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 15:35:28 -0000 nectar 2004/04/15 08:35:27 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) contrib/cvs/src client.c modules.c Log: MFC: Patch vulnerabilities in the CVS client and server: A malicious CVS server could cause your CVS client to overwrite arbitrary files (CAN-2004-0180). When a CVS client uses the `-p' checkout option, the server could be fooled into checking out files from outside the given $CVSROOT. Submitted by: Derek Robert Price Approved by: re Revision Changes Path 1.2.2.7 +14 -1 src/contrib/cvs/src/client.c 1.1.1.5.2.4 +8 -0 src/contrib/cvs/src/modules.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 08: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 C80AB16A4CF; Thu, 15 Apr 2004 08:42:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A975743D66; Thu, 15 Apr 2004 08:42:49 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FFgnGe020141; Thu, 15 Apr 2004 08:42:49 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FFgnqO020140; Thu, 15 Apr 2004 08:42:49 -0700 (PDT) (envelope-from nectar) Message-Id: <200404151542.i3FFgnqO020140@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Apr 2004 08:42:49 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_2 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, 15 Apr 2004 15:42:49 -0000 nectar 2004/04/15 08:42:49 PDT FreeBSD src repository Modified files: (Branch: RELENG_5_2) . UPDATING Log: Merge from 4-STABLE client.c 1.2.2.7, modules.c 1.1.1.5.2.4: Correct some path validation errors in CVS. Approved by: so Revision Changes Path 1.282.2.13 +3 -0 src/UPDATING From owner-cvs-all@FreeBSD.ORG Thu Apr 15 08:42: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 5EC1016A4D0; Thu, 15 Apr 2004 08:42:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41EDC43D5E; Thu, 15 Apr 2004 08:42:50 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FFgoGe020160; Thu, 15 Apr 2004 08:42:50 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FFgoC1020159; Thu, 15 Apr 2004 08:42:50 -0700 (PDT) (envelope-from nectar) Message-Id: <200404151542.i3FFgoC1020159@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Apr 2004 08:42:50 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_2 Subject: cvs commit: src/sys/conf newvers.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, 15 Apr 2004 15:42:50 -0000 nectar 2004/04/15 08:42:50 PDT FreeBSD src repository Modified files: (Branch: RELENG_5_2) sys/conf newvers.sh Log: Merge from 4-STABLE client.c 1.2.2.7, modules.c 1.1.1.5.2.4: Correct some path validation errors in CVS. Approved by: so Revision Changes Path 1.56.2.12 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Thu Apr 15 08:42: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 2681A16A4D1; Thu, 15 Apr 2004 08:42:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 09E1443D31; Thu, 15 Apr 2004 08:42:51 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FFgoGe020181; Thu, 15 Apr 2004 08:42:50 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FFgoHe020180; Thu, 15 Apr 2004 08:42:50 -0700 (PDT) (envelope-from nectar) Message-Id: <200404151542.i3FFgoHe020180@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Apr 2004 08:42:50 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_5_2 Subject: cvs commit: src/contrib/cvs/src client.c modules.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 15:42:51 -0000 nectar 2004/04/15 08:42:50 PDT FreeBSD src repository Modified files: (Branch: RELENG_5_2) contrib/cvs/src client.c modules.c Log: Merge from 4-STABLE client.c 1.2.2.7, modules.c 1.1.1.5.2.4: Correct some path validation errors in CVS. Approved by: so Revision Changes Path 1.10.4.1 +14 -1 src/contrib/cvs/src/client.c 1.1.1.8.6.2 +8 -0 src/contrib/cvs/src/modules.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 08:58: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 B09A916A4CE; Thu, 15 Apr 2004 08:58:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 934EA43D54; Thu, 15 Apr 2004 08:58:21 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FFwLGe028501; Thu, 15 Apr 2004 08:58:21 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FFwLPq028500; Thu, 15 Apr 2004 08:58:21 -0700 (PDT) (envelope-from nectar) Message-Id: <200404151558.i3FFwLPq028500@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Apr 2004 08:58:21 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: CVSROOT approvers X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 15:58:21 -0000 nectar 2004/04/15 08:58:21 PDT FreeBSD src repository Modified files: . approvers Log: Add a missing `$' to the RELENG_4 regexp to avoid erroneous matches. Revision Changes Path 1.3 +1 -1 CVSROOT/approvers From owner-cvs-all@FreeBSD.ORG Thu Apr 15 08:59: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 04E5016A4D0; Thu, 15 Apr 2004 08:59:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC10143D69; Thu, 15 Apr 2004 08:59:03 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FFx3Ge028566; Thu, 15 Apr 2004 08:59:03 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FFx3ca028565; Thu, 15 Apr 2004 08:59:03 -0700 (PDT) (envelope-from nectar) Message-Id: <200404151559.i3FFx3ca028565@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Apr 2004 08:59:03 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_9 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, 15 Apr 2004 15:59:04 -0000 nectar 2004/04/15 08:59:03 PDT FreeBSD src repository Modified files: (Branch: RELENG_4_9) . UPDATING Log: Merge from 4-STABLE client.c 1.2.2.7, modules.c 1.1.1.5.2.4: Correct some path validation errors in CVS. Approved by: so Revision Changes Path 1.73.2.89.2.6 +3 -0 src/UPDATING From owner-cvs-all@FreeBSD.ORG Thu Apr 15 08:59: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 E864916A4CF; Thu, 15 Apr 2004 08:59:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C99EF43D53; Thu, 15 Apr 2004 08:59:04 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FFx4Ge028585; Thu, 15 Apr 2004 08:59:04 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FFx4bf028584; Thu, 15 Apr 2004 08:59:04 -0700 (PDT) (envelope-from nectar) Message-Id: <200404151559.i3FFx4bf028584@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Apr 2004 08:59:04 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_9 Subject: cvs commit: src/sys/conf newvers.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, 15 Apr 2004 15:59:05 -0000 nectar 2004/04/15 08:59:04 PDT FreeBSD src repository Modified files: (Branch: RELENG_4_9) sys/conf newvers.sh Log: Merge from 4-STABLE client.c 1.2.2.7, modules.c 1.1.1.5.2.4: Correct some path validation errors in CVS. Approved by: so Revision Changes Path 1.44.2.32.2.6 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Thu Apr 15 08:59: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 247D216A4CE; Thu, 15 Apr 2004 08:59:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0796F43D69; Thu, 15 Apr 2004 08:59:06 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FFx5Ge028606; Thu, 15 Apr 2004 08:59:05 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FFx5eT028605; Thu, 15 Apr 2004 08:59:05 -0700 (PDT) (envelope-from nectar) Message-Id: <200404151559.i3FFx5eT028605@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Apr 2004 08:59:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_9 Subject: cvs commit: src/contrib/cvs/src client.c modules.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 15:59:06 -0000 nectar 2004/04/15 08:59:05 PDT FreeBSD src repository Modified files: (Branch: RELENG_4_9) contrib/cvs/src client.c modules.c Log: Merge from 4-STABLE client.c 1.2.2.7, modules.c 1.1.1.5.2.4: Correct some path validation errors in CVS. Approved by: so Revision Changes Path 1.2.2.6.4.1 +14 -1 src/contrib/cvs/src/client.c 1.1.1.5.2.3.4.1 +8 -0 src/contrib/cvs/src/modules.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 08: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 09FC416A4CF; Thu, 15 Apr 2004 08:59:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E06B843D5D; Thu, 15 Apr 2004 08:59:53 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FFxrGe028705; Thu, 15 Apr 2004 08:59:53 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FFxr6X028704; Thu, 15 Apr 2004 08:59:53 -0700 (PDT) (envelope-from nectar) Message-Id: <200404151559.i3FFxr6X028704@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Apr 2004 08:59:53 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_8 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, 15 Apr 2004 15:59:54 -0000 nectar 2004/04/15 08:59:53 PDT FreeBSD src repository Modified files: (Branch: RELENG_4_8) . UPDATING Log: Merge from 4-STABLE client.c 1.2.2.7, modules.c 1.1.1.5.2.4: Correct some path validation errors in CVS. Approved by: so Revision Changes Path 1.73.2.80.2.21 +3 -0 src/UPDATING From owner-cvs-all@FreeBSD.ORG Thu Apr 15 08:59: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 50C1016A4D2; Thu, 15 Apr 2004 08:59:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3308043D46; Thu, 15 Apr 2004 08:59:55 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FFxtGe028745; Thu, 15 Apr 2004 08:59:55 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FFxss1028744; Thu, 15 Apr 2004 08:59:54 -0700 (PDT) (envelope-from nectar) Message-Id: <200404151559.i3FFxss1028744@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Apr 2004 08:59:54 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_8 Subject: cvs commit: src/contrib/cvs/src client.c modules.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 15:59:55 -0000 nectar 2004/04/15 08:59:54 PDT FreeBSD src repository Modified files: (Branch: RELENG_4_8) contrib/cvs/src client.c modules.c Log: Merge from 4-STABLE client.c 1.2.2.7, modules.c 1.1.1.5.2.4: Correct some path validation errors in CVS. Approved by: so Revision Changes Path 1.2.2.6.2.1 +14 -1 src/contrib/cvs/src/client.c 1.1.1.5.2.3.2.1 +8 -0 src/contrib/cvs/src/modules.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 08: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 891D416A4CE; Thu, 15 Apr 2004 08:59:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 66DBE43D46; Thu, 15 Apr 2004 08:59:54 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FFxsGe028724; Thu, 15 Apr 2004 08:59:54 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FFxsbc028723; Thu, 15 Apr 2004 08:59:54 -0700 (PDT) (envelope-from nectar) Message-Id: <200404151559.i3FFxsbc028723@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Apr 2004 08:59:54 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4_8 Subject: cvs commit: src/sys/conf newvers.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, 15 Apr 2004 15:59:54 -0000 nectar 2004/04/15 08:59:54 PDT FreeBSD src repository Modified files: (Branch: RELENG_4_8) sys/conf newvers.sh Log: Merge from 4-STABLE client.c 1.2.2.7, modules.c 1.1.1.5.2.4: Correct some path validation errors in CVS. Approved by: so Revision Changes Path 1.44.2.29.2.19 +1 -1 src/sys/conf/newvers.sh From owner-cvs-all@FreeBSD.ORG Thu Apr 15 09:08: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 20C1416A4CE; Thu, 15 Apr 2004 09:08:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04AF743D2D; Thu, 15 Apr 2004 09:08:51 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FG8oGe031689; Thu, 15 Apr 2004 09:08:50 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FG8o2G031688; Thu, 15 Apr 2004 09:08:50 -0700 (PDT) (envelope-from clement) Message-Id: <200404151608.i3FG8o2G031688@repoman.freebsd.org> From: Clement Laforet Date: Thu, 15 Apr 2004 09:08:50 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/moftpd 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, 15 Apr 2004 16:08:51 -0000 clement 2004/04/15 09:08:50 PDT FreeBSD ports repository Modified files: ftp/moftpd Makefile Log: - Mirror distfile [1] - Take back maintainership Noticed by: bento via kris [1] Revision Changes Path 1.3 +4 -2 ports/ftp/moftpd/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 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 40DDD16A512; Thu, 15 Apr 2004 09:12:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2303D43D2F; Thu, 15 Apr 2004 09:12:13 -0700 (PDT) (envelope-from rees@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FGCCGe033377; Thu, 15 Apr 2004 09:12:12 -0700 (PDT) (envelope-from rees@repoman.freebsd.org) Received: (from rees@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FGCCKw033373; Thu, 15 Apr 2004 09:12:12 -0700 (PDT) (envelope-from rees) Message-Id: <200404151612.i3FGCCKw033373@repoman.freebsd.org> From: Jim Rees Date: Thu, 15 Apr 2004 09:12:12 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sbin/idmapd idmapd.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 16:12:13 -0000 rees 2004/04/15 09:12:12 PDT FreeBSD src repository Modified files: sbin/idmapd idmapd.c Log: use %zu instead of %zd Requested by: Bruce Evans Revision Changes Path 1.5 +2 -2 src/sbin/idmapd/idmapd.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 09:21: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 2FCAA16A4CF; Thu, 15 Apr 2004 09:21:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11BA143D41; Thu, 15 Apr 2004 09:21:26 -0700 (PDT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FGLPGe034777; Thu, 15 Apr 2004 09:21:25 -0700 (PDT) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FGLPbQ034773; Thu, 15 Apr 2004 09:21:25 -0700 (PDT) (envelope-from glewis) Message-Id: <200404151621.i3FGLPbQ034773@repoman.freebsd.org> From: Greg Lewis Date: Thu, 15 Apr 2004 09:21:25 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/java-checkstyle 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, 15 Apr 2004 16:21:26 -0000 glewis 2004/04/15 09:21:25 PDT FreeBSD ports repository Modified files: java/java-checkstyle Makefile Log: . This port actually requires JDK 1.4 to build, JDK 1.3 won't cut it. Maintainer informed. Revision Changes Path 1.10 +1 -1 ports/java/java-checkstyle/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 09:26: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 F3EE916A4CF; Thu, 15 Apr 2004 09:26:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D75A343D45; Thu, 15 Apr 2004 09:26:15 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FGQFGe035747; Thu, 15 Apr 2004 09:26:15 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FGQFM2035746; Thu, 15 Apr 2004 09:26:15 -0700 (PDT) (envelope-from marcus) Message-Id: <200404151626.i3FGQFM2035746@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 15 Apr 2004 09:26:15 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/libgtop2 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, 15 Apr 2004 16:26:16 -0000 marcus 2004/04/15 09:26:15 PDT FreeBSD ports repository Modified files: devel/libgtop2 Makefile Log: Add --without-x on amd64 to fix the build. This is only temporary. Hopefully the next incarnation of X will have more shared libraries, and thus this problem will no longer occur. I think this patch was originally submitted by arved. Revision Changes Path 1.83 +7 -1 ports/devel/libgtop2/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 09:26: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 697D616A4CE; Thu, 15 Apr 2004 09:26:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4CA6D43D53; Thu, 15 Apr 2004 09:26:44 -0700 (PDT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FGQiGe035780; Thu, 15 Apr 2004 09:26:44 -0700 (PDT) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FGQiCX035779; Thu, 15 Apr 2004 09:26:44 -0700 (PDT) (envelope-from glewis) Message-Id: <200404151626.i3FGQiCX035779@repoman.freebsd.org> From: Greg Lewis Date: Thu, 15 Apr 2004 09:26:44 -0700 (PDT) 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-lang 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, 15 Apr 2004 16:26:44 -0000 glewis 2004/04/15 09:26:44 PDT FreeBSD ports repository Modified files: java/jakarta-commons-lang Makefile pkg-plist Log: . Fix the port to work with both JDK 1.3 and JDK 1.4 by using the PORTDOCS macro. Also trims the pkg-plist considerably. Hopefully not objected to by: znerd Revision Changes Path 1.7 +1 -0 ports/java/jakarta-commons-lang/Makefile 1.4 +0 -164 ports/java/jakarta-commons-lang/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 09:32: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 3599D16A4CE; Thu, 15 Apr 2004 09:32:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1912843D4C; Thu, 15 Apr 2004 09:32:22 -0700 (PDT) (envelope-from archie@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FGWLGe037694; Thu, 15 Apr 2004 09:32:21 -0700 (PDT) (envelope-from archie@repoman.freebsd.org) Received: (from archie@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FGWLm5037693; Thu, 15 Apr 2004 09:32:21 -0700 (PDT) (envelope-from archie) Message-Id: <200404151632.i3FGWLm5037693@repoman.freebsd.org> From: Archie Cobbs Date: Thu, 15 Apr 2004 09:32:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/mpd/files mpd.mtree X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 16:32:22 -0000 archie 2004/04/15 09:32:21 PDT FreeBSD ports repository Modified files: net/mpd/files mpd.mtree Log: Create /usr/local/etc/rc.d if it doesn't already exist. PR: ports/65564 Revision Changes Path 1.3 +5 -1 ports/net/mpd/files/mpd.mtree From owner-cvs-all@FreeBSD.ORG Thu Apr 15 09: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 F224816A4CF; Thu, 15 Apr 2004 09:40:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D5BFA43D31; Thu, 15 Apr 2004 09:40:50 -0700 (PDT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FGeoGe037982; Thu, 15 Apr 2004 09:40:50 -0700 (PDT) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FGeonU037981; Thu, 15 Apr 2004 09:40:50 -0700 (PDT) (envelope-from ceri) Message-Id: <200404151640.i3FGeonU037981@repoman.freebsd.org> From: Ceri Davies Date: Thu, 15 Apr 2004 09:40:50 -0700 (PDT) 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 mailing-lists.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: Thu, 15 Apr 2004 16:40:51 -0000 ceri 2004/04/15 09:40:50 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/share/sgml mailing-lists.ent Log: Add the ACPI list entries to unbreak the build. Revision Changes Path 1.32 +4 -0 doc/en_US.ISO8859-1/share/sgml/mailing-lists.ent From owner-cvs-all@FreeBSD.ORG Thu Apr 15 10:44: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 84D4F16A4CE; Thu, 15 Apr 2004 10:44:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6851043D53; Thu, 15 Apr 2004 10:44:48 -0700 (PDT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FHimGe052738; Thu, 15 Apr 2004 10:44:48 -0700 (PDT) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FHimt2052737; Thu, 15 Apr 2004 10:44:48 -0700 (PDT) (envelope-from glewis) Message-Id: <200404151744.i3FHimt2052737@repoman.freebsd.org> From: Greg Lewis Date: Thu, 15 Apr 2004 10:44:48 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/spread-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: Thu, 15 Apr 2004 17:44:48 -0000 glewis 2004/04/15 10:44:47 PDT FreeBSD ports repository Modified files: net/spread-j Makefile Log: . This port explicitly uses jikes during the build, so set USE_JIKES. I still have problems with the build, but this gets it closer and others have reported success with it. Revision Changes Path 1.3 +1 -0 ports/net/spread-j/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 10:52: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 73B1416A4CE; Thu, 15 Apr 2004 10:52:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 56C0F43D2D; Thu, 15 Apr 2004 10:52:55 -0700 (PDT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FHqtGe054785; Thu, 15 Apr 2004 10:52:55 -0700 (PDT) (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FHqsTR054784; Thu, 15 Apr 2004 10:52:54 -0700 (PDT) (envelope-from brooks) Message-Id: <200404151752.i3FHqsTR054784@repoman.freebsd.org> From: Brooks Davis Date: Thu, 15 Apr 2004 10:52:54 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/rc.d initdiskless preseedrandom X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 17:52:55 -0000 brooks 2004/04/15 10:52:54 PDT FreeBSD src repository Modified files: etc/rc.d initdiskless Added files: etc/rc.d preseedrandom Log: Band-aid diskless booting by running a new preseedrandom script before initdiskless. The output of several commands and if available the contents of /entropy are feed into /dev/random to kickstart the PRNG. /etc/rc.d/initrandom is left alone to maintain the previous behavior as much as possiable. Further work in this area is probably needed. Discussed with: markm Revision Changes Path 1.34 +1 -0 src/etc/rc.d/initdiskless 1.1 +47 -0 src/etc/rc.d/preseedrandom (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 15 11:09: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 4517B16A4CE; Thu, 15 Apr 2004 11:09:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2748D43D2F; Thu, 15 Apr 2004 11:09:16 -0700 (PDT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FI9FGe057945; Thu, 15 Apr 2004 11:09:15 -0700 (PDT) (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FI9FoU057944; Thu, 15 Apr 2004 11:09:15 -0700 (PDT) (envelope-from vs) Message-Id: <200404151809.i3FI9FoU057944@repoman.freebsd.org> From: Volker Stolz Date: Thu, 15 Apr 2004 11:09:15 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/grace 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, 15 Apr 2004 18:09:16 -0000 vs 2004/04/15 11:09:15 PDT FreeBSD ports repository Modified files: math/grace pkg-descr Log: Update description (approved by maintainer) PR: ports/65441 Submitted by: Radim Kolar Approved by: linimon (mentor) Revision Changes Path 1.3 +6 -3 ports/math/grace/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Apr 15 11:23: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 03B8D16A4CE; Thu, 15 Apr 2004 11:23:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D982143D55; Thu, 15 Apr 2004 11:23:14 -0700 (PDT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FINEGe061807; Thu, 15 Apr 2004 11:23:14 -0700 (PDT) (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FINE3U061806; Thu, 15 Apr 2004 11:23:14 -0700 (PDT) (envelope-from brooks) Message-Id: <200404151823.i3FINE3U061806@repoman.freebsd.org> From: Brooks Davis Date: Thu, 15 Apr 2004 11:23:14 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/rc.d preseedrandom X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 18:23:15 -0000 brooks 2004/04/15 11:23:14 PDT FreeBSD src repository Modified files: etc/rc.d preseedrandom Log: Remove bogus checks on the value of ${entropy_file} and hardcode out entropy source to /entropy. We have to assume there is no rc.conf at this stage of the boot process. Reported by: njl Revision Changes Path 1.2 +3 -11 src/etc/rc.d/preseedrandom From owner-cvs-all@FreeBSD.ORG Thu Apr 15 11: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 4D7A816A4CE; Thu, 15 Apr 2004 11:30:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F00643D39; Thu, 15 Apr 2004 11:30:29 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FIUSGe062062; Thu, 15 Apr 2004 11:30:28 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FIUS0B062061; Thu, 15 Apr 2004 11:30:28 -0700 (PDT) (envelope-from marcus) Message-Id: <200404151830.i3FIUS0B062061@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 15 Apr 2004 11:30:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/gnomecontrolcenter2 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, 15 Apr 2004 18:30:29 -0000 marcus 2004/04/15 11:30:28 PDT FreeBSD ports repository Modified files: sysutils/gnomecontrolcenter2 Makefile Log: Add a missing dependency on gstreamer-plugins. Revision Changes Path 1.67 +3 -1 ports/sysutils/gnomecontrolcenter2/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 11:31: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 D980716A4CE; Thu, 15 Apr 2004 11:31:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BC4ED43D39; Thu, 15 Apr 2004 11:31:06 -0700 (PDT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FIV6Ge062136; Thu, 15 Apr 2004 11:31:06 -0700 (PDT) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FIV6Wd062135; Thu, 15 Apr 2004 11:31:06 -0700 (PDT) (envelope-from glewis) Message-Id: <200404151831.i3FIV6Wd062135@repoman.freebsd.org> From: Greg Lewis Date: Thu, 15 Apr 2004 11:31:06 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/spread-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: Thu, 15 Apr 2004 18:31:07 -0000 glewis 2004/04/15 11:31:06 PDT FreeBSD ports repository Modified files: net/spread-j Makefile Log: . Empirically this port appears to require 1.4 to compile. So set this as the version and make sure ant uses it. Revision Changes Path 1.4 +3 -2 ports/net/spread-j/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 11:34: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 59A3816A4CE; Thu, 15 Apr 2004 11:34:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B78643D2D; Thu, 15 Apr 2004 11:34:21 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FIYLGe064356; Thu, 15 Apr 2004 11:34:21 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FIYL6g064355; Thu, 15 Apr 2004 11:34:21 -0700 (PDT) (envelope-from krion) Message-Id: <200404151834.i3FIYL6g064355@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 15 Apr 2004 11:34:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/datedif 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, 15 Apr 2004 18:34:21 -0000 krion 2004/04/15 11:34:20 PDT FreeBSD ports repository Modified files: misc/datedif Makefile Log: - Update MASTER_SITES PR: ports/65581 Submitted by: Jason Harris Revision Changes Path 1.8 +1 -1 ports/misc/datedif/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 11:43: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 5FB4C16A4CE; Thu, 15 Apr 2004 11:43:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 418BE43D2F; Thu, 15 Apr 2004 11:43:29 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FIhTGe066397; Thu, 15 Apr 2004 11:43:29 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FIhT0n066396; Thu, 15 Apr 2004 11:43:29 -0700 (PDT) (envelope-from marcus) Message-Id: <200404151843.i3FIhT0n066396@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 15 Apr 2004 11:43:29 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/accessibility/gnopernicus 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, 15 Apr 2004 18:43:29 -0000 marcus 2004/04/15 11:43:28 PDT FreeBSD ports repository Modified files: accessibility/gnopernicus Makefile distinfo pkg-plist Log: Update to 0.8.3. Revision Changes Path 1.10 +1 -1 ports/accessibility/gnopernicus/Makefile 1.6 +2 -2 ports/accessibility/gnopernicus/distinfo 1.5 +8 -7 ports/accessibility/gnopernicus/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 11: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 94B9C16A4CE for ; Thu, 15 Apr 2004 11:44:53 -0700 (PDT) Received: from mail4.speakeasy.net (mail4.speakeasy.net [216.254.0.204]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C6C943D48 for ; Thu, 15 Apr 2004 11:44:51 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (qmail 7048 invoked from network); 15 Apr 2004 18:44:50 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 15 Apr 2004 18:44:50 -0000 Received: from 10.50.40.205 (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.10/8.12.10) with ESMTP id i3FIigl5002029; Thu, 15 Apr 2004 14:44:48 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: wpaul@FreeBSD.ORG (Bill Paul) Date: Thu, 15 Apr 2004 14:34:20 -0400 User-Agent: KMail/1.6 References: <20040414220453.7806316A4CF@hub.freebsd.org> In-Reply-To: <20040414220453.7806316A4CF@hub.freebsd.org> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200404151434.20428.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/compat/ndis hal_var.h kern_ndis.c ndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrn X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 18:44:53 -0000 On Wednesday 14 April 2004 06:04 pm, Bill Paul wrote: > > > Now, I'm sure many people will be seized by the urge to criticize > > > me for doing an end run around our own spinlock implementation, but > > > it makes more sense to do it this way. Well, it does to me anyway. > > > > If you don't use atomic ops with memory barriers somewhere (like the > > mutex implementation does) then NDIS won't work on SMP. Really, IRQL is > > basically spl()s, and we don't use an spl-like model anymore. Just using > > mutexes for locking should give you all the protection you need. > > Protection is all well and good, but I need to provide the right semantics > as well. I need to fool the drivers into thinking they can depend on the > usual Windows behavior, and make it easy to use the Windows data types, > and it's a pain in the butt to do that with regular mutexes. > > And besides, I wanna. > > Now, from subr_ntoskrnl.c: > > __stdcall void > ntoskrnl_lock_dpc(/*lock*/ void) > { > kspin_lock *lock; > > __asm__ __volatile__ ("" : "=c" (lock)); > > while (atomic_cmpset_int((volatile u_int *)lock, 0, 1) == 0) > /* do nothing */; > > return; > } > > __stdcall void > ntoskrnl_unlock_dpc(/*lock*/ void) > { > kspin_lock *lock; > > __asm__ __volatile__ ("" : "=c" (lock)); > > atomic_cmpset_int((volatile u_int *)lock, 1, 0); > > return; > } > > These two routines do the actual work of acquiring and releasing the > lock (they map to KefAcquireSpinLockAtDpcLevel() and > KefReleaseSpinLockFromDpcLevel). Are you saying the former routine > should use atomic_cmpset_acq_int() and the latter atomic_cmpset_rel_int()? Yes. -- 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 Apr 15 11: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 51E2316A4CE for ; Thu, 15 Apr 2004 11:44:58 -0700 (PDT) Received: from mail2.speakeasy.net (mail2.speakeasy.net [216.254.0.202]) by mx1.FreeBSD.org (Postfix) with ESMTP id E72FB43D2F for ; Thu, 15 Apr 2004 11:44:53 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (qmail 20883 invoked from network); 15 Apr 2004 18:44:53 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 15 Apr 2004 18:44:53 -0000 Received: from 10.50.40.205 (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.10/8.12.10) with ESMTP id i3FIigl6002029; Thu, 15 Apr 2004 14:44:49 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Mike Silbersack Date: Thu, 15 Apr 2004 14:35:25 -0400 User-Agent: KMail/1.6 References: <200404120913.i3C9DOkd075451@repoman.freebsd.org> <200404132258.31816.jhb@FreeBSD.org> <20040415023200.D10243@odysseus.silby.com> In-Reply-To: <20040415023200.D10243@odysseus.silby.com> MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200404151435.25450.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: Mark Murray cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/random randomdev.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 18:44:58 -0000 On Thursday 15 April 2004 03:32 am, Mike Silbersack wrote: > On Tue, 13 Apr 2004, John Baldwin wrote: > > You should drop the lock before uiomove(). If the uio can possibly > > reference user memory, then uiomove() will do a copyout() which can fault > > and thus sleep if the page is in swap. > > > > -- > > John Baldwin <>< http://www.FreeBSD.org/~jhb/ > > I'm going to have a similar problem in sendfile when I try to de-giantify > it, and I'm sure read / write will have issues as well... will WITNESS > catch this potential problem? Not currently. One could add a WITNESS_WARN() check to uiomove() fairly easily though to force witness to catch this. -- 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 Apr 15 11:48: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 B182C16A4CE; Thu, 15 Apr 2004 11:48:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9315043D45; Thu, 15 Apr 2004 11:48:45 -0700 (PDT) (envelope-from ceri@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FImjGe066585; Thu, 15 Apr 2004 11:48:45 -0700 (PDT) (envelope-from ceri@repoman.freebsd.org) Received: (from ceri@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FImjmm066584; Thu, 15 Apr 2004 11:48:45 -0700 (PDT) (envelope-from ceri) Message-Id: <200404151848.i3FImjmm066584@repoman.freebsd.org> From: Ceri Davies Date: Thu, 15 Apr 2004 11:48:45 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/commercial consulting_bycat.sgml software_bycat.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, 15 Apr 2004 18:48:45 -0000 ceri 2004/04/15 11:48:45 PDT FreeBSD doc repository Modified files: en/commercial consulting_bycat.sgml software_bycat.sgml Log: Change a sentence which, though correct, was difficult to read. Revision Changes Path 1.6 +2 -2 www/en/commercial/consulting_bycat.sgml 1.6 +2 -2 www/en/commercial/software_bycat.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 15 11:55: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 9C29816A4CE; Thu, 15 Apr 2004 11:55:13 -0700 (PDT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3807A43D31; Thu, 15 Apr 2004 11:55:13 -0700 (PDT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.10/8.12.10) with ESMTP id i3FIsVPq001463; Thu, 15 Apr 2004 14:54:31 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i3FIsVli001460; Thu, 15 Apr 2004 14:54:31 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Thu, 15 Apr 2004 14:54:31 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: John Baldwin In-Reply-To: <200404151435.25450.jhb@FreeBSD.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: cvs-src@FreeBSD.org cc: Mike Silbersack cc: src-committers@FreeBSD.org cc: Mark Murray cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/random randomdev.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 18:55:13 -0000 On Thu, 15 Apr 2004, John Baldwin wrote: > On Thursday 15 April 2004 03:32 am, Mike Silbersack wrote: > > On Tue, 13 Apr 2004, John Baldwin wrote: > > > You should drop the lock before uiomove(). If the uio can possibly > > > reference user memory, then uiomove() will do a copyout() which can fault > > > and thus sleep if the page is in swap. > > > > > > -- > > > John Baldwin <>< http://www.FreeBSD.org/~jhb/ > > > > I'm going to have a similar problem in sendfile when I try to de-giantify > > it, and I'm sure read / write will have issues as well... will WITNESS > > catch this potential problem? > > Not currently. One could add a WITNESS_WARN() check to uiomove() fairly > easily though to force witness to catch this. We also need to generate sleep warnings it M_TRYWAIT is passed to the mbuf allocator, which I believe we currently don't do. Also, did we ever re-add the sleep warning to the process tracing code? Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Senior Research Scientist, McAfee Research From owner-cvs-all@FreeBSD.ORG Thu Apr 15 12:11: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 26AC516A4CE; Thu, 15 Apr 2004 12:11:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 084D743D1F; Thu, 15 Apr 2004 12:11:35 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FJBYGe072544; Thu, 15 Apr 2004 12:11:34 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FJBYcn072540; Thu, 15 Apr 2004 12:11:34 -0700 (PDT) (envelope-from rwatson) Message-Id: <200404151911.i3FJBYcn072540@repoman.freebsd.org> From: Robert Watson Date: Thu, 15 Apr 2004 12:11:34 -0700 (PDT) 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_ppp.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 19:11:35 -0000 rwatson 2004/04/15 12:11:34 PDT FreeBSD src repository Modified files: sys/net if_ppp.c Log: If IF_HANDOFF() or netisr_queue() fail, they will free the mbuf. When this happens, set (m) to NULL or we'll try to free it a second time on return. Submitted by: Pavel Gulchouck Revision Changes Path 1.96 +1 -0 src/sys/net/if_ppp.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 12:13: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 D0F4716A4CE; Thu, 15 Apr 2004 12:13:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B34E243D39; Thu, 15 Apr 2004 12:13:27 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FJDRGe073429; Thu, 15 Apr 2004 12:13:27 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FJDR52073428; Thu, 15 Apr 2004 12:13:27 -0700 (PDT) (envelope-from ru) Message-Id: <200404151913.i3FJDR52073428@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 15 Apr 2004 12:13:27 -0700 (PDT) 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/groff/src/libs/libgroff 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, 15 Apr 2004 19:13:28 -0000 ru 2004/04/15 12:13:27 PDT FreeBSD src repository Modified files: gnu/usr.bin/groff/src/libs/libgroff Makefile Log: Whitespace nit in previous revision. Revision Changes Path 1.7 +1 -1 src/gnu/usr.bin/groff/src/libs/libgroff/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 12: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 A3FFA16A4CF; Thu, 15 Apr 2004 12:18:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6166343D62; Thu, 15 Apr 2004 12:18:49 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FJInGe073628; Thu, 15 Apr 2004 12:18:49 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FJInkk073627; Thu, 15 Apr 2004 12:18:49 -0700 (PDT) (envelope-from krion) Message-Id: <200404151918.i3FJInkk073627@repoman.freebsd.org> From: Kirill Ponomarew Date: Thu, 15 Apr 2004 12:18:49 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/t1lib 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, 15 Apr 2004 19:18:50 -0000 krion 2004/04/15 12:18:49 PDT FreeBSD ports repository Modified files: devel/t1lib Makefile distinfo Log: - Downgrade to version 5.0.1 - 5.0.2 version caused xpdf to crash with almost all PDFs - Bump PORTEPOCH Submitted by: naddy, Ports Fury Revision Changes Path 1.27 +6 -2 ports/devel/t1lib/Makefile 1.14 +2 -2 ports/devel/t1lib/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 15 12: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 D5BF116A4CE; Thu, 15 Apr 2004 12:21:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B810A43D39; Thu, 15 Apr 2004 12:21:16 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FJLGGe074559; Thu, 15 Apr 2004 12:21:16 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FJLG3U074555; Thu, 15 Apr 2004 12:21:16 -0700 (PDT) (envelope-from nectar) Message-Id: <200404151921.i3FJLG3U074555@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Apr 2004 12:21:16 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/share/sgml advisories.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, 15 Apr 2004 19:21:17 -0000 nectar 2004/04/15 12:21:16 PDT FreeBSD doc repository Modified files: share/sgml advisories.xml Log: Added FreeBSD-SA-04:07.cvs Revision Changes Path 1.158 +13 -1 www/share/sgml/advisories.xml From owner-cvs-all@FreeBSD.ORG Thu Apr 15 12:22: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 8C65616A4D2; Thu, 15 Apr 2004 12:22:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BACD43D68; Thu, 15 Apr 2004 12:22:59 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FJMxGe075515; Thu, 15 Apr 2004 12:22:59 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FJMxVE075514; Thu, 15 Apr 2004 12:22:59 -0700 (PDT) (envelope-from obrien) Message-Id: <200404151922.i3FJMxVE075514@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 15 Apr 2004 12:22:59 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/lsof 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, 15 Apr 2004 19:23:00 -0000 obrien 2004/04/15 12:22:59 PDT FreeBSD ports repository Modified files: sysutils/lsof pkg-descr Log: Abe's website is OBE after retiring from Purdue. Revision Changes Path 1.4 +0 -2 ports/sysutils/lsof/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Apr 15 12:25: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 A34E616A4CE; Thu, 15 Apr 2004 12:25:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BE4243D39; Thu, 15 Apr 2004 12:25:02 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FJP2Ge075678; Thu, 15 Apr 2004 12:25:02 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FJP2Wr075677; Thu, 15 Apr 2004 12:25:02 -0700 (PDT) (envelope-from ru) Message-Id: <200404151925.i3FJP2Wr075677@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 15 Apr 2004 12:25:02 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/contrib/groff/src/roff/nroff nroff.man nroff.sh src/contrib/groff/tmac doc-common doc-syms doc.tmac groff_mdoc.man src/gnu/usr.bin/groff Makefile.inc src/gnu/usr.bin/groff/tmac mdoc.local X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 19:25:02 -0000 ru 2004/04/15 12:25:02 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) contrib/groff/src/roff/nroff nroff.man nroff.sh contrib/groff/tmac doc-common doc-syms doc.tmac groff_mdoc.man gnu/usr.bin/groff Makefile.inc gnu/usr.bin/groff/tmac mdoc.local Log: MFC: Bring Groff and mdoc(7) in sync with -CURRENT. Approved by: re (bmah) Revision Changes Path 1.7.2.5 +3 -1 src/contrib/groff/src/roff/nroff/nroff.man 1.11.2.6 +16 -14 src/contrib/groff/src/roff/nroff/nroff.sh 1.21.2.31 +28 -10 src/contrib/groff/tmac/doc-common 1.24.2.12 +5 -1 src/contrib/groff/tmac/doc-syms 1.1.1.1.2.10 +9 -1 src/contrib/groff/tmac/doc.tmac 1.1.1.1.4.13 +17 -1 src/contrib/groff/tmac/groff_mdoc.man 2.3.6.4 +1 -1 src/gnu/usr.bin/groff/Makefile.inc 1.2.2.22 +5 -2 src/gnu/usr.bin/groff/tmac/mdoc.local From owner-cvs-all@FreeBSD.ORG Thu Apr 15 12:46: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 4126216A4CE; Thu, 15 Apr 2004 12:46:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 234B743D5A; Thu, 15 Apr 2004 12:46:00 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FJjxGe079831; Thu, 15 Apr 2004 12:45:59 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FJjx3R079830; Thu, 15 Apr 2004 12:45:59 -0700 (PDT) (envelope-from luigi) Message-Id: <200404151945.i3FJjx3R079830@repoman.freebsd.org> From: Luigi Rizzo Date: Thu, 15 Apr 2004 12:45:59 -0700 (PDT) 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_var.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, 15 Apr 2004 19:46:00 -0000 luigi 2004/04/15 12:45:59 PDT FreeBSD src repository Modified files: sys/net if_var.h Log: Document the way if_addrhead and struct ifaddr are used. Remove a member from 'struct ifaddr' which has been in an #ifdef notdef block since rev 1.1 No ABI changes -- no need to recompile anything. Revision Changes Path 1.70 +11 -3 src/sys/net/if_var.h From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13:05: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 93B2616A4CE; Thu, 15 Apr 2004 13:05:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 759AE43D41; Thu, 15 Apr 2004 13:05:19 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FK5JGe090770; Thu, 15 Apr 2004 13:05:19 -0700 (PDT) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FK5JVu090769; Thu, 15 Apr 2004 13:05:19 -0700 (PDT) (envelope-from trhodes) Message-Id: <200404152005.i3FK5JVu090769@repoman.freebsd.org> From: Tom Rhodes Date: Thu, 15 Apr 2004 13:05:19 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/security charter.sgml 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: Thu, 15 Apr 2004 20:05:19 -0000 trhodes 2004/04/15 13:05:19 PDT FreeBSD doc repository Modified files: en/security charter.sgml security.sgml Log: Add an approximate date the charter was approved. The security@ is now an alias for secteam@. Note that des has replaced Chris as the deputy security officer. Approved by: nectar Revision Changes Path 1.3 +2 -1 www/en/security/charter.sgml 1.158 +7 -7 www/en/security/security.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13:11: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 A791516A4D0; Thu, 15 Apr 2004 13:11:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8579E43D5D; Thu, 15 Apr 2004 13:11:26 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FKBQGe091838; Thu, 15 Apr 2004 13:11:26 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FKBQmV091834; Thu, 15 Apr 2004 13:11:26 -0700 (PDT) (envelope-from marcus) Message-Id: <200404152011.i3FKBQmV091834@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 15 Apr 2004 13:11:26 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/gimp 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, 15 Apr 2004 20:11:26 -0000 marcus 2004/04/15 13:11:26 PDT FreeBSD ports repository Modified files: graphics/gimp Makefile distinfo pkg-plist Log: Update to 2.0.1. For a list of what's new, see: http://lists.gnome.org/archives/gnome-announce-list/2004-April/msg00031.html Revision Changes Path 1.156 +2 -3 ports/graphics/gimp/Makefile 1.67 +2 -2 ports/graphics/gimp/distinfo 1.88 +4 -1 ports/graphics/gimp/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13: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 5FBBC16A4CE; Thu, 15 Apr 2004 13:15:02 -0700 (PDT) Received: from smtp6.wanadoo.nl (smtp6.wanadoo.nl [194.134.35.177]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FAF143D41; Thu, 15 Apr 2004 13:15:02 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from [10.0.0.150] (db-c-1b11d.adsl.wanadoo.nl [81.69.207.29]) by smtp6.wanadoo.nl (Postfix) with ESMTP id 455E67774C; Thu, 15 Apr 2004 22:14:59 +0200 (CEST) From: Ernst de Haan To: Greg Lewis Date: Thu, 15 Apr 2004 22:15:06 +0200 User-Agent: KMail/1.6.1 References: <200404151626.i3FGQiCX035779@repoman.freebsd.org> In-Reply-To: <200404151626.i3FGQiCX035779@repoman.freebsd.org> X-Address: Muiderstraat 1, Amsterdam, Netherlands MIME-Version: 1.0 Content-Disposition: inline Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Message-Id: <200404152215.06762.znerd@FreeBSD.org> cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/java/jakarta-commons-lang 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, 15 Apr 2004 20:15:02 -0000 > Hopefully not objected to by: znerd Not at all. Thanks for picking this up, Greg! Ernst From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13:16: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 D4AC816A4CE; Thu, 15 Apr 2004 13:16:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B55AA43D1D; Thu, 15 Apr 2004 13:16:28 -0700 (PDT) (envelope-from cognet@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FKGSGe092908; Thu, 15 Apr 2004 13:16:28 -0700 (PDT) (envelope-from cognet@repoman.freebsd.org) Received: (from cognet@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FKGSY6092907; Thu, 15 Apr 2004 13:16:28 -0700 (PDT) (envelope-from cognet) Message-Id: <200404152016.i3FKGSY6092907@repoman.freebsd.org> From: Olivier Houchard Date: Thu, 15 Apr 2004 13:16:28 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/dev/trm trm.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 20:16:29 -0000 cognet 2004/04/15 13:16:28 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/dev/trm trm.c Log: MFC rev 1.22: Call trm_Interrupt() in trm_poll(). This fixes the lock at reboot time some people reported. Approved by: re Revision Changes Path 1.2.2.3 +1 -1 src/sys/dev/trm/trm.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13:17: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 E20C816A4CF for ; Thu, 15 Apr 2004 13:17:13 -0700 (PDT) Received: from smtp.rdsnet.ro (smtp.rdsnet.ro [62.231.74.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE06743D46 for ; Thu, 15 Apr 2004 13:17:12 -0700 (PDT) (envelope-from itetcu@apropo.ro) Received: (qmail 29824 invoked by uid 89); 15 Apr 2004 20:14:07 -0000 Received: from unknown (HELO rdsnet.ro) (62.231.74.131) by 0 with SMTP; 15 Apr 2004 20:14:07 -0000 Received: (qmail 22319 invoked from network); 15 Apr 2004 20:17:11 -0000 Received: from unknown (HELO buh.cameradicommercio.ro) (81.196.25.19) by mail.rdsnet.ro with SMTP; 15 Apr 2004 20:17:11 -0000 Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP id 617D460DB; Thu, 15 Apr 2004 23:16:49 +0300 (EEST) Received: from localhost (localhost.buh.cameradicommercio.ro [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id 70F5E258; Thu, 15 Apr 2004 23:20:08 +0300 (EEST) Received: from it.buh.cameradicommercio.ro ([127.0.0.1])port 10024) with ESMTP id 08302-02; Thu, 15 Apr 2004 23:20:07 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.cameradicommercio.ro [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with SMTP id 48F1E133; Thu, 15 Apr 2004 23:20:07 +0300 (EEST) Date: Thu, 15 Apr 2004 23:20:06 +0300 From: Ion-Mihai Tetcu To: Ceri Davies Message-Id: <20040415232006.7ebf855b@it.buh.cameradicommercio.ro> In-Reply-To: <200404151640.i3FGeonU037981@repoman.freebsd.org> References: <200404151640.i3FGeonU037981@repoman.freebsd.org> X-Mailer: Sylpheed version 0.9.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at it.buh.cameradicommercio.ro cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/share/sgml mailing-lists.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: Thu, 15 Apr 2004 20:17:14 -0000 On Thu, 15 Apr 2004 09:40:50 -0700 (PDT) Ceri Davies wrote: > ceri 2004/04/15 09:40:50 PDT > > FreeBSD doc repository > > Modified files: > en_US.ISO8859-1/share/sgml mailing-lists.ent > Log: > Add the ACPI list entries to unbreak the build. This was in the same PR: 65567 that trhodes committed for eresource and config; was it anything wrong in the mailing-lists.ent.diff? Thanks, -- IOnut Unregistered ;) FreeBSD "user" From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13: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 C26C416A4CE; Thu, 15 Apr 2004 13:24:23 -0700 (PDT) Received: from shaft.techsupport.co.uk (shaft.techsupport.co.uk [212.250.77.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44DB543D54; Thu, 15 Apr 2004 13:24:23 -0700 (PDT) (envelope-from setantae@submonkey.net) Received: from cpc2-cdif3-6-0-cust204.cdif.cable.ntl.com ([81.103.67.204] helo=shrike.submonkey.net ident=mailnull) by shaft.techsupport.co.uk with esmtp (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.31; FreeBSD) id 1BEDPK-000PAZ-4E; Thu, 15 Apr 2004 21:24:22 +0100 Received: from setantae by shrike.submonkey.net with local (Exim 4.31; FreeBSD) id 1BEDPI-000EVc-26; Thu, 15 Apr 2004 21:24:20 +0100 Date: Thu, 15 Apr 2004 21:24:20 +0100 From: Ceri Davies To: Ion-Mihai Tetcu Message-ID: <20040415202419.GS465@submonkey.net> Mail-Followup-To: Ceri Davies , Ion-Mihai Tetcu , doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org References: <200404151640.i3FGeonU037981@repoman.freebsd.org> <20040415232006.7ebf855b@it.buh.cameradicommercio.ro> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="pqmPt9oPL4cuP/b5" Content-Disposition: inline In-Reply-To: <20040415232006.7ebf855b@it.buh.cameradicommercio.ro> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.4i Sender: Ceri Davies cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/share/sgml mailing-lists.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: Thu, 15 Apr 2004 20:24:23 -0000 --pqmPt9oPL4cuP/b5 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 15, 2004 at 11:20:06PM +0300, Ion-Mihai Tetcu wrote: > On Thu, 15 Apr 2004 09:40:50 -0700 (PDT) > Ceri Davies wrote: >=20 > > ceri 2004/04/15 09:40:50 PDT > >=20 > > FreeBSD doc repository > >=20 > > Modified files: > > en_US.ISO8859-1/share/sgml mailing-lists.ent=20 > > Log: > > Add the ACPI list entries to unbreak the build. >=20 > This was in the same PR: 65567 that trhodes committed for eresource and > config; was it anything wrong in the mailing-lists.ent.diff? No, I think he just forgot to commit it. Ceri --=20 --pqmPt9oPL4cuP/b5 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfu9zocfcwTS3JF8RApDDAKC4oz/BC/GrlwOtyzX4vaYXuTdq4ACgk92V s8aUHvJDv5aaH2HNPFCUCIs= =kRWM -----END PGP SIGNATURE----- --pqmPt9oPL4cuP/b5-- From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13:31: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 327F016A4E0; Thu, 15 Apr 2004 13:31:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 28C9D43D2F; Thu, 15 Apr 2004 13:31:13 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FKVCGe095284; Thu, 15 Apr 2004 13:31:12 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FKVBlD095276; Thu, 15 Apr 2004 13:31:11 -0700 (PDT) (envelope-from luigi) Message-Id: <200404152031.i3FKVBlD095276@repoman.freebsd.org> From: Luigi Rizzo Date: Thu, 15 Apr 2004 13:31:11 -0700 (PDT) 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 src/sys/dev/cs if_cs.c src/sys/dev/ed if_ed.c src/sys/dev/ex if_ex.c src/sys/dev/fe if_fe.c src/sys/dev/lnc if_lnc.c src/sys/dev/sbni if_sbni.c src/sys/dev/sn if_sn.c src/sys/dev/wl if_wl.c src/sys/dev/xe ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 20:31:13 -0000 luigi 2004/04/15 13:31:11 PDT FreeBSD src repository Modified files: sys/dev/arl if_arl.c sys/dev/cs if_cs.c sys/dev/ed if_ed.c sys/dev/ex if_ex.c sys/dev/fe if_fe.c sys/dev/lnc if_lnc.c sys/dev/sbni if_sbni.c sys/dev/sn if_sn.c sys/dev/wl if_wl.c sys/dev/xe if_xe.c Log: Remove improper use of if_addrhead in device drivers to check if the link-level address has been initialized already. The majority of modern drivers never does this and works fine, which makes me think that the check is totally unnecessary and a residue of cut&paste from other drivers. This change is done to simplify locking because now almost none of the drivers uses this field. The exceptions are "ct" "ctau" and "cx" where i am not sure if i can remove that part. Revision Changes Path 1.4 +0 -3 src/sys/dev/arl/if_arl.c 1.31 +0 -4 src/sys/dev/cs/if_cs.c 1.229 +0 -4 src/sys/dev/ed/if_ed.c 1.50 +0 -3 src/sys/dev/ex/if_ex.c 1.83 +0 -8 src/sys/dev/fe/if_fe.c 1.106 +0 -7 src/sys/dev/lnc/if_lnc.c 1.16 +0 -4 src/sys/dev/sbni/if_sbni.c 1.38 +0 -18 src/sys/dev/sn/if_sn.c 1.60 +0 -2 src/sys/dev/wl/if_wl.c 1.49 +0 -2 src/sys/dev/xe/if_xe.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13:38: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 6688E16A4CE; Thu, 15 Apr 2004 13:38:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4521243D2D; Thu, 15 Apr 2004 13:38:12 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FKcCGe097256; Thu, 15 Apr 2004 13:38:12 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FKcBCe097255; Thu, 15 Apr 2004 13:38:11 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152038.i3FKcBCe097255@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 13:38:11 -0700 (PDT) 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-logging 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, 15 Apr 2004 20:38:12 -0000 znerd 2004/04/15 13:38:11 PDT FreeBSD ports repository Modified files: java/jakarta-commons-logging pkg-descr Log: Improved description. In fact it related to jakarta-commons-validator. PR: 65491 Submitted by: Herve Quiroz Revision Changes Path 1.2 +10 -9 ports/java/jakarta-commons-logging/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13:41: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 F01B916A4CE; Thu, 15 Apr 2004 13:41:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D08DB43D54; Thu, 15 Apr 2004 13:41:01 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FKf1Ge097539; Thu, 15 Apr 2004 13:41:01 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FKf1qF097516; Thu, 15 Apr 2004 13:41:01 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152041.i3FKf1qF097516@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 13:41:01 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/linux-blackdown-jdk14 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, 15 Apr 2004 20:41:02 -0000 znerd 2004/04/15 13:41:01 PDT FreeBSD ports repository Modified files: java/linux-blackdown-jdk14 Makefile Log: Fixed LATEST_LINK. It referred to linux-blackdown-jdk13. PR: 65127 Submitted by: Kang Liu Revision Changes Path 1.6 +1 -1 ports/java/linux-blackdown-jdk14/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13: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 665BD16A4CE; Thu, 15 Apr 2004 13:43:50 -0700 (PDT) Received: from odin.ac.hmc.edu (Odin.AC.HMC.Edu [134.173.32.75]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3260943D45; Thu, 15 Apr 2004 13:43:50 -0700 (PDT) (envelope-from brdavis@odin.ac.hmc.edu) Received: from odin.ac.hmc.edu (IDENT:brdavis@localhost.localdomain [127.0.0.1]) by odin.ac.hmc.edu (8.12.10/8.12.3) with ESMTP id i3FKgrkS020802; Thu, 15 Apr 2004 13:42:57 -0700 Received: (from brdavis@localhost) by odin.ac.hmc.edu (8.12.10/8.12.3/Submit) id i3FKgpgZ020796; Thu, 15 Apr 2004 13:42:51 -0700 Date: Thu, 15 Apr 2004 13:42:51 -0700 From: Brooks Davis To: Luigi Rizzo Message-ID: <20040415204251.GA18850@Odin.AC.HMC.Edu> References: <200404152031.i3FKVBlD095276@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="IS0zKkzwUGydFO0o" Content-Disposition: inline In-Reply-To: <200404152031.i3FKVBlD095276@repoman.freebsd.org> User-Agent: Mutt/1.5.4i X-Virus-Scanned: by amavisd-milter (http://amavis.org/) on odin.ac.hmc.edu cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/arl if_arl.c src/sys/dev/cs if_cs.c src/sys/dev/ed if_ed.c src/sys/dev/ex if_ex.c src/sys/dev/fe if_fe.c src/sys/dev/lnc if_lnc.c src/sys/dev/sbni if_sbni.c src/sys/dev/sn if_sn.c src/sys/dev/wl if_wl.c src/sys/dev/xe ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 15 Apr 2004 20:43:50 -0000 --IS0zKkzwUGydFO0o Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 15, 2004 at 01:31:11PM -0700, Luigi Rizzo wrote: > luigi 2004/04/15 13:31:11 PDT >=20 > FreeBSD src repository >=20 > Modified files: > sys/dev/arl if_arl.c=20 > sys/dev/cs if_cs.c=20 > sys/dev/ed if_ed.c=20 > sys/dev/ex if_ex.c=20 > sys/dev/fe if_fe.c=20 > sys/dev/lnc if_lnc.c=20 > sys/dev/sbni if_sbni.c=20 > sys/dev/sn if_sn.c=20 > sys/dev/wl if_wl.c=20 > sys/dev/xe if_xe.c=20 > Log: > Remove improper use of if_addrhead in device drivers to check > if the link-level address has been initialized already. > =20 > The majority of modern drivers never does this and works fine, which > makes me think that the check is totally unnecessary and a residue > of cut&paste from other drivers. I suspect I know where this came from. Until rev 1.177 of net/if.c, there was an assumption that creating the ifaddr for the lladdr could fail due to a malloc failure in if_attach. These drivers were probably programming based on the assumption that this check could fail. Since malloc was called with M_WAITOK this shouldn't be possiable and so I removed the check there while redoing the allocation for interface renaming support. In reality, given the fact that if_attach can't fail (since it has a void return) the check should have resulted in a panic rather then attaching an unusable interface. -- Brooks --=20 Any statement of the form "X is the one, true Y" is FALSE. PGP fingerprint 655D 519C 26A7 82E7 2529 9BF0 5D8E 8BE9 F238 1AD4 --IS0zKkzwUGydFO0o Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.1 (GNU/Linux) iD8DBQFAfvPIXY6L6fI4GtQRApLSAJ4yUlNWYTA3iLp+1X+fl13/iHH+hgCg0siH 8OHRriGFHL3VnupFo+n+yi4= =aRP7 -----END PGP SIGNATURE----- --IS0zKkzwUGydFO0o-- From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13:45: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 436CB16A4CE; Thu, 15 Apr 2004 13:45:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 224A943D2D; Thu, 15 Apr 2004 13:45:31 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FKjUGe099331; Thu, 15 Apr 2004 13:45:30 -0700 (PDT) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FKjUYZ099327; Thu, 15 Apr 2004 13:45:30 -0700 (PDT) (envelope-from dinoex) Message-Id: <200404152045.i3FKjUYZ099327@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 15 Apr 2004 13:45:30 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc32 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, 15 Apr 2004 20:45:31 -0000 dinoex 2004/04/15 13:45:30 PDT FreeBSD ports repository Modified files: lang/gcc32 Makefile Log: - fix amd64 build - add option WITHOUT_LIBJAVA=yes Revision Changes Path 1.168 +17 -5 ports/lang/gcc32/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13: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 D993416A4CE; Thu, 15 Apr 2004 13:46:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA10543D45; Thu, 15 Apr 2004 13:46:28 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FKkSGe099376; Thu, 15 Apr 2004 13:46:28 -0700 (PDT) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FKkSkC099375; Thu, 15 Apr 2004 13:46:28 -0700 (PDT) (envelope-from dinoex) Message-Id: <200404152046.i3FKkSkC099375@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 15 Apr 2004 13:46:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc-objc 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, 15 Apr 2004 20:46:29 -0000 dinoex 2004/04/15 13:46:28 PDT FreeBSD ports repository Modified files: lang/gcc-objc Makefile Log: - update to gcc33 Revision Changes Path 1.2 +4 -6 ports/lang/gcc-objc/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13:48: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 16B2816A4CE; Thu, 15 Apr 2004 13:48:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C44443D1D; Thu, 15 Apr 2004 13:48:25 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FKmOGe099430; Thu, 15 Apr 2004 13:48:24 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FKmOaC099429; Thu, 15 Apr 2004 13:48:24 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152048.i3FKmOaC099429@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 13:48:24 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jdom 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, 15 Apr 2004 20:48:25 -0000 znerd 2004/04/15 13:48:24 PDT FreeBSD ports repository Modified files: java/jdom Makefile pkg-plist Log: Log: - Now using JAVAJARDIR instead of PREFIX/share/java/classes - Now using PORTDOCS macro (to reduce pkg-plist size and fix the apidocs deinstall issue with some JDKs) - Now using PLIST_FILES macro (to reduce pkg-plist size) - No longer installing JARs from 'lib' directory (but rather have them declared as run dependencies) - No longer installing junk files (such as perl CVS commiter scripts) - No longer installing class nor source files - Now installing samples in EXAMPLESDIR - Now installing README and such in DOCSDIR - Will not install docs and samples when NOPORTDOCS is set - Bumped PORTREVISION PR: 64703 Submitted by: Herve Quiroz Revision Changes Path 1.9 +29 -14 ports/java/jdom/Makefile 1.7 +31 -421 ports/java/jdom/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13: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 86F2A16A4CE; Thu, 15 Apr 2004 13:51:07 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 65EBA43D5A; Thu, 15 Apr 2004 13:51:07 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FKp7Ge099597; Thu, 15 Apr 2004 13:51:07 -0700 (PDT) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FKp6oq099596; Thu, 15 Apr 2004 13:51:06 -0700 (PDT) (envelope-from dinoex) Message-Id: <200404152051.i3FKp6oq099596@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 15 Apr 2004 13:51:06 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.gnustep.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, 15 Apr 2004 20:51:07 -0000 dinoex 2004/04/15 13:51:06 PDT FreeBSD ports repository Modified files: Mk bsd.gnustep.mk Log: - update to gcc33 Revision Changes Path 1.12 +6 -1 ports/Mk/bsd.gnustep.mk From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13: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 9F32F16A4CE; Thu, 15 Apr 2004 13:54:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 960E743D54; Thu, 15 Apr 2004 13:54:00 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FKs0Ge001529; Thu, 15 Apr 2004 13:54:00 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FKrxvP001528; Thu, 15 Apr 2004 13:54:00 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152054.i3FKrxvP001528@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 13:53:59 -0700 (PDT) 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-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, 15 Apr 2004 20:54:00 -0000 znerd 2004/04/15 13:53:59 PDT FreeBSD ports repository Modified files: java/jakarta-commons-collections Makefile distinfo Removed files: java/jakarta-commons-collections pkg-plist Log: Log: - Update to version 3.0 - Now using PORTDOCS macro for automated PLIST build (should fix the deinstall issue) - Now using MASTER_SITE_APACHE_JAKARTA - Now installs various additional docs: e.g. DEVELOPERS-GUIDE.html - Now using JAVAJARDIR instead of JAVASHAREDIR/classes - bsd.java.mk 2.0 compliant - ECHO_CMD instead of ECHO - Make JAVAJARDIR - Echo doc files as they are installed - Removed pkg-plist entirely (use PLIST_FILES) - Changed the name of the installed JAR (no more version number in it as it is the case for other Java libraries) PR: 64171 Submitted by: Herve Quiroz Revision Changes Path 1.6 +27 -17 ports/java/jakarta-commons-collections/Makefile 1.4 +2 -2 ports/java/jakarta-commons-collections/distinfo 1.3 +0 -85 ports/java/jakarta-commons-collections/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13:54: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 5BD3016A4CE; Thu, 15 Apr 2004 13:54:31 -0700 (PDT) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDBC943D1F; Thu, 15 Apr 2004 13:54:30 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (acs-24-154-235-189.zoominternet.net [24.154.235.189]) (authenticated bits=0) by pittgoth.com (8.12.11/8.12.11) with ESMTP id i3FKsM47061193 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 15 Apr 2004 16:54:23 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Thu, 15 Apr 2004 16:54:46 -0400 From: Tom Rhodes To: Ceri Davies Message-Id: <20040415165446.249baadf@localhost> In-Reply-To: <20040415202419.GS465@submonkey.net> References: <200404151640.i3FGeonU037981@repoman.freebsd.org> <20040415232006.7ebf855b@it.buh.cameradicommercio.ro> <20040415202419.GS465@submonkey.net> X-Mailer: Sylpheed version 0.9.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: Ion-Mihai Tetcu cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/share/sgml mailing-lists.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: Thu, 15 Apr 2004 20:54:31 -0000 On Thu, 15 Apr 2004 21:24:20 +0100 Ceri Davies wrote: > On Thu, Apr 15, 2004 at 11:20:06PM +0300, Ion-Mihai Tetcu wrote: > > On Thu, 15 Apr 2004 09:40:50 -0700 (PDT) > > Ceri Davies wrote: > > > > > ceri 2004/04/15 09:40:50 PDT > > > > > > FreeBSD doc repository > > > > > > Modified files: > > > en_US.ISO8859-1/share/sgml mailing-lists.ent > > > Log: > > > Add the ACPI list entries to unbreak the build. > > > > This was in the same PR: 65567 that trhodes committed for eresource and > > config; was it anything wrong in the mailing-lists.ent.diff? > > No, I think he just forgot to commit it. It was a duh moment for me. I did a cvs ci in the handbook directory and forgot to do one in the sgml directory. FWIW, I have a few WIPs in my local check out and would rather not just go and run a commit just anywhere. :) -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13:54: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 EFA9816A4CE; Thu, 15 Apr 2004 13:54:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CE6A443D39; Thu, 15 Apr 2004 13:54:57 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FKsvGe001569; Thu, 15 Apr 2004 13:54:57 -0700 (PDT) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FKsvCi001568; Thu, 15 Apr 2004 13:54:57 -0700 (PDT) (envelope-from dinoex) Message-Id: <200404152054.i3FKsvCi001568@repoman.freebsd.org> From: Dirk Meyer Date: Thu, 15 Apr 2004 13:54:57 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc-objc 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, 15 Apr 2004 20:54:58 -0000 dinoex 2004/04/15 13:54:57 PDT FreeBSD ports repository Modified files: lang/gcc-objc Makefile Log: - backward compatibility option GNUSTEP_WITH_GCC32=yes Revision Changes Path 1.3 +12 -0 ports/lang/gcc-objc/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13: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 AA34216A4CE; Thu, 15 Apr 2004 13:56:33 -0700 (PDT) Received: from abigail.blackend.org (blackend.org [212.11.35.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A24743D31; Thu, 15 Apr 2004 13:56:31 -0700 (PDT) (envelope-from marc@blackend.org) Received: from abigail.blackend.org (localhost [127.0.0.1]) by abigail.blackend.org (8.12.9/8.12.3) with ESMTP id i3FKuOui058106; Thu, 15 Apr 2004 22:56:24 +0200 (CEST) (envelope-from marc@abigail.blackend.org) Received: (from marc@localhost) by abigail.blackend.org (8.12.9/8.12.3/Submit) id i3FKuOgR058105; Thu, 15 Apr 2004 22:56:24 +0200 (CEST) (envelope-from marc) Date: Thu, 15 Apr 2004 22:56:24 +0200 From: Marc Fonvieille To: "Simon L. Nielsen" Message-ID: <20040415205623.GA46098@abigail.blackend.org> References: <200404141231.i3ECVgnb037966@repoman.freebsd.org> <20040415105223.GA771@zaphod.nitro.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="y0ulUmNC+osPPQO6" Content-Disposition: inline In-Reply-To: <20040415105223.GA771@zaphod.nitro.dk> User-Agent: Mutt/1.4.2.1i X-Useless-Header: blackend.org X-Operating-System: FreeBSD 4.8-STABLE cc: freebsd-hubs@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org cc: doc-committers@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/articles/hubs 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: Thu, 15 Apr 2004 20:56:33 -0000 --y0ulUmNC+osPPQO6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 15, 2004 at 12:52:23PM +0200, Simon L. Nielsen wrote: > On 2004.04.14 05:31:42 -0700, Marc Fonvieille wrote: > > blackend 2004/04/14 05:31:41 PDT > >=20 > > FreeBSD doc repository > >=20 > > Modified files: > > en_US.ISO8859-1/articles/hubs article.sgml=20 > > Log: > > Use of &rel2.current; and &rel.current; entities to allow seamless > > update of releases number. >=20 > I'm rather sure it was on purpose that the version numbers were > hardcoded. >=20 > In the text they are used to describe how much space each release, and > now the release numbers will be updated without the space requirements > being updated per release. Therefor new mirrors cannot easily see if > the space requirements are out of date... > I think you are right. Let's hubs people to confirm it and then I'll back out the change. Marc Cc: freebsd-hubs@freebsd.org --y0ulUmNC+osPPQO6 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfvb281T1MWxkgcoRAlamAJ95gxmydxRIXmcjFLuNmMaQKVurTQCgmYWO 5FHKn13gqRO7zHBJjiyauSQ= =E5M5 -----END PGP SIGNATURE----- --y0ulUmNC+osPPQO6-- From owner-cvs-all@FreeBSD.ORG Thu Apr 15 13: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 4AA0816A4CE; Thu, 15 Apr 2004 13:58:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4075B43D45; Thu, 15 Apr 2004 13:58:18 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FKwHGe001748; Thu, 15 Apr 2004 13:58:18 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FKwHSN001747; Thu, 15 Apr 2004 13:58:17 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152058.i3FKwHSN001747@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 13:58:17 -0700 (PDT) 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-logging 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, 15 Apr 2004 20:58:18 -0000 znerd 2004/04/15 13:58:17 PDT FreeBSD ports repository Modified files: java/jakarta-commons-logging Makefile pkg-plist Log: Log: - Now using PORTDOCS macro for automated PLIST build (should fix the deinstall issue) - Now using OPTIONS macro for dependency setting: - WITH_LOG4J: Enable Jakarta Log4j log factory (default: on) - WITH_LOGKIT: Enable Avalon LogKit log factory (default: off) - WITH_JDK14LOG: Enable JDK 1.4 log factory (default: off) - Changed Ant target 'dist' to 'compile' (to produce only JAR when NOPORTDOCS is set) - Now using Ant target 'javadoc' (see above) - Fixed an issue with shared JARs not in classpath (by setting ANT_INCLUDE_SHARED_JARS=YES) - Now bsd.java.mk 2.0 compliant - Fixed a bug with ant targets (adding rather than overwriting) - Use JAVAJARDIR everywhere - Fixed the ugly '*' in PORTDOCS - ECHO -> ECHO_CMD - Fixed indentation (previously 4 spaces) - Use MASTER_SITE_APACHE_JAKARTA - Removed the WRKSRC override stuff (it's the default value anyway) PR: 63928 Submitted by: Herve Quiroz Revision Changes Path 1.6 +38 -20 ports/java/jakarta-commons-logging/Makefile 1.3 +0 -37 ports/java/jakarta-commons-logging/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 14:17: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 EB3C616A4CE; Thu, 15 Apr 2004 14:17:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB08943D1D; Thu, 15 Apr 2004 14:17:26 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FLHQGe006729; Thu, 15 Apr 2004 14:17:26 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FLHQjR006728; Thu, 15 Apr 2004 14:17:26 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152117.i3FLHQjR006728@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 14:17:26 -0700 (PDT) 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-cli 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, 15 Apr 2004 21:17:27 -0000 znerd 2004/04/15 14:17:26 PDT FreeBSD ports repository Modified files: java/jakarta-commons-cli Makefile pkg-plist Log: Log: - Use the PORTDOCS macro to build dynamically pkg-plist (no more Javadoc 1.3/1.4 issues hopefully, and pkg-plist is now one line long) - Define the ANT_INCLUDE_SHARED_JARS variable so Ant now correctly gets JARs from ${JAVAJARDIR} PR: 61357 Submitted by: Herve Quiroz Revision Changes Path 1.8 +5 -1 ports/java/jakarta-commons-cli/Makefile 1.3 +0 -58 ports/java/jakarta-commons-cli/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 14:26: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 416AC16A4CE; Thu, 15 Apr 2004 14:26:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2186343D1F; Thu, 15 Apr 2004 14:26:44 -0700 (PDT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FLQhGe008918; Thu, 15 Apr 2004 14:26:43 -0700 (PDT) (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FLQhD2008917; Thu, 15 Apr 2004 14:26:43 -0700 (PDT) (envelope-from simon) Message-Id: <200404152126.i3FLQhD2008917@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Thu, 15 Apr 2004 14:26:43 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en 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: Thu, 15 Apr 2004 21:26:44 -0000 simon 2004/04/15 14:26:43 PDT FreeBSD doc repository Modified files: en index.xsl Log: Link the "Powered by FreeBSD" logo to the Art page instead of the BSD Daemon page. Suggested by: ceri (more or less) Revision Changes Path 1.99 +3 -3 www/en/index.xsl From owner-cvs-all@FreeBSD.ORG Thu Apr 15 14:30: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 02B0216A4D0 for ; Thu, 15 Apr 2004 14:30:41 -0700 (PDT) Received: from smtp.rdsnet.ro (smtp.rdsnet.ro [62.231.74.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id D24D443D60 for ; Thu, 15 Apr 2004 14:30:39 -0700 (PDT) (envelope-from itetcu@apropo.ro) Received: (qmail 2218 invoked by uid 89); 15 Apr 2004 21:27:33 -0000 Received: from unknown (HELO rdsnet.ro) (62.231.74.131) by 0 with SMTP; 15 Apr 2004 21:27:33 -0000 Received: (qmail 17428 invoked from network); 15 Apr 2004 21:30:39 -0000 Received: from unknown (HELO buh.cameradicommercio.ro) (81.196.25.19) by mail.rdsnet.ro with SMTP; 15 Apr 2004 21:30:39 -0000 Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP id 10F5F622B; Fri, 16 Apr 2004 00:30:10 +0300 (EEST) Received: from localhost (localhost.buh.cameradicommercio.ro [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id 649FC266; Fri, 16 Apr 2004 00:33:30 +0300 (EEST) Received: from it.buh.cameradicommercio.ro ([127.0.0.1])port 10024) with ESMTP id 89550-10; Fri, 16 Apr 2004 00:33:30 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.cameradicommercio.ro [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with SMTP id E56EA1C5; Fri, 16 Apr 2004 00:33:29 +0300 (EEST) Date: Fri, 16 Apr 2004 00:33:29 +0300 From: Ion-Mihai Tetcu To: Tom Rhodes Message-Id: <20040416003329.41f25ce8@it.buh.cameradicommercio.ro> In-Reply-To: <20040415165446.249baadf@localhost> References: <200404151640.i3FGeonU037981@repoman.freebsd.org> <20040415232006.7ebf855b@it.buh.cameradicommercio.ro> <20040415202419.GS465@submonkey.net> <20040415165446.249baadf@localhost> X-Mailer: Sylpheed version 0.9.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at it.buh.cameradicommercio.ro cc: Ceri Davies cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org cc: doc-committers@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/share/sgml mailing-lists.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: Thu, 15 Apr 2004 21:30:41 -0000 On Thu, 15 Apr 2004 16:54:46 -0400 Tom Rhodes wrote: > On Thu, 15 Apr 2004 21:24:20 +0100 > Ceri Davies wrote: > > > On Thu, Apr 15, 2004 at 11:20:06PM +0300, Ion-Mihai Tetcu wrote: > > > On Thu, 15 Apr 2004 09:40:50 -0700 (PDT) > > > Ceri Davies wrote: > > > > > > > ceri 2004/04/15 09:40:50 PDT > > > > > > > > FreeBSD doc repository > > > > > > > > Modified files: > > > > en_US.ISO8859-1/share/sgml mailing-lists.ent > > > > Log: > > > > Add the ACPI list entries to unbreak the build. > > > > > > This was in the same PR: 65567 that trhodes committed for eresource and > > > config; was it anything wrong in the mailing-lists.ent.diff? > > > > No, I think he just forgot to commit it. > > It was a duh moment for me. I did a cvs ci in the handbook directory > and forgot to do one in the sgml directory. FWIW, I have a few > WIPs in my local check out and would rather not just go and run > a commit just anywhere. :) Sorry for the noise it was my first patch for doc and I feared I did something wrong (with formating). What's WIP ? -- IOnut Unregistered ;) FreeBSD "user" From owner-cvs-all@FreeBSD.ORG Thu Apr 15 14:36: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 21E5016A4CE; Thu, 15 Apr 2004 14:36:01 -0700 (PDT) Received: from zaphod.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id A657E43D41; Thu, 15 Apr 2004 14:36:00 -0700 (PDT) (envelope-from simon@zaphod.nitro.dk) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id 081831189F; Thu, 15 Apr 2004 23:35:58 +0200 (CEST) Date: Thu, 15 Apr 2004 23:35:58 +0200 From: "Simon L. Nielsen" To: Ion-Mihai Tetcu Message-ID: <20040415213558.GE773@zaphod.nitro.dk> References: <200404151640.i3FGeonU037981@repoman.freebsd.org> <20040415232006.7ebf855b@it.buh.cameradicommercio.ro> <20040415202419.GS465@submonkey.net> <20040415165446.249baadf@localhost> <20040416003329.41f25ce8@it.buh.cameradicommercio.ro> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="WK3l2KTTmXPVedZ6" Content-Disposition: inline In-Reply-To: <20040416003329.41f25ce8@it.buh.cameradicommercio.ro> User-Agent: Mutt/1.5.6i cc: Tom Rhodes cc: Ceri Davies cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org cc: doc-committers@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/share/sgml mailing-lists.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: Thu, 15 Apr 2004 21:36:01 -0000 --WK3l2KTTmXPVedZ6 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2004.04.16 00:33:29 +0300, Ion-Mihai Tetcu wrote: > On Thu, 15 Apr 2004 16:54:46 -0400 > Tom Rhodes wrote: >=20 > > It was a duh moment for me. I did a cvs ci in the handbook directory > > and forgot to do one in the sgml directory. FWIW, I have a few > > WIPs in my local check out and would rather not just go and run > > a commit just anywhere. :) >=20 > Sorry for the noise it was my first patch for doc and I feared I did > something wrong (with formating). > > What's WIP ? "Work In Progress". Tom, like me and most other committers, has a million ongoing FreeBSD related projects, that would be really neat to get done, but where $REAL_JOB, $REAL_LIFE, and similar ignoring things get in the way all the time :-). --=20 Simon L. Nielsen FreeBSD Documentation Team --WK3l2KTTmXPVedZ6 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfwA+h9pcDSc1mlERAkYaAJ0fpimA1K2rvUAiR5aAzGVFSo3dywCgt9tL 3PtXlGO0AcrZ4RWak1tolko= =jrBL -----END PGP SIGNATURE----- --WK3l2KTTmXPVedZ6-- From owner-cvs-all@FreeBSD.ORG Thu Apr 15 14: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 5B4FF16A4CE; Thu, 15 Apr 2004 14:39:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50A0343D46; Thu, 15 Apr 2004 14:39:40 -0700 (PDT) (envelope-from sumikawa@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FLdeGe011027; Thu, 15 Apr 2004 14:39:40 -0700 (PDT) (envelope-from sumikawa@repoman.freebsd.org) Received: (from sumikawa@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FLdet0011026; Thu, 15 Apr 2004 14:39:40 -0700 (PDT) (envelope-from sumikawa) Message-Id: <200404152139.i3FLdet0011026@repoman.freebsd.org> From: Munechika SUMIKAWA Date: Thu, 15 Apr 2004 14:39:39 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/cvs+ipv6 Makefile distinfopatch-lib-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: Thu, 15 Apr 2004 21:39:40 -0000 sumikawa 2004/04/15 14:39:39 PDT FreeBSD ports repository Modified files: devel/cvs+ipv6 Makefile distinfo devel/cvs+ipv6/files patch-freebsdlocal patch-lib-Makefile.in patch-src-Makefile.in Log: Upgrade to 1.11.15. Revision Changes Path 1.13 +5 -7 ports/devel/cvs+ipv6/Makefile 1.6 +4 -4 ports/devel/cvs+ipv6/distinfo 1.5 +300 -284 ports/devel/cvs+ipv6/files/patch-freebsdlocal 1.5 +17 -20 ports/devel/cvs+ipv6/files/patch-lib-Makefile.in 1.5 +17 -17 ports/devel/cvs+ipv6/files/patch-src-Makefile.in From owner-cvs-all@FreeBSD.ORG Thu Apr 15 14:40: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 2A2D916A4CE; Thu, 15 Apr 2004 14:40:42 -0700 (PDT) Received: from pittgoth.com (14.zlnp1.xdsl.nauticom.net [209.195.149.111]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADE4C43D45; Thu, 15 Apr 2004 14:40:41 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from localhost (acs-24-154-235-189.zoominternet.net [24.154.235.189]) (authenticated bits=0) by pittgoth.com (8.12.11/8.12.11) with ESMTP id i3FLeaKW061421 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NOT); Thu, 15 Apr 2004 17:40:37 -0400 (EDT) (envelope-from trhodes@FreeBSD.org) Date: Thu, 15 Apr 2004 17:41:00 -0400 From: Tom Rhodes To: "Simon L. Nielsen" Message-Id: <20040415174100.50a68cbd@localhost> In-Reply-To: <20040415213558.GE773@zaphod.nitro.dk> References: <200404151640.i3FGeonU037981@repoman.freebsd.org> <20040415232006.7ebf855b@it.buh.cameradicommercio.ro> <20040415202419.GS465@submonkey.net> <20040415165446.249baadf@localhost> <20040416003329.41f25ce8@it.buh.cameradicommercio.ro> <20040415213558.GE773@zaphod.nitro.dk> X-Mailer: Sylpheed version 0.9.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit cc: Ion-Mihai Tetcu cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/share/sgml mailing-lists.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: Thu, 15 Apr 2004 21:40:42 -0000 On Thu, 15 Apr 2004 23:35:58 +0200 "Simon L. Nielsen" wrote: > On 2004.04.16 00:33:29 +0300, Ion-Mihai Tetcu wrote: > > On Thu, 15 Apr 2004 16:54:46 -0400 > > Tom Rhodes wrote: > > > > > It was a duh moment for me. I did a cvs ci in the handbook directory > > > and forgot to do one in the sgml directory. FWIW, I have a few > > > WIPs in my local check out and would rather not just go and run > > > a commit just anywhere. :) > > > > Sorry for the noise it was my first patch for doc and I feared I did > > something wrong (with formating). > > > > What's WIP ? > > "Work In Progress". Tom, like me and most other committers, has a > million ongoing FreeBSD related projects, that would be really neat to > get done, but where $REAL_JOB, $REAL_LIFE, and similar ignoring things > get in the way all the time :-). Simon has hit the nail on the head with his explination hammer. Don't worry Ion-Mihai, if something was wrong with your patch I would have pointed it out. :) -- Tom Rhodes From owner-cvs-all@FreeBSD.ORG Thu Apr 15 14: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 E071A16A4CF for ; Thu, 15 Apr 2004 14:49:41 -0700 (PDT) Received: from smtp.rdsnet.ro (smtp.rdsnet.ro [62.231.74.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id F134343D45 for ; Thu, 15 Apr 2004 14:49:40 -0700 (PDT) (envelope-from itetcu@apropo.ro) Received: (qmail 3449 invoked by uid 89); 15 Apr 2004 21:46:34 -0000 Received: from unknown (HELO rdsnet.ro) (62.231.74.131) by 0 with SMTP; 15 Apr 2004 21:46:34 -0000 Received: (qmail 23447 invoked from network); 15 Apr 2004 21:49:39 -0000 Received: from unknown (HELO buh.cameradicommercio.ro) (81.196.25.19) by mail.rdsnet.ro with SMTP; 15 Apr 2004 21:49:39 -0000 Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP id A3A2C60DB; Fri, 16 Apr 2004 00:49:06 +0300 (EEST) Received: from localhost (localhost.buh.cameradicommercio.ro [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id 5E6B0266; Fri, 16 Apr 2004 00:52:26 +0300 (EEST) Received: from it.buh.cameradicommercio.ro ([127.0.0.1])port 10024) with ESMTP id 25550-05; Fri, 16 Apr 2004 00:52:26 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.cameradicommercio.ro [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with SMTP id D6A441C5; Fri, 16 Apr 2004 00:52:25 +0300 (EEST) Date: Fri, 16 Apr 2004 00:52:25 +0300 From: Ion-Mihai Tetcu To: "Simon L. Nielsen" Message-Id: <20040416005225.0d1c2cfa@it.buh.cameradicommercio.ro> In-Reply-To: <20040415213558.GE773@zaphod.nitro.dk> References: <200404151640.i3FGeonU037981@repoman.freebsd.org> <20040415232006.7ebf855b@it.buh.cameradicommercio.ro> <20040415202419.GS465@submonkey.net> <20040415165446.249baadf@localhost> <20040416003329.41f25ce8@it.buh.cameradicommercio.ro> <20040415213558.GE773@zaphod.nitro.dk> X-Mailer: Sylpheed version 0.9.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at it.buh.cameradicommercio.ro cc: Tom Rhodes cc: Ceri Davies cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org cc: doc-committers@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/share/sgml mailing-lists.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: Thu, 15 Apr 2004 21:49:42 -0000 On Thu, 15 Apr 2004 23:35:58 +0200 "Simon L. Nielsen" wrote: > On 2004.04.16 00:33:29 +0300, Ion-Mihai Tetcu wrote: > > On Thu, 15 Apr 2004 16:54:46 -0400 > > Tom Rhodes wrote: > > > > > It was a duh moment for me. I did a cvs ci in the handbook directory > > > and forgot to do one in the sgml directory. FWIW, I have a few > > > WIPs in my local check out and would rather not just go and run > > > a commit just anywhere. :) > > > > Sorry for the noise it was my first patch for doc and I feared I did > > something wrong (with formating). > > > > What's WIP ? > > "Work In Progress". Thanks, I'm continuing amaze how many three-letter-words can exist in English. I didn't know this one. > Tom, like me and most other committers, has a > million ongoing FreeBSD related projects, that would be really neat to > get done, but where $REAL_JOB, $REAL_LIFE, and similar ignoring things > get in the way all the time :-). My $REAL_JOB from my $REAL_LIFE just made my work in the last 48 hours or so and this seems to be going on this night to. Luckily I have only a few FreeBSD public related projects :-) -- IOnut Unregistered ;) FreeBSD "user" From owner-cvs-all@FreeBSD.ORG Thu Apr 15 14: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 B1C1916A560 for ; Thu, 15 Apr 2004 14:50:31 -0700 (PDT) Received: from smtp.rdsnet.ro (smtp.rdsnet.ro [62.231.74.130]) by mx1.FreeBSD.org (Postfix) with ESMTP id AAFD943D1D for ; Thu, 15 Apr 2004 14:50:30 -0700 (PDT) (envelope-from itetcu@apropo.ro) Received: (qmail 3542 invoked by uid 89); 15 Apr 2004 21:47:24 -0000 Received: from unknown (HELO rdsnet.ro) (62.231.74.131) by 0 with SMTP; 15 Apr 2004 21:47:24 -0000 Received: (qmail 23814 invoked from network); 15 Apr 2004 21:50:29 -0000 Received: from unknown (HELO buh.cameradicommercio.ro) (81.196.25.19) by mail.rdsnet.ro with SMTP; 15 Apr 2004 21:50:29 -0000 Received: from it.buh.cameradicommercio.ro (it.buh.cameradicommercio.ro [192.168.0.10]) by buh.cameradicommercio.ro (Postfix) with ESMTP id 5EA1A6235; Fri, 16 Apr 2004 00:49:57 +0300 (EEST) Received: from localhost (localhost.buh.cameradicommercio.ro [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with ESMTP id 6B832283; Fri, 16 Apr 2004 00:53:17 +0300 (EEST) Received: from it.buh.cameradicommercio.ro ([127.0.0.1])port 10024) with ESMTP id 25550-07; Fri, 16 Apr 2004 00:53:17 +0300 (EEST) Received: from it.buh.cameradicommercio.ro (localhost.buh.cameradicommercio.ro [127.0.0.1]) by it.buh.cameradicommercio.ro (Postfix) with SMTP id BEAEB266; Fri, 16 Apr 2004 00:53:16 +0300 (EEST) Date: Fri, 16 Apr 2004 00:53:16 +0300 From: Ion-Mihai Tetcu To: Tom Rhodes Message-Id: <20040416005316.50484482@it.buh.cameradicommercio.ro> In-Reply-To: <20040415174100.50a68cbd@localhost> References: <200404151640.i3FGeonU037981@repoman.freebsd.org> <20040415232006.7ebf855b@it.buh.cameradicommercio.ro> <20040415202419.GS465@submonkey.net> <20040415165446.249baadf@localhost> <20040416003329.41f25ce8@it.buh.cameradicommercio.ro> <20040415213558.GE773@zaphod.nitro.dk> <20040415174100.50a68cbd@localhost> X-Mailer: Sylpheed version 0.9.10claws (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new at it.buh.cameradicommercio.ro cc: cvs-all@FreeBSD.org cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: "Simon L. Nielsen" Subject: Re: cvs commit: doc/en_US.ISO8859-1/share/sgml mailing-lists.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: Thu, 15 Apr 2004 21:50:31 -0000 On Thu, 15 Apr 2004 17:41:00 -0400 Tom Rhodes wrote: > On Thu, 15 Apr 2004 23:35:58 +0200 > "Simon L. Nielsen" wrote: > > > On 2004.04.16 00:33:29 +0300, Ion-Mihai Tetcu wrote: > > > On Thu, 15 Apr 2004 16:54:46 -0400 > > > Tom Rhodes wrote: > > > > > > > It was a duh moment for me. I did a cvs ci in the handbook directory > > > > and forgot to do one in the sgml directory. FWIW, I have a few > > > > WIPs in my local check out and would rather not just go and run > > > > a commit just anywhere. :) > > > > > > Sorry for the noise it was my first patch for doc and I feared I did > > > something wrong (with formating). > > > > > > What's WIP ? > > > > "Work In Progress". Tom, like me and most other committers, has a > > million ongoing FreeBSD related projects, that would be really neat to > > get done, but where $REAL_JOB, $REAL_LIFE, and similar ignoring things > > get in the way all the time :-). > > Simon has hit the nail on the head with his explination hammer. > > Don't worry Ion-Mihai, if something was wrong with your patch I would > have pointed it out. :) Fellin' better already :-) -- IOnut Unregistered ;) FreeBSD "user" From owner-cvs-all@FreeBSD.ORG Thu Apr 15 14:56: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 A4E0616A4CE; Thu, 15 Apr 2004 14:56:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 841EF43D31; Thu, 15 Apr 2004 14:56:23 -0700 (PDT) (envelope-from trhodes@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FLuNGe014939; Thu, 15 Apr 2004 14:56:23 -0700 (PDT) (envelope-from trhodes@repoman.freebsd.org) Received: (from trhodes@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FLuMQA014938; Thu, 15 Apr 2004 14:56:22 -0700 (PDT) (envelope-from trhodes) Message-Id: <200404152156.i3FLuMQA014938@repoman.freebsd.org> From: Tom Rhodes Date: Thu, 15 Apr 2004 14:56:22 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: 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: Thu, 15 Apr 2004 21:56:23 -0000 trhodes 2004/04/15 14:56:22 PDT FreeBSD doc repository Modified files: en/security security.sgml Log: Correct a URL. Noticed by: Daan van de Linde (via -www) Revision Changes Path 1.159 +3 -3 www/en/security/security.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 15 14:57: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 53C1116A4CE; Thu, 15 Apr 2004 14:57:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3206443D46; Thu, 15 Apr 2004 14:57:54 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FLvrGe015013; Thu, 15 Apr 2004 14:57:53 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FLvrpa015012; Thu, 15 Apr 2004 14:57:53 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152157.i3FLvrpa015012@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 14:57:53 -0700 (PDT) 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-logging 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, 15 Apr 2004 21:57:54 -0000 znerd 2004/04/15 14:57:53 PDT FreeBSD ports repository Removed files: java/jakarta-commons-logging pkg-plist Log: Removed pkg-plist file. This was missed in the last commit. Revision Changes Path 1.4 +0 -0 ports/java/jakarta-commons-logging/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Thu Apr 15 15: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 98F5A16A4CE; Thu, 15 Apr 2004 15:07:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 754FF43D76; Thu, 15 Apr 2004 15:07:41 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FM7fGe018017; Thu, 15 Apr 2004 15:07:41 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FM7fej018016; Thu, 15 Apr 2004 15:07:41 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152207.i3FM7fej018016@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 15:07:41 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jump 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, 15 Apr 2004 22:07:41 -0000 znerd 2004/04/15 15:07:41 PDT FreeBSD ports repository Modified files: java/jump Makefile distinfo pkg-plist Log: - Update to JUMP 0.5 - Unbroken - Using PORTDOCS macro - Removed non-existent metaverse.nl download site Revision Changes Path 1.16 +10 -9 ports/java/jump/Makefile 1.6 +2 -1 ports/java/jump/distinfo 1.9 +1 -53 ports/java/jump/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 15:14: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 2164616A4CE; Thu, 15 Apr 2004 15:14:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3F8443D1D; Thu, 15 Apr 2004 15:14:42 -0700 (PDT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FMEgGe019972; Thu, 15 Apr 2004 15:14:42 -0700 (PDT) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FMEgg3019971; Thu, 15 Apr 2004 15:14:42 -0700 (PDT) (envelope-from brueffer) Message-Id: <200404152214.i3FMEgg3019971@repoman.freebsd.org> From: Christian Brueffer Date: Thu, 15 Apr 2004 15:14:42 -0700 (PDT) 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: Thu, 15 Apr 2004 22:14:43 -0000 brueffer 2004/04/15 15:14:42 PDT FreeBSD doc repository Modified files: en/news press.xml Log: Add three new articles: o Mail Scanning With Exim And The Exiscan ACL o Most Reliable Hosting Providers during March o Experimental free Wi-Fi LAN gaining momentum in SF Revision Changes Path 1.127 +39 -1 www/en/news/press.xml From owner-cvs-all@FreeBSD.ORG Thu Apr 15 15:29: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 83BDC16A4CE; Thu, 15 Apr 2004 15:29:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6169843D46; Thu, 15 Apr 2004 15:29:29 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FMTTGe022107; Thu, 15 Apr 2004 15:29:29 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FMTTNp022106; Thu, 15 Apr 2004 15:29:29 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152229.i3FMTTNp022106@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 15:29:29 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/bugseeker-demo 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, 15 Apr 2004 22:29:29 -0000 znerd 2004/04/15 15:29:28 PDT FreeBSD ports repository Modified files: java/bugseeker-demo Makefile Log: No longer using non-existent metaverse.nl download site. Revision Changes Path 1.10 +2 -1 ports/java/bugseeker-demo/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 15:31: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 C9FE916A4CE; Thu, 15 Apr 2004 15:31:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A846343D39; Thu, 15 Apr 2004 15:31:05 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FMV5Ge022232; Thu, 15 Apr 2004 15:31:05 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FMV51t022231; Thu, 15 Apr 2004 15:31:05 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152231.i3FMV51t022231@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 15:31:05 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jad 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, 15 Apr 2004 22:31:05 -0000 znerd 2004/04/15 15:31:05 PDT FreeBSD ports repository Modified files: java/jad pkg-descr Log: Homepage re-appeared. Revision Changes Path 1.4 +1 -1 ports/java/jad/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Apr 15 15:32: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 CBB4C16A4CE; Thu, 15 Apr 2004 15:32:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AA5A443D53; Thu, 15 Apr 2004 15:32:33 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FMWXGe023987; Thu, 15 Apr 2004 15:32:33 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FMWX8O023986; Thu, 15 Apr 2004 15:32:33 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152232.i3FMWX8O023986@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 15:32:33 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jad 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, 15 Apr 2004 22:32:34 -0000 znerd 2004/04/15 15:32:33 PDT FreeBSD ports repository Modified files: java/jad Makefile Log: Only using preferred download sites. Revision Changes Path 1.12 +1 -4 ports/java/jad/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 15:36: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 08C2116A4CE; Thu, 15 Apr 2004 15:36:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA98343D39; Thu, 15 Apr 2004 15:36:54 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FMasGe024168; Thu, 15 Apr 2004 15:36:54 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FMaskQ024167; Thu, 15 Apr 2004 15:36:54 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152236.i3FMaskQ024167@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 15:36:54 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jce-aba 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, 15 Apr 2004 22:36:55 -0000 znerd 2004/04/15 15:36:54 PDT FreeBSD ports repository Modified files: java/jce-aba pkg-descr Log: ABA website seems to have disappeared. Revision Changes Path 1.2 +2 -0 ports/java/jce-aba/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Apr 15 15:37: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 053E316A4CF; Thu, 15 Apr 2004 15:37:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D69F243D46; Thu, 15 Apr 2004 15:37:54 -0700 (PDT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FMbsGe024225; Thu, 15 Apr 2004 15:37:54 -0700 (PDT) (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FMbsS0024224; Thu, 15 Apr 2004 15:37:54 -0700 (PDT) (envelope-from kientzle) Message-Id: <200404152237.i3FMbsS0024224@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 15 Apr 2004 15:37:54 -0700 (PDT) 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 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: Thu, 15 Apr 2004 22:37:55 -0000 kientzle 2004/04/15 15:37:54 PDT FreeBSD src repository Modified files: usr.bin/tar bsdtar.c bsdtar.h util.c write.c Log: As suggested by Julian Elischer, use a self-sizing hash table for the hardlink cache. This dramatically improves performance when archiving millions of hardlinked files. While I'm here, clean up some style bugs (per Bruce Evans) and clarify some comments. Revision Changes Path 1.7 +1 -11 src/usr.bin/tar/bsdtar.c 1.4 +19 -33 src/usr.bin/tar/bsdtar.h 1.3 +21 -15 src/usr.bin/tar/util.c 1.8 +238 -70 src/usr.bin/tar/write.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 15: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 7154F16A4E0; Thu, 15 Apr 2004 15:38:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D02343D58; Thu, 15 Apr 2004 15:38:10 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FMcAGe024266; Thu, 15 Apr 2004 15:38:10 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FMc9kc024265; Thu, 15 Apr 2004 15:38:09 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152238.i3FMc9kc024265@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 15:38:09 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jce-aba 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, 15 Apr 2004 22:38:10 -0000 znerd 2004/04/15 15:38:09 PDT FreeBSD ports repository Modified files: java/jce-aba Makefile Log: Removed non-existent metaverse.nl download site. Added category: security. Revision Changes Path 1.8 +2 -3 ports/java/jce-aba/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 15:38: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 2836C16A4CE; Thu, 15 Apr 2004 15:38:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0636743D48; Thu, 15 Apr 2004 15:38:28 -0700 (PDT) (envelope-from simon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FMcRGe024292; Thu, 15 Apr 2004 15:38:27 -0700 (PDT) (envelope-from simon@repoman.freebsd.org) Received: (from simon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FMcRq2024291; Thu, 15 Apr 2004 15:38:27 -0700 (PDT) (envelope-from simon) Message-Id: <200404152238.i3FMcRq2024291@repoman.freebsd.org> From: "Simon L. Nielsen" Date: Thu, 15 Apr 2004 15:38:27 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en art.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, 15 Apr 2004 22:38:28 -0000 simon 2004/04/15 15:38:27 PDT FreeBSD doc repository Modified files: en art.sgml Log: Make title for the Powered by FreeBSD logos less ambiguous. Submitted by: ceri (slightly different version) Revision Changes Path 1.3 +3 -3 www/en/art.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 15 15:39: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 4C0FB16A4CE; Thu, 15 Apr 2004 15:39:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 299DF43D1D; Thu, 15 Apr 2004 15:39:41 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FMdeGe024332; Thu, 15 Apr 2004 15:39:40 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FMdeuO024331; Thu, 15 Apr 2004 15:39:40 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152239.i3FMdeuO024331@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 15:39:40 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jlint 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, 15 Apr 2004 22:39:41 -0000 znerd 2004/04/15 15:39:40 PDT FreeBSD ports repository Modified files: java/jlint Makefile Log: Removed non-existent master site metaverse.nl. Revision Changes Path 1.8 +1 -2 ports/java/jlint/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 15:39: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 97FBB16A4CF; Thu, 15 Apr 2004 15:39:50 -0700 (PDT) Received: from shaft.techsupport.co.uk (shaft.techsupport.co.uk [212.250.77.214]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3034043D31; Thu, 15 Apr 2004 15:39:50 -0700 (PDT) (envelope-from setantae@submonkey.net) Received: from cpc2-cdif3-6-0-cust204.cdif.cable.ntl.com ([81.103.67.204] helo=shrike.submonkey.net ident=mailnull) by shaft.techsupport.co.uk with esmtp (TLSv1:DHE-RSA-AES256-SHA:256) (Exim 4.31; FreeBSD) id 1BEFWP-000Pee-3f; Thu, 15 Apr 2004 23:39:49 +0100 Received: from setantae by shrike.submonkey.net with local (Exim 4.31; FreeBSD) id 1BEFWN-000F2A-8x; Thu, 15 Apr 2004 23:39:47 +0100 Date: Thu, 15 Apr 2004 23:39:47 +0100 From: Ceri Davies To: "Simon L. Nielsen" Message-ID: <20040415223947.GV465@submonkey.net> Mail-Followup-To: Ceri Davies , "Simon L. Nielsen" , doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org References: <200404152238.i3FMcRq2024291@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="lwdfKABU4AhUWl+O" Content-Disposition: inline In-Reply-To: <200404152238.i3FMcRq2024291@repoman.freebsd.org> X-PGP: finger ceri@FreeBSD.org User-Agent: Mutt/1.5.4i Sender: Ceri Davies cc: doc-committers@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: www/en art.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, 15 Apr 2004 22:39:50 -0000 --lwdfKABU4AhUWl+O Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 15, 2004 at 03:38:27PM -0700, Simon L. Nielsen wrote: > simon 2004/04/15 15:38:27 PDT >=20 > FreeBSD doc repository >=20 > Modified files: > en art.sgml=20 > Log: > Make title for the Powered by FreeBSD logos less ambiguous. Thanks! Ceri --=20 --lwdfKABU4AhUWl+O Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAfw8zocfcwTS3JF8RAo1zAJ0XZmi6gDQrlQVz58Smd8eJ1S9kVgCgqWH9 PiRCQkLrjQt1RO4pc6eZvZs= =2kID -----END PGP SIGNATURE----- --lwdfKABU4AhUWl+O-- From owner-cvs-all@FreeBSD.ORG Thu Apr 15 15:40: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 AA3AE16A4D5; Thu, 15 Apr 2004 15:40:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8823643D5C; Thu, 15 Apr 2004 15:40:30 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FMeUGe024414; Thu, 15 Apr 2004 15:40:30 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FMeTbe024413; Thu, 15 Apr 2004 15:40:29 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152240.i3FMeTbe024413@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 15:40:29 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/linux-blackdown-jdk12 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, 15 Apr 2004 22:40:30 -0000 znerd 2004/04/15 15:40:29 PDT FreeBSD ports repository Modified files: java/linux-blackdown-jdk12 Makefile Log: Removed non-existent master site metaverse.nl. Revision Changes Path 1.20 +0 -1 ports/java/linux-blackdown-jdk12/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 15:42: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 17BB216A4CE; Thu, 15 Apr 2004 15:42:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E92D643D1D; Thu, 15 Apr 2004 15:42:30 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FMgUGe026040; Thu, 15 Apr 2004 15:42:30 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FMgUIF026036; Thu, 15 Apr 2004 15:42:30 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152242.i3FMgUIF026036@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 15:42:30 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/linux-blackdown-jdk12 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, 15 Apr 2004 22:42:31 -0000 znerd 2004/04/15 15:42:30 PDT FreeBSD ports repository Modified files: java/linux-blackdown-jdk12 pkg-descr Log: Now consistent with other JDK ports. Also added WWW: line. Revision Changes Path 1.2 +3 -1 ports/java/linux-blackdown-jdk12/pkg-descr From owner-cvs-all@FreeBSD.ORG Thu Apr 15 15: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 B8F2B16A4CE; Thu, 15 Apr 2004 15:55:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 979E143D31; Thu, 15 Apr 2004 15:55:15 -0700 (PDT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FMtFGe028323; Thu, 15 Apr 2004 15:55:15 -0700 (PDT) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FMtFMf028322; Thu, 15 Apr 2004 15:55:15 -0700 (PDT) (envelope-from glewis) Message-Id: <200404152255.i3FMtFMf028322@repoman.freebsd.org> From: Greg Lewis Date: Thu, 15 Apr 2004 15:55:14 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/linux-ibm-jdk14 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, 15 Apr 2004 22:55:15 -0000 glewis 2004/04/15 15:55:14 PDT FreeBSD ports repository Modified files: java/linux-ibm-jdk14 Makefile distinfo pkg-plist Log: . Update to 1.4.1 SR2. . SIZEify. Revision Changes Path 1.8 +1 -1 ports/java/linux-ibm-jdk14/Makefile 1.4 +2 -1 ports/java/linux-ibm-jdk14/distinfo 1.4 +3 -1 ports/java/linux-ibm-jdk14/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 16:00: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 8D28516A4CE; Thu, 15 Apr 2004 16:00:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A04E43D2D; Thu, 15 Apr 2004 16:00:49 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FN0nGe028570; Thu, 15 Apr 2004 16:00:49 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FN0msI028569; Thu, 15 Apr 2004 16:00:48 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152300.i3FN0msI028569@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 16:00:48 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jdk11-doc 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, 15 Apr 2004 23:00:49 -0000 znerd 2004/04/15 16:00:48 PDT FreeBSD ports repository Modified files: java/jdk11-doc Makefile Log: - Removed non-existent download site metaverse.nl. - Using PORTDOCS macro. - Fixed issue with files staying being after deinstall [1]. Reported by: kris [1] Revision Changes Path 1.28 +7 -24 ports/java/jdk11-doc/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 16: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 A34DB16A4CE; Thu, 15 Apr 2004 16:03:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8000B43D46; Thu, 15 Apr 2004 16:03:17 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FN3HGe031302; Thu, 15 Apr 2004 16:03:17 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FN3Hlo031301; Thu, 15 Apr 2004 16:03:17 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152303.i3FN3Hlo031301@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 16:03:16 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jdk11-doc 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, 15 Apr 2004 23:03:17 -0000 znerd 2004/04/15 16:03:16 PDT FreeBSD ports repository Modified files: java/jdk11-doc Makefile Log: Cleverly determine version-related variable values based on other variables. Revision Changes Path 1.29 +3 -2 ports/java/jdk11-doc/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 16:05: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 8E04516A4CE; Thu, 15 Apr 2004 16:05:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6A3A243D2F; Thu, 15 Apr 2004 16:05:18 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FN5IGe031397; Thu, 15 Apr 2004 16:05:18 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FN5IiM031387; Thu, 15 Apr 2004 16:05:18 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152305.i3FN5IiM031387@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 16:05:18 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jdk11-doc 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, 15 Apr 2004 23:05:18 -0000 znerd 2004/04/15 16:05:18 PDT FreeBSD ports repository Modified files: java/jdk11-doc Makefile Log: Made cp -R silent again, like previously. Revision Changes Path 1.30 +1 -1 ports/java/jdk11-doc/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 16: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 0A9FD16A4CE; Thu, 15 Apr 2004 16:10:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD1D643D5A; Thu, 15 Apr 2004 16:10:25 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FNAPGe031569; Thu, 15 Apr 2004 16:10:25 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FNAPna031568; Thu, 15 Apr 2004 16:10:25 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152310.i3FNAPna031568@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 16:10:25 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jdk11-doc 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, 15 Apr 2004 23:10:26 -0000 znerd 2004/04/15 16:10:25 PDT FreeBSD ports repository Modified files: java/jdk11-doc Makefile Log: Removed unused DOWNLOAD_URL variable. Revision Changes Path 1.31 +0 -1 ports/java/jdk11-doc/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 16: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 3DE7B16A4CE; Thu, 15 Apr 2004 16:14:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A79B43D45; Thu, 15 Apr 2004 16:14:27 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FNEQGe033422; Thu, 15 Apr 2004 16:14:26 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FNEQpV033421; Thu, 15 Apr 2004 16:14:26 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152314.i3FNEQpV033421@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 16:14:26 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jdk12-doc 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, 15 Apr 2004 23:14:27 -0000 znerd 2004/04/15 16:14:26 PDT FreeBSD ports repository Modified files: java/jdk12-doc Makefile Log: - Removed non-existent download site metaverse.nl - Fixed removal of files after deinstall [1] - Using PORTDOCS macro Reported by: kris [1] Revision Changes Path 1.26 +10 -27 ports/java/jdk12-doc/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 16:16: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 8502D16A4CE; Thu, 15 Apr 2004 16:16:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 628F943D41; Thu, 15 Apr 2004 16:16:48 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FNGmGe033536; Thu, 15 Apr 2004 16:16:48 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FNGmtR033535; Thu, 15 Apr 2004 16:16:48 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152316.i3FNGmtR033535@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 16:16:48 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jdk12-doc 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, 15 Apr 2004 23:16:48 -0000 znerd 2004/04/15 16:16:48 PDT FreeBSD ports repository Modified files: java/jdk12-doc Makefile Log: Slightly improved phrasing of RESTRICTED. Revision Changes Path 1.27 +1 -1 ports/java/jdk12-doc/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 16:27: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 328F916A4D2 for ; Thu, 15 Apr 2004 16:27:08 -0700 (PDT) Received: from root.org (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id E021443D60 for ; Thu, 15 Apr 2004 16:27:07 -0700 (PDT) (envelope-from nate@root.org) Received: (qmail 92915 invoked by uid 1000); 15 Apr 2004 23:27:09 -0000 Date: Thu, 15 Apr 2004 16:27:09 -0700 (PDT) From: Nate Lawson To: =?X-UNKNOWN?Q?S=F8ren_Schmidt?= In-Reply-To: <20040413094519.7230616A4DB@hub.freebsd.org> Message-ID: <20040415162313.S92883@root.org> References: <20040413094519.7230616A4DB@hub.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=X-UNKNOWN Content-Transfer-Encoding: QUOTED-PRINTABLE cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c ata-chipset.c ata-disk.c ata-dma.c ata-isa.c ata-lowlevel.c ata-pci.c ata-pci.h 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: Thu, 15 Apr 2004 23:27:08 -0000 On Tue, 13 Apr 2004, S=F8ren Schmidt wrote: > FreeBSD src repository > > Modified files: > sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c > ata-chipset.c ata-disk.c ata-dma.c > ata-isa.c ata-lowlevel.c ata-pci.c > ata-pci.h ata-queue.c > Log: > Add support for the Promise command sequencer present on all modern Pro= mise > controllers (PDC203** PDC206**). > > This also adds preliminary support for the Promise SX4/SX4000 but *only= * > as a "normal" Promise ATA controller (ATA RAID's are supported though > but only RAID0, RAID1 and RAID0+1). > > This cuts off yet another 5-8% of the command overhead on promise contr= ollers, > making them the fastest we have ever had support for. > > Work is now continuing to add support for this in ATA RAID, to acceller= ate > ATA RAID quite a bit on these controllers, and especially the SX4/SX400= 0 > series as they have quite a few tricks in there.. > > This commit also adds a few fixes to the SATA code needed for proper su= pport. > > Revision Changes Path > 1.208 +4 -11 src/sys/dev/ata/ata-all.c > 1.78 +10 -3 src/sys/dev/ata/ata-all.h > 1.23 +1 -0 src/sys/dev/ata/ata-card.c > 1.12 +1 -0 src/sys/dev/ata/ata-cbus.c > 1.68 +474 -141 src/sys/dev/ata/ata-chipset.c > 1.172 +11 -6 src/sys/dev/ata/ata-disk.c > 1.126 +33 -2 src/sys/dev/ata/ata-dma.c > 1.21 +1 -0 src/sys/dev/ata/ata-isa.c > 1.32 +55 -51 src/sys/dev/ata/ata-lowlevel.c > 1.78 +24 -52 src/sys/dev/ata/ata-pci.c > 1.29 +8 -2 src/sys/dev/ata/ata-pci.h > 1.26 +3 -2 src/sys/dev/ata/ata-queue.c Also... Includes fixes to avoid checking the ATA_FLAG_54_58 bit, fixing LBA detection: Submitted by:=09rk Includes fixes for resource allocation fixing at least ICH3: Submitted by:=09imp -Nate From owner-cvs-all@FreeBSD.ORG Thu Apr 15 16: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 1A3DF16A4CE; Thu, 15 Apr 2004 16:27:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED31343D60; Thu, 15 Apr 2004 16:27:41 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FNRfGe035524; Thu, 15 Apr 2004 16:27:41 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FNRfoE035523; Thu, 15 Apr 2004 16:27:41 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152327.i3FNRfoE035523@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 16:27:41 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jdk13-doc 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, 15 Apr 2004 23:27:42 -0000 znerd 2004/04/15 16:27:41 PDT FreeBSD ports repository Modified files: java/jdk13-doc Makefile Log: Using PORTDOCS macro. Revision Changes Path 1.27 +11 -26 ports/java/jdk13-doc/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 16:43: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 6077816A4CE; Thu, 15 Apr 2004 16:43:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E77943D2D; Thu, 15 Apr 2004 16:43:27 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FNhQGe039443; Thu, 15 Apr 2004 16:43:26 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FNhQuH039442; Thu, 15 Apr 2004 16:43:26 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152343.i3FNhQuH039442@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 16:43:26 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/jdk14-doc 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, 15 Apr 2004 23:43:27 -0000 znerd 2004/04/15 16:43:26 PDT FreeBSD ports repository Modified files: java/jdk14-doc Makefile Log: Using PORTDOCS macro. Revision Changes Path 1.32 +12 -26 ports/java/jdk14-doc/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 16: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 94EDA16A4CE; Thu, 15 Apr 2004 16:46:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87A3343D53; Thu, 15 Apr 2004 16:46:28 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FNkSGe039651; Thu, 15 Apr 2004 16:46:28 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FNkSw9039650; Thu, 15 Apr 2004 16:46:28 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152346.i3FNkSw9039650@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 16:46:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java Makefile ports/java/jdk15-doc 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, 15 Apr 2004 23:46:28 -0000 znerd 2004/04/15 16:46:28 PDT FreeBSD ports repository Modified files: java Makefile Added files: java/jdk15-doc Makefile distinfo pkg-descr Log: Add jdk15-doc: Java Development Kit 1.5 Documentation. Contains release information, API documentation, guides to new features and tool documentation. The documentation will be installed in ${PREFIX}/share/doc/jdk1.5/ WWW: http://java.sun.com/j2se/1.5/ Revision Changes Path 1.121 +1 -0 ports/java/Makefile 1.1 +44 -0 ports/java/jdk15-doc/Makefile (new) 1.1 +2 -0 ports/java/jdk15-doc/distinfo (new) 1.1 +6 -0 ports/java/jdk15-doc/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 15 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 3508C16A4CE; Thu, 15 Apr 2004 16:47:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11A6C43D5F; Thu, 15 Apr 2004 16:47:26 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3FNlPGe045670; Thu, 15 Apr 2004 16:47:25 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3FNlPC8045669; Thu, 15 Apr 2004 16:47:25 -0700 (PDT) (envelope-from znerd) Message-Id: <200404152347.i3FNlPC8045669@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 16:47:25 -0700 (PDT) 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, 15 Apr 2004 23:47:26 -0000 znerd 2004/04/15 16:47:25 PDT FreeBSD ports repository Modified files: . modules Log: jdk15-doc -> ports/java/jdk15-doc Revision Changes Path 1.9907 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Apr 15 17:04: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 4FD5216A4CE; Thu, 15 Apr 2004 17:04:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4369643D41; Thu, 15 Apr 2004 17:04:29 -0700 (PDT) (envelope-from wpaul@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G04TGe050514; Thu, 15 Apr 2004 17:04:29 -0700 (PDT) (envelope-from wpaul@repoman.freebsd.org) Received: (from wpaul@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G04SnL050513; Thu, 15 Apr 2004 17:04:28 -0700 (PDT) (envelope-from wpaul) Message-Id: <200404160004.i3G04SnL050513@repoman.freebsd.org> From: Bill Paul Date: Thu, 15 Apr 2004 17:04:28 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/compat/ndis kern_ndis.c ntoskrnl_var.h subr_hal.c subr_ndis.c subr_ntoskrnl.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 00:04:29 -0000 wpaul 2004/04/15 17:04:28 PDT FreeBSD src repository Modified files: sys/compat/ndis kern_ndis.c ntoskrnl_var.h subr_hal.c subr_ndis.c subr_ntoskrnl.c Log: - Use memory barrier with atomic operations in ntoskrnl_lock_dpc() and ntoskrnl_unlocl_dpc(). - hal_raise_irql(), hal_lower_irql() and hal_irql() didn't work right on SMP (priority inheritance makes things... interesting). For now, use only two states: DISPATCH_LEVEL (PI_REALTIME) and PASSIVE_LEVEL (everything else). Tested on a dual PIII box. - Use ndis_thsuspend() in ndis_sleep() instead of tsleep(). (I added ndis_thsuspend() and ndis_thresume() to replace kthread_suspend() and kthread_resume(); the former will preserve a thread's priority when it wakes up, the latter will not.) - Change use of tsleep() in ndis_stop_thread() to prevent priority change on wakeup. Revision Changes Path 1.52 +1 -1 src/sys/compat/ndis/kern_ndis.c 1.14 +2 -2 src/sys/compat/ndis/ntoskrnl_var.h 1.11 +13 -41 src/sys/compat/ndis/subr_hal.c 1.56 +1 -2 src/sys/compat/ndis/subr_ndis.c 1.35 +3 -9 src/sys/compat/ndis/subr_ntoskrnl.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 17:26: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 B649116A4CE; Thu, 15 Apr 2004 17:26:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9353C43D41; Thu, 15 Apr 2004 17:26:36 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G0QaGe054609; Thu, 15 Apr 2004 17:26:36 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G0Qa0M054608; Thu, 15 Apr 2004 17:26:36 -0700 (PDT) (envelope-from nectar) Message-Id: <200404160026.i3G0Qa0M054608@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Apr 2004 17:26:36 -0700 (PDT) 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, 16 Apr 2004 00:26:36 -0000 nectar 2004/04/15 17:26:36 PDT FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Add neon vulnerability Correct the version range for openh323 Revision Changes Path 1.76 +35 -2 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Thu Apr 15 17: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 8885C16A4CE; Thu, 15 Apr 2004 17:27:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 62CFC43D46; Thu, 15 Apr 2004 17:27:03 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G0R3Ge054641; Thu, 15 Apr 2004 17:27:03 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G0R2In054640; Thu, 15 Apr 2004 17:27:03 -0700 (PDT) (envelope-from nectar) Message-Id: <200404160027.i3G0R2In054640@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Apr 2004 17:27:02 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/neon 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, 16 Apr 2004 00:27:03 -0000 nectar 2004/04/15 17:27:02 PDT FreeBSD ports repository Modified files: www/neon Makefile Log: Mark FORBIDDEN due to remotely exploitable format string vulnerabilities. http://vuxml.freebsd.org/84237895-8f39-11d8-8b29-0020ed76ef5a.html Revision Changes Path 1.27 +2 -0 ports/www/neon/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 17:49: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 59E5C16A4CE; Thu, 15 Apr 2004 17:49:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37D2643D39; Thu, 15 Apr 2004 17:49:16 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G0nGGe058696; Thu, 15 Apr 2004 17:49:16 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G0nFnr058695; Thu, 15 Apr 2004 17:49:15 -0700 (PDT) (envelope-from nectar) Message-Id: <200404160049.i3G0nFnr058695@repoman.freebsd.org> From: Jacques Vidrine Date: Thu, 15 Apr 2004 17:49:15 -0700 (PDT) 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, 16 Apr 2004 00:49:16 -0000 nectar 2004/04/15 17:49:15 PDT FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Add kdepim vulnerability Revision Changes Path 1.77 +25 -0 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Thu Apr 15 17:59: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 C597116A4CE; Thu, 15 Apr 2004 17:59:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A279A43D5C; Thu, 15 Apr 2004 17:59:30 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G0xUGe060761; Thu, 15 Apr 2004 17:59:30 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G0xUiJ060760; Thu, 15 Apr 2004 17:59:30 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404160059.i3G0xUiJ060760@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 15 Apr 2004 17:59:30 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/flowdesigner 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, 16 Apr 2004 00:59:31 -0000 ijliao 2004/04/15 17:59:30 PDT FreeBSD ports repository Modified files: devel/flowdesigner distinfo Log: a minor change in spec file diff -ruN -ruN FlowDesigner-0.8.0.old/FlowDesigner.spec FlowDesigner-0.8.0/FlowDesigner.spec --- FlowDesigner-0.8.0.old/FlowDesigner.spec Wed Jan 21 10:20:32 2004 +++ FlowDesigner-0.8.0/FlowDesigner.spec Wed Jan 21 09:59:58 2004 @@ -1,6 +1,6 @@ %define name FlowDesigner %define ver 0.8.0 -%define rel 1.fc1 +%define rel 1 Summary: A visual data-flow language Name: %name Noticed by: bento via kris Revision Changes Path 1.2 +2 -2 ports/devel/flowdesigner/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 15 18:20: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 E65D816A4CE; Thu, 15 Apr 2004 18:20:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C34CD43D55; Thu, 15 Apr 2004 18:20:58 -0700 (PDT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G1KwGe065812; Thu, 15 Apr 2004 18:20:58 -0700 (PDT) (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G1Kw9x065811; Thu, 15 Apr 2004 18:20:58 -0700 (PDT) (envelope-from kientzle) Message-Id: <200404160120.i3G1Kw9x065811@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 15 Apr 2004 18:20:58 -0700 (PDT) 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_platform.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, 16 Apr 2004 01:20:59 -0000 kientzle 2004/04/15 18:20:58 PDT FreeBSD src repository Modified files: lib/libarchive archive_platform.h Log: Only enable the ACL restore logic on FreeBSD versions >= 5.0. Earlier versions of FreeBSD don't support ACLs. Note that the ACL support code in archive_entry is standalone code and unaffected by this. (In particular, it should be possible to manipulate archives containing ACLs even if the ACLs cannot be restored on the current system.) Revision Changes Path 1.6 +3 -0 src/lib/libarchive/archive_platform.h From owner-cvs-all@FreeBSD.ORG Thu Apr 15 18: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 DC39216A4CE; Thu, 15 Apr 2004 18:24:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B90A143D2F; Thu, 15 Apr 2004 18:24:47 -0700 (PDT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G1OlGe067576; Thu, 15 Apr 2004 18:24:47 -0700 (PDT) (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G1OlUd067575; Thu, 15 Apr 2004 18:24:47 -0700 (PDT) (envelope-from eik) Message-Id: <200404160124.i3G1OlUd067575@repoman.freebsd.org> From: Oliver Eikemeier Date: Thu, 15 Apr 2004 18:24:47 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 01:24:48 -0000 eik 2004/04/15 18:24:47 PDT FreeBSD ports repository Modified files: sysutils/pkg_install-devel Makefile distinfo Log: Introduce '*' as the lowest possible version number, so that >=2.* <3.* matches all 2.X versions, even alpha. Fix a malformed conditional, noted by linimon. Revision Changes Path 1.4 +1 -10 ports/sysutils/pkg_install-devel/Makefile 1.3 +2 -2 ports/sysutils/pkg_install-devel/distinfo From owner-cvs-all@FreeBSD.ORG Thu Apr 15 18:35: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 343DE16A4CE; Thu, 15 Apr 2004 18:35:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27A4E43D1D; Thu, 15 Apr 2004 18:35:36 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G1ZZGe069704; Thu, 15 Apr 2004 18:35:35 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G1ZZk4069703; Thu, 15 Apr 2004 18:35:35 -0700 (PDT) (envelope-from znerd) Message-Id: <200404160135.i3G1ZZk4069703@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 18:35:35 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/kmplayer Makefile distinfo pkg-plist ports/multimedia/kmplayer/files patch-kmplayer::kmplayer.desktop X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 01:35:36 -0000 znerd 2004/04/15 18:35:35 PDT FreeBSD ports repository Modified files: multimedia/kmplayer Makefile distinfo pkg-plist multimedia/kmplayer/files patch-kmplayer::kmplayer.desktop Log: - Update to 0.8.2 [1] - Changed maintainer from will@ to ports@ [2] PR: 62403 [1] Submitted by: Michael Ranner [1] Approved by: will [2] Revision Changes Path 1.7 +2 -4 ports/multimedia/kmplayer/Makefile 1.5 +2 -2 ports/multimedia/kmplayer/distinfo 1.3 +9 -9 ports/multimedia/kmplayer/files/patch-kmplayer::kmplayer.desktop 1.4 +80 -16 ports/multimedia/kmplayer/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 18:36: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 3C6CA16A4CE; Thu, 15 Apr 2004 18:36:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19FF943D2D; Thu, 15 Apr 2004 18:36:02 -0700 (PDT) (envelope-from znerd@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G1a1Ge069745; Thu, 15 Apr 2004 18:36:01 -0700 (PDT) (envelope-from znerd@repoman.freebsd.org) Received: (from znerd@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G1a1mD069744; Thu, 15 Apr 2004 18:36:01 -0700 (PDT) (envelope-from znerd) Message-Id: <200404160136.i3G1a1mD069744@repoman.freebsd.org> From: Ernst de Haan Date: Thu, 15 Apr 2004 18:36:01 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/kmplayer/files patch-src-kmplayerrc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 01:36:02 -0000 znerd 2004/04/15 18:36:01 PDT FreeBSD ports repository Added files: multimedia/kmplayer/files patch-src-kmplayerrc Log: Missed in last commit. Revision Changes Path 1.1 +11 -0 ports/multimedia/kmplayer/files/patch-src-kmplayerrc (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 15 18:41: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 2ED2B16A4CE; Thu, 15 Apr 2004 18:41:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A0E143D2F; Thu, 15 Apr 2004 18:41:59 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G1fwGe071275; Thu, 15 Apr 2004 18:41:58 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G1fw85071274; Thu, 15 Apr 2004 18:41:58 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404160141.i3G1fw85071274@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 15 Apr 2004 18:41:58 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/astro Makefile ports/astro/sky2000 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: Fri, 16 Apr 2004 01:41:59 -0000 ijliao 2004/04/15 18:41:58 PDT FreeBSD ports repository Modified files: astro Makefile Added files: astro/sky2000 Makefile distinfo pkg-descr pkg-plist Log: add sky2000 0.2 A binary representation of the Sky2000 star catalog Revision Changes Path 1.79 +1 -0 ports/astro/Makefile 1.1 +26 -0 ports/astro/sky2000/Makefile (new) 1.1 +2 -0 ports/astro/sky2000/distinfo (new) 1.1 +4 -0 ports/astro/sky2000/pkg-descr (new) 1.1 +19 -0 ports/astro/sky2000/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 15 18:42: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 D103616A4CF; Thu, 15 Apr 2004 18:42:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE59643D2F; Thu, 15 Apr 2004 18:42:08 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G1g8Ge071465; Thu, 15 Apr 2004 18:42:08 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G1g8WE071464; Thu, 15 Apr 2004 18:42:08 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404160142.i3G1g8WE071464@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 15 Apr 2004 18:42:08 -0700 (PDT) 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, 16 Apr 2004 01:42:08 -0000 ijliao 2004/04/15 18:42:08 PDT FreeBSD ports repository Modified files: . modules Log: sky2000 --> ports/astro/sky2000 Revision Changes Path 1.9908 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Apr 15 18:42: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 903DF16A4CE; Thu, 15 Apr 2004 18:42:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E8AE43D5E; Thu, 15 Apr 2004 18:42:47 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G1glGe071820; Thu, 15 Apr 2004 18:42:47 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G1gl0U071819; Thu, 15 Apr 2004 18:42:47 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404160142.i3G1gl0U071819@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 15 Apr 2004 18:42:47 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/astro Makefile ports/astro/nova 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: Fri, 16 Apr 2004 01:42:47 -0000 ijliao 2004/04/15 18:42:47 PDT FreeBSD ports repository Modified files: astro Makefile Added files: astro/nova Makefile distinfo pkg-descr pkg-plist Log: add nova 0.4 An Integrated Observational Environment for amatuer astronomers Revision Changes Path 1.80 +1 -0 ports/astro/Makefile 1.1 +37 -0 ports/astro/nova/Makefile (new) 1.1 +2 -0 ports/astro/nova/distinfo (new) 1.1 +14 -0 ports/astro/nova/pkg-descr (new) 1.1 +23 -0 ports/astro/nova/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 15 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 361BB16A4CE; Thu, 15 Apr 2004 18:44:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1272143D39; Thu, 15 Apr 2004 18:44:34 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G1iXGe071944; Thu, 15 Apr 2004 18:44:33 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G1iXim071943; Thu, 15 Apr 2004 18:44:33 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404160144.i3G1iXim071943@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 15 Apr 2004 18:44:33 -0700 (PDT) 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, 16 Apr 2004 01:44:34 -0000 ijliao 2004/04/15 18:44:33 PDT FreeBSD ports repository Modified files: . modules Log: nova --> ports/astro/nova Revision Changes Path 1.9909 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Apr 15 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 07BCD16A4CE; Thu, 15 Apr 2004 18:51:21 -0700 (PDT) Received: from mailout2.pacific.net.au (mailout2.pacific.net.au [61.8.0.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 610E243D1F; Thu, 15 Apr 2004 18:51:20 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.0.87])i3G1pJ5v011113; Fri, 16 Apr 2004 11:51:19 +1000 Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) i3G1pGHW006022; Fri, 16 Apr 2004 11:51:17 +1000 Date: Fri, 16 Apr 2004 11:51:16 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Bill Paul In-Reply-To: <20040415150939.F6628@gamplex.bde.org> Message-ID: <20040416115056.J11580@gamplex.bde.org> References: <20040414220453.7806316A4CF@hub.freebsd.org> <20040415150939.F6628@gamplex.bde.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 cc: John Baldwin Subject: Re: cvs commit: src/sys/compat/ndis hal_var.h kern_ndis.cndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrn X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 01:51:21 -0000 [Resending after bounce.] On Wed, 14 Apr 2004, Bill Paul wrote: > > > Now, I'm sure many people will be seized by the urge to criticize > > > me for doing an end run around our own spinlock implementation, but > > > it makes more sense to do it this way. Well, it does to me anyway. > > > > If you don't use atomic ops with memory barriers somewhere (like the mutex > > implementation does) then NDIS won't work on SMP. Really, IRQL is basically > > spl()s, and we don't use an spl-like model anymore. Just using mutexes for > > locking should give you all the protection you need. > > Protection is all well and good, but I need to provide the right semantics > as well. I need to fool the drivers into thinking they can depend on the > usual Windows behavior, and make it easy to use the Windows data types, > and it's a pain in the butt to do that with regular mutexes. > > And besides, I wanna. > > Now, from subr_ntoskrnl.c: > > __stdcall void > ntoskrnl_lock_dpc(/*lock*/ void) > { > kspin_lock *lock; > > __asm__ __volatile__ ("" : "=c" (lock)); > > while (atomic_cmpset_int((volatile u_int *)lock, 0, 1) == 0) > /* do nothing */; > > return; > } > > __stdcall void > ntoskrnl_unlock_dpc(/*lock*/ void) > { > kspin_lock *lock; > > __asm__ __volatile__ ("" : "=c" (lock)); > > atomic_cmpset_int((volatile u_int *)lock, 1, 0); > > return; > } > > These two routines do the actual work of acquiring and releasing the > lock (they map to KefAcquireSpinLockAtDpcLevel() and > KefReleaseSpinLockFromDpcLevel). Are you saying the former routine > should use atomic_cmpset_acq_int() and the latter atomic_cmpset_rel_int()? I think using the "acq" versions is semantically required. However, using them would make no difference, since this code is very i386-dependent despite it being in in an MI directory, and atomic_cmpset_{acq,rel}_int are just aliases for atomic_cmpset_int on i386's. Using atomic_cmpset_int() for unlocking is bogus, especially since it is used without a loop to check that the store succeeded. It only works if the lock is already held so that the "cmp" part has no effect. This can be expressed more clearly using atomic_store_rel_int() like the normal mutex code does in _release_lock_quick(). The above code also has lots of style bugs. Fixing these problems gives: %%% __stdcall void ntoskrnl_lock_dpc(/* lock */ void) { int *lock; __asm __volatile("" : "=c" (lock)); while (atomic_cmpset_int(lock, 0, 1) == 0) ; } __stdcall void ntoskrnl_unlock_dpc(/* lock */ void) { int *lock; __asm __volatile("" : "=c" (lock)); atomic_store_rel(lock, 0); } %%% The asm is still too fragile. Isn't there a way to directly specify that "int *lock" is an arg passed in %ecx? I copied half of the fixed version from my end run around mutexes in my version of the cy driver, which was in turn half copied from the simple locking (simple_lock interfaces) in RELENG_4. %%% static void CY_LOCK(void) { while (atomic_cmpset_acq_int(&cy_slock, 0, 1) == 0) ; } static void CY_UNLOCK(void) { atomic_store_rel_int(&cy_slock, 0); } %%% This leaves out half of the complications for locking in the cy driver. Simple locks are only used in the SMP case. For UP, locking at this level consists of disabling all interrupts. For SMP, locking consists of the above plus disabling all interrupts on the running CPU. Disabling interrupts on the running CPU is needed to avoid deadlock. I'm not sure how ndis works without it. In the SMP case, interrupts can still be received on other CPUs; if interrupt handling gets as far as CY_LOCK() then CY_LOCK() just spins if necessary. This behaviour is the same as given by ordinary spin mutexes, except: - disabling of interrupts on the running CPU is decoupled from acquiring a spinlock. This makes no difference except to add complications in the cy driver, since the disabling is still required. The difference is that all the other places that acquire a spinlock and hold it for too long don't prevent the cy driver seeing and handling interrupts. Wiht FreeBSD mutexes, holding a spinlock stops seeing interrupts in the UP case; in the SMP case, the interrupts may be seen on other CPUs but their handling may block, with blocking on sched_lock being too common. - it loses all of the mutex debugging facilities in drivers that don't use normal mutexes. This loss is not large, at least in the cy driver, because only a simple leaf lock is involved and mutex debugging facilities often need to be turned off anyway for low level locks. Bruce From owner-cvs-all@FreeBSD.ORG Thu Apr 15 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 094EE16A4CE; Thu, 15 Apr 2004 19:15:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBC5C43D4C; Thu, 15 Apr 2004 19:15:01 -0700 (PDT) (envelope-from alfred@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G2F1Ge078936; Thu, 15 Apr 2004 19:15:01 -0700 (PDT) (envelope-from alfred@repoman.freebsd.org) Received: (from alfred@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G2F1BK078935; Thu, 15 Apr 2004 19:15:01 -0700 (PDT) (envelope-from alfred) Message-Id: <200404160215.i3G2F1BK078935@repoman.freebsd.org> From: Alfred Perlstein Date: Thu, 15 Apr 2004 19:15:01 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/mDNSResponder 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, 16 Apr 2004 02:15:02 -0000 alfred 2004/04/15 19:15:01 PDT FreeBSD ports repository Modified files: net/mDNSResponder Makefile pkg-plist Log: Install binaries needed by some mDNS consumers. Revision Changes Path 1.5 +10 -1 ports/net/mDNSResponder/Makefile 1.2 +5 -0 ports/net/mDNSResponder/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 19:16: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 4F99416A4CE; Thu, 15 Apr 2004 19:16:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2ED5B43D31; Thu, 15 Apr 2004 19:16:29 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G2GSGe079015; Thu, 15 Apr 2004 19:16:28 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G2GSHC079014; Thu, 15 Apr 2004 19:16:28 -0700 (PDT) (envelope-from kris) Message-Id: <200404160216.i3G2GSHC079014@repoman.freebsd.org> From: Kris Kennaway Date: Thu, 15 Apr 2004 19:16:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/xplot 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, 16 Apr 2004 02:16:29 -0000 kris 2004/04/15 19:16:28 PDT FreeBSD ports repository Modified files: math/xplot Makefile pkg-plist Log: Add missing files and manpages Revision Changes Path 1.12 +2 -0 ports/math/xplot/Makefile 1.4 +1 -0 ports/math/xplot/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 19:36: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 39F8116A4CE; Thu, 15 Apr 2004 19:36:33 -0700 (PDT) Received: from postman.arcor.de (postman2.arcor-online.net [151.189.20.157]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2D13D43D3F; Thu, 15 Apr 2004 19:36:32 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from fillmore.dyndns.org (port-212-202-49-130.reverse.qsc.de [212.202.49.130]) (authenticated bits=0)i3G2aUDc019206 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 16 Apr 2004 04:36:30 +0200 (MEST) Received: from [172.16.0.2] (helo=fillmore-labs.com) by fillmore.dyndns.org with esmtp (Exim 4.32; FreeBSD) id 1BEJDN-000JDY-NG; Fri, 16 Apr 2004 04:36:29 +0200 Message-ID: <407F46A9.5080706@fillmore-labs.com> Date: Fri, 16 Apr 2004 04:36:25 +0200 From: Oliver Eikemeier Organization: Fillmore Labs GmbH - http://www.fillmore-labs.com/ MIME-Version: 1.0 To: Ernst de Haan References: <200404152207.i3FM7fej018016@repoman.freebsd.org> In-Reply-To: <200404152207.i3FM7fej018016@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed 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/java/jump 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, 16 Apr 2004 02:36:33 -0000 Ernst de Haan wrote: > - Using PORTDOCS macro PORTDOCS must be relative to DOCSDIR. -Oliver From owner-cvs-all@FreeBSD.ORG Thu Apr 15 19:37: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 110D716A4CE; Thu, 15 Apr 2004 19:37:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E278443D5A; Thu, 15 Apr 2004 19:37:15 -0700 (PDT) (envelope-from ijliao@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G2bFGe083121; Thu, 15 Apr 2004 19:37:15 -0700 (PDT) (envelope-from ijliao@repoman.freebsd.org) Received: (from ijliao@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G2bFaq083120; Thu, 15 Apr 2004 19:37:15 -0700 (PDT) (envelope-from ijliao) Message-Id: <200404160237.i3G2bFaq083120@repoman.freebsd.org> From: Ying-Chieh Liao Date: Thu, 15 Apr 2004 19:37:15 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/guis 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, 16 Apr 2004 02:37:16 -0000 ijliao 2004/04/15 19:37:15 PDT FreeBSD ports repository Modified files: x11-toolkits/guis Makefile Log: fix build on -stable Noticed by: bento via kris Revision Changes Path 1.2 +3 -2 ports/x11-toolkits/guis/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 20:37: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 356E016A4CE; Thu, 15 Apr 2004 20:37:49 -0700 (PDT) Received: from electra.cse.Buffalo.EDU (electra.cse.Buffalo.EDU [128.205.32.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7C7843D54; Thu, 15 Apr 2004 20:37:48 -0700 (PDT) (envelope-from kensmith@cse.Buffalo.EDU) Received: from electra.cse.Buffalo.EDU (kensmith@localhost [127.0.0.1]) i3G3bm8o016782; Thu, 15 Apr 2004 23:37:48 -0400 (EDT) Received: (from kensmith@localhost) by electra.cse.Buffalo.EDU (8.12.10/8.12.9/Submit) id i3G3bmES016781; Thu, 15 Apr 2004 23:37:48 -0400 (EDT) Date: Thu, 15 Apr 2004 23:37:47 -0400 From: Ken Smith To: Marc Fonvieille Message-ID: <20040416033747.GA16273@electra.cse.Buffalo.EDU> References: <200404141231.i3ECVgnb037966@repoman.freebsd.org> <20040415105223.GA771@zaphod.nitro.dk> <20040415205623.GA46098@abigail.blackend.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040415205623.GA46098@abigail.blackend.org> User-Agent: Mutt/1.4.1i cc: cvs-all@FreeBSD.org cc: freebsd-hubs@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: "Simon L. Nielsen" cc: doc-committers@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/articles/hubs 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: Fri, 16 Apr 2004 03:37:49 -0000 On Thu, Apr 15, 2004 at 10:56:24PM +0200, Marc Fonvieille wrote: > On Thu, Apr 15, 2004 at 12:52:23PM +0200, Simon L. Nielsen wrote: > > In the text they are used to describe how much space each release, and > > now the release numbers will be updated without the space requirements > > being updated per release. Therefor new mirrors cannot easily see if > > the space requirements are out of date... > > > > I think you are right. Let's hubs people to confirm it and then I'll > back out the change. To be honest with you given the ports/ section of the FTP site is probably an order of magnitude larger than the next largest thing and tends to have a life of its own we might be best off just putting a date there instead of an OS revision. The CVS repository is probably the same - ports dwarfs the mainline system, and gnats/mailing-lists dwarfs ports. :-) If you agree I can revise the numbers to current estimates and put in "(as of April 2004)". -- 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 Apr 15 20:45: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 975FE16A4CE; Thu, 15 Apr 2004 20:45:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 774C643D53; Thu, 15 Apr 2004 20:45:29 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G3jTGe098250; Thu, 15 Apr 2004 20:45:29 -0700 (PDT) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G3jToI098249; Thu, 15 Apr 2004 20:45:29 -0700 (PDT) (envelope-from alc) Message-Id: <200404160345.i3G3jToI098249@repoman.freebsd.org> From: Alan Cox Date: Thu, 15 Apr 2004 20:45:29 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 03:45:29 -0000 alc 2004/04/15 20:45:29 PDT FreeBSD src repository Modified files: sys/amd64/amd64 pmap.c Log: Set the "global" attribute on the page table entries for the kernel and direct mappings. This shaves a few seconds off of my buildworld times. Discussed with: peter@ Revision Changes Path 1.457 +3 -3 src/sys/amd64/amd64/pmap.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 20: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 B7E0716A4CE; Thu, 15 Apr 2004 20:50:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 97B3243D54; Thu, 15 Apr 2004 20:50:04 -0700 (PDT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G3o4Ge004500; Thu, 15 Apr 2004 20:50:04 -0700 (PDT) (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G3o4HF004499; Thu, 15 Apr 2004 20:50:04 -0700 (PDT) (envelope-from kientzle) Message-Id: <200404160350.i3G3o4HF004499@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 15 Apr 2004 20:50:04 -0700 (PDT) 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, 16 Apr 2004 03:50:04 -0000 kientzle 2004/04/15 20:50:04 PDT FreeBSD src repository Modified files: usr.bin/tar bsdtar.c Log: --help is only supported if you have getopt_long(). This allows bsdtar to compile on FreeBSD 4.x. Revision Changes Path 1.8 +2 -0 src/usr.bin/tar/bsdtar.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 20:51: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 027F716A4CF; Thu, 15 Apr 2004 20:51:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5B1143D4C; Thu, 15 Apr 2004 20:51:38 -0700 (PDT) (envelope-from kientzle@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G3pcGe005494; Thu, 15 Apr 2004 20:51:38 -0700 (PDT) (envelope-from kientzle@repoman.freebsd.org) Received: (from kientzle@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G3pcv4005487; Thu, 15 Apr 2004 20:51:38 -0700 (PDT) (envelope-from kientzle) Message-Id: <200404160351.i3G3pcv4005487@repoman.freebsd.org> From: Tim Kientzle Date: Thu, 15 Apr 2004 20:51:38 -0700 (PDT) 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, 16 Apr 2004 03:51:39 -0000 kientzle 2004/04/15 20:51:38 PDT FreeBSD src repository Modified files: usr.bin/tar bsdtar.c Log: Forced commit to acknowledge Julian Elischer as the source of the previous fix. Revision Changes Path 1.9 +0 -0 src/usr.bin/tar/bsdtar.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 21: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 41EEF16A4CE; Thu, 15 Apr 2004 21:50:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2131443D31; Thu, 15 Apr 2004 21:50:55 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G4osGe017607; Thu, 15 Apr 2004 21:50:54 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G4osNP017606; Thu, 15 Apr 2004 21:50:54 -0700 (PDT) (envelope-from imp) Message-Id: <200404160450.i3G4osNP017606@repoman.freebsd.org> From: Warner Losh Date: Thu, 15 Apr 2004 21:50:54 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pci 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, 16 Apr 2004 04:50:55 -0000 imp 2004/04/15 21:50:54 PDT FreeBSD src repository Modified files: sys/dev/pci pci.c Log: Turn off the power stuff for a little while longer. There appears to be something subtle wrong with it. Revision Changes Path 1.243 +2 -2 src/sys/dev/pci/pci.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 21:53: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 ED4AA16A4CE; Thu, 15 Apr 2004 21:53:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC62743D3F; Thu, 15 Apr 2004 21:53:19 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G4rJGe019359; Thu, 15 Apr 2004 21:53:19 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G4rJmX019358; Thu, 15 Apr 2004 21:53:19 -0700 (PDT) (envelope-from imp) Message-Id: <200404160453.i3G4rJmX019358@repoman.freebsd.org> From: Warner Losh Date: Thu, 15 Apr 2004 21:53:19 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pci 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, 16 Apr 2004 04:53:20 -0000 imp 2004/04/15 21:53:19 PDT FreeBSD src repository Modified files: sys/dev/pci pci.c Log: make the bad bar warning less scary, and toss it behind a bootverbose. It is harmless, but freaking people out. Revision Changes Path 1.244 +3 -2 src/sys/dev/pci/pci.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 22:16: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 BFA7616A4CE; Thu, 15 Apr 2004 22:16:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A001243D48; Thu, 15 Apr 2004 22:16:15 -0700 (PDT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G5GFGe024460; Thu, 15 Apr 2004 22:16:15 -0700 (PDT) (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G5GFIo024459; Thu, 15 Apr 2004 22:16:15 -0700 (PDT) (envelope-from brooks) Message-Id: <200404160516.i3G5GFIo024459@repoman.freebsd.org> From: Brooks Davis Date: Thu, 15 Apr 2004 22:16:15 -0700 (PDT) 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: Fri, 16 Apr 2004 05:16:15 -0000 brooks 2004/04/15 22:16:15 PDT FreeBSD doc repository (src committer) Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: Reserve UID/GID 104 for audio/slimserver port. Revision Changes Path 1.399 +1 -0 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 15 22: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 23A5E16A4CE; Thu, 15 Apr 2004 22:22:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 029F143D2F; Thu, 15 Apr 2004 22:22:12 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G5MBGe026118; Thu, 15 Apr 2004 22:22:11 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G5MBiO026117; Thu, 15 Apr 2004 22:22:11 -0700 (PDT) (envelope-from obrien) Message-Id: <200404160522.i3G5MBiO026117@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 15 Apr 2004 22:22:11 -0700 (PDT) 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 devlist2h.awk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 05:22:12 -0000 obrien 2004/04/15 22:22:11 PDT FreeBSD src repository Modified files: sys/dev/usb devlist2h.awk Log: Correct $FreeBSD$ style. Revision Changes Path 1.3 +2 -2 src/sys/dev/usb/devlist2h.awk From owner-cvs-all@FreeBSD.ORG Thu Apr 15 22:24: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 7707D16A4CF; Thu, 15 Apr 2004 22:24:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 55BE143D6A; Thu, 15 Apr 2004 22:24:46 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G5OkGe026393; Thu, 15 Apr 2004 22:24:46 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G5Ok5c026392; Thu, 15 Apr 2004 22:24:46 -0700 (PDT) (envelope-from obrien) Message-Id: <200404160524.i3G5Ok5c026392@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 15 Apr 2004 22:24:46 -0700 (PDT) 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 usbdevs usbdevs.h usbdevs_data.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, 16 Apr 2004 05:24:46 -0000 obrien 2004/04/15 22:24:46 PDT FreeBSD src repository Modified files: sys/dev/usb if_aue.c usbdevs usbdevs.h usbdevs_data.h Log: Add support for the ADMtek AN8513 USB Ethernet adapter. Submitted by: taxman Revision Changes Path 1.80 +1 -0 src/sys/dev/usb/if_aue.c 1.170 +1 -0 src/sys/dev/usb/usbdevs 1.177 +2 -1 src/sys/dev/usb/usbdevs.h 1.177 +7 -1 src/sys/dev/usb/usbdevs_data.h From owner-cvs-all@FreeBSD.ORG Thu Apr 15 22:34: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 2532C16A4CE; Thu, 15 Apr 2004 22:34:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04C0143D3F; Thu, 15 Apr 2004 22:34:15 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G5YEGe028478; Thu, 15 Apr 2004 22:34:14 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G5YE2t028477; Thu, 15 Apr 2004 22:34:14 -0700 (PDT) (envelope-from obrien) Message-Id: <200404160534.i3G5YE2t028477@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 15 Apr 2004 22:34:14 -0700 (PDT) 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, 16 Apr 2004 05:34:15 -0000 obrien 2004/04/15 22:34:14 PDT FreeBSD src repository Modified files: sys/dev/ed if_ed.c Log: Fix building on L64 machines. Revision Changes Path 1.230 +7 -7 src/sys/dev/ed/if_ed.c From owner-cvs-all@FreeBSD.ORG Thu Apr 15 22: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 196C816A4CE; Thu, 15 Apr 2004 22:59:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EDFEA43D3F; Thu, 15 Apr 2004 22:59:11 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G5xAGe032951; Thu, 15 Apr 2004 22:59:11 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G5xAgN032950; Thu, 15 Apr 2004 22:59:10 -0700 (PDT) (envelope-from obrien) Message-Id: <200404160559.i3G5xAgN032950@repoman.freebsd.org> From: "David E. O'Brien" Date: Thu, 15 Apr 2004 22:59:09 -0700 (PDT) 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 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: Fri, 16 Apr 2004 05:59:12 -0000 obrien 2004/04/15 22:59:09 PDT FreeBSD src repository Modified files: sys/i386/conf NOTES Log: Move ENABLE_ALART to proper place. Submitted by: bde Revision Changes Path 1.1155 +5 -1 src/sys/i386/conf/NOTES From owner-cvs-all@FreeBSD.ORG Thu Apr 15 23:00: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 0770A16A4CE; Thu, 15 Apr 2004 23:00:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F20F943D2D; Thu, 15 Apr 2004 23:00:29 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G60TGe033076; Thu, 15 Apr 2004 23:00:29 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G60R2Y033075; Thu, 15 Apr 2004 23:00:27 -0700 (PDT) (envelope-from marcus) Message-Id: <200404160600.i3G60R2Y033075@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 15 Apr 2004 23:00:27 -0700 (PDT) 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/gtstarter 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: Fri, 16 Apr 2004 06:00:30 -0000 marcus 2004/04/15 23:00:27 PDT FreeBSD ports repository Modified files: x11 Makefile Added files: x11/gtstarter Makefile distinfo pkg-descr pkg-plist Log: Add gtstarter, a port that allows one to start gnome-terminal from a list of configured profiles. PR: 65584 Submitted by: Franz Klammer Revision Changes Path 1.492 +1 -0 ports/x11/Makefile 1.1 +41 -0 ports/x11/gtstarter/Makefile (new) 1.1 +2 -0 ports/x11/gtstarter/distinfo (new) 1.1 +1 -0 ports/x11/gtstarter/pkg-descr (new) 1.1 +7 -0 ports/x11/gtstarter/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Thu Apr 15 23: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 AE79616A4CE; Thu, 15 Apr 2004 23:01:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E66C43D67; Thu, 15 Apr 2004 23:01:02 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G610Ge033176; Thu, 15 Apr 2004 23:01:00 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G60xeQ033169; Thu, 15 Apr 2004 23:00:59 -0700 (PDT) (envelope-from marcus) Message-Id: <200404160600.i3G60xeQ033169@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 15 Apr 2004 23:00:59 -0700 (PDT) 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, 16 Apr 2004 06:01:02 -0000 marcus 2004/04/15 23:00:59 PDT FreeBSD ports repository Modified files: . modules Log: gtstarter --> ports/x11/gtstarter Revision Changes Path 1.9910 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Thu Apr 15 23: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 20BE516A4CE; Thu, 15 Apr 2004 23:09:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3F4243D49; Thu, 15 Apr 2004 23:09:21 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G69LGe036301; Thu, 15 Apr 2004 23:09:21 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G69LYT036300; Thu, 15 Apr 2004 23:09:21 -0700 (PDT) (envelope-from marcus) Message-Id: <200404160609.i3G69LYT036300@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 15 Apr 2004 23:09:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/gnomecontrolcenter2 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, 16 Apr 2004 06:09:22 -0000 marcus 2004/04/15 23:09:21 PDT FreeBSD ports repository Modified files: sysutils/gnomecontrolcenter2 Makefile distinfo pkg-plist Log: Update to 2.6.1. Revision Changes Path 1.68 +1 -2 ports/sysutils/gnomecontrolcenter2/Makefile 1.31 +2 -2 ports/sysutils/gnomecontrolcenter2/distinfo 1.34 +2 -0 ports/sysutils/gnomecontrolcenter2/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 23:18: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 3082416A4CE; Thu, 15 Apr 2004 23:18:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1025943D4C; Thu, 15 Apr 2004 23:18:20 -0700 (PDT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G6IJGe038326; Thu, 15 Apr 2004 23:18:19 -0700 (PDT) (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G6IJju038325; Thu, 15 Apr 2004 23:18:19 -0700 (PDT) (envelope-from den) Message-Id: <200404160618.i3G6IJju038325@repoman.freebsd.org> From: Denis Peplin Date: Thu, 15 Apr 2004 23:18:19 -0700 (PDT) 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 mailing-lists.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, 16 Apr 2004 06:18:20 -0000 den 2004/04/15 23:18:19 PDT FreeBSD doc repository Modified files: ru_RU.KOI8-R/share/sgml mailing-lists.ent Log: MFen 1.32 Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.7 +6 -2 doc/ru_RU.KOI8-R/share/sgml/mailing-lists.ent From owner-cvs-all@FreeBSD.ORG Thu Apr 15 23:23: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 4467616A4CE; Thu, 15 Apr 2004 23:23:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3AB5F43D1F; Thu, 15 Apr 2004 23:23:56 -0700 (PDT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G6NuGe040308; Thu, 15 Apr 2004 23:23:56 -0700 (PDT) (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G6Nt52040307; Thu, 15 Apr 2004 23:23:55 -0700 (PDT) (envelope-from den) Message-Id: <200404160623.i3G6Nt52040307@repoman.freebsd.org> From: Denis Peplin Date: Thu, 15 Apr 2004 23:23:55 -0700 (PDT) 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/config chapter.sgml doc/ru_RU.KOI8-R/books/handbook/eresources chapter.sgml doc/ru_RU.KOI8-R/books/handbook/install chapter.sgml doc/ru_RU.KOI8-R/books/handbook/mirrors chapter.sgml doc/ru_RU.KOI8-R/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: Fri, 16 Apr 2004 06:23:56 -0000 den 2004/04/15 23:23:55 PDT FreeBSD doc repository Modified files: ru_RU.KOI8-R/books/handbook/config chapter.sgml ru_RU.KOI8-R/books/handbook/eresources chapter.sgml ru_RU.KOI8-R/books/handbook/install chapter.sgml ru_RU.KOI8-R/books/handbook/mail chapter.sgml ru_RU.KOI8-R/books/handbook/mirrors chapter.sgml ru_RU.KOI8-R/books/handbook/security chapter.sgml Log: Merge the following from the English version: 1.142 -> 1.144 config/chapter.sgml 1.138 -> 1.140 eresources/chapter.sgml 1.279 -> 1.280 install/chapter.sgml 1.98 -> 1.111 mail/chapter.sgml 1.338 -> 1.339 mirrors/chapter.sgml 1.200 -> 1.203 security/chapter.sgml Obtained from: The FreeBSD Russian Documentation Project Revision Changes Path 1.4 +18 -12 doc/ru_RU.KOI8-R/books/handbook/config/chapter.sgml 1.4 +19 -4 doc/ru_RU.KOI8-R/books/handbook/eresources/chapter.sgml 1.6 +3 -3 doc/ru_RU.KOI8-R/books/handbook/install/chapter.sgml 1.5 +130 -81 doc/ru_RU.KOI8-R/books/handbook/mail/chapter.sgml 1.5 +4 -4 doc/ru_RU.KOI8-R/books/handbook/mirrors/chapter.sgml 1.5 +4 -4 doc/ru_RU.KOI8-R/books/handbook/security/chapter.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 15 23:26: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 238B316A4CE; Thu, 15 Apr 2004 23:26:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 046F943D3F; Thu, 15 Apr 2004 23:26:10 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G6Q9Ge040426; Thu, 15 Apr 2004 23:26:09 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G6Q9TV040425; Thu, 15 Apr 2004 23:26:09 -0700 (PDT) (envelope-from ru) Message-Id: <200404160626.i3G6Q9TV040425@repoman.freebsd.org> From: Ruslan Ermilov Date: Thu, 15 Apr 2004 23:26:09 -0700 (PDT) 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 zero_copy.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: Fri, 16 Apr 2004 06:26:10 -0000 ru 2004/04/15 23:26:09 PDT FreeBSD src repository Modified files: share/man/man9 zero_copy.9 Log: Make whatis(1) happy. Revision Changes Path 1.4 +1 -0 src/share/man/man9/zero_copy.9 From owner-cvs-all@FreeBSD.ORG Thu Apr 15 23: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 420CF16A4CE; Thu, 15 Apr 2004 23:51:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 208D143D53; Thu, 15 Apr 2004 23:51:15 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G6pEGe044916; Thu, 15 Apr 2004 23:51:14 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G6pESl044881; Thu, 15 Apr 2004 23:51:14 -0700 (PDT) (envelope-from marcus) Message-Id: <200404160651.i3G6pESl044881@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 15 Apr 2004 23:51:14 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/libXpm Makefile pkg-plist ports/x11/libXpm/files patch-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: Fri, 16 Apr 2004 06:51:15 -0000 marcus 2004/04/15 23:51:14 PDT FreeBSD ports repository Modified files: x11/libXpm Makefile pkg-plist Added files: x11/libXpm/files patch-lib_Makefile.in Log: Add a missing xpm.h to the plist, and bring in some patches from Freedesktop CVS to fix the Makefile, and install a libXpm.so with the same shared library version as XF86. Revision Changes Path 1.5 +1 -1 ports/x11/libXpm/Makefile 1.1 +29 -0 ports/x11/libXpm/files/patch-lib_Makefile.in (new) 1.2 +2 -1 ports/x11/libXpm/pkg-plist From owner-cvs-all@FreeBSD.ORG Thu Apr 15 23: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 5EB9A16A4CE; Thu, 15 Apr 2004 23:52:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3D2AB43D6A; Thu, 15 Apr 2004 23:52:53 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G6qqGe046454; Thu, 15 Apr 2004 23:52:52 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G6qqe6046453; Thu, 15 Apr 2004 23:52:52 -0700 (PDT) (envelope-from marcus) Message-Id: <200404160652.i3G6qqe6046453@repoman.freebsd.org> From: Joe Marcus Clarke Date: Thu, 15 Apr 2004 23:52:52 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/libXaw 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, 16 Apr 2004 06:52:53 -0000 marcus 2004/04/15 23:52:52 PDT FreeBSD ports repository Modified files: x11-toolkits/libXaw Makefile Log: Add a missing RUN_DEPENDS on libXpm. Reported by: bento via kris Revision Changes Path 1.5 +3 -2 ports/x11-toolkits/libXaw/Makefile From owner-cvs-all@FreeBSD.ORG Thu Apr 15 23: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 2806716A4EF; Thu, 15 Apr 2004 23:56:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 05F6B43D1F; Thu, 15 Apr 2004 23:56:04 -0700 (PDT) (envelope-from den@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G6u3Ge046581; Thu, 15 Apr 2004 23:56:03 -0700 (PDT) (envelope-from den@repoman.freebsd.org) Received: (from den@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G6u3qP046580; Thu, 15 Apr 2004 23:56:03 -0700 (PDT) (envelope-from den) Message-Id: <200404160656.i3G6u3qP046580@repoman.freebsd.org> From: Denis Peplin Date: Thu, 15 Apr 2004 23:56:03 -0700 (PDT) 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: Fri, 16 Apr 2004 06:56:04 -0000 den 2004/04/15 23:56:02 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/faq book.sgml Log: Update version list (add 5.X) Revision Changes Path 1.617 +3 -3 doc/en_US.ISO8859-1/books/faq/book.sgml From owner-cvs-all@FreeBSD.ORG Thu Apr 15 23: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 6F41416A4CE; Thu, 15 Apr 2004 23:58:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EFB643D5A; Thu, 15 Apr 2004 23:58:40 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G6weGe046703; Thu, 15 Apr 2004 23:58:40 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G6wear046702; Thu, 15 Apr 2004 23:58:40 -0700 (PDT) (envelope-from luigi) Message-Id: <200404160658.i3G6wear046702@repoman.freebsd.org> From: Luigi Rizzo Date: Thu, 15 Apr 2004 23:58:40 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/sn if_sn.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 06:58:40 -0000 luigi 2004/04/15 23:58:40 PDT FreeBSD src repository Modified files: sys/dev/sn if_sn.c Log: Remove two variables that became unused because of last commit. Reported by: tinderbox Revision Changes Path 1.39 +0 -2 src/sys/dev/sn/if_sn.c From owner-cvs-all@FreeBSD.ORG Fri Apr 16 00:08: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 47E2916A4CF; Fri, 16 Apr 2004 00:08:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2667543D54; Fri, 16 Apr 2004 00:08:34 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G78XGe049724; Fri, 16 Apr 2004 00:08:33 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G78XL6049723; Fri, 16 Apr 2004 00:08:33 -0700 (PDT) (envelope-from ru) Message-Id: <200404160708.i3G78XL6049723@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 16 Apr 2004 00:08:33 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/groff/tmac doc-common doc-syms X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 07:08:34 -0000 ru 2004/04/16 00:08:33 PDT FreeBSD src repository Modified files: contrib/groff/tmac doc-common doc-syms Log: Pull up latest mdoc(7) changes: : 2004-04-14 Thomas Klausner : : * tmac/doc-common (doc-volume-as-*): Use lowercase names. : (doc-operating-system-*): Updated. : * tmac/doc-syms (doc-str-St-*): Various small fixes. : (doc-str-Lb-*): Add more library names. Revision Changes Path 1.65 +92 -53 src/contrib/groff/tmac/doc-common 1.46 +21 -4 src/contrib/groff/tmac/doc-syms From owner-cvs-all@FreeBSD.ORG Fri Apr 16 00:12: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 2342B16A4CE; Fri, 16 Apr 2004 00:12:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0232943D1D; Fri, 16 Apr 2004 00:12:39 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G7CcGe051588; Fri, 16 Apr 2004 00:12:38 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G7Ccfs051587; Fri, 16 Apr 2004 00:12:38 -0700 (PDT) (envelope-from ru) Message-Id: <200404160712.i3G7Ccfs051587@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 16 Apr 2004 00:12:38 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: FSF Subject: cvs commit: src/contrib/groff/tmac doc-common doc-syms X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 07:12:39 -0000 ru 2004/04/16 00:12:38 PDT FreeBSD src repository Modified files: (Branch: FSF) contrib/groff/tmac doc-common doc-syms Log: Pull up latest mdoc(7) changes. Revision Changes Path 1.1.1.17 +92 -53 src/contrib/groff/tmac/doc-common 1.1.1.6 +21 -4 src/contrib/groff/tmac/doc-syms From owner-cvs-all@FreeBSD.ORG Fri Apr 16 00: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 8E85816A4CE; Fri, 16 Apr 2004 00:16:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E28C43D49; Fri, 16 Apr 2004 00:16:50 -0700 (PDT) (envelope-from demon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G7GoGe051798; Fri, 16 Apr 2004 00:16:50 -0700 (PDT) (envelope-from demon@repoman.freebsd.org) Received: (from demon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G7GoMA051797; Fri, 16 Apr 2004 00:16:50 -0700 (PDT) (envelope-from demon) Message-Id: <200404160716.i3G7GoMA051797@repoman.freebsd.org> From: Dmitry Sivachenko Date: Fri, 16 Apr 2004 00:16:50 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 07:16:50 -0000 demon 2004/04/16 00:16:50 PDT FreeBSD ports repository Modified files: net/rrdtool Makefile Log: Use a copy of libpng shipped with rrdtool. This fixes build with ancient version of perl (5.005). I have no spare machine with that version of perl to develop a proper fix. Noticed by: many Revision Changes Path 1.32 +1 -3 ports/net/rrdtool/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 00:19: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 419F816A4CE; Fri, 16 Apr 2004 00:19:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F25D43D4C; Fri, 16 Apr 2004 00:19:14 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G7JDGe051865; Fri, 16 Apr 2004 00:19:13 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G7JDsl051864; Fri, 16 Apr 2004 00:19:13 -0700 (PDT) (envelope-from ru) Message-Id: <200404160719.i3G7JDsl051864@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 16 Apr 2004 00:19:13 -0700 (PDT) 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/groff/tmac mdoc.local X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 07:19:14 -0000 ru 2004/04/16 00:19:13 PDT FreeBSD src repository Modified files: gnu/usr.bin/groff/tmac mdoc.local Log: Removed local bits that are now part of the standard mdoc(7) package. Revision Changes Path 1.41 +1 -8 src/gnu/usr.bin/groff/tmac/mdoc.local From owner-cvs-all@FreeBSD.ORG Fri Apr 16 00:25:19 2004 Return-Path: Delivered-To: cvs-all@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 618) id AD62016A4D2; Fri, 16 Apr 2004 00:25:19 -0700 (PDT) In-Reply-To: <20040416115056.J11580@gamplex.bde.org> from Bruce Evans at "Apr 16, 2004 11:51:16 am" To: bde@zeta.org.au (Bruce Evans) Date: Fri, 16 Apr 2004 00:25:19 -0700 (PDT) X-Mailer: ELM [version 2.4ME+ PL54 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Message-Id: <20040416072519.AD62016A4D2@hub.freebsd.org> From: wpaul@FreeBSD.ORG (Bill Paul) 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/compat/ndis hal_var.h kern_ndis.c ndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrn X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 07:25:19 -0000 [...] > > These two routines do the actual work of acquiring and releasing the > > lock (they map to KefAcquireSpinLockAtDpcLevel() and > > KefReleaseSpinLockFromDpcLevel). Are you saying the former routine > > should use atomic_cmpset_acq_int() and the latter atomic_cmpset_rel_int()? > > I think using the "acq" versions is semantically required. However, using > them would make no difference, since this code is very i386-dependent > despite it being in in an MI directory, and atomic_cmpset_{acq,rel}_int > are just aliases for atomic_cmpset_int on i386's. > > Using atomic_cmpset_int() for unlocking is bogus, especially since it is > used without a loop to check that the store succeeded. It only works if > the lock is already held so that the "cmp" part has no effect. This can > be expressed more clearly using atomic_store_rel_int() like the normal > mutex code does in _release_lock_quick(). ntoskrnl_unlock_dpc() should only ever be called when a lock is already held. If it's ever called without a lock held, that's a bug. > The above code also has lots of style bugs. > > Fixing these problems gives: > > %%% > __stdcall void > ntoskrnl_lock_dpc(/* lock */ void) > { > int *lock; > > __asm __volatile("" : "=c" (lock)); > while (atomic_cmpset_int(lock, 0, 1) == 0) > ; > } > > __stdcall void > ntoskrnl_unlock_dpc(/* lock */ void) > { > int *lock; > > __asm __volatile("" : "=c" (lock)); > atomic_store_rel(lock, 0); > } > %%% Noted. > The asm is still too fragile. Isn't there a way to directly specify that > "int *lock" is an arg passed in %ecx? Yes: upgrade to gcc 3.4, which has __attribute__((__fastcall__)). Of course, first you have to wait for gcc 3.4 to be released. People have suggested various different hacks to duplicate _fastcall. semantics. This is the only one which produced the correct result in all cases that I tested, with optimization turned on. You can engage in a certain amount of deception with the __regparm()__ attribute, but gcc has certain ideas about what arguments go into which registers when you use regparm which don't agree with the way _fastcall does things. (This is why I don't use __regparm(3)__: it will use %ecx and %edx, but it will also drag %eax into the mix.) > I copied half of the fixed version from my end run around mutexes in > my version of the cy driver, which was in turn half copied from the > simple locking (simple_lock interfaces) in RELENG_4. > > %%% > static void > CY_LOCK(void) > { > while (atomic_cmpset_acq_int(&cy_slock, 0, 1) == 0) > ; > } > static void > CY_UNLOCK(void) > { > atomic_store_rel_int(&cy_slock, 0); > } > %%% > > This leaves out half of the complications for locking in the cy driver. > Simple locks are only used in the SMP case. For UP, locking at this > level consists of disabling all interrupts. For SMP, locking consists > of the above plus disabling all interrupts on the running CPU. Disabling > interrupts on the running CPU is needed to avoid deadlock. I'm not sure > how ndis works without it. At this point, I am forced to conclude that you didn't actually read the code, since if you had, you might have understood. I will try to explain it again, hopefully in a way that makes it clear how Windows does things. First of all, note that the Windows API has the following routines: KeRaiseIrql() -- raise IRQL to specified level, return previous level KeLowerIrql() -- lower IRQL to specified level KeAcquireSpinLockAtDpcLevel() -- do the atomic set portion of acquiring a spin lock -- assumes you're already at DISPATCH_LEVEL KeReleaseSpinLockFromDpcLevel() -- do the atomic clear portion of acquiring a spinlock -- assumes you want to remain at DISPATCH_LEVEL KeAcquireSpinLock() -- perform oldirql = KeRaiseIrql(DISPATCH_LEVEL) and then KeAcquireSpinLockAtDpcLevel() KeReleaseSpinLock() -- peform KeReleaseSpinLockFromDpcLevel() and then KeLowerIrql(oldirql) NdisAcquireSpinLock() -- wrapper for KeAcquireSpinLock() NdisReleaseSpinLock() -- wrapper for KeReleaseSpinLock() NdisDprAcquireSpinLock() -- wrapper for KeAcquireSpinLockAtDpcLevel() NdisDprReleaseSpinLock() -- wrapper for KeReleaseSpinLockFromDpcLevel() Note that you can quickly find the documentation for any of these functions by punching their names (minus the parens) into Google; it will take you straight to the MSDN 'manual page' for the routine. ntoskrnl_lock_dpc() and ntoskrnl_unlock_dpc() map to KeAcquireSpinLockAtDpcLevel() and KeReleaseSpinLockFromDpcLevel(), respectively. The idea behind these two routines is that if you're already running with IRQL == DISPATCH_LEVEL, then you don't need to futz with disabling preemption before spinning on the lock because preemption has already been disabled. The NDIS spec says that NDIS interrupt handlers (along with a few other things) run at DISPATCH_LEVEL, so you already know preemption is disabled. You _could_ call the full blown KeAcquireSpinLock() routine in this case, but it would perform a useless KeRaiseIrql(DISPATCH_LEVEL) before spinning on the lock. Trying to raise the IRQL to DISPATCH_LEVEL when you're already at DISPATCH_LEVEL is harmless, but wastes cycles, so Microsoft tells you to just use KeAcquireSpinLockAtDpcLevel() (or NdisDprAcquireSpinLock()) instead. Sadly, things are complicated by the fact that many of the KeXXX routines listed above are in fact just macros around KfXXX routines which, at least on the x86 arch, live in the HAL. For example, while you would expect KeAcquireSpinLock() to be a function that lives in ntoskrnl.exe (and hence subr_ntoskrnl.c), it's actually just a macro that calls KfAcquireSpinLock(), which lives in HAL.dll (and hence subr_hal.c). To add to the confusion, KeAcquireSpinLockAtDpcLevel() is also a macro that calls a function named KefAcquireSpinLockAtDpcLevel(), however this function actually _does_ live in ntoskrnl.exe (and hence in subr_ntoskrnl.c). Logically, all the spinlock routines should go in the same module, but thanks to Microsoft, they don't. (Of course, things may be entirely different on the amd64 or ia64 arches: the only way to know for sure is to slog through the Windows DDK header files, which is exactly what I did.) Now, had you taken the time to actually read subr_hal,c, you would have seen the following: __stdcall uint8_t hal_lock(/*lock*/void) { kspin_lock *lock; uint8_t oldirql; __asm__ __volatile__ ("" : "=c" (lock)); /* I am so going to hell for this. */ if (hal_irql() > DISPATCH_LEVEL) panic("IRQL_NOT_LESS_THAN_OR_EQUAL"); oldirql = FASTCALL1(hal_raise_irql, DISPATCH_LEVEL); FASTCALL1(ntoskrnl_lock_dpc, lock); return(oldirql); } __stdcall void hal_unlock(/*lock, newirql*/void) { kspin_lock *lock; uint8_t newirql; __asm__ __volatile__ ("" : "=c" (lock), "=d" (newirql)); FASTCALL1(ntoskrnl_unlock_dpc, lock); FASTCALL1(hal_lower_irql, newirql); return; } At the bottom of the file, you can see how these map to the Windows API functions: { "KfAcquireSpinLock", (FUNC)hal_lock }, { "KfReleaseSpinLock", (FUNC)hal_unlock }, The subr_hal.c module also contains hal_raise_irql()/hal_lower_irql() routines. Hopefully this makes things a little clearler. If you have any further answers, I will be happy to provide complete and detailed questions. -Bill -- ============================================================================= -Bill Paul (510) 749-2329 | Senior Engineer, Master of Unix-Fu wpaul@windriver.com | Wind River Systems ============================================================================= you're just BEGGING to face the moose ============================================================================= From owner-cvs-all@FreeBSD.ORG Fri Apr 16 00: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 666B916A4CE; Fri, 16 Apr 2004 00:44:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 456C243D45; Fri, 16 Apr 2004 00:44:35 -0700 (PDT) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G7iZGe057781; Fri, 16 Apr 2004 00:44:35 -0700 (PDT) (envelope-from ale@repoman.freebsd.org) Received: (from ale@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G7iZZi057780; Fri, 16 Apr 2004 00:44:35 -0700 (PDT) (envelope-from ale) Message-Id: <200404160744.i3G7iZZi057780@repoman.freebsd.org> From: Alex Dupre Date: Fri, 16 Apr 2004 00:44:34 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/php4 Makefile distinfo ports/lang/php4/files patch-ext::pcre::php_pcre.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 07:44:35 -0000 ale 2004/04/16 00:44:34 PDT FreeBSD ports repository Modified files: lang/php4 Makefile distinfo Added files: lang/php4/files patch-ext::pcre::php_pcre.c Log: Update to 4.3.6 release. - Fix build curl dependency - Fix (hopefully) the core dump on apache restart - Fix DaylightSavingTime issue Revision Changes Path 1.64 +1 -2 ports/lang/php4/Makefile 1.11 +2 -2 ports/lang/php4/distinfo 1.1 +44 -0 ports/lang/php4/files/patch-ext::pcre::php_pcre.c (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 00:47: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 B36F716A4CE; Fri, 16 Apr 2004 00:47:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A608643D31; Fri, 16 Apr 2004 00:47:21 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G7lLGe064006; Fri, 16 Apr 2004 00:47:21 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G7lLDs064005; Fri, 16 Apr 2004 00:47:21 -0700 (PDT) (envelope-from krion) Message-Id: <200404160747.i3G7lLDs064005@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 00:47:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/gogo-petit Makefileports/devel/silc-toolkit Makefile ports/irc/ircd-hybrid-ru Makefile ports/net/silc-client Makefile ports/net/silc-server Makefile ports/net/silky Makefile ports/net/ysm Makefile ports/net-mgmt/bpft 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, 16 Apr 2004 07:47:21 -0000 krion 2004/04/16 00:47:21 PDT FreeBSD ports repository Modified files: audio/gogo-petit Makefile devel/silc-toolkit Makefile irc/ircd-hybrid-ru Makefile net/silc-client Makefile net/silc-server Makefile net/silky Makefile net/ysm Makefile net-mgmt/bpft Makefile Log: - Change maintainer's email PR: ports/65602 Submitted by: maintainer Revision Changes Path 1.4 +1 -1 ports/audio/gogo-petit/Makefile 1.18 +1 -1 ports/devel/silc-toolkit/Makefile 1.4 +1 -1 ports/irc/ircd-hybrid-ru/Makefile 1.17 +1 -1 ports/net-mgmt/bpft/Makefile 1.36 +1 -1 ports/net/silc-client/Makefile 1.29 +1 -1 ports/net/silc-server/Makefile 1.8 +1 -1 ports/net/silky/Makefile 1.16 +1 -1 ports/net/ysm/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 00:48: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 7C44B16A4CE; Fri, 16 Apr 2004 00:48:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 596B543D31; Fri, 16 Apr 2004 00:48:24 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G7mOGe064051; Fri, 16 Apr 2004 00:48:24 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G7mOLJ064050; Fri, 16 Apr 2004 00:48:24 -0700 (PDT) (envelope-from krion) Message-Id: <200404160748.i3G7mOLJ064050@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 00:48:24 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/p5-LJ-Cache 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, 16 Apr 2004 07:48:24 -0000 krion 2004/04/16 00:48:24 PDT FreeBSD ports repository Modified files: sysutils/p5-LJ-Cache Makefile Log: - Reset MAINTAINER to ports@FreeBSD.org PR: ports/65603 Submitted by: michael johnson Revision Changes Path 1.6 +1 -1 ports/sysutils/p5-LJ-Cache/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 00:49: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 4282816A4CE; Fri, 16 Apr 2004 00:49:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 201B343D2D; Fri, 16 Apr 2004 00:49:23 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G7nMGe064091; Fri, 16 Apr 2004 00:49:22 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G7nMO8064090; Fri, 16 Apr 2004 00:49:22 -0700 (PDT) (envelope-from krion) Message-Id: <200404160749.i3G7nMO8064090@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 00:49:22 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/mkxvcd 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, 16 Apr 2004 07:49:23 -0000 krion 2004/04/16 00:49:22 PDT FreeBSD ports repository Modified files: multimedia/mkxvcd Makefile Log: - Reset MAINTAINER to ports@FreeBSD.org PR: ports/65604 Submitted by: michael johnson Revision Changes Path 1.3 +1 -1 ports/multimedia/mkxvcd/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 00: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 2CB9616A4CE; Fri, 16 Apr 2004 00:51:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B1B743D49; Fri, 16 Apr 2004 00:51:28 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G7pRGe064939; Fri, 16 Apr 2004 00:51:27 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G7pRiZ064935; Fri, 16 Apr 2004 00:51:27 -0700 (PDT) (envelope-from krion) Message-Id: <200404160751.i3G7pRiZ064935@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 00:51:27 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/gbottler 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: Fri, 16 Apr 2004 07:51:28 -0000 krion 2004/04/16 00:51:27 PDT FreeBSD ports repository Modified files: games/gbottler Makefile pkg-descr Log: - Change MASTER_SITES - Fix WWW: PR: ports/65597 Submitted by: maintainer Revision Changes Path 1.3 +2 -1 ports/games/gbottler/Makefile 1.2 +1 -1 ports/games/gbottler/pkg-descr From owner-cvs-all@FreeBSD.ORG Fri Apr 16 00:53: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 5D63716A4CE; Fri, 16 Apr 2004 00:53:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B6B143D53; Fri, 16 Apr 2004 00:53:19 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G7rIGe065986; Fri, 16 Apr 2004 00:53:18 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G7rIWp065985; Fri, 16 Apr 2004 00:53:18 -0700 (PDT) (envelope-from krion) Message-Id: <200404160753.i3G7rIWp065985@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 00:53:18 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/destroy 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, 16 Apr 2004 07:53:19 -0000 krion 2004/04/16 00:53:18 PDT FreeBSD ports repository Modified files: security/destroy Makefile distinfo Log: - Update to version 20040415 PR: ports/65586 Submitted by: maintainer Revision Changes Path 1.5 +1 -1 ports/security/destroy/Makefile 1.3 +2 -2 ports/security/destroy/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 16 01: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 6C21E16A4CE; Fri, 16 Apr 2004 01:01:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6044943D1F; Fri, 16 Apr 2004 01:01:28 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G81SGe067130; Fri, 16 Apr 2004 01:01:28 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G81SXZ067126; Fri, 16 Apr 2004 01:01:28 -0700 (PDT) (envelope-from krion) Message-Id: <200404160801.i3G81SXZ067126@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 01:01:27 -0700 (PDT) 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 pkg-plist ports/games/neverball/files patch-Makefile patch-data::sets.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, 16 Apr 2004 08:01:28 -0000 krion 2004/04/16 01:01:27 PDT FreeBSD ports repository Modified files: games/neverball Makefile distinfo pkg-plist games/neverball/files patch-Makefile Added files: games/neverball/files patch-data::sets.txt Log: - Update to version 1.2.1 PR: ports/65596 Submitted by: maintainer Revision Changes Path 1.9 +9 -5 ports/games/neverball/Makefile 1.7 +2 -2 ports/games/neverball/distinfo 1.4 +98 -15 ports/games/neverball/files/patch-Makefile 1.1 +9 -0 ports/games/neverball/files/patch-data::sets.txt (new) 1.3 +98 -0 ports/games/neverball/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 01: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 2CF8216A4CE; Fri, 16 Apr 2004 01:08:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0B77143D1F; Fri, 16 Apr 2004 01:08:12 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G88BGe069179; Fri, 16 Apr 2004 01:08:11 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G88B30069178; Fri, 16 Apr 2004 01:08:11 -0700 (PDT) (envelope-from krion) Message-Id: <200404160808.i3G88B30069178@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 01:08:11 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/biology/p5-AcePerl/files FREEBSD_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: Fri, 16 Apr 2004 08:08:12 -0000 krion 2004/04/16 01:08:11 PDT FreeBSD ports repository Modified files: biology/p5-AcePerl/files FREEBSD_DEF Log: - Honor CFLAGS PR: ports/65599 Submitted by: michael johnson Revision Changes Path 1.3 +1 -1 ports/biology/p5-AcePerl/files/FREEBSD_DEF From owner-cvs-all@FreeBSD.ORG Fri Apr 16 01:09: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 050F016A4CE; Fri, 16 Apr 2004 01:09:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D766943D1D; Fri, 16 Apr 2004 01:09:25 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G89PGe069253; Fri, 16 Apr 2004 01:09:25 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G89PGp069252; Fri, 16 Apr 2004 01:09:25 -0700 (PDT) (envelope-from pav) Message-Id: <200404160809.i3G89PGp069252@repoman.freebsd.org> From: Pav Lucistnik Date: Fri, 16 Apr 2004 01:09:25 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/astro/gdesklets-goodweather Makefile ports/astro/gdesklets-weather 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, 16 Apr 2004 08:09:26 -0000 pav 2004/04/16 01:09:25 PDT FreeBSD ports repository Modified files: astro/gdesklets-goodweather Makefile astro/gdesklets-weather Makefile Log: - Take over maintainership Approved by: Jeremy Messenger (previous maintainer) Revision Changes Path 1.8 +1 -1 ports/astro/gdesklets-goodweather/Makefile 1.7 +1 -1 ports/astro/gdesklets-weather/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 01:11: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 C9E7D16A4CE; Fri, 16 Apr 2004 01:11:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE68643D5A; Fri, 16 Apr 2004 01:11:42 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G8BgGe070494; Fri, 16 Apr 2004 01:11:42 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G8BgLp070493; Fri, 16 Apr 2004 01:11:42 -0700 (PDT) (envelope-from krion) Message-Id: <200404160811.i3G8BgLp070493@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 01:11:42 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases Makefileports/databases/p5-Cache-Memcached 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: Fri, 16 Apr 2004 08:11:42 -0000 krion 2004/04/16 01:11:42 PDT FreeBSD ports repository Modified files: databases Makefile Added files: databases/p5-Cache-Memcached Makefile distinfo pkg-descr pkg-plist Log: Add p5-Cache-Memcached 1.0.12, perl API for memcached, a distributed memory cache daemon. PR: ports/65600 Submitted by: michael johnson Revision Changes Path 1.335 +1 -0 ports/databases/Makefile 1.1 +38 -0 ports/databases/p5-Cache-Memcached/Makefile (new) 1.1 +2 -0 ports/databases/p5-Cache-Memcached/distinfo (new) 1.1 +6 -0 ports/databases/p5-Cache-Memcached/pkg-descr (new) 1.1 +5 -0 ports/databases/p5-Cache-Memcached/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 01:11: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 260B616A4D4; Fri, 16 Apr 2004 01:11:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02A0F43D3F; Fri, 16 Apr 2004 01:11:56 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G8BtGe070734; Fri, 16 Apr 2004 01:11:55 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G8BtLs070730; Fri, 16 Apr 2004 01:11:55 -0700 (PDT) (envelope-from krion) Message-Id: <200404160811.i3G8BtLs070730@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 01:11:55 -0700 (PDT) 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, 16 Apr 2004 08:11:56 -0000 krion 2004/04/16 01:11:55 PDT FreeBSD ports repository Modified files: . modules Log: p5-Cache-Memcached --> ports/databases/p5-Cache-Memcached Revision Changes Path 1.9911 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 16 01: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 DD4A816A4CE; Fri, 16 Apr 2004 01:14:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BABE043D3F; Fri, 16 Apr 2004 01:14:34 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G8EYGe071289; Fri, 16 Apr 2004 01:14:34 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G8EYpj071288; Fri, 16 Apr 2004 01:14:34 -0700 (PDT) (envelope-from luigi) Message-Id: <200404160814.i3G8EYpj071288@repoman.freebsd.org> From: Luigi Rizzo Date: Fri, 16 Apr 2004 01:14:34 -0700 (PDT) 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.c route.c 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, 16 Apr 2004 08:14:35 -0000 luigi 2004/04/16 01:14:34 PDT FreeBSD src repository Modified files: sys/net if.c route.c rtsock.c Log: Consistently use ifaddr_byindex() to access the link-level address of an interface. No functional change. On passing, comment a likely bug in net/rtsock.c:sysctl_ifmalist() which, if confirmed, would deserve to be fixed and MFC'ed Revision Changes Path 1.187 +1 -1 src/sys/net/if.c 1.98 +1 -1 src/sys/net/route.c 1.101 +21 -17 src/sys/net/rtsock.c From owner-cvs-all@FreeBSD.ORG Fri Apr 16 01: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 C33EA16A4CE; Fri, 16 Apr 2004 01:15:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A0F6D43D45; Fri, 16 Apr 2004 01:15:37 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G8FbGe071412; Fri, 16 Apr 2004 01:15:37 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G8FbMA071411; Fri, 16 Apr 2004 01:15:37 -0700 (PDT) (envelope-from luigi) Message-Id: <200404160815.i3G8FbMA071411@repoman.freebsd.org> From: Luigi Rizzo Date: Fri, 16 Apr 2004 01:15:37 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph ng_fec.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 08:15:37 -0000 luigi 2004/04/16 01:15:37 PDT FreeBSD src repository Modified files: sys/netgraph ng_fec.c Log: Consistently use ifaddr_byindex() to access the link-level address of an interface. No functional change. On passing, comment an useless invocation of TAILQ_INIT(&ifp->if_addrhead) which could probably be removed in the interest of clarity. Revision Changes Path 1.8 +4 -4 src/sys/netgraph/ng_fec.c From owner-cvs-all@FreeBSD.ORG Fri Apr 16 01:15: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 DD2B716A4CF; Fri, 16 Apr 2004 01:15:44 -0700 (PDT) Received: from abigail.blackend.org (blackend.org [212.11.35.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79FF243D31; Fri, 16 Apr 2004 01:15:43 -0700 (PDT) (envelope-from marc@blackend.org) Received: from abigail.blackend.org (localhost [127.0.0.1]) by abigail.blackend.org (8.12.9/8.12.3) with ESMTP id i3G8Faui085707; Fri, 16 Apr 2004 10:15:36 +0200 (CEST) (envelope-from marc@abigail.blackend.org) Received: (from marc@localhost) by abigail.blackend.org (8.12.9/8.12.3/Submit) id i3G8FagW085706; Fri, 16 Apr 2004 10:15:36 +0200 (CEST) (envelope-from marc) Date: Fri, 16 Apr 2004 10:15:35 +0200 From: Marc Fonvieille To: Ken Smith Message-ID: <20040416081535.GB84377@abigail.blackend.org> References: <200404141231.i3ECVgnb037966@repoman.freebsd.org> <20040415105223.GA771@zaphod.nitro.dk> <20040415205623.GA46098@abigail.blackend.org> <20040416033747.GA16273@electra.cse.Buffalo.EDU> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040416033747.GA16273@electra.cse.Buffalo.EDU> User-Agent: Mutt/1.4.2.1i X-Useless-Header: blackend.org X-Operating-System: FreeBSD 4.8-STABLE cc: "Simon L. Nielsen" cc: freebsd-hubs@FreeBSD.org cc: cvs-doc@FreeBSD.org cc: cvs-all@FreeBSD.org cc: doc-committers@FreeBSD.org Subject: Re: cvs commit: doc/en_US.ISO8859-1/articles/hubs 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: Fri, 16 Apr 2004 08:15:45 -0000 On Thu, Apr 15, 2004 at 11:37:47PM -0400, Ken Smith wrote: > > To be honest with you given the ports/ section of the FTP site is > probably an order of magnitude larger than the next largest thing and > tends to have a life of its own we might be best off just putting a > date there instead of an OS revision. The CVS repository is probably > the same - ports dwarfs the mainline system, and gnats/mailing-lists > dwarfs ports. :-) > > If you agree I can revise the numbers to current estimates and put > in "(as of April 2004)". > You have more knowledge than me on this point, I think you should take care of it :) Marc From owner-cvs-all@FreeBSD.ORG Fri Apr 16 01:16: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 E078916A4D2; Fri, 16 Apr 2004 01:16:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BDC2043D45; Fri, 16 Apr 2004 01:16:30 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G8GUGe071475; Fri, 16 Apr 2004 01:16:30 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G8GUCb071474; Fri, 16 Apr 2004 01:16:30 -0700 (PDT) (envelope-from krion) Message-Id: <200404160816.i3G8GUCb071474@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 01:16:30 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-fm/gentoo 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, 16 Apr 2004 08:16:31 -0000 krion 2004/04/16 01:16:30 PDT FreeBSD ports repository Modified files: x11-fm/gentoo Makefile distinfo pkg-plist Log: - Update to 0.11.48 - Respect CFLAGS and use DOCSDIR PR: ports/65591 Submitted by: michael johnson Revision Changes Path 1.41 +2 -2 ports/x11-fm/gentoo/Makefile 1.29 +2 -2 ports/x11-fm/gentoo/distinfo 1.10 +94 -92 ports/x11-fm/gentoo/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 01:43: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 E8C4616A4CE; Fri, 16 Apr 2004 01:43:43 -0700 (PDT) Received: from spider.deepcore.dk (cpe.atm2-0-53484.0x50a6c9a6.abnxx9.customer.tele.dk [80.166.201.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2B86343D5D; Fri, 16 Apr 2004 01:43:42 -0700 (PDT) (envelope-from sos@DeepCore.dk) Received: from DeepCore.dk (sos.deepcore.dk [194.192.25.130]) by spider.deepcore.dk (8.12.11/8.12.10) with ESMTP id i3G8hZrG002163; Fri, 16 Apr 2004 10:43:40 +0200 (CEST) (envelope-from sos@DeepCore.dk) Message-ID: <407F9CB7.3020407@DeepCore.dk> Date: Fri, 16 Apr 2004 10:43:35 +0200 From: =?UTF-8?B?U8O4cmVuIFNjaG1pZHQ=?= User-Agent: Mozilla Thunderbird 0.5 (X11/20040329) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Nate Lawson References: <20040413094519.7230616A4DB@hub.freebsd.org> <20040415162313.S92883@root.org> In-Reply-To: <20040415162313.S92883@root.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-mail-scanned: by DeepCore Virus & Spam killer v1.4 cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: =?UTF-8?B?77+9?= Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-lowlevel.c ata-pci.c ata-pci.h 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: Fri, 16 Apr 2004 08:43:44 -0000 Nate Lawson wrote: > On Tue, 13 Apr 2004, S?ren Schmidt wrote: > >> FreeBSD src repository >> >> Modified files: >> sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c >> ata-chipset.c ata-disk.c ata-dma.c >> ata-isa.c ata-lowlevel.c ata-pci.c >> ata-pci.h ata-queue.c >> Log: >> Add support for the Promise command sequencer present on all modern Promise >> controllers (PDC203** PDC206**). >> >> This also adds preliminary support for the Promise SX4/SX4000 but *only* >> as a "normal" Promise ATA controller (ATA RAID's are supported though >> but only RAID0, RAID1 and RAID0+1). >> >> This cuts off yet another 5-8% of the command overhead on promise controllers, >> making them the fastest we have ever had support for. >> >> Work is now continuing to add support for this in ATA RAID, to accellerate >> ATA RAID quite a bit on these controllers, and especially the SX4/SX4000 >> series as they have quite a few tricks in there.. >> >> This commit also adds a few fixes to the SATA code needed for proper support. >> >> Revision Changes Path >> 1.208 +4 -11 src/sys/dev/ata/ata-all.c >> 1.78 +10 -3 src/sys/dev/ata/ata-all.h >> 1.23 +1 -0 src/sys/dev/ata/ata-card.c >> 1.12 +1 -0 src/sys/dev/ata/ata-cbus.c >> 1.68 +474 -141 src/sys/dev/ata/ata-chipset.c >> 1.172 +11 -6 src/sys/dev/ata/ata-disk.c >> 1.126 +33 -2 src/sys/dev/ata/ata-dma.c >> 1.21 +1 -0 src/sys/dev/ata/ata-isa.c >> 1.32 +55 -51 src/sys/dev/ata/ata-lowlevel.c >> 1.78 +24 -52 src/sys/dev/ata/ata-pci.c >> 1.29 +8 -2 src/sys/dev/ata/ata-pci.h >> 1.26 +3 -2 src/sys/dev/ata/ata-queue.c > > > Also... > > Includes fixes to avoid checking the ATA_FLAG_54_58 bit, fixing LBA > detection: > Submitted by: rk not true, rk submitted the problem not the code. > Includes fixes for resource allocation fixing at least ICH3: > Submitted by: imp not true, warner had semilar patches but these where done before I knew they existed (and btw they are not exactly the same) -- -Søren From owner-cvs-all@FreeBSD.ORG Fri Apr 16 02: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 5A65716A4CE; Fri, 16 Apr 2004 02:07:37 -0700 (PDT) Received: from srv01.sparkit.no (srv01.sparkit.no [193.69.116.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BE1043D5A; Fri, 16 Apr 2004 02:07:36 -0700 (PDT) (envelope-from eivind@FreeBSD.org) Received: from ws ([193.69.114.88]) by srv01.sparkit.no (8.12.10/8.12.10) with ESMTP id i3G97UcZ056768; Fri, 16 Apr 2004 11:07:30 +0200 (CEST) (envelope-from eivind@FreeBSD.org) Received: from ws (localhost [127.0.0.1]) by ws (8.12.9/8.12.10) with ESMTP id i3G96Mea001763; Fri, 16 Apr 2004 09:06:22 GMT (envelope-from eivind@ws) Received: (from eivind@localhost) by ws (8.12.9/8.12.10/Submit) id i3G96Mgd001700; Fri, 16 Apr 2004 09:06:22 GMT (envelope-from eivind) Date: Fri, 16 Apr 2004 09:05:20 +0000 From: Eivind Eklund To: Luigi Rizzo Message-ID: <20040416090520.GA1194@FreeBSD.org> References: <200404160814.i3G8EYpj071288@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404160814.i3G8EYpj071288@repoman.freebsd.org> User-Agent: Mutt/1.5.4i cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if.c route.c 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, 16 Apr 2004 09:07:37 -0000 On Fri, Apr 16, 2004 at 01:14:34AM -0700, Luigi Rizzo wrote: > luigi 2004/04/16 01:14:34 PDT > > FreeBSD src repository > > Modified files: > sys/net if.c route.c rtsock.c > Log: > Consistently use ifaddr_byindex() to access the link-level address > of an interface. No functional change. [...] > strlcpy(ifp->if_xname, new_name, sizeof(ifp->if_xname)); > - ifa = TAILQ_FIRST(&ifp->if_addrhead); > + ifa = ifaddr_byindex(ifp->if_index); Given that all of the changes in this commit end of the form ifaddr_byindex(ifp->if_index), I'd suggest an abstraction might be in order. Something like #define ifp2ifaddr(p) ifaddr_byindex((p)->if_index) in order to isolate this case (which, as you say, can be implemented several ways). I'm not sure ifp2ifaddr is a good name - that was just the first that came to mind. Eivind. From owner-cvs-all@FreeBSD.ORG Fri Apr 16 02: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 CA41616A4CE; Fri, 16 Apr 2004 02:17:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB2DF43D55; Fri, 16 Apr 2004 02:17:55 -0700 (PDT) (envelope-from dinoex@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G9HtGe077132; Fri, 16 Apr 2004 02:17:55 -0700 (PDT) (envelope-from dinoex@repoman.freebsd.org) Received: (from dinoex@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G9HtFV077131; Fri, 16 Apr 2004 02:17:55 -0700 (PDT) (envelope-from dinoex) Message-Id: <200404160917.i3G9HtFV077131@repoman.freebsd.org> From: Dirk Meyer Date: Fri, 16 Apr 2004 02:17:55 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc32 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, 16 Apr 2004 09:17:56 -0000 dinoex 2004/04/16 02:17:55 PDT FreeBSD ports repository Modified files: lang/gcc32 Makefile Log: - fix typo in condition. Reported by: kris Revision Changes Path 1.169 +1 -1 ports/lang/gcc32/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 02:26: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 462C616A4CE; Fri, 16 Apr 2004 02:26:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 272B943D41; Fri, 16 Apr 2004 02:26:34 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G9QXGe079122; Fri, 16 Apr 2004 02:26:33 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G9QXaq079121; Fri, 16 Apr 2004 02:26:33 -0700 (PDT) (envelope-from arved) Message-Id: <200404160926.i3G9QXaq079121@repoman.freebsd.org> From: Tilman Linneweh Date: Fri, 16 Apr 2004 02:26:33 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/randrext Makefile distinfo ports/x11/libSM Makefile distinfo ports/x11/libICE 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, 16 Apr 2004 09:26:34 -0000 arved 2004/04/16 02:26:33 PDT FreeBSD ports repository Modified files: x11/randrext Makefile distinfo x11/libSM Makefile distinfo x11/libICE Makefile distinfo Log: Update from prerelease to the real release Revision Changes Path 1.5 +2 -4 ports/x11/libICE/Makefile 1.3 +2 -2 ports/x11/libICE/distinfo 1.7 +2 -4 ports/x11/libSM/Makefile 1.3 +2 -2 ports/x11/libSM/distinfo 1.4 +2 -4 ports/x11/randrext/Makefile 1.3 +2 -2 ports/x11/randrext/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 16 02:29: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 1B10D16A4CE; Fri, 16 Apr 2004 02:29:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F097C43D48; Fri, 16 Apr 2004 02:29:45 -0700 (PDT) (envelope-from eivind@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G9TjGe079276; Fri, 16 Apr 2004 02:29:45 -0700 (PDT) (envelope-from eivind@repoman.freebsd.org) Received: (from eivind@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G9TjDo079275; Fri, 16 Apr 2004 02:29:45 -0700 (PDT) (envelope-from eivind) Message-Id: <200404160929.i3G9TjDo079275@repoman.freebsd.org> From: Eivind Eklund Date: Fri, 16 Apr 2004 02:29:45 -0700 (PDT) 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 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: Fri, 16 Apr 2004 09:29:46 -0000 eivind 2004/04/16 02:29:45 PDT FreeBSD src repository Modified files: sys/i386/conf NOTES Log: Improve comment (SMB bus -> System Management Bus) Revision Changes Path 1.1156 +1 -1 src/sys/i386/conf/NOTES From owner-cvs-all@FreeBSD.ORG Fri Apr 16 02: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 5068A16A549; Fri, 16 Apr 2004 02:31:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31AA343D3F; Fri, 16 Apr 2004 02:31:18 -0700 (PDT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G9VHGe080094; Fri, 16 Apr 2004 02:31:17 -0700 (PDT) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G9VHKU080090; Fri, 16 Apr 2004 02:31:17 -0700 (PDT) (envelope-from brueffer) Message-Id: <200404160931.i3G9VHKU080090@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 16 Apr 2004 02:31:17 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/accton accton.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, 16 Apr 2004 09:31:18 -0000 brueffer 2004/04/16 02:31:17 PDT FreeBSD src repository (doc committer) Modified files: usr.sbin/accton accton.8 Log: o split a sentence to make it more understandable o mention that the acctfile has to exist for accton to work [1] o add reference to acct.5 PR: 65071 [1] (slightly modified) Submitted by: Marc Silver X-MFC after: re approval Revision Changes Path 1.13 +8 -2 src/usr.sbin/accton/accton.8 From owner-cvs-all@FreeBSD.ORG Fri Apr 16 02: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 6E8FE16A4CE; Fri, 16 Apr 2004 02:34:59 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4953D43D39; Fri, 16 Apr 2004 02:34:59 -0700 (PDT) (envelope-from rizzo@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3G9Yxgd013940; Fri, 16 Apr 2004 02:34:59 -0700 (PDT) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3G9YvQb013937; Fri, 16 Apr 2004 02:34:57 -0700 (PDT) (envelope-from rizzo) Date: Fri, 16 Apr 2004 02:34:57 -0700 From: Luigi Rizzo To: Eivind Eklund Message-ID: <20040416023457.A12665@xorpc.icir.org> References: <200404160814.i3G8EYpj071288@repoman.freebsd.org> <20040416090520.GA1194@FreeBSD.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <20040416090520.GA1194@FreeBSD.org>; from eivind@FreeBSD.org on Fri, Apr 16, 2004 at 09:05:20AM +0000 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if.c route.c 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, 16 Apr 2004 09:35:00 -0000 On Fri, Apr 16, 2004 at 09:05:20AM +0000, Eivind Eklund wrote: ... > > strlcpy(ifp->if_xname, new_name, sizeof(ifp->if_xname)); > > - ifa = TAILQ_FIRST(&ifp->if_addrhead); > > + ifa = ifaddr_byindex(ifp->if_index); > > Given that all of the changes in this commit end of the form > ifaddr_byindex(ifp->if_index), I'd suggest an abstraction might be in > order. Something like > > #define ifp2ifaddr(p) ifaddr_byindex((p)->if_index) > ifaddr_byindex() is already a macro, so i'd rather not have the double indirection. Besides, in an ideal world, we could store ifindexes instead of ifp's in many places (routing entries, ifaddrs) which would considerably reduce the complexity of locking, refcounting and garbage collection. > in order to isolate this case (which, as you say, can be implemented > several ways). I'm not sure ifp2ifaddr is a good name - that was just > the first that came to mind. Speaking of names, i am still unclear if ifaddr_byindex() is meant to give you only the link-level address of the interface, or the entire list of addresses associated to the interface (which does occur, but only as an accident) cheers luigi From owner-cvs-all@FreeBSD.ORG Fri Apr 16 02:58: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 1A8E516A4CE; Fri, 16 Apr 2004 02:58:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1E3C43D39; Fri, 16 Apr 2004 02:58:27 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3G9wRGe085349; Fri, 16 Apr 2004 02:58:27 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3G9wRcP085348; Fri, 16 Apr 2004 02:58:27 -0700 (PDT) (envelope-from arved) Message-Id: <200404160958.i3G9wRcP085348@repoman.freebsd.org> From: Tilman Linneweh Date: Fri, 16 Apr 2004 02:58:27 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/jack 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, 16 Apr 2004 09:58:28 -0000 arved 2004/04/16 02:58:27 PDT FreeBSD ports repository Modified files: audio/jack Makefile Log: Mark broken on 5.x with libc_r. Reported by: "Christer Solskogen" Revision Changes Path 1.12 +7 -1 ports/audio/jack/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 03:06: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 9984216A4CE; Fri, 16 Apr 2004 03:06:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8EE9E43D2F; Fri, 16 Apr 2004 03:06:43 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GA6hGe088567; Fri, 16 Apr 2004 03:06:43 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GA6h9u088566; Fri, 16 Apr 2004 03:06:43 -0700 (PDT) (envelope-from arved) Message-Id: <200404161006.i3GA6h9u088566@repoman.freebsd.org> From: Tilman Linneweh Date: Fri, 16 Apr 2004 03:06:43 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/XFree86-4-libraries Makefile pkg-plist patch-lib-Xau-Imakefile X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 10:06:43 -0000 arved 2004/04/16 03:06:43 PDT FreeBSD ports repository Modified files: x11/XFree86-4-libraries Makefile pkg-plist Added files: x11/XFree86-4-libraries/files patch-lib-XRes-Imakefile patch-lib-Xau-Imakefile Log: Install a shared version of libXau and libXRes. They are necessary to compile GNOME 2.6(libgtop2 and libwnck) on amd64 (and probably ia64). Bump PORTREVISION Reviewed by: x11 (earlier version) Revision Changes Path 1.137 +3 -2 ports/x11/XFree86-4-libraries/Makefile 1.1 +11 -0 ports/x11/XFree86-4-libraries/files/patch-lib-XRes-Imakefile (new) 1.1 +11 -0 ports/x11/XFree86-4-libraries/files/patch-lib-Xau-Imakefile (new) 1.47 +4 -0 ports/x11/XFree86-4-libraries/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 03:18: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 E42D316A4CE; Fri, 16 Apr 2004 03:18:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6E5143D45; Fri, 16 Apr 2004 03:18:13 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GAIDGe090624; Fri, 16 Apr 2004 03:18:13 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GAIDHo090623; Fri, 16 Apr 2004 03:18:13 -0700 (PDT) (envelope-from arved) Message-Id: <200404161018.i3GAIDHo090623@repoman.freebsd.org> From: Tilman Linneweh Date: Fri, 16 Apr 2004 03:18:13 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/db41 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, 16 Apr 2004 10:18:14 -0000 arved 2004/04/16 03:18:13 PDT FreeBSD ports repository Modified files: databases/db41 Makefile Log: Workaround a problem with fast-mutexes on amd64 Reported by: tjr PR: 64886 Investigative work by: perky Workaround suggested by: maintainer Revision Changes Path 1.54 +8 -2 ports/databases/db41/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 03:28: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 8CA6616A4CE; Fri, 16 Apr 2004 03:28:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E47343D5E; Fri, 16 Apr 2004 03:28:54 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GASsGe092653; Fri, 16 Apr 2004 03:28:54 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GASsNY092652; Fri, 16 Apr 2004 03:28:54 -0700 (PDT) (envelope-from luigi) Message-Id: <200404161028.i3GASsNY092652@repoman.freebsd.org> From: Luigi Rizzo Date: Fri, 16 Apr 2004 03:28:54 -0700 (PDT) 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_var.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, 16 Apr 2004 10:28:54 -0000 luigi 2004/04/16 03:28:54 PDT FreeBSD src repository Modified files: sys/net if_var.h Log: Documented the intended usage of if_addrhead and ifaddr_byindex() This commit only changes comments. Nothing to recompile. Revision Changes Path 1.71 +11 -3 src/sys/net/if_var.h From owner-cvs-all@FreeBSD.ORG Fri Apr 16 03: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 394A116A4CE; Fri, 16 Apr 2004 03:32:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B13643D1D; Fri, 16 Apr 2004 03:32:14 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GAWDGe094418; Fri, 16 Apr 2004 03:32:13 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GAWDWS094414; Fri, 16 Apr 2004 03:32:13 -0700 (PDT) (envelope-from luigi) Message-Id: <200404161032.i3GAWDWS094414@repoman.freebsd.org> From: Luigi Rizzo Date: Fri, 16 Apr 2004 03:32:13 -0700 (PDT) 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.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 10:32:14 -0000 luigi 2004/04/16 03:32:13 PDT FreeBSD src repository Modified files: sys/net if.c Log: Use if_link instead of the alias if_list, and change a for() into the TAILQ_FOREACH() form. Comment the need to store the same info (mac address for ethernet-type devices) in two different places. No functional changes. Even the compiler output should be unmodified by this change. Revision Changes Path 1.188 +6 -1 src/sys/net/if.c From owner-cvs-all@FreeBSD.ORG Fri Apr 16 03:46: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 A871B16A4CE for ; Fri, 16 Apr 2004 03:46:15 -0700 (PDT) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id B368E43D53 for ; Fri, 16 Apr 2004 03:46:14 -0700 (PDT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru id i3GAiQ9i031257 for cvs-all@FreeBSD.org.checked; (8.12.8/vak/2.1) Fri, 16 Apr 2004 14:44:26 +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 i3GAha6W031194; (8.12.8/vak/2.1) Fri, 16 Apr 2004 14:43:37 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <407FB8CD.6000904@cronyx.ru> Date: Fri, 16 Apr 2004 14:43: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: Luigi Rizzo References: <200404152031.i3FKVBlD095276@repoman.freebsd.org> In-Reply-To: <200404152031.i3FKVBlD095276@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/dev/arl if_arl.c src/sys/dev/cs if_cs.c src/sys/dev/ed if_ed.c src/sys/dev/ex if_ex.c src/sys/dev/fe src/sys/dev/sn if_sn.c src/sys/dev/wl if_wl.c src/sys/dev/xe ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 10:46:15 -0000 Luigi Rizzo wrote: > This change is done to simplify locking because now almost none of the > drivers uses this field. The exceptions are "ct" "ctau" and "cx" > where i am not sure if i can remove that part. > > These two doesn't touch if_addrhead by them self since 4x. Only RELENG_3 code works with if_addrhead to make driver unload possible, since there was no API to detach interface. This code probably should be removed in the future, but it is still here since this makes maintaning of code much more easy. rik From owner-cvs-all@FreeBSD.ORG Fri Apr 16 03:54: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 F14C616A4CE; Fri, 16 Apr 2004 03:54:20 -0700 (PDT) Received: from smtp.des.no (flood.des.no [217.116.83.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CE2C43D41; Fri, 16 Apr 2004 03:54:20 -0700 (PDT) (envelope-from des@des.no) Received: by smtp.des.no (Pony Express, from userid 666) id D6346530D; Fri, 16 Apr 2004 12:54:18 +0200 (CEST) Received: from dwp.des.no (des.no [80.203.228.37]) by smtp.des.no (Pony Express) with ESMTP id 05E485309; Fri, 16 Apr 2004 12:54:11 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 2602) id B7A4133C6C; Fri, 16 Apr 2004 12:54:11 +0200 (CEST) To: Luigi Rizzo References: <200404160814.i3G8EYpj071288@repoman.freebsd.org> <20040416090520.GA1194@FreeBSD.org> <20040416023457.A12665@xorpc.icir.org> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Fri, 16 Apr 2004 12:54:11 +0200 In-Reply-To: <20040416023457.A12665@xorpc.icir.org> (Luigi Rizzo's message of "Fri, 16 Apr 2004 02:34:57 -0700") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on flood.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=AWL autolearn=no version=2.63 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Eivind Eklund cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if.c route.c 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, 16 Apr 2004 10:54:21 -0000 Luigi Rizzo writes: > On Fri, Apr 16, 2004 at 09:05:20AM +0000, Eivind Eklund wrote: > > #define ifp2ifaddr(p) ifaddr_byindex((p)->if_index) > ifaddr_byindex() is already a macro, so i'd rather not have the > double indirection. What difference does it make? DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Fri Apr 16 03: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 95F5816A4CE; Fri, 16 Apr 2004 03:59:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8DEC343D41; Fri, 16 Apr 2004 03:59:29 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GAxTGe098830; Fri, 16 Apr 2004 03:59:29 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GAxT9J098829; Fri, 16 Apr 2004 03:59:29 -0700 (PDT) (envelope-from thierry) Message-Id: <200404161059.i3GAxT9J098829@repoman.freebsd.org> From: Thierry Thomas Date: Fri, 16 Apr 2004 03:59:29 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/french/facturier Makefile pkg-deinstall pkg-message pkg-plist ports/french/facturier/files pkg-message.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, 16 Apr 2004 10:59:29 -0000 thierry 2004/04/16 03:59:29 PDT FreeBSD ports repository Modified files: french/facturier Makefile pkg-deinstall pkg-plist Added files: french/facturier/files pkg-message.in Removed files: french/facturier pkg-message Log: Fix a deinstallation problem noted on dosirak + utilize USE_APACHE and let it run smoothly with Apache2 + utilize PORTDOCS + display a clean PKGMESSAGE when installing a package. Approved by: mat (mentor). Revision Changes Path 1.8 +18 -11 ports/french/facturier/Makefile 1.1 +27 -0 ports/french/facturier/files/pkg-message.in (new) 1.2 +17 -5 ports/french/facturier/pkg-deinstall 1.3 +0 -27 ports/french/facturier/pkg-message (dead) 1.3 +0 -4 ports/french/facturier/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 04: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 314C116A4CE; Fri, 16 Apr 2004 04:05:39 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0CC5E43D5D; Fri, 16 Apr 2004 04:05:39 -0700 (PDT) (envelope-from rizzo@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3GB5agd022664; Fri, 16 Apr 2004 04:05:36 -0700 (PDT) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3GB5aEt022663; Fri, 16 Apr 2004 04:05:36 -0700 (PDT) (envelope-from rizzo) Date: Fri, 16 Apr 2004 04:05:36 -0700 From: Luigi Rizzo To: =?iso-8859-1?Q?Dag-Erling_Sm=F8rgrav?= Message-ID: <20040416040536.A22418@xorpc.icir.org> References: <200404160814.i3G8EYpj071288@repoman.freebsd.org> <20040416090520.GA1194@FreeBSD.org> <20040416023457.A12665@xorpc.icir.org> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.2.5.1i In-Reply-To: ; from des@des.no on Fri, Apr 16, 2004 at 12:54:11PM +0200 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Eivind Eklund cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if.c route.c 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, 16 Apr 2004 11:05:39 -0000 On Fri, Apr 16, 2004 at 12:54:11PM +0200, Dag-Erling Smørgrav wrote: > Luigi Rizzo writes: > > On Fri, Apr 16, 2004 at 09:05:20AM +0000, Eivind Eklund wrote: > > > #define ifp2ifaddr(p) ifaddr_byindex((p)->if_index) > > ifaddr_byindex() is already a macro, so i'd rather not have the > > double indirection. > > What difference does it make? it is two different ways of getting the same info, which is precisely what i was trying to remove in the first place. But the most important thing is that we have to decide whether the search key is the ifp or the ifindex, and use one consistently. cheers luigi From owner-cvs-all@FreeBSD.ORG Fri Apr 16 04:08: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 499AE16A4CE; Fri, 16 Apr 2004 04:08:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A3D543D55; Fri, 16 Apr 2004 04:08:38 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GB8cGe001930; Fri, 16 Apr 2004 04:08:38 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GB8bMj001929; Fri, 16 Apr 2004 04:08:37 -0700 (PDT) (envelope-from kris) Message-Id: <200404161108.i3GB8bMj001929@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 16 Apr 2004 04:08:37 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/deskutils/xmdiary 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, 16 Apr 2004 11:08:38 -0000 kris 2004/04/16 04:08:37 PDT FreeBSD ports repository Modified files: deskutils/xmdiary pkg-plist Log: Add missing file Revision Changes Path 1.4 +1 -0 ports/deskutils/xmdiary/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 04: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 E501D16A4CF; Fri, 16 Apr 2004 04:14:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C54A343D46; Fri, 16 Apr 2004 04:14:15 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GBEFGe003845; Fri, 16 Apr 2004 04:14:15 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GBEFM8003844; Fri, 16 Apr 2004 04:14:15 -0700 (PDT) (envelope-from obrien) Message-Id: <200404161114.i3GBEFM8003844@repoman.freebsd.org> From: "David E. O'Brien" Date: Fri, 16 Apr 2004 04:14:15 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/gdb6 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, 16 Apr 2004 11:14:16 -0000 obrien 2004/04/16 04:14:15 PDT FreeBSD ports repository Modified files: devel/gdb6 Makefile distinfo Log: Update to the 2003-04-13 snapshot. Revision Changes Path 1.25 +1 -1 ports/devel/gdb6/Makefile 1.17 +2 -2 ports/devel/gdb6/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 16 04: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 2E57B16A4CE for ; Fri, 16 Apr 2004 04:31:39 -0700 (PDT) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1CDE343D39 for ; Fri, 16 Apr 2004 04:31:38 -0700 (PDT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru id i3GBT6LS033664 for cvs-all@FreeBSD.ORG.checked; (8.12.8/vak/2.1) Fri, 16 Apr 2004 15:29:06 +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 i3GBRw6J033579; (8.12.8/vak/2.1) Fri, 16 Apr 2004 15:27:58 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <407FC333.6000901@cronyx.ru> Date: Fri, 16 Apr 2004 15:27:47 +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: =?UTF-8?B?U8O4cmVuIFNjaG1pZHQ=?= References: <20040413094519.7230616A4DB@hub.freebsd.org> <20040415162313.S92883@root.org> <407F9CB7.3020407@DeepCore.dk> In-Reply-To: <407F9CB7.3020407@DeepCore.dk> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit cc: cvs-src@FreeBSD.ORG cc: =?UTF-8?B?77+9?= cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: Nate Lawson Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-lowlevel.c ata-pci.c ata-pci.h 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: Fri, 16 Apr 2004 11:31:39 -0000 Søren Schmidt wrote: >> Includes fixes to avoid checking the ATA_FLAG_54_58 bit, fixing LBA >> detection: >> Submitted by: rk > > not true, rk submitted the problem not the code. Probably you are talking about me "rik" :-) I realy doesn't submit any code. I just tell my suggestions that checking this bit is bad idea according to ata spec, and according last ata specs it shouldn't be used at all since it obsoleted. So I didn't submit any fixes about it. Only idea. So this may be "Asked by" or "Pointed by" :-) Code I submitted was to make ata driver more verbose about CHS mode. They still are not there and should be revised to make them possible to apply to current code. By the way, may be it would be a nice idea to warn users that they have ATA_FLAG_54_58 bit off, and device will work in LBA mode not in CHS as was before? rik From owner-cvs-all@FreeBSD.ORG Fri Apr 16 04: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 845A816A4CE; Fri, 16 Apr 2004 04:42:03 -0700 (PDT) Received: from spider.deepcore.dk (cpe.atm2-0-53484.0x50a6c9a6.abnxx9.customer.tele.dk [80.166.201.166]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FB6243D55; Fri, 16 Apr 2004 04:42:02 -0700 (PDT) (envelope-from sos@DeepCore.dk) Received: from DeepCore.dk (sos.deepcore.dk [194.192.25.130]) by spider.deepcore.dk (8.12.11/8.12.10) with ESMTP id i3GBfkRn003825; Fri, 16 Apr 2004 13:41:52 +0200 (CEST) (envelope-from sos@DeepCore.dk) Message-ID: <407FC67A.7090306@DeepCore.dk> Date: Fri, 16 Apr 2004 13:41:46 +0200 From: =?UTF-8?B?U8O4cmVuIFNjaG1pZHQ=?= User-Agent: Mozilla Thunderbird 0.5 (X11/20040329) X-Accept-Language: en-us, en MIME-Version: 1.0 To: Roman Kurakin References: <20040413094519.7230616A4DB@hub.freebsd.org> <20040415162313.S92883@root.org> <407F9CB7.3020407@DeepCore.dk> <407FC333.6000901@cronyx.ru> In-Reply-To: <407FC333.6000901@cronyx.ru> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit X-mail-scanned: by DeepCore Virus & Spam killer v1.4 cc: cvs-src@FreeBSD.ORG cc: =?UTF-8?B?77+9?= cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG cc: Nate Lawson Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-lowlevel.c ata-pci.c ata-pci.h 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: Fri, 16 Apr 2004 11:42:03 -0000 Roman Kurakin wrote: > Søren Schmidt wrote: > >>> Includes fixes to avoid checking the ATA_FLAG_54_58 bit, fixing LBA >>> detection: >>> Submitted by: rk >> >> >> not true, rk submitted the problem not the code. > > > Probably you are talking about me "rik" :-) > I realy doesn't submit any code. I just tell my suggestions that > checking this bit > is bad idea according to ata spec, and according last ata specs it > shouldn't be > used at all since it obsoleted. So I didn't submit any fixes about it. > Only idea. > So this may be "Asked by" or "Pointed by" :-) Right, it may break ATA on old devices though, but I guess none of these drives are in use any more. The real problem here is that I cannot just use the latest ATA specs (it would make my life *alot* simpler though :) ), I need to make things work that are compatible to at least back to ATA rev3 so just relying on things be obsoleted in the latest spec revision doesn't cut it.. > Code I submitted was to make ata driver more verbose about CHS mode. > They still are not there and should be revised to make them possible to > apply to current code. I'll think about it, but since CHS mode is almost no longer used anyways and the info can pretty easily be calculated from the LBA's printed.. > By the way, may be it would be a nice idea to warn users that they have > ATA_FLAG_54_58 bit off, and device will work in LBA mode not > in CHS as was before? Users wont notice at all, from users perspective the disk is just a bunch of sectors, the interface method used to talk to the disk is nowhere to be seen... -- -Søren From owner-cvs-all@FreeBSD.ORG Fri Apr 16 05: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 7030316A4CF; Fri, 16 Apr 2004 05:10:52 -0700 (PDT) Received: from mailout2.pacific.net.au (mailout2.pacific.net.au [61.8.0.85]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F46843D48; Fri, 16 Apr 2004 05:10:51 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from mailproxy2.pacific.net.au (mailproxy2.pacific.net.au [61.8.0.87])i3GCAo5v014560; Fri, 16 Apr 2004 22:10:50 +1000 Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) i3GCAlHW023981; Fri, 16 Apr 2004 22:10:48 +1000 Date: Fri, 16 Apr 2004 22:10:46 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: Bill Paul In-Reply-To: <20040416072519.AD62016A4D2@hub.freebsd.org> Message-ID: <20040416205956.K13468@gamplex.bde.org> References: <20040416072519.AD62016A4D2@hub.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 cc: jhb@FreeBSD.org Subject: Re: cvs commit: src/sys/compat/ndis hal_var.h kern_ndis.cndis_var.h ntoskrnl_var.h pe_var.h subr_hal.c subr_ndis.c subr_ntoskrn X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 12:10:52 -0000 On Fri, 16 Apr 2004, Bill Paul wrote: > [...] [...] > > Using atomic_cmpset_int() for unlocking is bogus, especially since it is > > used without a loop to check that the store succeeded. It only works if > > the lock is already held so that the "cmp" part has no effect. This can > > be expressed more clearly using atomic_store_rel_int() like the normal > > mutex code does in _release_lock_quick(). > > ntoskrnl_unlock_dpc() should only ever be called when a lock is already > held. If it's ever called without a lock held, that's a bug. That's why the code is bogus. To release a lock that is known to be held, just store_rel to it. > > The asm is still too fragile. Isn't there a way to directly specify that > > "int *lock" is an arg passed in %ecx? > > Yes: upgrade to gcc 3.4, which has __attribute__((__fastcall__)). Of course, > first you have to wait for gcc 3.4 to be released. > > People have suggested various different hacks to duplicate _fastcall. > semantics. This is the only one which produced the correct result in all > cases that I tested, with optimization turned on. You can engage in a > certain amount of deception with the __regparm()__ attribute, but gcc has > certain ideas about what arguments go into which registers when you use > regparm which don't agree with the way _fastcall does things. (This is > why I don't use __regparm(3)__: it will use %ecx and %edx, but it will > also drag %eax into the mix.) __regparm__(3) on i386's is documented to cause the first 3 function parameters to be in %eax, %edx and %ecx, in that order. In function definitions you can use it after declaring placeholders for register parameters that aren't actually passed. E.g.: __stdcall __attribute__((__regparm__(3))) void ntoskrnl_lock_dpc(int eax /* placeholder */, int edx /* placeholder */, kspin_lock *lock) { while (atomic_cmpset_int(lock, 0, 1) == 0) ; } Passing only a nonstandard subset of the registers specified by regparm is harder, but this is already handled by doing it in asm. (The asm has similar (but much larger) fragility to that fixed above; the call should be in asm too to prevent clobbering the parameter registers, and such clobbering is very close -- the call is through a pointer and nothing prevents loading the pointer into a parameter register.) > > I copied half of the fixed version from my end run around mutexes in > > my version of the cy driver, which was in turn half copied from the > > simple locking (simple_lock interfaces) in RELENG_4. > [...] > At this point, I am forced to conclude that you didn't actually read > the code, since if you had, you might have understood. I will try to > explain it again, hopefully in a way that makes it clear how Windows > does things. That's more than I want to understand about Windows :-). This thread was just about correct implementation of the lowest level of spinlocks when not using mutexes. Bruce From owner-cvs-all@FreeBSD.ORG Fri Apr 16 05:23: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 5B51616A4CE; Fri, 16 Apr 2004 05:23:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B89E43D4C; Fri, 16 Apr 2004 05:23:15 -0700 (PDT) (envelope-from mat@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GCNEGe024604; Fri, 16 Apr 2004 05:23:15 -0700 (PDT) (envelope-from mat@repoman.freebsd.org) Received: (from mat@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GCNEI4024603; Fri, 16 Apr 2004 05:23:14 -0700 (PDT) (envelope-from mat) Message-Id: <200404161223.i3GCNEI4024603@repoman.freebsd.org> From: Mathieu Arnold Date: Fri, 16 Apr 2004 05:23:14 -0700 (PDT) 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-Fiscal-Year 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, 16 Apr 2004 12:23:15 -0000 mat 2004/04/16 05:23:14 PDT FreeBSD ports repository Modified files: devel/p5-DateTime-Fiscal-Year pkg-plist Log: Fix plist Reminded by: dosirak.kr Revision Changes Path 1.2 +1 -1 ports/devel/p5-DateTime-Fiscal-Year/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 05:24: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 81E0D16A4CF; Fri, 16 Apr 2004 05:24:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 61D9B43D1F; Fri, 16 Apr 2004 05:24:43 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GCOhGe024648; Fri, 16 Apr 2004 05:24:43 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GCOh2X024647; Fri, 16 Apr 2004 05:24:43 -0700 (PDT) (envelope-from clement) Message-Id: <200404161224.i3GCOh2X024647@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 05:24:43 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/apache2 Makefile.modules.3rd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 12:24:43 -0000 clement 2004/04/16 05:24:43 PDT FreeBSD ports repository Added files: www/apache2 Makefile.modules.3rd Log: Add Makefile.modules.3rd, which should simplify apache modules porting. It can not be used with USE_APACHE knob. Most important knobs: WANT_APACHE= {13,2} Apache version required. if undefined, both apache version are allowed. AP_FAST_BUILD Do ${APXS} -c ${APXS} -i for you AP_GENPLIST Autogenerate a _SIMPLE_ plist: See future commits to know how to use this file. Revision Changes Path 1.1 +99 -0 ports/www/apache2/Makefile.modules.3rd (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 05:31: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 32C1616A4CE for ; Fri, 16 Apr 2004 05:31:25 -0700 (PDT) Received: from hanoi.cronyx.ru (hanoi.cronyx.ru [144.206.181.53]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3751B43D2F for ; Fri, 16 Apr 2004 05:31:24 -0700 (PDT) (envelope-from rik@cronyx.ru) Received: (from root@localhost) by hanoi.cronyx.ru id i3GCT4Ht036759 for cvs-all@FreeBSD.ORG.checked; (8.12.8/vak/2.1) Fri, 16 Apr 2004 16:29:04 +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 i3GCPgv4036474; (8.12.8/vak/2.1) Fri, 16 Apr 2004 16:25:42 +0400 (MSD) (envelope-from rik@cronyx.ru) Message-ID: <407FD0BB.1080307@cronyx.ru> Date: Fri, 16 Apr 2004 16:25:31 +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: =?UTF-8?B?U8O4cmVuIFNjaG1pZHQ=?= References: <20040413094519.7230616A4DB@hub.freebsd.org> <20040415162313.S92883@root.org> <407F9CB7.3020407@DeepCore.dk> <407FC333.6000901@cronyx.ru> <407FC67A.7090306@DeepCore.dk> In-Reply-To: <407FC67A.7090306@DeepCore.dk> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 8bit cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-lowlevel.c ata-pci.c ata-pci.h 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: Fri, 16 Apr 2004 12:31:25 -0000 Søren Schmidt wrote: [...] > Right, it may break ATA on old devices though, but I guess none of > these drives are in use any more. > The real problem here is that I cannot just use the latest ATA specs > (it would make my life *alot* simpler though :) ), I need to make > things work that are compatible to at least back to ATA rev3 so just > relying on things be obsoleted in the latest spec revision doesn't cut > it.. Thats why I was trying to find out other ways to solve my problem rather than insist to remove this check :-) >> Code I submitted was to make ata driver more verbose about CHS mode. >> They still are not there and should be revised to make them possible to >> apply to current code. > > I'll think about it, but since CHS mode is almost no longer used anyways > and the info can pretty easily be calculated from the LBA's printed.. Yes, but hex format or printing CHS and LBA request would save some amount of time. >> By the way, may be it would be a nice idea to warn users that they have >> ATA_FLAG_54_58 bit off, and device will work in LBA mode not >> in CHS as was before? > > Users wont notice at all, from users perspective the disk is just a > bunch of sectors, > the interface method used to talk to the disk is nowhere to be seen... Hm, I noticed interface method :-). My hdd started to work in CHS mode (without any notice to me), but only by its quarter. This sign was imposible to miss. Thats why I ask you about additional verbosity. From owner-cvs-all@FreeBSD.ORG Fri Apr 16 05:37: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 D5F6C16A4CE; Fri, 16 Apr 2004 05:37:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCE6043D45; Fri, 16 Apr 2004 05:37:31 -0700 (PDT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GCbVGe026967; Fri, 16 Apr 2004 05:37:31 -0700 (PDT) (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GCbVOO026966; Fri, 16 Apr 2004 05:37:31 -0700 (PDT) (envelope-from markus) Message-Id: <200404161237.i3GCbVOO026966@repoman.freebsd.org> From: Markus Brueffer Date: Fri, 16 Apr 2004 05:37:31 -0700 (PDT) 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/kasablanca Makefile distinfo pkg-descr pkg-plist ports/ftp/kasablanca/files patch-bookmarkdialog.cpp patch-kasablanca.cpp patch-kbitem.cpp subdirs X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 12:37:32 -0000 markus 2004/04/16 05:37:31 PDT FreeBSD ports repository Modified files: ftp Makefile Added files: ftp/kasablanca Makefile distinfo pkg-descr pkg-plist ftp/kasablanca/files patch-bookmarkdialog.cpp patch-kasablanca.cpp patch-kbitem.cpp subdirs Log: Add kasablanca 0.3.1, a graphical ftp client for KDE. Features: o ftps encryption via AUTH TLS o fxp (direct server to server transfer) o bookmarking system o concurrent connections to multiple hosts Revision Changes Path 1.83 +1 -0 ports/ftp/Makefile 1.1 +34 -0 ports/ftp/kasablanca/Makefile (new) 1.1 +2 -0 ports/ftp/kasablanca/distinfo (new) 1.1 +118 -0 ports/ftp/kasablanca/files/patch-bookmarkdialog.cpp (new) 1.1 +100 -0 ports/ftp/kasablanca/files/patch-kasablanca.cpp (new) 1.1 +17 -0 ports/ftp/kasablanca/files/patch-kbitem.cpp (new) 1.1 +3 -0 ports/ftp/kasablanca/files/subdirs (new) 1.1 +9 -0 ports/ftp/kasablanca/pkg-descr (new) 1.1 +32 -0 ports/ftp/kasablanca/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 05:37: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 2F78B16A4CE; Fri, 16 Apr 2004 05:37:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0FCCC43D5F; Fri, 16 Apr 2004 05:37:51 -0700 (PDT) (envelope-from markus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GCboGe027013; Fri, 16 Apr 2004 05:37:50 -0700 (PDT) (envelope-from markus@repoman.freebsd.org) Received: (from markus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GCbo3l027012; Fri, 16 Apr 2004 05:37:50 -0700 (PDT) (envelope-from markus) Message-Id: <200404161237.i3GCbo3l027012@repoman.freebsd.org> From: Markus Brueffer Date: Fri, 16 Apr 2004 05:37:50 -0700 (PDT) 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, 16 Apr 2004 12:37:51 -0000 markus 2004/04/16 05:37:50 PDT FreeBSD ports repository Modified files: . modules Log: kasablanca --> ports/ftp/kasablanca Revision Changes Path 1.9912 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 16 06: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 CBDCB16A4CE; Fri, 16 Apr 2004 06:13:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3B1143D54; Fri, 16 Apr 2004 06:13:31 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GDDVGe035929; Fri, 16 Apr 2004 06:13:31 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GDDV06035928; Fri, 16 Apr 2004 06:13:31 -0700 (PDT) (envelope-from krion) Message-Id: <200404161313.i3GDDV06035928@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 06:13:30 -0700 (PDT) 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/slimserver Makefile distinfo pkg-descr pkg-install pkg-plistpatch-Slim_Utils_Prefs.pm slimserver.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, 16 Apr 2004 13:13:31 -0000 krion 2004/04/16 06:13:30 PDT FreeBSD ports repository Modified files: audio Makefile Added files: audio/slimserver Makefile distinfo pkg-descr pkg-install pkg-plist audio/slimserver/files patch-Slim_Music_Info.pm patch-Slim_Utils_Prefs.pm slimserver.sh Log: Add slimserver 5.1.1, Slim Devices SlimServer streams a variety of audio formats including MP3, Ogg, and FLAC to Squeezebox and SLIMP3 network players as well as most software players. PR: ports/65601 Submitted by: Brooks Davis Revision Changes Path 1.509 +1 -0 ports/audio/Makefile 1.1 +118 -0 ports/audio/slimserver/Makefile (new) 1.1 +2 -0 ports/audio/slimserver/distinfo (new) 1.1 +14 -0 ports/audio/slimserver/files/patch-Slim_Music_Info.pm (new) 1.1 +14 -0 ports/audio/slimserver/files/patch-Slim_Utils_Prefs.pm (new) 1.1 +56 -0 ports/audio/slimserver/files/slimserver.sh (new) 1.1 +17 -0 ports/audio/slimserver/pkg-descr (new) 1.1 +42 -0 ports/audio/slimserver/pkg-install (new) 1.1 +987 -0 ports/audio/slimserver/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 06:13: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 CA40616A4CE; Fri, 16 Apr 2004 06:13:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC84B43D46; Fri, 16 Apr 2004 06:13:48 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GDDmGe035973; Fri, 16 Apr 2004 06:13:48 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GDDmg2035972; Fri, 16 Apr 2004 06:13:48 -0700 (PDT) (envelope-from krion) Message-Id: <200404161313.i3GDDmg2035972@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 06:13:48 -0700 (PDT) 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, 16 Apr 2004 13:13:48 -0000 krion 2004/04/16 06:13:48 PDT FreeBSD ports repository Modified files: . modules Log: slimserver --> ports/audio/slimserver Revision Changes Path 1.9913 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 16 06:29: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 9D39C16A4CE; Fri, 16 Apr 2004 06:29:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7DA0143D45; Fri, 16 Apr 2004 06:29:30 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GDTUGe038183; Fri, 16 Apr 2004 06:29:30 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GDTUeE038182; Fri, 16 Apr 2004 06:29:30 -0700 (PDT) (envelope-from clement) Message-Id: <200404161329.i3GDTUeE038182@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 06:29:30 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/apache2 Makefile.modules.3rd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 13:29:30 -0000 clement 2004/04/16 06:29:30 PDT FreeBSD ports repository Modified files: www/apache2 Makefile.modules.3rd Log: Remove noisy apache version detection Revision Changes Path 1.2 +4 -12 ports/www/apache2/Makefile.modules.3rd From owner-cvs-all@FreeBSD.ORG Fri Apr 16 06:33: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 4893D16A4CE; Fri, 16 Apr 2004 06:33:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2AE3143D48; Fri, 16 Apr 2004 06:33:41 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GDXfGe040024; Fri, 16 Apr 2004 06:33:41 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GDXes9040023; Fri, 16 Apr 2004 06:33:40 -0700 (PDT) (envelope-from krion) Message-Id: <200404161333.i3GDXes9040023@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 06:33:40 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/dns/dnsflood 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, 16 Apr 2004 13:33:41 -0000 krion 2004/04/16 06:33:40 PDT FreeBSD ports repository Modified files: dns/dnsflood Makefile Log: - Fix MASTER_SITES Revision Changes Path 1.5 +1 -2 ports/dns/dnsflood/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 06:37: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 B51A016A4CE; Fri, 16 Apr 2004 06:37:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 964E743D39; Fri, 16 Apr 2004 06:37:06 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GDb6Ge040209; Fri, 16 Apr 2004 06:37:06 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GDb6oa040208; Fri, 16 Apr 2004 06:37:06 -0700 (PDT) (envelope-from clement) Message-Id: <200404161337.i3GDb6oa040208@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 06:37:06 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mod_access_identd 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, 16 Apr 2004 13:37:06 -0000 clement 2004/04/16 06:37:06 PDT FreeBSD ports repository Modified files: www/mod_access_identd Makefile Removed files: www/mod_access_identd pkg-plist Log: - Utilize Makefile.modules.3rd Revision Changes Path 1.7 +7 -9 ports/www/mod_access_identd/Makefile 1.2 +0 -3 ports/www/mod_access_identd/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 06:37: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 E71CE16A4CE; Fri, 16 Apr 2004 06:37:51 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C667743D39; Fri, 16 Apr 2004 06:37:51 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GDbpGe040248; Fri, 16 Apr 2004 06:37:51 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GDbp2H040247; Fri, 16 Apr 2004 06:37:51 -0700 (PDT) (envelope-from clement) Message-Id: <200404161337.i3GDbp2H040247@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 06:37:51 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mod_access_referer 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, 16 Apr 2004 13:37:52 -0000 clement 2004/04/16 06:37:51 PDT FreeBSD ports repository Modified files: www/mod_access_referer Makefile Removed files: www/mod_access_referer pkg-plist Log: - Utilize Makefile.modules.3rd - Shorten COMMENT Revision Changes Path 1.11 +8 -7 ports/www/mod_access_referer/Makefile 1.3 +0 -3 ports/www/mod_access_referer/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 06: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 0957116A4CE; Fri, 16 Apr 2004 06:38:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DDB5343D1F; Fri, 16 Apr 2004 06:38:17 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GDcHGe040302; Fri, 16 Apr 2004 06:38:17 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GDcHjN040301; Fri, 16 Apr 2004 06:38:17 -0700 (PDT) (envelope-from clement) Message-Id: <200404161338.i3GDcHjN040301@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 06:38:17 -0700 (PDT) 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 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, 16 Apr 2004 13:38:18 -0000 clement 2004/04/16 06:38:17 PDT FreeBSD ports repository Modified files: www/mod_auth_any Makefile Removed files: www/mod_auth_any pkg-plist Log: - Utilize Makefile.modules.3rd Revision Changes Path 1.10 +7 -9 ports/www/mod_auth_any/Makefile 1.2 +0 -3 ports/www/mod_auth_any/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 06:51: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 3BB3716A4CF; Fri, 16 Apr 2004 06:51:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DD8443D49; Fri, 16 Apr 2004 06:51:24 -0700 (PDT) (envelope-from olgeni@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GDpNGe043349; Fri, 16 Apr 2004 06:51:23 -0700 (PDT) (envelope-from olgeni@repoman.freebsd.org) Received: (from olgeni@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GDpNWj043345; Fri, 16 Apr 2004 06:51:23 -0700 (PDT) (envelope-from olgeni) Message-Id: <200404161351.i3GDpNWj043345@repoman.freebsd.org> From: Jimmy Olgeni Date: Fri, 16 Apr 2004 06:51:23 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/netbeans Makefile distinfo pkg-plist ports/java/netbeans/files bin_runide.sh.diff X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 13:51:24 -0000 olgeni 2004/04/16 06:51:23 PDT FreeBSD ports repository Modified files: java/netbeans Makefile distinfo pkg-plist java/netbeans/files bin_runide.sh.diff Log: Upgrade to version 3.6. Submitted by: Conrad Sabatier Revision Changes Path 1.9 +4 -6 ports/java/netbeans/Makefile 1.4 +2 -1 ports/java/netbeans/distinfo 1.3 +4 -4 ports/java/netbeans/files/bin_runide.sh.diff 1.3 +935 -423 ports/java/netbeans/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 06:52: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 B94FD16A4CE; Fri, 16 Apr 2004 06:52:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A10643D1D; Fri, 16 Apr 2004 06:52:18 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GDqIGe044196; Fri, 16 Apr 2004 06:52:18 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GDqIGQ044195; Fri, 16 Apr 2004 06:52:18 -0700 (PDT) (envelope-from clement) Message-Id: <200404161352.i3GDqIGQ044195@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 06:52:18 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mod_rpaf Makefile pkg-plist ports/www/mod_rpaf2 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, 16 Apr 2004 13:52:18 -0000 clement 2004/04/16 06:52:18 PDT FreeBSD ports repository Modified files: www/mod_rpaf Makefile www/mod_rpaf2 Makefile Removed files: www/mod_rpaf pkg-plist Log: - Utilize Makefile.modules.3rd IMHO, it's one of the best example to see how Makefile.modules.3rd can be useful. Revision Changes Path 1.3 +8 -19 ports/www/mod_rpaf/Makefile 1.2 +0 -3 ports/www/mod_rpaf/pkg-plist (dead) 1.4 +1 -1 ports/www/mod_rpaf2/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 07: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 9235416A4CE; Fri, 16 Apr 2004 07:07:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7429543D3F; Fri, 16 Apr 2004 07:07:17 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GE7HGe047526; Fri, 16 Apr 2004 07:07:17 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GE7GIR047525; Fri, 16 Apr 2004 07:07:16 -0700 (PDT) (envelope-from clement) Message-Id: <200404161407.i3GE7GIR047525@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 07:07:16 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/apache2 Makefile.modules.3rd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 14:07:17 -0000 clement 2004/04/16 07:07:16 PDT FreeBSD ports repository Modified files: www/apache2 Makefile.modules.3rd Log: Add AP_EXTRA to support extra arguments to apxs during build. AP_INC and AP_LIB were added. Reminded by: mod_vdbh port Revision Changes Path 1.3 +9 -2 ports/www/apache2/Makefile.modules.3rd From owner-cvs-all@FreeBSD.ORG Fri Apr 16 07:09: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 D232A16A4CE; Fri, 16 Apr 2004 07:09:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B386343D46; Fri, 16 Apr 2004 07:09:54 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GE9sGe047602; Fri, 16 Apr 2004 07:09:54 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GE9sbP047601; Fri, 16 Apr 2004 07:09:54 -0700 (PDT) (envelope-from krion) Message-Id: <200404161409.i3GE9sbP047601@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 07:09:54 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/shells/bash-completion 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, 16 Apr 2004 14:09:55 -0000 krion 2004/04/16 07:09:54 PDT FreeBSD ports repository Modified files: shells/bash-completion Makefile distinfo Log: - Update to version 20040331 PR: ports/65606 Submitted by: Toni Viemero Approved by: maintainer Revision Changes Path 1.8 +1 -1 ports/shells/bash-completion/Makefile 1.7 +2 -2 ports/shells/bash-completion/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 16 07:15: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 5CFAF16A4CE; Fri, 16 Apr 2004 07:15:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3E3D243D5A; Fri, 16 Apr 2004 07:15:56 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GEFtGe049602; Fri, 16 Apr 2004 07:15:56 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GEFttD049601; Fri, 16 Apr 2004 07:15:55 -0700 (PDT) (envelope-from clement) Message-Id: <200404161415.i3GEFttD049601@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 07:15:55 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/mod_vdbh 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, 16 Apr 2004 14:15:56 -0000 clement 2004/04/16 07:15:55 PDT FreeBSD ports repository Modified files: www/mod_vdbh Makefile Removed files: www/mod_vdbh pkg-plist Log: - Utilize Makefile.modules.3rd Revision Changes Path 1.2 +10 -13 ports/www/mod_vdbh/Makefile 1.2 +0 -4 ports/www/mod_vdbh/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 07:16: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 C7E1D16A4CE; Fri, 16 Apr 2004 07:16:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A7D0E43D1D; Fri, 16 Apr 2004 07:16:53 -0700 (PDT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GEGrGe049667; Fri, 16 Apr 2004 07:16:53 -0700 (PDT) (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GEGrhg049666; Fri, 16 Apr 2004 07:16:53 -0700 (PDT) (envelope-from skv) Message-Id: <200404161416.i3GEGrhg049666@repoman.freebsd.org> From: Sergey Skvortsov Date: Fri, 16 Apr 2004 07:16:53 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/pmap Makefile 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, 16 Apr 2004 14:16:53 -0000 skv 2004/04/16 07:16:53 PDT FreeBSD ports repository Modified files: sysutils/pmap Makefile Added files: sysutils/pmap pkg-message Log: Mark port as depending on kernel Revision Changes Path 1.4 +10 -0 ports/sysutils/pmap/Makefile 1.1 +6 -0 ports/sysutils/pmap/pkg-message (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 07: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 4B20416A4CE; Fri, 16 Apr 2004 07:31:37 -0700 (PDT) Received: from harmony.village.org (rover.bsdimp.com [204.144.255.66]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E06943D46; Fri, 16 Apr 2004 07:31:36 -0700 (PDT) (envelope-from imp@bsdimp.com) Received: from localhost (warner@rover2.village.org [10.0.0.1]) by harmony.village.org (8.12.10/8.12.9) with ESMTP id i3GEVLkj059439; Fri, 16 Apr 2004 08:31:26 -0600 (MDT) (envelope-from imp@bsdimp.com) Date: Fri, 16 Apr 2004 08:32:19 -0600 (MDT) Message-Id: <20040416.083219.88169024.imp@bsdimp.com> To: sos@DeepCore.dk From: "M. Warner Losh" In-Reply-To: <407F9CB7.3020407@DeepCore.dk> References: <20040413094519.7230616A4DB@hub.freebsd.org> <20040415162313.S92883@root.org> <407F9CB7.3020407@DeepCore.dk> X-Mailer: Mew version 3.3 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable cc: cvs-src@FreeBSD.org cc: sos@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org cc: nate@root.org Subject: Re: cvs commit: src/sys/dev/ata ata-all.c ata-all.h ata-card.c ata-cbus.c ata-chipset.c ata-disk.c ata-dma.c ata-isa.c ata-lowlevel.c ata-pci.c ata-pci.h 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: Fri, 16 Apr 2004 14:31:37 -0000 In message: <407F9CB7.3020407@DeepCore.dk> S=F8ren Schmidt writes: : > Includes fixes for resource allocation fixing at least ICH3: : > Submitted by: imp : = : not true, warner had semilar patches but these where done before I kn= ew = : they existed (and btw they are not exactly the same) This is clearly a case of parallel evolution to solve the same problem.. Warner From owner-cvs-all@FreeBSD.ORG Fri Apr 16 07:35: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 6781016A4CE; Fri, 16 Apr 2004 07:35:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 495A643D45; Fri, 16 Apr 2004 07:35:12 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GEZBGe053603; Fri, 16 Apr 2004 07:35:12 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GEZBVD053602; Fri, 16 Apr 2004 07:35:11 -0700 (PDT) (envelope-from rwatson) Message-Id: <200404161435.i3GEZBVD053602@repoman.freebsd.org> From: Robert Watson Date: Fri, 16 Apr 2004 07:35:11 -0700 (PDT) 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_mbuf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 14:35:12 -0000 rwatson 2004/04/16 07:35:11 PDT FreeBSD src repository Modified files: sys/kern subr_mbuf.c Log: At some point during the history of m_getcl(), MAC support began to unconditionally initialize the mbuf header even if cluster allocation failed, which could result in a NULL pointer dereference in low-memory conditions. PR: kern/65548 Submitted by: Stephan Uphoff Revision Changes Path 1.59 +6 -6 src/sys/kern/subr_mbuf.c From owner-cvs-all@FreeBSD.ORG Fri Apr 16 07: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 C64AA16A4CE; Fri, 16 Apr 2004 07:36:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A6BB343D53; Fri, 16 Apr 2004 07:36:53 -0700 (PDT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GEarGe053747; Fri, 16 Apr 2004 07:36:53 -0700 (PDT) (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GEarSk053746; Fri, 16 Apr 2004 07:36:53 -0700 (PDT) (envelope-from skv) Message-Id: <200404161436.i3GEarSk053746@repoman.freebsd.org> From: Sergey Skvortsov Date: Fri, 16 Apr 2004 07:36:53 -0700 (PDT) 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-Data-Inheritable 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, 16 Apr 2004 14:36:53 -0000 skv 2004/04/16 07:36:53 PDT FreeBSD ports repository Modified files: devel/p5-Class-Data-Inheritable Makefile Log: Remove useless dependency. Pointed by: kuriyama Revision Changes Path 1.5 +1 -3 ports/devel/p5-Class-Data-Inheritable/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 07: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 920B716A4CE; Fri, 16 Apr 2004 07:38:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75DDE43D1D; Fri, 16 Apr 2004 07:38:05 -0700 (PDT) (envelope-from skv@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GEc5Ge053802; Fri, 16 Apr 2004 07:38:05 -0700 (PDT) (envelope-from skv@repoman.freebsd.org) Received: (from skv@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GEc5gO053801; Fri, 16 Apr 2004 07:38:05 -0700 (PDT) (envelope-from skv) Message-Id: <200404161438.i3GEc5gO053801@repoman.freebsd.org> From: Sergey Skvortsov Date: Fri, 16 Apr 2004 07:38:04 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 14:38:05 -0000 skv 2004/04/16 07:38:04 PDT FreeBSD ports repository Modified files: devel/p5-UNIVERSAL-moniker Makefile Log: Remove optional dependency. Pointed by: kuriyama Revision Changes Path 1.3 +1 -3 ports/devel/p5-UNIVERSAL-moniker/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 07:40: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 E083916A4CE; Fri, 16 Apr 2004 07:40:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C424E43D45; Fri, 16 Apr 2004 07:40:42 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GEegGe053909; Fri, 16 Apr 2004 07:40:42 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GEegc7053908; Fri, 16 Apr 2004 07:40:42 -0700 (PDT) (envelope-from clement) Message-Id: <200404161440.i3GEegc7053908@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 07:40:41 -0700 (PDT) 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_cookie_mysql 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, 16 Apr 2004 14:40:43 -0000 clement 2004/04/16 07:40:41 PDT FreeBSD ports repository Modified files: www/mod_auth_cookie_mysql Makefile Log: - Utilize Makefile.modules.3rd Revision Changes Path 1.3 +8 -10 ports/www/mod_auth_cookie_mysql/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 07:42: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 DF41316A4CE; Fri, 16 Apr 2004 07:42:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D85BB43D31; Fri, 16 Apr 2004 07:42:39 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GEgdGe056019; Fri, 16 Apr 2004 07:42:39 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GEgdMq056018; Fri, 16 Apr 2004 07:42:39 -0700 (PDT) (envelope-from krion) Message-Id: <200404161442.i3GEgdMq056018@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 07:42:39 -0700 (PDT) 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/games/atr3d Makefile ports/games/barrage Makefile ports/games/briquolo Makefile ports/games/openglad Makefile ports/games/spacehulk 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, 16 Apr 2004 14:42:40 -0000 krion 2004/04/16 07:42:39 PDT FreeBSD ports repository Modified files: audio/aube Makefile audio/sweep Makefile audio/wavbreaker Makefile games/atr3d Makefile games/barrage Makefile games/briquolo Makefile games/openglad Makefile games/spacehulk Makefile mail/esmtp Makefile mail/libnewmail Makefile mail/smtpmail Makefile net-mgmt/angst Makefile net-mgmt/nefu Makefile news/nget Makefile news/noffle Makefile security/beecrypt Makefile security/tinc Makefile sysutils/chgrep Makefile www/ffproxy Makefile www/middleman Makefile Log: - Remove USE_SIZE knob Revision Changes Path 1.6 +0 -1 ports/audio/aube/Makefile 1.20 +0 -1 ports/audio/sweep/Makefile 1.8 +0 -1 ports/audio/wavbreaker/Makefile 1.8 +0 -1 ports/games/atr3d/Makefile 1.9 +0 -1 ports/games/barrage/Makefile 1.10 +0 -1 ports/games/briquolo/Makefile 1.9 +0 -1 ports/games/openglad/Makefile 1.14 +0 -1 ports/games/spacehulk/Makefile 1.6 +0 -1 ports/mail/esmtp/Makefile 1.11 +0 -1 ports/mail/libnewmail/Makefile 1.9 +0 -1 ports/mail/smtpmail/Makefile 1.11 +0 -1 ports/net-mgmt/angst/Makefile 1.7 +0 -1 ports/net-mgmt/nefu/Makefile 1.14 +0 -1 ports/news/nget/Makefile 1.4 +0 -1 ports/news/noffle/Makefile 1.9 +0 -1 ports/security/beecrypt/Makefile 1.17 +0 -1 ports/security/tinc/Makefile 1.10 +0 -1 ports/sysutils/chgrep/Makefile 1.8 +0 -1 ports/www/ffproxy/Makefile 1.18 +0 -1 ports/www/middleman/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 07:44: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 2E0EE16A4CE; Fri, 16 Apr 2004 07:44:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1083A43D41; Fri, 16 Apr 2004 07:44:10 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GEi9Ge056097; Fri, 16 Apr 2004 07:44:09 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GEi9bm056096; Fri, 16 Apr 2004 07:44:09 -0700 (PDT) (envelope-from nectar) Message-Id: <200404161444.i3GEi9bm056096@repoman.freebsd.org> From: Jacques Vidrine Date: Fri, 16 Apr 2004 07:44:09 -0700 (PDT) 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, 16 Apr 2004 14:44:10 -0000 nectar 2004/04/16 07:44:09 PDT FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Additional CVE name for recent CVS vulnerability. Revision Changes Path 1.78 +2 -0 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Fri Apr 16 07: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 E6EB616A4CE; Fri, 16 Apr 2004 07:52:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C980943D41; Fri, 16 Apr 2004 07:52:11 -0700 (PDT) (envelope-from arved@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GEqBGe057836; Fri, 16 Apr 2004 07:52:11 -0700 (PDT) (envelope-from arved@repoman.freebsd.org) Received: (from arved@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GEqArh057823; Fri, 16 Apr 2004 07:52:10 -0700 (PDT) (envelope-from arved) Message-Id: <200404161452.i3GEqArh057823@repoman.freebsd.org> From: Tilman Linneweh Date: Fri, 16 Apr 2004 07:52:10 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/jack 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, 16 Apr 2004 14:52:12 -0000 arved 2004/04/16 07:52:10 PDT FreeBSD ports repository Modified files: audio/jack Makefile Log: Fix make describe for old make's. PR: 65622 Submitted by: Scott Lipcon Revision Changes Path 1.13 +1 -1 ports/audio/jack/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 07: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 42E4C16A4D4; Fri, 16 Apr 2004 07:52:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23ACA43D5A; Fri, 16 Apr 2004 07:52:29 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GEqSGe058108; Fri, 16 Apr 2004 07:52:28 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GEqSYR058101; Fri, 16 Apr 2004 07:52:28 -0700 (PDT) (envelope-from krion) Message-Id: <200404161452.i3GEqSYR058101@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 07:52:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/lockdown 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, 16 Apr 2004 14:52:29 -0000 krion 2004/04/16 07:52:28 PDT FreeBSD ports repository Modified files: security/lockdown Makefile distinfo pkg-descr Removed files: security/lockdown pkg-message Log: - Update to version 1.0 PR: ports/65618 Submitted by: maintainer Revision Changes Path 1.3 +3 -3 ports/security/lockdown/Makefile 1.3 +2 -2 ports/security/lockdown/distinfo 1.3 +1 -0 ports/security/lockdown/pkg-descr 1.2 +0 -4 ports/security/lockdown/pkg-message (dead) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 07: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 EF83C16A4CE; Fri, 16 Apr 2004 07:53:23 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CD1E643D5E; Fri, 16 Apr 2004 07:53:23 -0700 (PDT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GErNGe058208; Fri, 16 Apr 2004 07:53:23 -0700 (PDT) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GErNl6058207; Fri, 16 Apr 2004 07:53:23 -0700 (PDT) (envelope-from glewis) Message-Id: <200404161453.i3GErNl6058207@repoman.freebsd.org> From: Greg Lewis Date: Fri, 16 Apr 2004 07:53:22 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/Mk bsd.java.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, 16 Apr 2004 14:53:24 -0000 glewis 2004/04/16 07:53:22 PDT FreeBSD ports repository Modified files: Mk bsd.java.mk Log: Many fixes to the new bsd.java.mk, including: . Make the USE_JIKES setting to actually work. . Simplified backwards compatibility with the old bsd.java.mk. . Allowed java dependency selection with JAVA_PREFERRED_PORTS. . More error checking on variable settings. . Allowed USE_JAVA=yes to work without specifying a version. . Expanded the meta-info for the individual ports so the full version is now available, among other things. Submitted by: Herve Quiroz Revision Changes Path 1.44 +264 -359 ports/Mk/bsd.java.mk From owner-cvs-all@FreeBSD.ORG Fri Apr 16 07:59: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 530A116A4CE; Fri, 16 Apr 2004 07:59:48 -0700 (PDT) Received: from smtp.des.no (flood.des.no [217.116.83.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id A32FC43D2F; Fri, 16 Apr 2004 07:59:47 -0700 (PDT) (envelope-from des@des.no) Received: by smtp.des.no (Pony Express, from userid 666) id 18C6C530D; Fri, 16 Apr 2004 16:59:46 +0200 (CEST) Received: from dwp.des.no (des.no [80.203.228.37]) by smtp.des.no (Pony Express) with ESMTP id A62975309; Fri, 16 Apr 2004 16:59:32 +0200 (CEST) Received: by dwp.des.no (Postfix, from userid 2602) id 574F833C6C; Fri, 16 Apr 2004 16:59:32 +0200 (CEST) To: Luigi Rizzo References: <200404160814.i3G8EYpj071288@repoman.freebsd.org> <20040416090520.GA1194@FreeBSD.org> <20040416023457.A12665@xorpc.icir.org> <20040416040536.A22418@xorpc.icir.org> From: des@des.no (=?iso-8859-1?q?Dag-Erling_Sm=F8rgrav?=) Date: Fri, 16 Apr 2004 16:59:32 +0200 In-Reply-To: <20040416040536.A22418@xorpc.icir.org> (Luigi Rizzo's message of "Fri, 16 Apr 2004 04:05:36 -0700") Message-ID: User-Agent: Gnus/5.1006 (Gnus v5.10.6) Emacs/21.3 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on flood.des.no X-Spam-Level: X-Spam-Status: No, hits=0.0 required=5.0 tests=AWL autolearn=no version=2.63 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: Eivind Eklund cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/net if.c route.c 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, 16 Apr 2004 14:59:48 -0000 Luigi Rizzo writes: > On Fri, Apr 16, 2004 at 12:54:11PM +0200, Dag-Erling Sm=F8rgrav wrote: > > Luigi Rizzo writes: > > > ifaddr_byindex() is already a macro, so i'd rather not have the > > > double indirection. > > What difference does it make? > it is two different ways of getting the same info, which is > precisely what i was trying to remove in the first place. No, my question was: what difference does an extra level of indirection make? It is resolved at compile time, so there is no run-time overhead. If it makes the code simpler and more obvious, it's a good thing. DES --=20 Dag-Erling Sm=F8rgrav - des@des.no From owner-cvs-all@FreeBSD.ORG Fri Apr 16 08: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 2C02C16A4CE; Fri, 16 Apr 2004 08:01:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0E66E43D46; Fri, 16 Apr 2004 08:01:03 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GF12Ge058580; Fri, 16 Apr 2004 08:01:02 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GF12ku058579; Fri, 16 Apr 2004 08:01:02 -0700 (PDT) (envelope-from krion) Message-Id: <200404161501.i3GF12ku058579@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 08:01:02 -0700 (PDT) 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 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, 16 Apr 2004 15:01:03 -0000 krion 2004/04/16 08:01:02 PDT FreeBSD ports repository Modified files: net-mgmt/fprobe pkg-descr Log: - Fix WWW: Revision Changes Path 1.2 +1 -1 ports/net-mgmt/fprobe/pkg-descr From owner-cvs-all@FreeBSD.ORG Fri Apr 16 08:01: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 1204F16A4CF; Fri, 16 Apr 2004 08:01:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E817043D53; Fri, 16 Apr 2004 08:01:47 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GF1lGe059294; Fri, 16 Apr 2004 08:01:47 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GF1lc9059290; Fri, 16 Apr 2004 08:01:47 -0700 (PDT) (envelope-from linimon) Message-Id: <200404161501.i3GF1lc9059290@repoman.freebsd.org> From: Mark Linimon Date: Fri, 16 Apr 2004 08:01:47 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/zope-zpt 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, 16 Apr 2004 15:01:48 -0000 linimon 2004/04/16 08:01:47 PDT FreeBSD ports repository Modified files: www/zope-zpt pkg-plist Log: Per dosirak run, fix plist: silently try to remove directories created by Zope itself. Revision Changes Path 1.3 +13 -13 ports/www/zope-zpt/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 08: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 8062C16A4CE; Fri, 16 Apr 2004 08:01:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6396443D55; Fri, 16 Apr 2004 08:01:55 -0700 (PDT) (envelope-from imp@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GF1tGe059427; Fri, 16 Apr 2004 08:01:55 -0700 (PDT) (envelope-from imp@repoman.freebsd.org) Received: (from imp@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GF1tUE059423; Fri, 16 Apr 2004 08:01:55 -0700 (PDT) (envelope-from imp) Message-Id: <200404161501.i3GF1tUE059423@repoman.freebsd.org> From: Warner Losh Date: Fri, 16 Apr 2004 08:01:55 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/pci 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, 16 Apr 2004 15:01:55 -0000 imp 2004/04/16 08:01:55 PDT FreeBSD src repository Modified files: sys/dev/pci pci.c Log: ooops. I disabled pci_enable_io_modes not pci_do_powerstate in the last commit. That was in error. Noticed by: sos Revision Changes Path 1.245 +4 -4 src/sys/dev/pci/pci.c From owner-cvs-all@FreeBSD.ORG Fri Apr 16 08:05: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 1149C16A4CE; Fri, 16 Apr 2004 08:05:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7F3D43D31; Fri, 16 Apr 2004 08:05:33 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GF5XGe061416; Fri, 16 Apr 2004 08:05:33 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GF5XdW061415; Fri, 16 Apr 2004 08:05:33 -0700 (PDT) (envelope-from linimon) Message-Id: <200404161505.i3GF5XdW061415@repoman.freebsd.org> From: Mark Linimon Date: Fri, 16 Apr 2004 08:05:33 -0700 (PDT) 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: Fri, 16 Apr 2004 15:05:34 -0000 linimon 2004/04/16 08:05:33 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/porters-handbook book.sgml Log: Add missed makevar quotation. Spotted by: vs Reviewed by: ceri (mentor) Revision Changes Path 1.400 +1 -1 doc/en_US.ISO8859-1/books/porters-handbook/book.sgml From owner-cvs-all@FreeBSD.ORG Fri Apr 16 08:07: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 E196716A4CE; Fri, 16 Apr 2004 08:07:44 -0700 (PDT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id AD20543D1D; Fri, 16 Apr 2004 08:07:44 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.12.11/8.12.10) with ESMTP id i3GF7hSU016948; Fri, 16 Apr 2004 08:07:43 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.11/8.12.11/Submit) id i3GF7hnG016947; Fri, 16 Apr 2004 08:07:43 -0700 (PDT) (envelope-from obrien) Date: Fri, 16 Apr 2004 08:07:42 -0700 From: "David O'Brien" To: Brian Feldman Message-ID: <20040416150742.GA16010@dragon.nuxi.com> References: <200404130258.i3D2w7WC034439@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404130258.i3D2w7WC034439@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-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/dump dump.8 dump.h main.c tape.c src/sbin/restore extern.h main.c restore.8 tape.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: Fri, 16 Apr 2004 15:07:45 -0000 On Mon, Apr 12, 2004 at 07:58:07PM -0700, Brian Feldman wrote: > green 2004/04/12 19:58:07 PDT > > FreeBSD src repository > > Modified files: > sbin/dump dump.8 dump.h main.c tape.c > sbin/restore extern.h main.c restore.8 tape.c > Log: > Add -P arguments for dump(8) and restore(8) which allow the user to > use backup methods other than files and tapes. The -P argument is > a normal sh(1) pipeline with either $DUMP_VOLUME or $RESTORE_VOLUME > defined in the environment, respectively. Why do you need an option for this? Can't you just use 'dump ... |' and '... | restore'? From owner-cvs-all@FreeBSD.ORG Fri Apr 16 08: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 90E3416A4CE; Fri, 16 Apr 2004 08:14:08 -0700 (PDT) Received: from TRANG.nuxi.com (trang.nuxi.com [66.93.134.19]) by mx1.FreeBSD.org (Postfix) with ESMTP id 623F343D31; Fri, 16 Apr 2004 08:14:08 -0700 (PDT) (envelope-from obrien@NUXI.com) Received: from dragon.nuxi.com (obrien@localhost [127.0.0.1]) by TRANG.nuxi.com (8.12.11/8.12.10) with ESMTP id i3GFE7au017374; Fri, 16 Apr 2004 08:14:07 -0700 (PDT) (envelope-from obrien@dragon.nuxi.com) Received: (from obrien@localhost) by dragon.nuxi.com (8.12.11/8.12.11/Submit) id i3GFE7cF017373; Fri, 16 Apr 2004 08:14:07 -0700 (PDT) (envelope-from obrien) Date: Fri, 16 Apr 2004 08:14:07 -0700 From: "David O'Brien" To: Gerald Pfeifer Message-ID: <20040416151407.GA15239@dragon.nuxi.com> References: <200404131104.i3DB42oZ055432@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: 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: Dirk Meyer cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/lang/gcc32 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: Fri, 16 Apr 2004 15:14:08 -0000 On Tue, Apr 13, 2004 at 04:38:09PM +0200, Gerald Pfeifer wrote: > I believe you could also make it work on amd64 by using the hack I have > been applying to the gcc33 and gcc34 ports: > > .if ${ARCH} == "amd64" > CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL} > .else > CONFIGURE_TARGET= ${ARCH}-portbld-freebsd${OSREL} > .endif I don't supose you're got time to figure out why the .else part is needed? -- -- David (obrien@FreeBSD.org) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 08:26: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 1ADF816A4CE; Fri, 16 Apr 2004 08:26:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1579B43D58; Fri, 16 Apr 2004 08:26:11 -0700 (PDT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GFQAGe065522; Fri, 16 Apr 2004 08:26:10 -0700 (PDT) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GFQAxf065521; Fri, 16 Apr 2004 08:26:10 -0700 (PDT) (envelope-from glewis) Message-Id: <200404161526.i3GFQAxf065521@repoman.freebsd.org> From: Greg Lewis Date: Fri, 16 Apr 2004 08:26:10 -0700 (PDT) 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-dbcp 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, 16 Apr 2004 15:26:11 -0000 glewis 2004/04/16 08:26:10 PDT FreeBSD ports repository Modified files: java/jakarta-commons-dbcp Makefile Removed files: java/jakarta-commons-dbcp pkg-plist Log: . Require JDK 1.4 or better (fixes bento build). [1, 2] . Use MASTER_SITE_APACHE_JAKARTA. [1] . bsd.java.mk 2.0 compliant. [1] . Removed pkg-plist using PLIST_FILES. [1] . Forced ANT to use the selected version of Java. PR: 65617 [1], 65349 [2] Submitted by: Herve Quiroz Anton Yudin Approved by: Anton Yudin (maintainer) Revision Changes Path 1.5 +7 -4 ports/java/jakarta-commons-dbcp/Makefile 1.4 +0 -1 ports/java/jakarta-commons-dbcp/pkg-plist (dead) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 08: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 C9AA516A4CE; Fri, 16 Apr 2004 08:31:56 -0700 (PDT) Received: from mailout1.pacific.net.au (mailout1.pacific.net.au [61.8.0.84]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0529D43D46; Fri, 16 Apr 2004 08:31:54 -0700 (PDT) (envelope-from bde@zeta.org.au) Received: from mailproxy1.pacific.net.au (mailproxy1.pacific.net.au [61.8.0.86])i3GFVq4u029751; Sat, 17 Apr 2004 01:31:52 +1000 Received: from gamplex.bde.org (katana.zip.com.au [61.8.7.246]) i3GFVoI2015756; Sat, 17 Apr 2004 01:31:51 +1000 Date: Sat, 17 Apr 2004 01:31:49 +1000 (EST) From: Bruce Evans X-X-Sender: bde@gamplex.bde.org To: "David O'Brien" In-Reply-To: <20040416150742.GA16010@dragon.nuxi.com> Message-ID: <20040417011735.N14463@gamplex.bde.org> References: <200404130258.i3D2w7WC034439@repoman.freebsd.org> <20040416150742.GA16010@dragon.nuxi.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Brian Feldman cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: cvs-src@freebsd.org Subject: Re: cvs commit: src/sbin/dump dump.8 dump.h main.c tape.csrc/sbin/restore extern.h main.c restore.8 tape.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 15:31:57 -0000 On Fri, 16 Apr 2004, David O'Brien wrote: > On Mon, Apr 12, 2004 at 07:58:07PM -0700, Brian Feldman wrote: > > green 2004/04/12 19:58:07 PDT > > > > FreeBSD src repository > > > > Modified files: > > sbin/dump dump.8 dump.h main.c tape.c > > sbin/restore extern.h main.c restore.8 tape.c > > Log: > > Add -P arguments for dump(8) and restore(8) which allow the user to > > use backup methods other than files and tapes. The -P argument is > > a normal sh(1) pipeline with either $DUMP_VOLUME or $RESTORE_VOLUME > > defined in the environment, respectively. > > Why do you need an option for this? Can't you just use 'dump ... |' and > '... | restore'? A simple pipeline can't handle media-change stuff well. Minix has a "vol" command which handles media changes for piped data. The media size is fixed and specified on the command line (typical usage was "tar ... | vol 360 /dev/fd0" for 360K floppies (remember them?)). This could be generalized to take a -P option much like dump now does (tar ... | vol -P ...). I don't know if dump needs to know more about media boundaries than can be handled in this way. A robust backup format would involve metadata at the start of each volume, and that is another thing that can'r be handled by a simple pipeline with the main generator of the data not knowing that it is writing to a fake large volume that actually consists of multiple volumes concatenated externally. Bruce From owner-cvs-all@FreeBSD.ORG Fri Apr 16 08:34:23 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 DB26616A4CE; Fri, 16 Apr 2004 08:34:22 -0700 (PDT) Received: from localhost (green@localhost [127.0.0.1]) by green.homeunix.org (8.12.11/8.12.11) with ESMTP id i3GFYMx0027058; Fri, 16 Apr 2004 11:34:22 -0400 (EDT) (envelope-from green@green.homeunix.org) Message-Id: <200404161534.i3GFYMx0027058@green.homeunix.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: obrien@FreeBSD.org In-Reply-To: Message from "David O'Brien" <20040416150742.GA16010@dragon.nuxi.com> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Fri, 16 Apr 2004 11:34:22 -0400 Sender: green@green.homeunix.org cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sbin/dump dump.8 dump.h main.c tape.c src/sbin/restore extern.h main.c restore.8 tape.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 15:34:23 -0000 "David O'Brien" wrote: > On Mon, Apr 12, 2004 at 07:58:07PM -0700, Brian Feldman wrote: > > green 2004/04/12 19:58:07 PDT > > > > FreeBSD src repository > > > > Modified files: > > sbin/dump dump.8 dump.h main.c tape.c > > sbin/restore extern.h main.c restore.8 tape.c > > Log: > > Add -P arguments for dump(8) and restore(8) which allow the user to > > use backup methods other than files and tapes. The -P argument is > > a normal sh(1) pipeline with either $DUMP_VOLUME or $RESTORE_VOLUME > > defined in the environment, respectively. > > Why do you need an option for this? Can't you just use 'dump ... |' and > '... | restore'? You can do that if you want to just dump a single volume and manually split it, but if you want to actually dump actual dump volumes, you run into problems. Your pipeline would be outside dump, so it would have no knowledge of when one volume ends and another begins. There are plenty of inelegant solutions to that requiring twice the operator intervention, but I prefer this elegant solution. It's not perfect, though: auto-sizing would require having the dump pipeline child knowing when reading from dump(8) would be causing an EOF on the media and shutting down before it reads that block. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-all@FreeBSD.ORG Fri Apr 16 08:39: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 58E0D16A4CE; Fri, 16 Apr 2004 08:39:39 -0700 (PDT) Received: from sirius.firepipe.net (sirius.firepipe.net [69.13.116.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 296AE43D48; Fri, 16 Apr 2004 08:39:39 -0700 (PDT) (envelope-from will@csociety.org) Received: by sirius.firepipe.net (Postfix, from userid 1000) id 8A17617DC1; Fri, 16 Apr 2004 10:39:38 -0500 (EST) Date: Fri, 16 Apr 2004 10:39:38 -0500 From: Will Andrews To: Ernst de Haan , Michael Ranner Message-ID: <20040416153938.GT34693@sirius.firepipe.net> References: <200404160135.i3G1ZZk4069703@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="Hw0FrjWlp+qkNlJP" Content-Disposition: inline In-Reply-To: <200404160135.i3G1ZZk4069703@repoman.freebsd.org> User-Agent: Mutt/1.4.1i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/multimedia/kmplayer Makefile distinfo pkg-plist ports/multimedia/kmplayer/files patch-kmplayer::kmplayer.desktop X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 15:39:39 -0000 --Hw0FrjWlp+qkNlJP Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Thu, Apr 15, 2004 at 06:35:35PM -0700, Ernst de Haan wrote: > znerd 2004/04/15 18:35:35 PDT >=20 > FreeBSD ports repository >=20 > Modified files: > multimedia/kmplayer Makefile distinfo pkg-plist=20 > multimedia/kmplayer/files patch-kmplayer::kmplayer.desktop=20 > Log: > - Update to 0.8.2 [1] > - Changed maintainer from will@ to ports@ [2] > =20 > PR: 62403 [1] > Submitted by: Michael Ranner [1] > Approved by: will [2] Thanks, and sorry for the delay and getting this committed. regards, --=20 wca --Hw0FrjWlp+qkNlJP Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.3 (FreeBSD) iD8DBQFAf/46F47idPgWcsURAid5AJ9FaipamJr1ARmmcpHXXIdp57flJwCglf00 yWGAY6p7mkQB2pLBEokkYxI= =qC1M -----END PGP SIGNATURE----- --Hw0FrjWlp+qkNlJP-- From owner-cvs-all@FreeBSD.ORG Fri Apr 16 08:57: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 77F2116A4CE; Fri, 16 Apr 2004 08:57:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7338843D54; Fri, 16 Apr 2004 08:57:01 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GFv0Ge077719; Fri, 16 Apr 2004 08:57:00 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GFv0Or077718; Fri, 16 Apr 2004 08:57:00 -0700 (PDT) (envelope-from clement) Message-Id: <200404161557.i3GFv0Or077718@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 08:57:00 -0700 (PDT) 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_accesscookie 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, 16 Apr 2004 15:57:01 -0000 clement 2004/04/16 08:57:00 PDT FreeBSD ports repository Modified files: www Makefile Added files: www/mod_accesscookie Makefile distinfo pkg-descr Log: Add mod_accessCookie 0.4. This module restricts access in the same way as an 'allow from' does (it is derived form this module :), by checking for the exinstence of a cookie. If a cookie is present it compares it to cookies found in a mySQL database. If it can find a equivalent cookie there, access is granted, else access is denied. Revision Changes Path 1.852 +1 -0 ports/www/Makefile 1.1 +35 -0 ports/www/mod_accesscookie/Makefile (new) 1.1 +2 -0 ports/www/mod_accesscookie/distinfo (new) 1.1 +5 -0 ports/www/mod_accesscookie/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 08:57: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 73AD016A4D3; Fri, 16 Apr 2004 08:57:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 573B243D5E; Fri, 16 Apr 2004 08:57:16 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GFvFGe077762; Fri, 16 Apr 2004 08:57:15 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GFvFfn077761; Fri, 16 Apr 2004 08:57:15 -0700 (PDT) (envelope-from clement) Message-Id: <200404161557.i3GFvFfn077761@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 08:57:15 -0700 (PDT) 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, 16 Apr 2004 15:57:16 -0000 clement 2004/04/16 08:57:15 PDT FreeBSD ports repository Modified files: . modules Log: mod_accesscookie --> ports/www/mod_accesscookie Revision Changes Path 1.9914 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 16 08:58: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 CEF9C16A4CE; Fri, 16 Apr 2004 08:58:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B312943D46; Fri, 16 Apr 2004 08:58:03 -0700 (PDT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GFw3Ge077812; Fri, 16 Apr 2004 08:58:03 -0700 (PDT) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GFw2On077811; Fri, 16 Apr 2004 08:58:02 -0700 (PDT) (envelope-from glewis) Message-Id: <200404161558.i3GFw2On077811@repoman.freebsd.org> From: Greg Lewis Date: Fri, 16 Apr 2004 08:58:02 -0700 (PDT) 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 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, 16 Apr 2004 15:58:04 -0000 glewis 2004/04/16 08:58:02 PDT FreeBSD ports repository Modified files: games/pcgen Makefile pkg-plist Log: . Fixed 'make package' (see recent bento build logs) . Use ${DATADIR} so no more %%T%% (as %%DATADIR%% is already in PLIST_SUB) . Use ${ECHO_MSG} instead of ${ECHO_CMD} . Use ${INSTALL_DATA} for documentation. . bsd.java.mk 2.0 compliant PR: 65621 Submitted by: Herve Quiroz (maintainer) Revision Changes Path 1.6 +22 -22 ports/games/pcgen/Makefile 1.6 +980 -980 ports/games/pcgen/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 09:10: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 0B10D16A4CF; Fri, 16 Apr 2004 09:10:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E2F9743D2D; Fri, 16 Apr 2004 09:10:14 -0700 (PDT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GGAEGe080848; Fri, 16 Apr 2004 09:10:14 -0700 (PDT) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GGAEkf080847; Fri, 16 Apr 2004 09:10:14 -0700 (PDT) (envelope-from glewis) Message-Id: <200404161610.i3GGAEkf080847@repoman.freebsd.org> From: Greg Lewis Date: Fri, 16 Apr 2004 09:10:14 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/colorer 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, 16 Apr 2004 16:10:15 -0000 glewis 2004/04/16 09:10:14 PDT FreeBSD ports repository Modified files: devel/colorer Makefile Log: . Force ant to use the selected JDK to build rather than what it was built with. Submitted by: bento via kris Revision Changes Path 1.3 +2 -1 ports/devel/colorer/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 09:20: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 4484616A4CE; Fri, 16 Apr 2004 09:20:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3DD1F43D46; Fri, 16 Apr 2004 09:20:17 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GGKHGe082935; Fri, 16 Apr 2004 09:20:17 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GGKGWu082934; Fri, 16 Apr 2004 09:20:16 -0700 (PDT) (envelope-from clement) Message-Id: <200404161620.i3GGKGWu082934@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 09:20:16 -0700 (PDT) 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_auth_useragent 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, 16 Apr 2004 16:20:17 -0000 clement 2004/04/16 09:20:16 PDT FreeBSD ports repository Modified files: www Makefile Added files: www/mod_auth_useragent Makefile distinfo pkg-descr Log: Add mod_auth_useragent 1.0 mod_auth_useragent allows you to forbid clients based on their User-Agent by placing a single line in your Apache httpd.conf. Be aware that this is by no means a security measure as it is trivial to change your User-Agent in most browsers. WWW: http://tangent.org/index.pl?lastnode_id=478&node_id=423 Revision Changes Path 1.853 +1 -0 ports/www/Makefile 1.1 +30 -0 ports/www/mod_auth_useragent/Makefile (new) 1.1 +2 -0 ports/www/mod_auth_useragent/distinfo (new) 1.1 +6 -0 ports/www/mod_auth_useragent/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 09: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 9D79316A4FE; Fri, 16 Apr 2004 09:20:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5257D43D53; Fri, 16 Apr 2004 09:20:30 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GGKUGe083014; Fri, 16 Apr 2004 09:20:30 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GGKTDd083013; Fri, 16 Apr 2004 09:20:29 -0700 (PDT) (envelope-from clement) Message-Id: <200404161620.i3GGKTDd083013@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 09:20:29 -0700 (PDT) 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, 16 Apr 2004 16:20:30 -0000 clement 2004/04/16 09:20:29 PDT FreeBSD ports repository Modified files: . modules Log: mod_auth_useragent --> ports/www/mod_auth_useragent Revision Changes Path 1.9915 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 16 09: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 AC2F416A4CE; Fri, 16 Apr 2004 09:25:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E9C443D31; Fri, 16 Apr 2004 09:25:36 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GGPaGe084886; Fri, 16 Apr 2004 09:25:36 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GGPaV4084885; Fri, 16 Apr 2004 09:25:36 -0700 (PDT) (envelope-from nectar) Message-Id: <200404161625.i3GGPaV4084885@repoman.freebsd.org> From: Jacques Vidrine Date: Fri, 16 Apr 2004 09:25:36 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/ident2 Makefileports/security/ident2/files patch-common.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 16:25:36 -0000 nectar 2004/04/16 09:25:36 PDT FreeBSD ports repository Modified files: security/ident2 Makefile Added files: security/ident2/files patch-common.c Log: Jack of RaptureSecurity reported a double byte buffer overflow in ident2. The bug may allow a remote attacker to execute arbitrary code within the context of the ident2 daemon. The daemon typically runs as user-ID `nobody', but with group-ID `wheel'. Revision Changes Path 1.12 +1 -0 ports/security/ident2/Makefile 1.1 +53 -0 ports/security/ident2/files/patch-common.c (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 09: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 EF02B16A4CE; Fri, 16 Apr 2004 09:27:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2CF143D49; Fri, 16 Apr 2004 09:27:37 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GGRbGe084945; Fri, 16 Apr 2004 09:27:37 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GGRbpd084944; Fri, 16 Apr 2004 09:27:37 -0700 (PDT) (envelope-from njl) Message-Id: <200404161627.i3GGRbpd084944@repoman.freebsd.org> From: Nate Lawson Date: Fri, 16 Apr 2004 09:27:37 -0700 (PDT) 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, 16 Apr 2004 16:27:38 -0000 njl 2004/04/16 09:27:37 PDT FreeBSD src repository Modified files: sys/dev/acpica acpi.c Log: Disable the new wake GPE behavior. With it enabled, my laptop won't stay suspended after the second try. Intel is working on a fix to properly differentiate the non-standard wake/runtime GPEs from wake-only GPEs. Revision Changes Path 1.139 +1 -0 src/sys/dev/acpica/acpi.c From owner-cvs-all@FreeBSD.ORG Fri Apr 16 09:29: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 C281B16A4CE; Fri, 16 Apr 2004 09:29:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A5CB543D41; Fri, 16 Apr 2004 09:29:01 -0700 (PDT) (envelope-from nectar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GGT1Ge085050; Fri, 16 Apr 2004 09:29:01 -0700 (PDT) (envelope-from nectar@repoman.freebsd.org) Received: (from nectar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GGT1Nv085049; Fri, 16 Apr 2004 09:29:01 -0700 (PDT) (envelope-from nectar) Message-Id: <200404161629.i3GGT1Nv085049@repoman.freebsd.org> From: Jacques Vidrine Date: Fri, 16 Apr 2004 09:29:01 -0700 (PDT) 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, 16 Apr 2004 16:29:01 -0000 nectar 2004/04/16 09:29:01 PDT FreeBSD ports repository Modified files: security/vuxml vuln.xml Log: Add mysqlbug temporary file handling vulnerability. Add ident2 vulnerability. make tidy (sorry, I meant to do this in a separate commit) Revision Changes Path 1.79 +146 -92 ports/security/vuxml/vuln.xml From owner-cvs-all@FreeBSD.ORG Fri Apr 16 09:36: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 2245516A4CE; Fri, 16 Apr 2004 09:36:37 -0700 (PDT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id BD9C143D49; Fri, 16 Apr 2004 09:36:36 -0700 (PDT) (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 5BD6B54861; Fri, 16 Apr 2004 11:36:36 -0500 (CDT) Received: by madman.celabo.org (Postfix, from userid 1001) id 0CF396D455; Fri, 16 Apr 2004 11:36:36 -0500 (CDT) Date: Fri, 16 Apr 2004 11:36:35 -0500 From: "Jacques A. Vidrine" To: Oliver Eikemeier Message-ID: <20040416163635.GB49780@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Oliver Eikemeier , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200404160124.i3G1OlUd067575@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404160124.i3G1OlUd067575@repoman.freebsd.org> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/sysutils/pkg_install-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, 16 Apr 2004 16:36:37 -0000 On Thu, Apr 15, 2004 at 06:24:47PM -0700, Oliver Eikemeier wrote: > eik 2004/04/15 18:24:47 PDT > > FreeBSD ports repository > > Modified files: > sysutils/pkg_install-devel Makefile distinfo > Log: > Introduce '*' as the lowest possible version number, so that > >=2.* <3.* > matches all 2.X versions, even alpha. How is this different from ` >=2.a <3.a ' ? Cheers, -- Jacques Vidrine / nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org From owner-cvs-all@FreeBSD.ORG Fri Apr 16 10: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 D44FC16A4CE; Fri, 16 Apr 2004 10:06:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B90D843D62; Fri, 16 Apr 2004 10:06:21 -0700 (PDT) (envelope-from bland@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GH6LGe094022; Fri, 16 Apr 2004 10:06:21 -0700 (PDT) (envelope-from bland@repoman.freebsd.org) Received: (from bland@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GH6LPZ094021; Fri, 16 Apr 2004 10:06:21 -0700 (PDT) (envelope-from bland) Message-Id: <200404161706.i3GH6LPZ094021@repoman.freebsd.org> From: Alexander Nedotsukov Date: Fri, 16 Apr 2004 10:06:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/inkscape Makefileports/graphics/inkscape/files patch-src::knotholder.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, 16 Apr 2004 17:06:22 -0000 bland 2004/04/16 10:06:21 PDT FreeBSD ports repository Modified files: graphics/inkscape Makefile Added files: graphics/inkscape/files patch-src::knotholder.cpp Log: Fix crasher bug. There is a problem in inkscape provoked by sp_object_invoke_write() call wich result in bunch on gtk signals emission wich in turn may release parent knot holder object beeng modified. Current fix is not correct way to resolve the situation but it let us safely go. Revision Changes Path 1.12 +1 -0 ports/graphics/inkscape/Makefile 1.1 +11 -0 ports/graphics/inkscape/files/patch-src::knotholder.cpp (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 10:07: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 E639016A4CF; Fri, 16 Apr 2004 10:07:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CB99A43D68; Fri, 16 Apr 2004 10:07:11 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GH7BGe094068; Fri, 16 Apr 2004 10:07:11 -0700 (PDT) (envelope-from markm@repoman.freebsd.org) Received: (from markm@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GH7BgK094067; Fri, 16 Apr 2004 10:07:11 -0700 (PDT) (envelope-from markm) Message-Id: <200404161707.i3GH7BgK094067@repoman.freebsd.org> From: Mark Murray Date: Fri, 16 Apr 2004 10:07:11 -0700 (PDT) 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 harvest.c 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: Fri, 16 Apr 2004 17:07:12 -0000 markm 2004/04/16 10:07:11 PDT FreeBSD src repository Modified files: sys/dev/random harvest.c randomdev_soft.c Log: Default to harvesting everything. This is to help give a faster startup. harvesting can be turned OFF in etc/rc.d/* if it is a burden. Revision Changes Path 1.24 +1 -1 src/sys/dev/random/harvest.c 1.2 +3 -3 src/sys/dev/random/randomdev_soft.c From owner-cvs-all@FreeBSD.ORG Fri Apr 16 10: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 4BFB416A4CE; Fri, 16 Apr 2004 10:10:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3088543D48; Fri, 16 Apr 2004 10:10:55 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GHAsGe094191; Fri, 16 Apr 2004 10:10:54 -0700 (PDT) (envelope-from markm@repoman.freebsd.org) Received: (from markm@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GHAshD094190; Fri, 16 Apr 2004 10:10:54 -0700 (PDT) (envelope-from markm) Message-Id: <200404161710.i3GHAshD094190@repoman.freebsd.org> From: Mark Murray Date: Fri, 16 Apr 2004 10:10:54 -0700 (PDT) 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.c randomdev.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, 16 Apr 2004 17:10:55 -0000 markm 2004/04/16 10:10:54 PDT FreeBSD src repository Modified files: sys/dev/random randomdev.c randomdev.h Log: Attempts to make this device Giant-free were ill-conceived as uiomove(9) is not properly locked. So, return to NEEDGIANT mode. Later, when uiomove is finely locked, I'll revisit. While I'm here, provide some temporary debugging output to help catch blocking startups. Revision Changes Path 1.51 +9 -13 src/sys/dev/random/randomdev.c 1.6 +0 -1 src/sys/dev/random/randomdev.h From owner-cvs-all@FreeBSD.ORG Fri Apr 16 10: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 7DA7C16A4CE; Fri, 16 Apr 2004 10:13:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 626C043D31; Fri, 16 Apr 2004 10:13:11 -0700 (PDT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GHDBGe096010; Fri, 16 Apr 2004 10:13:11 -0700 (PDT) (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GHDB4B096009; Fri, 16 Apr 2004 10:13:11 -0700 (PDT) (envelope-from brooks) Message-Id: <200404161713.i3GHDB4B096009@repoman.freebsd.org> From: Brooks Davis Date: Fri, 16 Apr 2004 10:13:10 -0700 (PDT) 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, 16 Apr 2004 17:13:11 -0000 brooks 2004/04/16 10:13:10 PDT FreeBSD src repository Modified files: . UPDATING Log: Document changes in /dev/random initalization. Suggest running /etc/rc.d/preseedrandom to seed the PRNG in the upgrade instructions. Revision Changes Path 1.304 +14 -0 src/UPDATING From owner-cvs-all@FreeBSD.ORG Fri Apr 16 10: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 50D7E16A4CE for ; Fri, 16 Apr 2004 10:16:11 -0700 (PDT) Received: from tx2.oucs.ox.ac.uk (tx2.oucs.ox.ac.uk [163.1.2.163]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE7DA43D62 for ; Fri, 16 Apr 2004 10:16:10 -0700 (PDT) (envelope-from colin.percival@wadham.ox.ac.uk) Received: from scan2.oucs.ox.ac.uk ([163.1.2.162] helo=localhost) by tx2.oucs.ox.ac.uk with esmtp (Exim 4.24) id 1BEWwj-00088o-Lg for cvs-all@FreeBSD.org; Fri, 16 Apr 2004 18:16:09 +0100 Received: from rx2.oucs.ox.ac.uk ([163.1.2.161]) by localhost (scan2.oucs.ox.ac.uk [163.1.2.162]) (amavisd-new, port 25) with ESMTP id 31145-04 for ; Fri, 16 Apr 2004 18:16:09 +0100 (BST) Received: from gateway.wadham.ox.ac.uk ([163.1.161.253]) by rx2.oucs.ox.ac.uk with smtp (Exim 4.24) id 1BEWwj-00088d-8A for cvs-all@FreeBSD.org; Fri, 16 Apr 2004 18:16:09 +0100 Received: (qmail 18756 invoked by uid 1004); 16 Apr 2004 17:16:09 -0000 Received: from colin.percival@wadham.ox.ac.uk by gateway by uid 71 with qmail-scanner-1.20 (clamscan: 0.67. sweep: 2.18/3.79. Clear:RC:1(163.1.161.131):. Processed in 0.106049 secs); 16 Apr 2004 17:16:09 -0000 Received: from dhcp1131.wadham.ox.ac.uk (HELO piii600.wadham.ox.ac.uk) (163.1.161.131) by gateway.wadham.ox.ac.uk with SMTP; 16 Apr 2004 17:16:09 -0000 Message-Id: <6.0.1.1.1.20040416181256.03fa0ae0@imap.sfu.ca> X-Sender: cperciva@imap.sfu.ca (Unverified) X-Mailer: QUALCOMM Windows Eudora Version 6.0.1.1 Date: Fri, 16 Apr 2004 18:16:02 +0100 To: Mark Murray From: Colin Percival In-Reply-To: <200404161707.i3GH7BgK094067@repoman.freebsd.org> References: <200404161707.i3GH7BgK094067@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/dev/random harvest.c 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: Fri, 16 Apr 2004 17:16:11 -0000 At 18:07 16/04/2004, Mark Murray wrote: > Default to harvesting everything. This is to help give a faster > startup. harvesting can be turned OFF in etc/rc.d/* if it is a > burden. Would it be reasonable perhaps to start by harvesting everything and revert to selective harvesting after some minimum number of bits have been obtained? Colin Percival From owner-cvs-all@FreeBSD.ORG Fri Apr 16 10:30: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 0BEE516A4CE; Fri, 16 Apr 2004 10:30:13 -0700 (PDT) Received: from storm.FreeBSD.org.uk (storm.FreeBSD.org.uk [194.242.157.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0A3B43D1F; Fri, 16 Apr 2004 10:30:11 -0700 (PDT) (envelope-from mark@grondar.org) Received: from storm.FreeBSD.org.uk (Ugrondar@localhost [127.0.0.1]) i3GHUAAe092334; Fri, 16 Apr 2004 18:30:10 +0100 (BST) (envelope-from mark@grondar.org) Received: (from Ugrondar@localhost)i3GHUA7Q092333; Fri, 16 Apr 2004 18:30:10 +0100 (BST) (envelope-from mark@grondar.org) X-Authentication-Warning: storm.FreeBSD.org.uk: Ugrondar set sender to mark@grondar.org using -f Received: from grondar.org (localhost [127.0.0.1])i3GHTAIn033206; Fri, 16 Apr 2004 18:29:10 +0100 (BST) (envelope-from mark@grondar.org) From: Mark Murray Message-Id: <200404161729.i3GHTAIn033206@grimreaper.grondar.org> To: Colin Percival In-Reply-To: Your message of "Fri, 16 Apr 2004 18:16:02 BST." <6.0.1.1.1.20040416181256.03fa0ae0@imap.sfu.ca> Date: Fri, 16 Apr 2004 18:29:10 +0100 Sender: mark@grondar.org X-Spam-Score: 4 (****) FROM_NO_LOWER,MSGID_FROM_MTA_SHORT X-Scanned-By: MIMEDefang 2.39 cc: cvs-src@FreeBSD.ORG cc: src-committers@FreeBSD.ORG cc: Mark Murray cc: cvs-all@FreeBSD.ORG Subject: Re: cvs commit: src/sys/dev/random harvest.c 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: Fri, 16 Apr 2004 17:30:13 -0000 Colin Percival writes: > At 18:07 16/04/2004, Mark Murray wrote: > > Default to harvesting everything. This is to help give a faster > > startup. harvesting can be turned OFF in etc/rc.d/* if it is a > > burden. > > Would it be reasonable perhaps to start by harvesting everything > and revert to selective harvesting after some minimum number of bits > have been obtained? Sort of. It starts blocked, and unblocks after enough entropy has been gathered. You can turn off the kern.random.sys.seeded=1 sysctl at any time to get it to repeat the process. M -- Mark Murray iumop ap!sdn w,I idlaH From owner-cvs-all@FreeBSD.ORG Fri Apr 16 10: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 60CCA16A4CE; Fri, 16 Apr 2004 10:32:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 45DB043D1D; Fri, 16 Apr 2004 10:32:56 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GHWuGe000172; Fri, 16 Apr 2004 10:32:56 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GHWtCP000171; Fri, 16 Apr 2004 10:32:56 -0700 (PDT) (envelope-from marcus) Message-Id: <200404161732.i3GHWtCP000171@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 16 Apr 2004 10:32:55 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/gconf-editor 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, 16 Apr 2004 17:32:56 -0000 marcus 2004/04/16 10:32:55 PDT FreeBSD ports repository Modified files: sysutils/gconf-editor Makefile distinfo pkg-plist Log: Update to 2.6.1. Revision Changes Path 1.28 +1 -1 ports/sysutils/gconf-editor/Makefile 1.12 +2 -2 ports/sysutils/gconf-editor/distinfo 1.10 +2 -0 ports/sysutils/gconf-editor/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 10:33: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 662AA16A4CF; Fri, 16 Apr 2004 10:33:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BFB443D54; Fri, 16 Apr 2004 10:33:03 -0700 (PDT) (envelope-from jmz@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GHX3Ge000203; Fri, 16 Apr 2004 10:33:03 -0700 (PDT) (envelope-from jmz@repoman.freebsd.org) Received: (from jmz@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GHX3fI000202; Fri, 16 Apr 2004 10:33:03 -0700 (PDT) (envelope-from jmz) Message-Id: <200404161733.i3GHX3fI000202@repoman.freebsd.org> From: Jean-Marc Zucconi Date: Fri, 16 Apr 2004 10:33:03 -0700 (PDT) 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, 16 Apr 2004 17:33:03 -0000 jmz 2004/04/16 10:33:03 PDT FreeBSD ports repository Modified files: textproc/ispell Makefile Log: Install *.aff and *.hash files when ISPELL_NL is defined. Submitted by: vs Revision Changes Path 1.88 +2 -2 ports/textproc/ispell/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 10: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 D8BA116A4CE; Fri, 16 Apr 2004 10:38:58 -0700 (PDT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89AD443D58; Fri, 16 Apr 2004 10:38:58 -0700 (PDT) (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 1D81C5482B; Fri, 16 Apr 2004 12:38:58 -0500 (CDT) Received: by madman.celabo.org (Postfix, from userid 1001) id C1FB76D455; Fri, 16 Apr 2004 12:38:57 -0500 (CDT) Date: Fri, 16 Apr 2004 12:38:57 -0500 From: "Jacques A. Vidrine" To: Oliver Eikemeier Message-ID: <20040416173857.GA50670@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Oliver Eikemeier , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200404160124.i3G1OlUd067575@repoman.freebsd.org> <20040416163635.GB49780@madman.celabo.org> <4080151C.1070200@fillmore-labs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4080151C.1070200@fillmore-labs.com> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/sysutils/pkg_install-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, 16 Apr 2004 17:38:59 -0000 On Fri, Apr 16, 2004 at 07:17:16PM +0200, Oliver Eikemeier wrote: > Jacques A. Vidrine wrote: > > >On Thu, Apr 15, 2004 at 06:24:47PM -0700, Oliver Eikemeier wrote: > > > >> Introduce '*' as the lowest possible version number, so that > >> >=2.* <3.* > >> matches all 2.X versions, even alpha. > > > >How is this different from ` >=2.a <3.a ' ? > > It matches 2.a.b, does not match 3.a.b2 *scratches head* I still don't see a difference. 2.a <= 2.a.b < 3.a 2.a <= 3.a < 3.a.b2 > and is more similar to >=2.X than >= 2.a is. How so? Maybe you mean to say that 2.a > 2.* ? I find that rather confusing. > Btw, at least for pkg_install-devel we have 2.pl0 < 2.a. How did that become broken? What does 2.pl0 even mean? Do you have an example? I'm certain that is against our naming conventions. I'm concerned because I have a function that converts a package version into a 128 bit integer, such that if the package version A is greater than package version B, then f(A) > f(B). If the versioning rules are being changed, I wanna know (and I'd also like to know why). Cheers, -- Jacques Vidrine / nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org From owner-cvs-all@FreeBSD.ORG Fri Apr 16 10: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 478E616A4CE; Fri, 16 Apr 2004 10:44:19 -0700 (PDT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id 046D643D5F; Fri, 16 Apr 2004 10:44:19 -0700 (PDT) (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 964D05482B; Fri, 16 Apr 2004 12:44:18 -0500 (CDT) Received: by madman.celabo.org (Postfix, from userid 1001) id 42E066D455; Fri, 16 Apr 2004 12:44:18 -0500 (CDT) Date: Fri, 16 Apr 2004 12:44:18 -0500 From: "Jacques A. Vidrine" To: Oliver Eikemeier , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org Message-ID: <20040416174418.GC50670@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Oliver Eikemeier , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200404160124.i3G1OlUd067575@repoman.freebsd.org> <20040416163635.GB49780@madman.celabo.org> <4080151C.1070200@fillmore-labs.com> <20040416173857.GA50670@madman.celabo.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040416173857.GA50670@madman.celabo.org> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i Subject: Re: cvs commit: ports/sysutils/pkg_install-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, 16 Apr 2004 17:44:19 -0000 On Fri, Apr 16, 2004 at 12:38:57PM -0500, Jacques A. Vidrine wrote: > On Fri, Apr 16, 2004 at 07:17:16PM +0200, Oliver Eikemeier wrote: > > Jacques A. Vidrine wrote: > > > > >On Thu, Apr 15, 2004 at 06:24:47PM -0700, Oliver Eikemeier wrote: > > > > > >> Introduce '*' as the lowest possible version number, so that > > >> >=2.* <3.* > > >> matches all 2.X versions, even alpha. > > > > > >How is this different from ` >=2.a <3.a ' ? > > > > It matches 2.a.b, does not match 3.a.b2 > > *scratches head* I still don't see a difference. > > 2.a <= 2.a.b < 3.a > 2.a <= 3.a < 3.a.b2 *blink* Oh, wait, I got that wrong. 2.a > 2.a.b and 3.a > 3.a.b2. Except that version names such as `2.a.b' and `3.a.b2' are unacceptable. > > and is more similar to >=2.X than >= 2.a is. > > How so? Maybe you mean to say that 2.a > 2.* ? > I find that rather confusing. I think I'm with you now. `*' is not a version number, but a glob? Cheers, -- Jacques Vidrine / nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org From owner-cvs-all@FreeBSD.ORG Fri Apr 16 10:58: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 4250D16A4CE; Fri, 16 Apr 2004 10:58:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 27F6343D55; Fri, 16 Apr 2004 10:58:43 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GHwgGe004463; Fri, 16 Apr 2004 10:58:42 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GHwgsL004462; Fri, 16 Apr 2004 10:58:42 -0700 (PDT) (envelope-from marcus) Message-Id: <200404161758.i3GHwgsL004462@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 16 Apr 2004 10:58:42 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/bugbuddy2 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, 16 Apr 2004 17:58:43 -0000 marcus 2004/04/16 10:58:42 PDT FreeBSD ports repository Modified files: devel/bugbuddy2 Makefile distinfo pkg-plist Log: Update to 2.6.1. Revision Changes Path 1.51 +1 -1 ports/devel/bugbuddy2/Makefile 1.25 +2 -2 ports/devel/bugbuddy2/distinfo 1.19 +2 -0 ports/devel/bugbuddy2/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 11: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 B6EA516A4CE for ; Fri, 16 Apr 2004 11:08:33 -0700 (PDT) Received: from mail3.speakeasy.net (mail3.speakeasy.net [216.254.0.203]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5EEA643D39 for ; Fri, 16 Apr 2004 11:08:33 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: (qmail 26217 invoked from network); 16 Apr 2004 18:08:32 -0000 Received: from dsl027-160-063.atl1.dsl.speakeasy.net (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) encrypted SMTP for ; 16 Apr 2004 18:08:32 -0000 Received: from 10.50.40.205 (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.10/8.12.10) with ESMTP id i3GI8Uf0001708; Fri, 16 Apr 2004 14:08:30 -0400 (EDT) (envelope-from jhb@FreeBSD.org) From: John Baldwin To: Robert Watson Date: Fri, 16 Apr 2004 14:08:37 -0400 User-Agent: KMail/1.6 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: <200404161408.37851.jhb@FreeBSD.org> X-Spam-Checker-Version: SpamAssassin 2.63 (2004-01-11) on server.baldwin.cx cc: cvs-src@FreeBSD.org cc: Mike Silbersack cc: src-committers@FreeBSD.org cc: Mark Murray cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/dev/random randomdev.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 18:08:34 -0000 On Thursday 15 April 2004 02:54 pm, Robert Watson wrote: > On Thu, 15 Apr 2004, John Baldwin wrote: > > On Thursday 15 April 2004 03:32 am, Mike Silbersack wrote: > > > On Tue, 13 Apr 2004, John Baldwin wrote: > > > > You should drop the lock before uiomove(). If the uio can possibly > > > > reference user memory, then uiomove() will do a copyout() which can > > > > fault and thus sleep if the page is in swap. > > > > > > > > -- > > > > John Baldwin <>< http://www.FreeBSD.org/~jhb/ > > > > > > I'm going to have a similar problem in sendfile when I try to > > > de-giantify it, and I'm sure read / write will have issues as well... > > > will WITNESS catch this potential problem? > > > > Not currently. One could add a WITNESS_WARN() check to uiomove() fairly > > easily though to force witness to catch this. > > We also need to generate sleep warnings it M_TRYWAIT is passed to the mbuf > allocator, which I believe we currently don't do. Also, did we ever > re-add the sleep warning to the process tracing code? To STOPEVENT()? No.. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve" = http://www.FreeBSD.org From owner-cvs-all@FreeBSD.ORG Fri Apr 16 11:10: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 E379916A4CE; Fri, 16 Apr 2004 11:10:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C960843D49; Fri, 16 Apr 2004 11:10:28 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GIASGe007565; Fri, 16 Apr 2004 11:10:28 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GIAS9T007564; Fri, 16 Apr 2004 11:10:28 -0700 (PDT) (envelope-from krion) Message-Id: <200404161810.i3GIAS9T007564@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 11:10:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/p5-Cache-Memcached 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, 16 Apr 2004 18:10:29 -0000 krion 2004/04/16 11:10:28 PDT FreeBSD ports repository Modified files: databases/p5-Cache-Memcached pkg-descr Log: - Fix WWW: PR: ports/65632 Submitted by: maintainer Revision Changes Path 1.2 +1 -1 ports/databases/p5-Cache-Memcached/pkg-descr From owner-cvs-all@FreeBSD.ORG Fri Apr 16 11:12: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 0D1A516A4CE; Fri, 16 Apr 2004 11:12:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0967A43D68; Fri, 16 Apr 2004 11:12:59 -0700 (PDT) (envelope-from julian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GICwGe009472; Fri, 16 Apr 2004 11:12:58 -0700 (PDT) (envelope-from julian@repoman.freebsd.org) Received: (from julian@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GICwsc009471; Fri, 16 Apr 2004 11:12:58 -0700 (PDT) (envelope-from julian) Message-Id: <200404161812.i3GICwsc009471@repoman.freebsd.org> From: Julian Elischer Date: Fri, 16 Apr 2004 11:12:58 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/sys/dev/usb if_aue.c if_cue.c if_rue.c uftdi.c uhci.c usbdi.c uscanner.c uvisor.c uvscom.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 18:12:59 -0000 julian 2004/04/16 11:12:58 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) sys/dev/usb if_aue.c if_cue.c if_rue.c uftdi.c uhci.c usbdi.c uscanner.c uvisor.c uvscom.c Log: MFC of several small changes to the USB code.. Diff reduction on several ethernet adapter drivers (name chenges etc) MFC a Bill Paul Copyright notice. Add several device IDs. Reset a uhci controller the same way we do in -current remove an un-needed include file add code to probe a Clie 3 series Approved by: re (scottl@) Revision Changes Path 1.19.2.21 +6 -4 src/sys/dev/usb/if_aue.c 1.7.2.8 +9 -7 src/sys/dev/usb/if_cue.c 1.2.2.3 +43 -15 src/sys/dev/usb/if_rue.c 1.3.2.5 +19 -1 src/sys/dev/usb/uftdi.c 1.40.2.14 +3 -0 src/sys/dev/usb/uhci.c 1.34.2.10 +4 -11 src/sys/dev/usb/usbdi.c 1.2.2.20 +1 -0 src/sys/dev/usb/uscanner.c 1.7.2.10 +80 -1 src/sys/dev/usb/uvisor.c 1.9.2.10 +0 -1 src/sys/dev/usb/uvscom.c From owner-cvs-all@FreeBSD.ORG Fri Apr 16 11: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 D039516A4CE; Fri, 16 Apr 2004 11:18:07 -0700 (PDT) Received: from postman.arcor.de (postman1.arcor-online.net [151.189.20.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id C6FEC43D45; Fri, 16 Apr 2004 11:18:06 -0700 (PDT) (envelope-from eikemeier@fillmore-labs.com) Received: from fillmore.dyndns.org (port-212-202-49-130.reverse.qsc.de [212.202.49.130]) (authenticated bits=0)i3GII4KA029534 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Fri, 16 Apr 2004 20:18:05 +0200 (MEST) Received: from [172.16.0.2] (helo=fillmore-labs.com) by fillmore.dyndns.org with esmtp (Exim 4.32; FreeBSD) id 1BEXuX-000Kpb-5I; Fri, 16 Apr 2004 20:18:04 +0200 Message-ID: <40802354.3030202@fillmore-labs.com> Date: Fri, 16 Apr 2004 20:17:56 +0200 From: Oliver Eikemeier Organization: Fillmore Labs GmbH - http://www.fillmore-labs.com/ MIME-Version: 1.0 To: "Jacques A. Vidrine" References: <200404160124.i3G1OlUd067575@repoman.freebsd.org> <20040416163635.GB49780@madman.celabo.org> <4080151C.1070200@fillmore-labs.com> <20040416173857.GA50670@madman.celabo.org> <20040416174418.GC50670@madman.celabo.org> In-Reply-To: <20040416174418.GC50670@madman.celabo.org> Content-Type: text/plain; charset=us-ascii; format=flowed 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/sysutils/pkg_install-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, 16 Apr 2004 18:18:08 -0000 Jacques A. Vidrine wrote: > On Fri, Apr 16, 2004 at 12:38:57PM -0500, Jacques A. Vidrine wrote: > >>On Fri, Apr 16, 2004 at 07:17:16PM +0200, Oliver Eikemeier wrote: >> >>>Jacques A. Vidrine wrote: >>> >>>>On Thu, Apr 15, 2004 at 06:24:47PM -0700, Oliver Eikemeier wrote: >>>> >>>>>Introduce '*' as the lowest possible version number, so that >>>>> >=2.* <3.* >>>>>matches all 2.X versions, even alpha. >>>> >>>>How is this different from ` >=2.a <3.a ' ? >>> >>>It matches 2.a.b, does not match 3.a.b2 >> >>*scratches head* I still don't see a difference. >> >> 2.a <= 2.a.b < 3.a >> 2.a <= 3.a < 3.a.b2 > > *blink* Oh, wait, I got that wrong. 2.a > 2.a.b and 3.a > > 3.a.b2. Except that version names such as `2.a.b' and `3.a.b2' are > unacceptable. See biology/fasta3 for an example. They may be unacceptable for portlint, but pkg_install has to be as tolerant as possible, and needs a consistent definition of version numbers. >>>and is more similar to >=2.X than >= 2.a is. >> >>How so? Maybe you mean to say that 2.a > 2.* ? >>I find that rather confusing. I meant that 2.* is somewhat similar to 'all 2.X versions'. Of course you have to be careful to get things right, but at least it is a proper definition of 'the lowest possible version number' instead of hoping that it would be 2.a. There are already lot of entries in VuXML which erroneously assume it would be 2.0. > I think I'm with you now. `*' is not a version number, but a glob? Nope, * is a version number that can not be assigned to a port. It is guaranteed to be the lowest possible one, and there is a similarity between portname-2.* and portname>=2.* the first being a glob (matching all 2.X versions, but not 02.1), the second a relational comparison (matching all 2.X versions, but 3.2 too) . It may be confusing, but in most cases it is easy to do the right thing, and things like 2.# or 2.% aren't really better. >>Btw, at least for pkg_install-devel we have 2.pl0 < 2.a. > > How did that become broken? What does 2.pl0 even mean? Do you have > an example? I'm certain that is against our naming conventions. Nope, refer to the FreeBSD Porter's Handbook, 5.2.4 Package Naming Conventions: Item 4. mentions `pl' as a version number, so it is special (like NetBSD's nb), and it makes no sense to allow it only as a standalone component. > I'm concerned because I have a function that converts a package > version into a 128 bit integer, such that if the package version A is > greater than package version B, then f(A) > f(B). If the versioning > rules are being changed, I wanna know (and I'd also like to know why). I have a function that converts a version number into a floating point number < 1.0, such that A > B iff f(A) > f(B). I doubt that 128 bits are sufficient in every case, but I may be wrong. Do you have a reference to a definition of the versioning rules besides PR 56961? -Oliver From owner-cvs-all@FreeBSD.ORG Fri Apr 16 11:20: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 A07DC16A4CE; Fri, 16 Apr 2004 11:20:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 857FE43D64; Fri, 16 Apr 2004 11:20:15 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GIKFGe009821; Fri, 16 Apr 2004 11:20:15 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GIKFp6009820; Fri, 16 Apr 2004 11:20:15 -0700 (PDT) (envelope-from marcus) Message-Id: <200404161820.i3GIKFp6009820@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 16 Apr 2004 11:20:15 -0700 (PDT) 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 Makefile distinfo ports/sysutils/pkg_install/files patch-add X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 18:20:15 -0000 marcus 2004/04/16 11:20:15 PDT FreeBSD ports repository Modified files: sysutils/pkg_install Makefile distinfo Added files: sysutils/pkg_install/files patch-add Log: * Update to today's -CURRENT snapshot * Add local patches to cause pkg_add to spawn itself correctly when installing dependent packages. Previously, it would always spawn /usr/sbin/pkg_add. Revision Changes Path 1.7 +1 -1 ports/sysutils/pkg_install/Makefile 1.4 +2 -2 ports/sysutils/pkg_install/distinfo 1.1 +67 -0 ports/sysutils/pkg_install/files/patch-add (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 11: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 A23ED16A4CE; Fri, 16 Apr 2004 11:23:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 870EC43D1F; Fri, 16 Apr 2004 11:23:55 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GINtGe011645; Fri, 16 Apr 2004 11:23:55 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GINtYW011644; Fri, 16 Apr 2004 11:23:55 -0700 (PDT) (envelope-from hrs) Message-Id: <200404161823.i3GINtYW011644@repoman.freebsd.org> From: Hiroki Sato Date: Fri, 16 Apr 2004 11:23:55 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/share/sgml man-refs.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, 16 Apr 2004 18:23:55 -0000 hrs 2004/04/16 11:23:55 PDT FreeBSD doc repository Modified files: share/sgml man-refs.ent Log: Add twa(4). Revision Changes Path 1.273 +1 -0 doc/share/sgml/man-refs.ent From owner-cvs-all@FreeBSD.ORG Fri Apr 16 11:25: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 0ED1C16A4CE; Fri, 16 Apr 2004 11:25:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA0DD43D41; Fri, 16 Apr 2004 11:25:16 -0700 (PDT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GIPGGe011724; Fri, 16 Apr 2004 11:25:16 -0700 (PDT) (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GIPGcv011723; Fri, 16 Apr 2004 11:25:16 -0700 (PDT) (envelope-from oliver) Message-Id: <200404161825.i3GIPGcv011723@repoman.freebsd.org> From: Oliver Lehmann Date: Fri, 16 Apr 2004 11:25:16 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/xfce4 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, 16 Apr 2004 18:25:17 -0000 oliver 2004/04/16 11:25:16 PDT FreeBSD ports repository Modified files: x11-wm/xfce4 Makefile Log: create ${X11BASE}/etc/gdm/Sessions if it doesn't exist and WITH_GDM is specified Revision Changes Path 1.84 +2 -0 ports/x11-wm/xfce4/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 11:26: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 80AF916A4CE; Fri, 16 Apr 2004 11:26:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6628743D2D; Fri, 16 Apr 2004 11:26:33 -0700 (PDT) (envelope-from oliver@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GIQXGe011796; Fri, 16 Apr 2004 11:26:33 -0700 (PDT) (envelope-from oliver@repoman.freebsd.org) Received: (from oliver@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GIQXfl011795; Fri, 16 Apr 2004 11:26:33 -0700 (PDT) (envelope-from oliver) Message-Id: <200404161826.i3GIQXfl011795@repoman.freebsd.org> From: Oliver Lehmann Date: Fri, 16 Apr 2004 11:26:33 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/xfce4 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, 16 Apr 2004 18:26:33 -0000 oliver 2004/04/16 11:26:33 PDT FreeBSD ports repository Modified files: x11-wm/xfce4 Makefile Log: last commit was sponsored by: PR: ports/65634 Submitted By: Linh Pham Revision Changes Path 1.85 +0 -0 ports/x11-wm/xfce4/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 11: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 6489316A4CE; Fri, 16 Apr 2004 11:30:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4852E43D3F; Fri, 16 Apr 2004 11:30:57 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GIUvGe012029; Fri, 16 Apr 2004 11:30:57 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GIUuDt012028; Fri, 16 Apr 2004 11:30:56 -0700 (PDT) (envelope-from hrs) Message-Id: <200404161830.i3GIUuDt012028@repoman.freebsd.org> From: Hiroki Sato Date: Fri, 16 Apr 2004 11:30:56 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/share/sgml man-refs.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, 16 Apr 2004 18:30:57 -0000 hrs 2004/04/16 11:30:56 PDT FreeBSD doc repository Modified files: share/sgml man-refs.ent Log: Add umct(4). Revision Changes Path 1.274 +1 -0 doc/share/sgml/man-refs.ent From owner-cvs-all@FreeBSD.ORG Fri Apr 16 11: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 AF11516A4CE; Fri, 16 Apr 2004 11:36:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94B0543D4C; Fri, 16 Apr 2004 11:36:53 -0700 (PDT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GIarGe013938; Fri, 16 Apr 2004 11:36:53 -0700 (PDT) (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GIarBH013937; Fri, 16 Apr 2004 11:36:53 -0700 (PDT) (envelope-from brooks) Message-Id: <200404161836.i3GIarBH013937@repoman.freebsd.org> From: Brooks Davis Date: Fri, 16 Apr 2004 11:36:52 -0700 (PDT) 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, 16 Apr 2004 18:36:53 -0000 brooks 2004/04/16 11:36:52 PDT FreeBSD src repository Modified files: . UPDATING Log: I added preseedrandom yesterday, not last month. Reported by: Dmitry Morozovsky Revision Changes Path 1.305 +1 -1 src/UPDATING From owner-cvs-all@FreeBSD.ORG Fri Apr 16 11: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 C68D016A4CE; Fri, 16 Apr 2004 11:38:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3B0F43D39; Fri, 16 Apr 2004 11:38:05 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GIc5Ge014002; Fri, 16 Apr 2004 11:38:05 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GIc59B014001; Fri, 16 Apr 2004 11:38:05 -0700 (PDT) (envelope-from hrs) Message-Id: <200404161838.i3GIc59B014001@repoman.freebsd.org> From: Hiroki Sato Date: Fri, 16 Apr 2004 11:38:05 -0700 (PDT) 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, 16 Apr 2004 18:38:05 -0000 hrs 2004/04/16 11:38:05 PDT FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release note: acpi_toshiba(4) video switching support, getvfsent(3) removed, sx driver added, pci(4) bus resource and power management updated, per-interface polling(4) support, ata(4) early support for Promise SX4/SX4000, dump(8) and restore(8) -P option, make(1) .warning directive, ACPI-CA 20040402 import, and CVS 1.11.15 import. Update release note: Use &man.twa.4;. Revision Changes Path 1.711 +54 -9 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Fri Apr 16 11:42: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 EAF5E16A4CE; Fri, 16 Apr 2004 11:42:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D174243D45; Fri, 16 Apr 2004 11:42:09 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GIg9Ge015532; Fri, 16 Apr 2004 11:42:09 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GIg9rL015528; Fri, 16 Apr 2004 11:42:09 -0700 (PDT) (envelope-from hrs) Message-Id: <200404161842.i3GIg9rL015528@repoman.freebsd.org> From: Hiroki Sato Date: Fri, 16 Apr 2004 11:42:09 -0700 (PDT) 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, 16 Apr 2004 18:42:10 -0000 hrs 2004/04/16 11:42:09 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release note: GNOME 2.6 and KDE 3.2.1. MFC: umct(4) driver added, and SIZE attribute in distinfo. Update release note: Use &man.twa.4;, and usb(4) has early support for some USB2 devices[*]. Suggested by: julian[*] Approved by: re (implicitly) Revision Changes Path 1.22.2.406 +37 -4 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Fri Apr 16 11: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 CD4AB16A4CE; Fri, 16 Apr 2004 11:54:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B2BD443D2F; Fri, 16 Apr 2004 11:54:06 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GIs6Ge018074; Fri, 16 Apr 2004 11:54:06 -0700 (PDT) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GIs5Z4018073; Fri, 16 Apr 2004 11:54:05 -0700 (PDT) (envelope-from jhb) Message-Id: <200404161854.i3GIs5Z4018073@repoman.freebsd.org> From: John Baldwin Date: Fri, 16 Apr 2004 11:54:05 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/pci pci_pir.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 18:54:06 -0000 jhb 2004/04/16 11:54:05 PDT FreeBSD src repository Modified files: sys/i386/pci pci_pir.c Log: Don't call the BIOS to route a link that has already been routed by the BIOS during POST as it apparently makes some machines unhappy. Tested by: mux Revision Changes Path 1.110 +3 -2 src/sys/i386/pci/pci_pir.c From owner-cvs-all@FreeBSD.ORG Fri Apr 16 12:00: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 3549D16A4CF; Fri, 16 Apr 2004 12:00:21 -0700 (PDT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 70B0A43D41; Fri, 16 Apr 2004 12:00:20 -0700 (PDT) (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 i3GJ4Fpc042416 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Fri, 16 Apr 2004 22:04:16 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i3GJ0DVU001668; Fri, 16 Apr 2004 22:00:13 +0300 (EEST) (envelope-from ru) Date: Fri, 16 Apr 2004 22:00:12 +0300 From: Ruslan Ermilov To: Hiroki Sato Message-ID: <20040416190012.GB1584@ip.net.ua> References: <200404161838.i3GIc59B014001@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="E39vaYmALEf/7YXx" Content-Disposition: inline In-Reply-To: <200404161838.i3GIc59B014001@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: 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, 16 Apr 2004 19:00:21 -0000 --E39vaYmALEf/7YXx Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Fri, Apr 16, 2004 at 11:38:05AM -0700, Hiroki Sato wrote: > hrs 2004/04/16 11:38:05 PDT >=20 > FreeBSD src repository >=20 > Modified files: > release/doc/en_US.ISO8859-1/relnotes/common new.sgml=20 > Log: > New release note: > acpi_toshiba(4) video switching support, > getvfsent(3) removed, > sx driver added, > pci(4) bus resource and power management updated, > per-interface polling(4) support, > ata(4) early support for Promise SX4/SX4000, > dump(8) and restore(8) -P option, > make(1) .warning directive, > ACPI-CA 20040402 import, and > CVS 1.11.15 import. > =20 > Update release note: > Use &man.twa.4;. > =20 > Revision Changes Path > 1.711 +54 -9 src/release/doc/en_US.ISO8859-1/relnotes/common/ne= w.sgml >=20 Actually, all interfaces that support polling(4) now also support per-interface polling(4). Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --E39vaYmALEf/7YXx Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAgC08Ukv4P6juNwoRAs+TAJ9A+mh25N4oLCUKg7txm/mAPD2FKACfYj7t DLaeBKPWU3FQV9ibrXgqc8Y= =ScCj -----END PGP SIGNATURE----- --E39vaYmALEf/7YXx-- From owner-cvs-all@FreeBSD.ORG Fri Apr 16 12:16: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 B084E16A4CE; Fri, 16 Apr 2004 12:16:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9491E43D49; Fri, 16 Apr 2004 12:16:13 -0700 (PDT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GJGDGe023239; Fri, 16 Apr 2004 12:16:13 -0700 (PDT) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GJGDkk023238; Fri, 16 Apr 2004 12:16:13 -0700 (PDT) (envelope-from glewis) Message-Id: <200404161916.i3GJGDkk023238@repoman.freebsd.org> From: Greg Lewis Date: Fri, 16 Apr 2004 12:16:13 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/eclipse-langpack 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, 16 Apr 2004 19:16:13 -0000 glewis 2004/04/16 12:16:12 PDT FreeBSD ports repository Modified files: java/eclipse-langpack Makefile pkg-plist Log: . Fix packing list. [1] . Remove bogus BUILD_DEPENDS (BUILD_DEPENDS and NO_BUILD?). Submitted by: bento via kris Revision Changes Path 1.8 +1 -2 ports/java/eclipse-langpack/Makefile 1.4 +4 -0 ports/java/eclipse-langpack/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 12:25: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 574BB16A4FA; Fri, 16 Apr 2004 12:25:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3CD8B43D45; Fri, 16 Apr 2004 12:25:15 -0700 (PDT) (envelope-from pdeuskar@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GJPFGe025252; Fri, 16 Apr 2004 12:25:15 -0700 (PDT) (envelope-from pdeuskar@repoman.freebsd.org) Received: (from pdeuskar@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GJPFe8025251; Fri, 16 Apr 2004 12:25:15 -0700 (PDT) (envelope-from pdeuskar) Message-Id: <200404161925.i3GJPFe8025251@repoman.freebsd.org> From: Prafulla Deuskar Date: Fri, 16 Apr 2004 12:25:14 -0700 (PDT) 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: Fri, 16 Apr 2004 19:25:15 -0000 pdeuskar 2004/04/16 12:25:14 PDT FreeBSD src repository Modified files: . access Log: Add Tony Ackerman as src committer. Tony would be taking over maintainership of the em driver and 10 gigabit driver (when we release it). I (pdeuskar@freebsd.org) will be Tony's mentor. Approved by: core Revision Changes Path 1.659 +1 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Fri Apr 16 12:26: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 B165016A4CE; Fri, 16 Apr 2004 12:26:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9617143D58; Fri, 16 Apr 2004 12:26:37 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GJQbGe025364; Fri, 16 Apr 2004 12:26:37 -0700 (PDT) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GJQb76025363; Fri, 16 Apr 2004 12:26:37 -0700 (PDT) (envelope-from jhb) Message-Id: <200404161926.i3GJQb76025363@repoman.freebsd.org> From: John Baldwin Date: Fri, 16 Apr 2004 12:26:37 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/i386/i386 apic_vector.s exception.s support.s src/sys/i386/isa atpic_vector.s X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 19:26:37 -0000 jhb 2004/04/16 12:26:37 PDT FreeBSD src repository Modified files: sys/i386/i386 apic_vector.s exception.s support.s sys/i386/isa atpic_vector.s Log: Use %eax rather than %ax when loading segment registers to avoid partial register stalls. Reviewed by: bde (a while ago, and I think an earlier version) Revision Changes Path 1.99 +27 -27 src/sys/i386/i386/apic_vector.s 1.108 +15 -15 src/sys/i386/i386/exception.s 1.102 +5 -5 src/sys/i386/i386/support.s 1.44 +6 -6 src/sys/i386/isa/atpic_vector.s From owner-cvs-all@FreeBSD.ORG Fri Apr 16 12:26: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 6B44316A4CF; Fri, 16 Apr 2004 12:26:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50ECD43D3F; Fri, 16 Apr 2004 12:26:43 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GJQhGe025390; Fri, 16 Apr 2004 12:26:43 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GJQh6f025389; Fri, 16 Apr 2004 12:26:43 -0700 (PDT) (envelope-from linimon) Message-Id: <200404161926.i3GJQh6f025389@repoman.freebsd.org> From: Mark Linimon Date: Fri, 16 Apr 2004 12:26:43 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/sourcenav 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, 16 Apr 2004 19:26:43 -0000 linimon 2004/04/16 12:26:43 PDT FreeBSD ports repository Modified files: devel/sourcenav pkg-plist Log: Per dosirak run, fix plist. Revision Changes Path 1.4 +1 -0 ports/devel/sourcenav/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 12:27: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 24F9A16A4CE; Fri, 16 Apr 2004 12:27:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0484943D58; Fri, 16 Apr 2004 12:27:04 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GJR4Ge025428; Fri, 16 Apr 2004 12:27:04 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GJR4jN025427; Fri, 16 Apr 2004 12:27:04 -0700 (PDT) (envelope-from linimon) Message-Id: <200404161927.i3GJR4jN025427@repoman.freebsd.org> From: Mark Linimon Date: Fri, 16 Apr 2004 12:27:04 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/serveez 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, 16 Apr 2004 19:27:05 -0000 linimon 2004/04/16 12:27:04 PDT FreeBSD ports repository Modified files: net/serveez pkg-plist Log: Per dosirak run, fix plist. Revision Changes Path 1.6 +1 -0 ports/net/serveez/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 12:32: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 BDD3016A4CE; Fri, 16 Apr 2004 12:32:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3F6143D45; Fri, 16 Apr 2004 12:32:35 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GJWZGe027398; Fri, 16 Apr 2004 12:32:35 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GJWZga027397; Fri, 16 Apr 2004 12:32:35 -0700 (PDT) (envelope-from linimon) Message-Id: <200404161932.i3GJWZga027397@repoman.freebsd.org> From: Mark Linimon Date: Fri, 16 Apr 2004 12:32:35 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/rvm 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, 16 Apr 2004 19:32:35 -0000 linimon 2004/04/16 12:32:35 PDT FreeBSD ports repository Modified files: devel/rvm pkg-plist Log: Per dosirak run, fix plist. Revision Changes Path 1.7 +5 -0 ports/devel/rvm/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 12:41: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 97A7916A4CE; Fri, 16 Apr 2004 12:41:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7F42043D54; Fri, 16 Apr 2004 12:41:31 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GJfVGe028525; Fri, 16 Apr 2004 12:41:31 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GJfV8C028524; Fri, 16 Apr 2004 12:41:31 -0700 (PDT) (envelope-from linimon) Message-Id: <200404161941.i3GJfV8C028524@repoman.freebsd.org> From: Mark Linimon Date: Fri, 16 Apr 2004 12:41:31 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/serveez 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, 16 Apr 2004 19:41:31 -0000 linimon 2004/04/16 12:41:31 PDT FreeBSD ports repository Modified files: net/serveez pkg-plist Log: Back out last checkin. The listed file must be from some dependency. A single install/deinstall cycle was not enough to catch this, sigh. Revision Changes Path 1.7 +0 -1 ports/net/serveez/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 12:46: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 B164916A4CE; Fri, 16 Apr 2004 12:46:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AED6243D49; Fri, 16 Apr 2004 12:46:30 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GJkUGe029615; Fri, 16 Apr 2004 12:46:30 -0700 (PDT) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GJkUoo029614; Fri, 16 Apr 2004 12:46:30 -0700 (PDT) (envelope-from jhb) Message-Id: <200404161946.i3GJkUoo029614@repoman.freebsd.org> From: John Baldwin Date: Fri, 16 Apr 2004 12:46:30 -0700 (PDT) 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 madt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 19:46:30 -0000 jhb 2004/04/16 12:46:30 PDT FreeBSD src repository Modified files: sys/i386/acpica madt.c Log: Revert part of the "BIOS brain damage" from rev 1.10. It seems that different BIOSs use the same exact settings to mean two very different and incompatible things for the SCI. Thus, if the SCI is remapped to a PCI interrupt, we now trust the trigger/polarity that the MADT provides by default. However, the SCI can be forced to level/lo as 1.10 did by setting the tunable "hw.acpi.force_sci_lo" to a non-zero value from the loader. Thus, if rev 1.10 caused an interrupt storm, it should nwo fix your machine. If rev 1.10 fixed an interrupt storm on your machine, you probably need to set the aforementioned tunable in /boot/loader.conf to prevent the interrupt storm. The more general problem of getting the SCI's trigger/polarity programmed "correctly" (for some value of correctly meaning several workarounds for broken BIOSs and inconsistent "implementations" of the ACPI standard) is going to require more work, but this band-aid should improve the current situation somewhat. Requested by: njl Revision Changes Path 1.11 +5 -4 src/sys/i386/acpica/madt.c From owner-cvs-all@FreeBSD.ORG Fri Apr 16 12: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 0F66116A4CE; Fri, 16 Apr 2004 12:49:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E91D543D53; Fri, 16 Apr 2004 12:49:52 -0700 (PDT) (envelope-from mi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GJnqGe035684; Fri, 16 Apr 2004 12:49:52 -0700 (PDT) (envelope-from mi@repoman.freebsd.org) Received: (from mi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GJnqh2035683; Fri, 16 Apr 2004 12:49:52 -0700 (PDT) (envelope-from mi) Message-Id: <200404161949.i3GJnqh2035683@repoman.freebsd.org> From: Mikhail Teterin Date: Fri, 16 Apr 2004 12:49:52 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/dbf Makefile distinfo ports/databases/dbf/files patch-dbf.c patch-statistic X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 19:49:53 -0000 mi 2004/04/16 12:49:52 PDT FreeBSD ports repository Modified files: databases/dbf Makefile distinfo databases/dbf/files patch-dbf.c Added files: databases/dbf/files patch-statistic Log: Update from 0.8.1 to 0.8.3. Fix bugs... Revision Changes Path 1.7 +3 -2 ports/databases/dbf/Makefile 1.7 +2 -2 ports/databases/dbf/distinfo 1.3 +43 -17 ports/databases/dbf/files/patch-dbf.c 1.1 +82 -0 ports/databases/dbf/files/patch-statistic (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 12:57: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 7C1D416A4CE; Fri, 16 Apr 2004 12:57:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77AA543D46; Fri, 16 Apr 2004 12:57:22 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GJvMGe037737; Fri, 16 Apr 2004 12:57:22 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GJvL7u037736; Fri, 16 Apr 2004 12:57:21 -0700 (PDT) (envelope-from clement) Message-Id: <200404161957.i3GJvL7u037736@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 12:57:21 -0700 (PDT) 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_log_sql2 Makefile distinfo pkg-descr pkg-plist ports/www/mod_log_sql2/files patch-functions13.h patch-mod_log_sql.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 19:57:22 -0000 clement 2004/04/16 12:57:21 PDT FreeBSD ports repository Modified files: www Makefile Added files: www/mod_log_sql2 Makefile distinfo pkg-descr pkg-plist www/mod_log_sql2/files patch-functions13.h patch-mod_log_sql.c Log: Add mod_log_sql 1.97. This add-on module allows the apache web server to use a MySQL database for logging of all operations. WWW: http://www.outoforder.cc/projects/apache/mod_log_sql/ This release add supports for apache2. Revision Changes Path 1.854 +1 -0 ports/www/Makefile 1.1 +35 -0 ports/www/mod_log_sql2/Makefile (new) 1.1 +2 -0 ports/www/mod_log_sql2/distinfo (new) 1.1 +11 -0 ports/www/mod_log_sql2/files/patch-functions13.h (new) 1.1 +31 -0 ports/www/mod_log_sql2/files/patch-mod_log_sql.c (new) 1.1 +4 -0 ports/www/mod_log_sql2/pkg-descr (new) 1.1 +6 -0 ports/www/mod_log_sql2/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 12:57: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 AD27D16A4CE; Fri, 16 Apr 2004 12:57:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9309F43D39; Fri, 16 Apr 2004 12:57:38 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GJvcGe037780; Fri, 16 Apr 2004 12:57:38 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GJvbLs037779; Fri, 16 Apr 2004 12:57:37 -0700 (PDT) (envelope-from clement) Message-Id: <200404161957.i3GJvbLs037779@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 12:57:37 -0700 (PDT) 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, 16 Apr 2004 19:57:38 -0000 clement 2004/04/16 12:57:37 PDT FreeBSD ports repository Modified files: . modules Log: mod_log_sql2 --> ports/www/mod_log_sql2 Revision Changes Path 1.9916 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 16 13: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 C639516A4CE; Fri, 16 Apr 2004 13:08:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AC9A043D1D; Fri, 16 Apr 2004 13:08:19 -0700 (PDT) (envelope-from mi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GK8JGe040818; Fri, 16 Apr 2004 13:08:19 -0700 (PDT) (envelope-from mi@repoman.freebsd.org) Received: (from mi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GK8JYx040817; Fri, 16 Apr 2004 13:08:19 -0700 (PDT) (envelope-from mi) Message-Id: <200404162008.i3GK8JYx040817@repoman.freebsd.org> From: Mikhail Teterin Date: Fri, 16 Apr 2004 13:08:19 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/neowebscript Makefileports/www/neowebscript/files Makefile.lib X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 20:08:19 -0000 mi 2004/04/16 13:08:19 PDT FreeBSD ports repository Modified files: www/neowebscript Makefile www/neowebscript/files Makefile.lib Log: Default to Tcl-8.4, as neotcl and tclX do now. Prompted by: kris Revision Changes Path 1.11 +8 -4 ports/www/neowebscript/Makefile 1.4 +1 -1 ports/www/neowebscript/files/Makefile.lib From owner-cvs-all@FreeBSD.ORG Fri Apr 16 13:09: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 7563716A4CE; Fri, 16 Apr 2004 13:09:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B85D43D1D; Fri, 16 Apr 2004 13:09:54 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GK9sGe040878; Fri, 16 Apr 2004 13:09:54 -0700 (PDT) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GK9sir040877; Fri, 16 Apr 2004 13:09:54 -0700 (PDT) (envelope-from jhb) Message-Id: <200404162009.i3GK9sir040877@repoman.freebsd.org> From: John Baldwin Date: Fri, 16 Apr 2004 13:09:54 -0700 (PDT) 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 interrupt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 20:09:54 -0000 jhb 2004/04/16 13:09:54 PDT FreeBSD src repository Modified files: sys/alpha/alpha interrupt.c Log: Whitespace fix. Revision Changes Path 1.78 +1 -1 src/sys/alpha/alpha/interrupt.c From owner-cvs-all@FreeBSD.ORG Fri Apr 16 13:11: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 4908D16A4CE; Fri, 16 Apr 2004 13:11:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EB1043D39; Fri, 16 Apr 2004 13:11:56 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GKBuGe042150; Fri, 16 Apr 2004 13:11:56 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GKBtnY042149; Fri, 16 Apr 2004 13:11:55 -0700 (PDT) (envelope-from blackend) Message-Id: <200404162011.i3GKBtnY042149@repoman.freebsd.org> From: Marc Fonvieille Date: Fri, 16 Apr 2004 13:11:55 -0700 (PDT) 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/mail 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: Fri, 16 Apr 2004 20:11:56 -0000 blackend 2004/04/16 13:11:55 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/mail chapter.sgml Log: Typo fixing. Revision Changes Path 1.112 +1 -1 doc/en_US.ISO8859-1/books/handbook/mail/chapter.sgml From owner-cvs-all@FreeBSD.ORG Fri Apr 16 13:12: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 EBB5816A4CE; Fri, 16 Apr 2004 13:12:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D105143D53; Fri, 16 Apr 2004 13:12:41 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GKCfGe042816; Fri, 16 Apr 2004 13:12:41 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GKCf0d042815; Fri, 16 Apr 2004 13:12:41 -0700 (PDT) (envelope-from linimon) Message-Id: <200404162012.i3GKCf0d042815@repoman.freebsd.org> From: Mark Linimon Date: Fri, 16 Apr 2004 13:12:41 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/sourcenav 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, 16 Apr 2004 20:12:42 -0000 linimon 2004/04/16 13:12:41 PDT FreeBSD ports repository Modified files: devel/sourcenav pkg-plist Log: Really fix plist this time. I think. Revision Changes Path 1.5 +1 -1 ports/devel/sourcenav/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 13:24: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 246DB16A4CE; Fri, 16 Apr 2004 13:24:10 -0700 (PDT) Received: from vexpert.dbai.tuwien.ac.at (vexpert.dbai.tuwien.ac.at [128.131.111.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id B92DE43D49; Fri, 16 Apr 2004 13:24:09 -0700 (PDT) (envelope-from gerald@pfeifer.com) Received: from [128.131.111.60] (acrux [128.131.111.60]) by vexpert.dbai.tuwien.ac.at (Postfix) with ESMTP id 4D3531379E; Fri, 16 Apr 2004 22:24:05 +0200 (CEST) Date: Fri, 16 Apr 2004 22:24:11 +0200 (CEST) From: Gerald Pfeifer To: David O'Brien In-Reply-To: <20040416151407.GA15239@dragon.nuxi.com> Message-ID: References: <200404131104.i3DB42oZ055432@repoman.freebsd.org> <20040416151407.GA15239@dragon.nuxi.com> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: Dirk Meyer cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/lang/gcc32 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, 16 Apr 2004 20:24:10 -0000 On Fri, 16 Apr 2004, David O'Brien wrote: >> .if ${ARCH} == "amd64" >> CONFIGURE_TARGET= x86_64-portbld-freebsd${OSREL} >> .else >> CONFIGURE_TARGET= ${ARCH}-portbld-freebsd${OSREL} >> .endif > I don't supose you're got time to figure out why the .else part is > needed? Not yet. :-( I have scheduled some FreeBSD ports work for this weekend, and hope to be able to update (and hopefully fix) the gcc33 and gcc34 ports, but I'm not sure whether I'll manage to debug this one as well. It's definitely on my list, it's just that my main focus right now is trying to fix broken architectures. Gerald From owner-cvs-all@FreeBSD.ORG Fri Apr 16 13: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 BD32916A4D3; Fri, 16 Apr 2004 13:24:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A2FA543D46; Fri, 16 Apr 2004 13:24:22 -0700 (PDT) (envelope-from lofi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GKOMGe044898; Fri, 16 Apr 2004 13:24:22 -0700 (PDT) (envelope-from lofi@repoman.freebsd.org) Received: (from lofi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GKOME4044897; Fri, 16 Apr 2004 13:24:22 -0700 (PDT) (envelope-from lofi) Message-Id: <200404162024.i3GKOME4044897@repoman.freebsd.org> From: Michael Nottebrock Date: Fri, 16 Apr 2004 13:24:22 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/mplayer 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, 16 Apr 2004 20:24:23 -0000 lofi 2004/04/16 13:24:22 PDT FreeBSD ports repository Modified files: multimedia/mplayer Makefile Log: Add WITHOUT_GUI option to force mplayer's gtk gui to off and disable arts audio output if gui is enabled to avoid crashes caused by conflicting versions of glib. Submitted by: maintainer Revision Changes Path 1.91 +22 -4 ports/multimedia/mplayer/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 13:25: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 15CBA16A4CE; Fri, 16 Apr 2004 13:25:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1279D43D2F; Fri, 16 Apr 2004 13:25:41 -0700 (PDT) (envelope-from jhb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GKPeGe045004; Fri, 16 Apr 2004 13:25:40 -0700 (PDT) (envelope-from jhb@repoman.freebsd.org) Received: (from jhb@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GKPe98045003; Fri, 16 Apr 2004 13:25:40 -0700 (PDT) (envelope-from jhb) Message-Id: <200404162025.i3GKPe98045003@repoman.freebsd.org> From: John Baldwin Date: Fri, 16 Apr 2004 13:25:40 -0700 (PDT) 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_intr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 20:25:41 -0000 jhb 2004/04/16 13:25:40 PDT FreeBSD src repository Modified files: sys/kern kern_intr.c Log: - Enable (unmask) interrupt sources earlier in the ithread loop. Specifically, we used to enable the source after locking sched_lock and just before we had already decided to do a context switch. This meant that an ithread could never process more than one interrupt per context switch. Enabling earlier in the loop before sched_lock is acquired allows an ithread to handle multiple interrupts per context switch if interrupts fire very rapidly. For the case of heavy interrupt load this can reduce the number of context switches (and thus overhead) as well as reduce interrupt latency. - Now that we can handle multiple interrupts per context switch, add simple interrupt storm protection to threaded interrupts. If X number of consecutive interrupts are triggered before the itherad voluntarily yields to another thread, then the interrupt thread will sleep with the associated interrupt source disabled (masked) for 1/10th of a second. The default value of X is 500, but it can be tweaked via the tunable/ sysctl hw.intr_storm_threshold. If an interrupt storm is detected, then a message is output to the kernel console on the first occurrence per interrupt thread. Interrupt storm protection can be disabled completely by setting this value to 0. There is no scientific reasoning for the 1/10th of a second or 500 interrupts values, so they may require tweaking at some point in the future. Tested by: rwatson (an earlier version w/o the storm protection) Tested by: mux (reportedly made a machine with two PCI interrupts storming usable rather than hard locked) Reviewed by: imp Revision Changes Path 1.107 +33 -8 src/sys/kern/kern_intr.c From owner-cvs-all@FreeBSD.ORG Fri Apr 16 13: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 A15EF16A4CE; Fri, 16 Apr 2004 13:32:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8851843D46; Fri, 16 Apr 2004 13:32:56 -0700 (PDT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GKWuGe046990; Fri, 16 Apr 2004 13:32:56 -0700 (PDT) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GKWu2U046989; Fri, 16 Apr 2004 13:32:56 -0700 (PDT) (envelope-from brueffer) Message-Id: <200404162032.i3GKWu2U046989@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 16 Apr 2004 13:32:56 -0700 (PDT) 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 acct.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, 16 Apr 2004 20:32:56 -0000 brueffer 2004/04/16 13:32:56 PDT FreeBSD src repository (doc committer) Modified files: lib/libc/sys acct.2 Log: List some sysctl variables that influence accounting PR: 65070 Submitted by: Marc Silver X-MFC after: re approval Revision Changes Path 1.16 +16 -0 src/lib/libc/sys/acct.2 From owner-cvs-all@FreeBSD.ORG Fri Apr 16 13:39: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 6521916A4CE; Fri, 16 Apr 2004 13:39:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4B52543D1F; Fri, 16 Apr 2004 13:39:11 -0700 (PDT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GKdBGe047261; Fri, 16 Apr 2004 13:39:11 -0700 (PDT) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GKdAEL047260; Fri, 16 Apr 2004 13:39:10 -0700 (PDT) (envelope-from brueffer) Message-Id: <200404162039.i3GKdAEL047260@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 16 Apr 2004 13:39:10 -0700 (PDT) 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 acct.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, 16 Apr 2004 20:39:11 -0000 brueffer 2004/04/16 13:39:10 PDT FreeBSD src repository (doc committer) Modified files: lib/libc/sys acct.2 Log: Forced commit to note, that the last commit also added a reference to accton.8 Revision Changes Path 1.17 +0 -0 src/lib/libc/sys/acct.2 From owner-cvs-all@FreeBSD.ORG Fri Apr 16 13:53: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 9F33016A4CF; Fri, 16 Apr 2004 13:53:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BD8843D41; Fri, 16 Apr 2004 13:53:41 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GKrfGe051222; Fri, 16 Apr 2004 13:53:41 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GKrfpk051221; Fri, 16 Apr 2004 13:53:41 -0700 (PDT) (envelope-from marcus) Message-Id: <200404162053.i3GKrfpk051221@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 16 Apr 2004 13:53:40 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/rhythmbox Makefile distinfo pkg-plist patch-shell_Makefile.in patch-sources_itunesdb.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 20:53:41 -0000 marcus 2004/04/16 13:53:40 PDT FreeBSD ports repository Modified files: audio/rhythmbox Makefile distinfo pkg-plist Added files: audio/rhythmbox/files patch-sources_itunesdb.c Removed files: audio/rhythmbox/files patch-configure patch-shell_Makefile.in Log: Update to 0.8.0. For a list of what's changed, see: http://rhythmbox.sourceforge.net/news.html Revision Changes Path 1.37 +26 -17 ports/audio/rhythmbox/Makefile 1.16 +2 -2 ports/audio/rhythmbox/distinfo 1.4 +0 -10 ports/audio/rhythmbox/files/patch-configure (dead) 1.2 +0 -10 ports/audio/rhythmbox/files/patch-shell_Makefile.in (dead) 1.1 +22 -0 ports/audio/rhythmbox/files/patch-sources_itunesdb.c (new) 1.10 +13 -9 ports/audio/rhythmbox/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 13:56: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 F107C16A4CE; Fri, 16 Apr 2004 13:56:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D7AB743D2D; Fri, 16 Apr 2004 13:56:02 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GKu2Ge051365; Fri, 16 Apr 2004 13:56:02 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GKu25S051364; Fri, 16 Apr 2004 13:56:02 -0700 (PDT) (envelope-from marcus) Message-Id: <200404162056.i3GKu25S051364@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 16 Apr 2004 13:56:02 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/glade2 Makefile distinfo pkg-descr pkg-plist ports/devel/glade2/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, 16 Apr 2004 20:56:03 -0000 marcus 2004/04/16 13:56:02 PDT FreeBSD ports repository Modified files: devel/glade2 Makefile distinfo pkg-descr pkg-plist Removed files: devel/glade2/files patch-configure Log: Update to 2.6.0. Revision Changes Path 1.52 +4 -5 ports/devel/glade2/Makefile 1.24 +2 -2 ports/devel/glade2/distinfo 1.2 +0 -10 ports/devel/glade2/files/patch-configure (dead) 1.5 +2 -2 ports/devel/glade2/pkg-descr 1.23 +3 -4 ports/devel/glade2/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 14:03: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 AB24C16A4CE; Fri, 16 Apr 2004 14:03:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92DF143D49; Fri, 16 Apr 2004 14:03:39 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GL3dGe054262; Fri, 16 Apr 2004 14:03:39 -0700 (PDT) (envelope-from ps@repoman.freebsd.org) Received: (from ps@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GL3dek054261; Fri, 16 Apr 2004 14:03:39 -0700 (PDT) (envelope-from ps) Message-Id: <200404162103.i3GL3dek054261@repoman.freebsd.org> From: Paul Saab Date: Fri, 16 Apr 2004 14:03:39 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ciss ciss.c cissreg.h cissvar.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, 16 Apr 2004 21:03:39 -0000 ps 2004/04/16 14:03:38 PDT FreeBSD src repository Modified files: sys/dev/ciss ciss.c cissreg.h cissvar.h Log: Whitespace cleanup. Revision Changes Path 1.40 +46 -48 src/sys/dev/ciss/ciss.c 1.6 +16 -16 src/sys/dev/ciss/cissreg.h 1.6 +5 -5 src/sys/dev/ciss/cissvar.h From owner-cvs-all@FreeBSD.ORG Fri Apr 16 14:08: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 A024C16A4CE; Fri, 16 Apr 2004 14:08:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 86E0543D1D; Fri, 16 Apr 2004 14:08:30 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GL8UGe054529; Fri, 16 Apr 2004 14:08:30 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GL8UHQ054528; Fri, 16 Apr 2004 14:08:30 -0700 (PDT) (envelope-from clement) Message-Id: <200404162108.i3GL8UHQ054528@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 14:08:30 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/moftpd Makefile distinfo pkg-plist ports/ftp/moftpd/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, 16 Apr 2004 21:08:30 -0000 clement 2004/04/16 14:08:30 PDT FreeBSD ports repository Modified files: ftp/moftpd Makefile distinfo pkg-plist Added files: ftp/moftpd/files patch-Makefile.in Log: - Update to 1.2 Revision Changes Path 1.4 +3 -3 ports/ftp/moftpd/Makefile 1.2 +2 -2 ports/ftp/moftpd/distinfo 1.1 +16 -0 ports/ftp/moftpd/files/patch-Makefile.in (new) 1.2 +4 -0 ports/ftp/moftpd/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 14:46: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 5514016A4CE; Fri, 16 Apr 2004 14:46:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B72F43D58; Fri, 16 Apr 2004 14:46:02 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GLk1Ge062508; Fri, 16 Apr 2004 14:46:01 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GLk1VP062507; Fri, 16 Apr 2004 14:46:01 -0700 (PDT) (envelope-from clement) Message-Id: <200404162146.i3GLk1VP062507@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 14:46:01 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/moftpd 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, 16 Apr 2004 21:46:02 -0000 clement 2004/04/16 14:46:01 PDT FreeBSD ports repository Modified files: ftp/moftpd Makefile Log: - Add MySQL support Revision Changes Path 1.5 +9 -1 ports/ftp/moftpd/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 14: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 49CEB16A4CF; Fri, 16 Apr 2004 14:52:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4814A43D41; Fri, 16 Apr 2004 14:52:56 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GLquGe064442; Fri, 16 Apr 2004 14:52:56 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GLqtqY064441; Fri, 16 Apr 2004 14:52:55 -0700 (PDT) (envelope-from thierry) Message-Id: <200404162152.i3GLqtqY064441@repoman.freebsd.org> From: Thierry Thomas Date: Fri, 16 Apr 2004 14:52:55 -0700 (PDT) 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.gd pkg-plist.gv pkg-plist.hr pkg-plist.sk X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 21:52:56 -0000 thierry 2004/04/16 14:52:55 PDT FreeBSD ports repository Modified files: textproc/aspell Makefile distinfo pkg-plist.hr pkg-plist.sk Added files: textproc/aspell pkg-plist.gd pkg-plist.gv Log: Add dictionaries for Scottish Gaelic (gd) and Manx Gaelic (gv), and update the following dictionaries: - Irish (ga) - Indonesian (id) - Croatian (hr) - Italian (it) - Slovak (sk). Approved by: mat (mentor). Revision Changes Path 1.58 +12 -8 ports/textproc/aspell/Makefile 1.31 +14 -10 ports/textproc/aspell/distinfo 1.1 +5 -0 ports/textproc/aspell/pkg-plist.gd (new) 1.1 +5 -0 ports/textproc/aspell/pkg-plist.gv (new) 1.2 +1 -1 ports/textproc/aspell/pkg-plist.hr 1.3 +5 -3 ports/textproc/aspell/pkg-plist.sk From owner-cvs-all@FreeBSD.ORG Fri Apr 16 14:53: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 4367616A4CE; Fri, 16 Apr 2004 14:53:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E9F9543D48; Fri, 16 Apr 2004 14:53:38 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GLrcGe064525; Fri, 16 Apr 2004 14:53:38 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GLrcNO064524; Fri, 16 Apr 2004 14:53:38 -0700 (PDT) (envelope-from thierry) Message-Id: <200404162153.i3GLrcNO064524@repoman.freebsd.org> From: Thierry Thomas Date: Fri, 16 Apr 2004 14:53:38 -0700 (PDT) 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/gd-aspell 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: Fri, 16 Apr 2004 21:53:39 -0000 thierry 2004/04/16 14:53:38 PDT FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/gd-aspell Makefile pkg-descr Log: Add gd-aspell , aspell with Scottish Gaelic dictionary. Approved by: mat (mentor). Revision Changes Path 1.677 +1 -0 ports/textproc/Makefile 1.1 +17 -0 ports/textproc/gd-aspell/Makefile (new) 1.1 +3 -0 ports/textproc/gd-aspell/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 14: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 D7C9E16A50E; Fri, 16 Apr 2004 14:53:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B63A543D41; Fri, 16 Apr 2004 14:53:50 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GLroGe064569; Fri, 16 Apr 2004 14:53:50 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GLrogJ064568; Fri, 16 Apr 2004 14:53:50 -0700 (PDT) (envelope-from thierry) Message-Id: <200404162153.i3GLrogJ064568@repoman.freebsd.org> From: Thierry Thomas Date: Fri, 16 Apr 2004 14:53:50 -0700 (PDT) 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, 16 Apr 2004 21:53:52 -0000 thierry 2004/04/16 14:53:50 PDT FreeBSD ports repository Modified files: . modules Log: gd-aspell --> ports/textproc/gd-aspell Revision Changes Path 1.9917 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 16 14:54: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 0727916A4CE; Fri, 16 Apr 2004 14:54:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E0FBD43D53; Fri, 16 Apr 2004 14:54:13 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GLsDGe064642; Fri, 16 Apr 2004 14:54:13 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GLsD9e064641; Fri, 16 Apr 2004 14:54:13 -0700 (PDT) (envelope-from thierry) Message-Id: <200404162154.i3GLsD9e064641@repoman.freebsd.org> From: Thierry Thomas Date: Fri, 16 Apr 2004 14:54:13 -0700 (PDT) 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/gv-aspell 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: Fri, 16 Apr 2004 21:54:14 -0000 thierry 2004/04/16 14:54:13 PDT FreeBSD ports repository Modified files: textproc Makefile Added files: textproc/gv-aspell Makefile pkg-descr Log: Add gv-aspell , aspell with Manx Gaelic dictionary. Approved by: mat (mentor). Revision Changes Path 1.678 +1 -0 ports/textproc/Makefile 1.1 +17 -0 ports/textproc/gv-aspell/Makefile (new) 1.1 +3 -0 ports/textproc/gv-aspell/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 14:54: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 C974016A510; Fri, 16 Apr 2004 14:54:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 94A1E43D48; Fri, 16 Apr 2004 14:54:25 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GLsPGe064690; Fri, 16 Apr 2004 14:54:25 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GLsPcX064689; Fri, 16 Apr 2004 14:54:25 -0700 (PDT) (envelope-from thierry) Message-Id: <200404162154.i3GLsPcX064689@repoman.freebsd.org> From: Thierry Thomas Date: Fri, 16 Apr 2004 14:54:25 -0700 (PDT) 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, 16 Apr 2004 21:54:26 -0000 thierry 2004/04/16 14:54:25 PDT FreeBSD ports repository Modified files: . modules Log: gv-aspell --> ports/textproc/gv-aspell Revision Changes Path 1.9918 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 16 15:17: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 49FAE16A4CE; Fri, 16 Apr 2004 15:17:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3046343D48; Fri, 16 Apr 2004 15:17:43 -0700 (PDT) (envelope-from eik@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GMHgGe069762; Fri, 16 Apr 2004 15:17:42 -0700 (PDT) (envelope-from eik@repoman.freebsd.org) Received: (from eik@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GMHgQD069761; Fri, 16 Apr 2004 15:17:42 -0700 (PDT) (envelope-from eik) Message-Id: <200404162217.i3GMHgQD069761@repoman.freebsd.org> From: Oliver Eikemeier Date: Fri, 16 Apr 2004 15:17:42 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/openldap21-server 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, 16 Apr 2004 22:17:43 -0000 eik 2004/04/16 15:17:42 PDT FreeBSD ports repository Modified files: net/openldap21-server Makefile distinfo Log: Update to OpenLDAP 2.1.30: - fixed slapd userdb checkpass bug (ITS#3048) - fixed back-ldbm IDL delete bug (ITS#3046) - fixed libldap schema parsing bugs (ITS#2920, ITS#3065) - fixed liblutil NS MTA MD5 passwd len bug (ITS#2899) - removed lint (ITS#3086) - updated slapd.conf(5) manpage (ITS#2525) Revision Changes Path 1.86 +1 -1 ports/net/openldap21-server/Makefile 1.39 +2 -2 ports/net/openldap21-server/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 16 15:38: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 743DB16A4CE; Fri, 16 Apr 2004 15:38:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A36443D1D; Fri, 16 Apr 2004 15:38:55 -0700 (PDT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GMctGe073745; Fri, 16 Apr 2004 15:38:55 -0700 (PDT) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GMcsjN073744; Fri, 16 Apr 2004 15:38:54 -0700 (PDT) (envelope-from brueffer) Message-Id: <200404162238.i3GMcsjN073744@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 16 Apr 2004 15:38:54 -0700 (PDT) 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 acct.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, 16 Apr 2004 22:38:55 -0000 brueffer 2004/04/16 15:38:54 PDT FreeBSD src repository (doc committer) Modified files: lib/libc/sys acct.2 Log: Remove unnecessary .Pp macro and bump document date Submitted by: ru Revision Changes Path 1.18 +1 -2 src/lib/libc/sys/acct.2 From owner-cvs-all@FreeBSD.ORG Fri Apr 16 15:45: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 8690616A4CE; Fri, 16 Apr 2004 15:45:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6CDA343D2F; Fri, 16 Apr 2004 15:45:57 -0700 (PDT) (envelope-from maho@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GMjvGe075758; Fri, 16 Apr 2004 15:45:57 -0700 (PDT) (envelope-from maho@repoman.freebsd.org) Received: (from maho@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GMjuCf075757; Fri, 16 Apr 2004 15:45:56 -0700 (PDT) (envelope-from maho) Message-Id: <200404162245.i3GMjuCf075757@repoman.freebsd.org> From: Maho Nakata Date: Fri, 16 Apr 2004 15:45:56 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/math/sdpara 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, 16 Apr 2004 22:45:57 -0000 maho 2004/04/16 15:45:56 PDT FreeBSD ports repository Modified files: math/sdpara Makefile Log: Fix build depends section Submitted by: kris (bento) Revision Changes Path 1.5 +2 -1 ports/math/sdpara/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 15:46: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 A77E516A4CE; Fri, 16 Apr 2004 15:46:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8E16943D2D; Fri, 16 Apr 2004 15:46:21 -0700 (PDT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GMkLGe075789; Fri, 16 Apr 2004 15:46:21 -0700 (PDT) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GMkLT3075788; Fri, 16 Apr 2004 15:46:21 -0700 (PDT) (envelope-from glewis) Message-Id: <200404162246.i3GMkLT3075788@repoman.freebsd.org> From: Greg Lewis Date: Fri, 16 Apr 2004 15:46:21 -0700 (PDT) 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: Fri, 16 Apr 2004 22:46:21 -0000 glewis 2004/04/16 15:46:21 PDT FreeBSD ports repository Modified files: textproc/xerces-j Makefile Log: . Really assign the maintainership to the submitted of PR/51415. PR: 51415 Submitted by: Herve Quiroz Revision Changes Path 1.13 +1 -1 ports/textproc/xerces-j/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 15: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 E597D16A4CE; Fri, 16 Apr 2004 15:53:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CAF0443D54; Fri, 16 Apr 2004 15:53:52 -0700 (PDT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GMrqGe077726; Fri, 16 Apr 2004 15:53:52 -0700 (PDT) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GMrqvJ077725; Fri, 16 Apr 2004 15:53:52 -0700 (PDT) (envelope-from brueffer) Message-Id: <200404162253.i3GMrqvJ077725@repoman.freebsd.org> From: Christian Brueffer Date: Fri, 16 Apr 2004 15:53:52 -0700 (PDT) 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 acct.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, 16 Apr 2004 22:53:53 -0000 brueffer 2004/04/16 15:53:52 PDT FreeBSD src repository (doc committer) Modified files: lib/libc/sys acct.2 Log: Bring describtion of a sysctl in line with the source: kern.acct_chkfreq is specified in seconds, not minutes. Cluebat provided by: kensmith Revision Changes Path 1.19 +1 -1 src/lib/libc/sys/acct.2 From owner-cvs-all@FreeBSD.ORG Fri Apr 16 15:54: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 79BD816A4CE; Fri, 16 Apr 2004 15:54:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 74C2843D55; Fri, 16 Apr 2004 15:54:20 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GMsKGe077837; Fri, 16 Apr 2004 15:54:20 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GMsKnk077836; Fri, 16 Apr 2004 15:54:20 -0700 (PDT) (envelope-from clement) Message-Id: <200404162254.i3GMsKnk077836@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 15:54:19 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/comms Makefile ports/comms/efax-gtk Makefile distinfo pkg-descr pkg-message pkg-plist ports/comms/efax-gtk/files patch-config patch-install patch-rc X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 16 Apr 2004 22:54:20 -0000 clement 2004/04/16 15:54:19 PDT FreeBSD ports repository Modified files: comms Makefile Added files: comms/efax-gtk Makefile distinfo pkg-descr pkg-message pkg-plist comms/efax-gtk/files patch-config patch-install patch-rc Log: Add efax-gtk 2.2.5, GUI front end for the efax fax program. This program is a Gtk+/Gtkmm front end for the efax program for receiving and sending faxes with a fax modem. Any files to be faxed must be in postscript format, which is the generic printer format for Unix/Linux systems. The program will use ghostscript to convert these into the Group 3 fax format which the fax modem will understand. WWW: http://www.cvine.freeserve.co.uk/efax-gtk/ PR: ports/63844 Submitted by: Jean-Baptiste Quenot Revision Changes Path 1.103 +1 -0 ports/comms/Makefile 1.1 +37 -0 ports/comms/efax-gtk/Makefile (new) 1.1 +2 -0 ports/comms/efax-gtk/distinfo (new) 1.1 +11 -0 ports/comms/efax-gtk/files/patch-config (new) 1.1 +11 -0 ports/comms/efax-gtk/files/patch-install (new) 1.1 +27 -0 ports/comms/efax-gtk/files/patch-rc (new) 1.1 +7 -0 ports/comms/efax-gtk/pkg-descr (new) 1.1 +8 -0 ports/comms/efax-gtk/pkg-message (new) 1.1 +5 -0 ports/comms/efax-gtk/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 15:58: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 385E216A4CE; Fri, 16 Apr 2004 15:58:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1F3AF43D4C; Fri, 16 Apr 2004 15:58:17 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GMwGGe078019; Fri, 16 Apr 2004 15:58:16 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GMwGMi078018; Fri, 16 Apr 2004 15:58:16 -0700 (PDT) (envelope-from clement) Message-Id: <200404162258.i3GMwGMi078018@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 15:58:16 -0700 (PDT) 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, 16 Apr 2004 22:58:17 -0000 clement 2004/04/16 15:58:16 PDT FreeBSD ports repository Modified files: . modules Log: efax-gtk ---> ports/comms/efax-gtk Revision Changes Path 1.9919 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 16 16:00: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 96E4516A4CE; Fri, 16 Apr 2004 16:00:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 937C143D48; Fri, 16 Apr 2004 16:00:02 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GN02Ge078146; Fri, 16 Apr 2004 16:00:02 -0700 (PDT) (envelope-from ps@repoman.freebsd.org) Received: (from ps@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GN02gg078145; Fri, 16 Apr 2004 16:00:02 -0700 (PDT) (envelope-from ps) Message-Id: <200404162300.i3GN02gg078145@repoman.freebsd.org> From: Paul Saab Date: Fri, 16 Apr 2004 16:00:02 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ciss ciss.c cissreg.h cissvar.h src/share/man/man4 ciss.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, 16 Apr 2004 23:00:02 -0000 ps 2004/04/16 16:00:02 PDT FreeBSD src repository Modified files: sys/dev/ciss ciss.c cissreg.h cissvar.h share/man/man4 ciss.4 Log: Add support for the HP Modular Smart Array 20 & 500 storage arrays. Logical volumes on these devices show up as LUNs behind another controller (also known as proxy controller). In order to issue firmware commands for a volume on a proxy controller, they must be targeted at the address of the proxy controller it is attached to, not the Host/PCI controller. A proxy controller is defined as a device listed in the INQUIRY PHYSICAL LUNS command who's L2 and L3 SCSI addresses are zero. The corresponding address returned defines which "bus" the controller lives on and we use this to create a virtual CAM bus. A logical volume's addresses first byte defines the logical drive number. The second byte defines the bus that it is attached to which corresponds to the BUS of the proxy controller's found or the Host/PCI controller. Change event notification to be handled in its own kernel thread. This is needed since some events may require the driver to sleep on some operations and this cannot be done during interrupt context. With this change, it is now possible to create and destroy logical volumes from FreeBSD, but it requires a native application to construct the proper firmware commands which is not publicly available. Special thanks to John Cagle @ HP for providing remote access to all the hardware and beating on the storage engineers at HP to answer my questions. Revision Changes Path 1.6 +4 -0 src/share/man/man4/ciss.4 1.41 +435 -124 src/sys/dev/ciss/ciss.c 1.7 +9 -0 src/sys/dev/ciss/cissreg.h 1.7 +18 -14 src/sys/dev/ciss/cissvar.h From owner-cvs-all@FreeBSD.ORG Fri Apr 16 16: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 9DE9416A4CE; Fri, 16 Apr 2004 16:15:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8447143D2F; Fri, 16 Apr 2004 16:15:47 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GNFlGe083016; Fri, 16 Apr 2004 16:15:47 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GNFkBp083015; Fri, 16 Apr 2004 16:15:46 -0700 (PDT) (envelope-from clement) Message-Id: <200404162315.i3GNFkBp083015@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 16:15:46 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/honeyd 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, 16 Apr 2004 23:15:47 -0000 clement 2004/04/16 16:15:46 PDT FreeBSD ports repository Modified files: net/honeyd Makefile distinfo pkg-plist Log: - Update to 0.8a PR: 65639 Submitted by: Yann Berthier (maintainer Revision Changes Path 1.14 +2 -1 ports/net/honeyd/Makefile 1.10 +2 -2 ports/net/honeyd/distinfo 1.5 +4 -1 ports/net/honeyd/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 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 F32B016A4CE; Fri, 16 Apr 2004 16:24:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D8B3543D49; Fri, 16 Apr 2004 16:24:46 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GNOkGe085185; Fri, 16 Apr 2004 16:24:46 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GNOktD085184; Fri, 16 Apr 2004 16:24:46 -0700 (PDT) (envelope-from clement) Message-Id: <200404162324.i3GNOktD085184@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 16:24:46 -0700 (PDT) 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/archmbox 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, 16 Apr 2004 23:24:47 -0000 clement 2004/04/16 16:24:45 PDT FreeBSD ports repository Modified files: mail Makefile Added files: mail/archmbox Makefile distinfo pkg-descr Log: Add archmbox 4.5.2, email archiver written in perl; parses mailboxes and performs actions. http://adc-archmbox.sourceforge.net/ PR: ports/65183 Submitted by: Talal Al-Dik Revision Changes Path 1.510 +1 -0 ports/mail/Makefile 1.1 +24 -0 ports/mail/archmbox/Makefile (new) 1.1 +2 -0 ports/mail/archmbox/distinfo (new) 1.1 +20 -0 ports/mail/archmbox/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 16:28: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 A0BAE16A4CE; Fri, 16 Apr 2004 16:28:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8610E43D3F; Fri, 16 Apr 2004 16:28:10 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GNSAGe085354; Fri, 16 Apr 2004 16:28:10 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GNS96k085353; Fri, 16 Apr 2004 16:28:09 -0700 (PDT) (envelope-from clement) Message-Id: <200404162328.i3GNS96k085353@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 16:28:09 -0700 (PDT) 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, 16 Apr 2004 23:28:10 -0000 clement 2004/04/16 16:28:09 PDT FreeBSD ports repository Modified files: . modules Log: archmbox ---> ports/mail/archmbox Revision Changes Path 1.9920 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 16 16:36: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 E351616A4CE; Fri, 16 Apr 2004 16:36:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C7B6343D1D; Fri, 16 Apr 2004 16:36:50 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GNaoGe087423; Fri, 16 Apr 2004 16:36:50 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GNao5k087422; Fri, 16 Apr 2004 16:36:50 -0700 (PDT) (envelope-from clement) Message-Id: <200404162336.i3GNao5k087422@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 16:36:49 -0700 (PDT) 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/tnftp 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, 16 Apr 2004 23:36:51 -0000 clement 2004/04/16 16:36:49 PDT FreeBSD ports repository Modified files: ftp Makefile Added files: ftp/tnftp Makefile distinfo pkg-descr Log: Add tnftp 20030825, enhanced ftp client from NetBSD. PR: ports/62373 Submitted by: Tom McLaughlin Revision Changes Path 1.84 +1 -0 ports/ftp/Makefile 1.1 +25 -0 ports/ftp/tnftp/Makefile (new) 1.1 +2 -0 ports/ftp/tnftp/distinfo (new) 1.1 +19 -0 ports/ftp/tnftp/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 16:38: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 B47B916A4CE; Fri, 16 Apr 2004 16:38:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 98CBD43D2D; Fri, 16 Apr 2004 16:38:16 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GNcGGe087478; Fri, 16 Apr 2004 16:38:16 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GNcGL3087477; Fri, 16 Apr 2004 16:38:16 -0700 (PDT) (envelope-from kris) Message-Id: <200404162338.i3GNcGL3087477@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 16 Apr 2004 16:38:16 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/caudium12 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, 16 Apr 2004 23:38:16 -0000 kris 2004/04/16 16:38:16 PDT FreeBSD ports repository Modified files: www/caudium12 pkg-plist Log: Add missing file # XXX plist is unsorted Revision Changes Path 1.3 +1 -0 ports/www/caudium12/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 16:39: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 8C89316A4CE; Fri, 16 Apr 2004 16:39:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 71A8843D41; Fri, 16 Apr 2004 16:39:38 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GNdcGe087525; Fri, 16 Apr 2004 16:39:38 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GNdcUO087524; Fri, 16 Apr 2004 16:39:38 -0700 (PDT) (envelope-from clement) Message-Id: <200404162339.i3GNdcUO087524@repoman.freebsd.org> From: Clement Laforet Date: Fri, 16 Apr 2004 16:39:38 -0700 (PDT) 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, 16 Apr 2004 23:39:38 -0000 clement 2004/04/16 16:39:38 PDT FreeBSD ports repository Modified files: . modules Log: tnftp ---> ports/ftp/tnftp Revision Changes Path 1.9921 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 16 16:49: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 5EAAB16A4D0; Fri, 16 Apr 2004 16:49:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3ED1E43D53; Fri, 16 Apr 2004 16:49:27 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GNnQGe095548; Fri, 16 Apr 2004 16:49:27 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GNnQh3095547; Fri, 16 Apr 2004 16:49:26 -0700 (PDT) (envelope-from kris) Message-Id: <200404162349.i3GNnQh3095547@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 16 Apr 2004 16:49:26 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/sdts++ 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, 16 Apr 2004 23:49:27 -0000 kris 2004/04/16 16:49:26 PDT FreeBSD ports repository Modified files: devel/sdts++ Makefile pkg-plist Log: Correct INFO handling Revision Changes Path 1.13 +2 -0 ports/devel/sdts++/Makefile 1.4 +0 -4 ports/devel/sdts++/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 16: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 4B2D216A4CE; Fri, 16 Apr 2004 16:50:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3045243D39; Fri, 16 Apr 2004 16:50:29 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GNoSGe095642; Fri, 16 Apr 2004 16:50:28 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GNoSrq095641; Fri, 16 Apr 2004 16:50:28 -0700 (PDT) (envelope-from kris) Message-Id: <200404162350.i3GNoSrq095641@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 16 Apr 2004 16:50:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/palm/pilot-link manpages.mk 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, 16 Apr 2004 23:50:29 -0000 kris 2004/04/16 16:50:28 PDT FreeBSD ports repository Modified files: palm/pilot-link manpages.mk pkg-plist Log: Correct pkg-plist Revision Changes Path 1.2 +5 -0 ports/palm/pilot-link/manpages.mk 1.20 +6 -1 ports/palm/pilot-link/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 16: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 10BAF16A4CE; Fri, 16 Apr 2004 16:52:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EAED743D2D; Fri, 16 Apr 2004 16:52:52 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3GNqqGe097437; Fri, 16 Apr 2004 16:52:52 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3GNqqhe097436; Fri, 16 Apr 2004 16:52:52 -0700 (PDT) (envelope-from kris) Message-Id: <200404162352.i3GNqqhe097436@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 16 Apr 2004 16:52:51 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/notif2 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, 16 Apr 2004 23:52:53 -0000 kris 2004/04/16 16:52:51 PDT FreeBSD ports repository Modified files: x11-toolkits/notif2 pkg-plist Log: Add missing files Revision Changes Path 1.2 +3 -1 ports/x11-toolkits/notif2/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 17:01: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 2E0A816A4CF; Fri, 16 Apr 2004 17:01:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0BDA143D3F; Fri, 16 Apr 2004 17:01:15 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H01EGe097772; Fri, 16 Apr 2004 17:01:14 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H01EoC097771; Fri, 16 Apr 2004 17:01:14 -0700 (PDT) (envelope-from kris) Message-Id: <200404170001.i3H01EoC097771@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 16 Apr 2004 17:01:14 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/maverik 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, 17 Apr 2004 00:01:15 -0000 kris 2004/04/16 17:01:14 PDT FreeBSD ports repository Modified files: graphics/maverik pkg-plist Log: Add missing files Revision Changes Path 1.3 +3 -0 ports/graphics/maverik/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 17:01: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 8F17D16A4CE; Fri, 16 Apr 2004 17:01:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 72E6843D1D; Fri, 16 Apr 2004 17:01:54 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H01sGe098729; Fri, 16 Apr 2004 17:01:54 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H01s8Y098725; Fri, 16 Apr 2004 17:01:54 -0700 (PDT) (envelope-from kris) Message-Id: <200404170001.i3H01s8Y098725@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 16 Apr 2004 17:01:54 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/mDNSResponder 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, 17 Apr 2004 00:01:54 -0000 kris 2004/04/16 17:01:54 PDT FreeBSD ports repository Modified files: net/mDNSResponder pkg-plist Log: Add missing file Revision Changes Path 1.3 +1 -0 ports/net/mDNSResponder/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 17:17: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 476AB16A4CE; Fri, 16 Apr 2004 17:17:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2C0F343D55; Fri, 16 Apr 2004 17:17:57 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H0HuGe002793; Fri, 16 Apr 2004 17:17:56 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H0HuXB002792; Fri, 16 Apr 2004 17:17:56 -0700 (PDT) (envelope-from kris) Message-Id: <200404170017.i3H0HuXB002792@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 16 Apr 2004 17:17:56 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/dgs 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, 17 Apr 2004 00:17:57 -0000 kris 2004/04/16 17:17:56 PDT FreeBSD ports repository Modified files: x11/dgs Makefile Log: IGNORE when XFREE86_VERSION > 3, since dgs is included in XFree86 Revision Changes Path 1.38 +7 -1 ports/x11/dgs/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 17:26: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 9DB9D16A4CE; Fri, 16 Apr 2004 17:26:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8140743D39; Fri, 16 Apr 2004 17:26:59 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H0QxGe004775; Fri, 16 Apr 2004 17:26:59 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H0Qxup004774; Fri, 16 Apr 2004 17:26:59 -0700 (PDT) (envelope-from kris) Message-Id: <200404170026.i3H0Qxup004774@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 16 Apr 2004 17:26:59 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/maverik 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, 17 Apr 2004 00:26:59 -0000 kris 2004/04/16 17:26:59 PDT FreeBSD ports repository Modified files: graphics/maverik Makefile Log: BROKEN: Changes its PORTNAME at install time (maverik -> maverik-gtk) Revision Changes Path 1.14 +2 -0 ports/graphics/maverik/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 17:27: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 09F4216A4CE; Fri, 16 Apr 2004 17:27:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E23E443D46; Fri, 16 Apr 2004 17:27:37 -0700 (PDT) (envelope-from josef@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H0RbGe004817; Fri, 16 Apr 2004 17:27:37 -0700 (PDT) (envelope-from josef@repoman.freebsd.org) Received: (from josef@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H0RbhF004816; Fri, 16 Apr 2004 17:27:37 -0700 (PDT) (envelope-from josef) Message-Id: <200404170027.i3H0RbhF004816@repoman.freebsd.org> From: Josef El-Rayes Date: Fri, 16 Apr 2004 17:27:37 -0700 (PDT) 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 todo.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, 17 Apr 2004 00:27:38 -0000 josef 2004/04/16 17:27:37 PDT FreeBSD doc repository Modified files: en/releases/5.3R todo.sgml Log: Assign the KQueue locking task to green and jmg. Approved by: rwatson(re) Requested by: green Revision Changes Path 1.19 +2 -2 www/en/releases/5.3R/todo.sgml From owner-cvs-all@FreeBSD.ORG Fri Apr 16 17: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 6FC0116A4CF; Fri, 16 Apr 2004 17:29:18 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 549CD43D31; Fri, 16 Apr 2004 17:29:18 -0700 (PDT) (envelope-from brian@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H0TIGe004932; Fri, 16 Apr 2004 17:29:18 -0700 (PDT) (envelope-from brian@repoman.freebsd.org) Received: (from brian@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H0THib004931; Fri, 16 Apr 2004 17:29:17 -0700 (PDT) (envelope-from brian) Message-Id: <200404170029.i3H0THib004931@repoman.freebsd.org> From: Brian Somers Date: Fri, 16 Apr 2004 17:29:17 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.sbin/ppp mbuf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 00:29:18 -0000 brian 2004/04/16 17:29:17 PDT FreeBSD src repository Modified files: usr.sbin/ppp mbuf.c Log: Add a missing memcpy (*blush*!) Suggested by: James P Scully , Perianayagam Somasundaram MFC after: 10 days Revision Changes Path 1.45 +8 -4 src/usr.sbin/ppp/mbuf.c From owner-cvs-all@FreeBSD.ORG Fri Apr 16 17: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 D661F16A4CE; Fri, 16 Apr 2004 17:45:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BB86343D54; Fri, 16 Apr 2004 17:45:37 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H0jbGe008913; Fri, 16 Apr 2004 17:45:37 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H0jbqp008912; Fri, 16 Apr 2004 17:45:37 -0700 (PDT) (envelope-from marcus) Message-Id: <200404170045.i3H0jbqp008912@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 16 Apr 2004 17:45:37 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/gdm2 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, 17 Apr 2004 00:45:38 -0000 marcus 2004/04/16 17:45:37 PDT FreeBSD ports repository Modified files: x11/gdm2 Makefile distinfo pkg-plist Log: Update to 2.6.0.1. Revision Changes Path 1.83 +1 -2 ports/x11/gdm2/Makefile 1.39 +2 -2 ports/x11/gdm2/distinfo 1.37 +5 -0 ports/x11/gdm2/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 17: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 7699A16A4D0; Fri, 16 Apr 2004 17:48:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5A74343D3F; Fri, 16 Apr 2004 17:48:13 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H0mDGe008970; Fri, 16 Apr 2004 17:48:13 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H0mDv4008969; Fri, 16 Apr 2004 17:48:13 -0700 (PDT) (envelope-from marcus) Message-Id: <200404170048.i3H0mDv4008969@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 16 Apr 2004 17:48:13 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/libgtop2 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, 17 Apr 2004 00:48:13 -0000 marcus 2004/04/16 17:48:13 PDT FreeBSD ports repository Modified files: devel/libgtop2 Makefile Log: Revert the last commit now that libXau is a shared library. Revision Changes Path 1.84 +1 -7 ports/devel/libgtop2/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 17:49: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 EE48416A4CE; Fri, 16 Apr 2004 17:49:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D24D043D2D; Fri, 16 Apr 2004 17:49:21 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H0nLGe009019; Fri, 16 Apr 2004 17:49:21 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H0nLOi009018; Fri, 16 Apr 2004 17:49:21 -0700 (PDT) (envelope-from kris) Message-Id: <200404170049.i3H0nLOi009018@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 16 Apr 2004 17:49:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/mbrowse 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, 17 Apr 2004 00:49:22 -0000 kris 2004/04/16 17:49:21 PDT FreeBSD ports repository Modified files: net-mgmt/mbrowse Makefile Log: BROKEN: Configure fails Revision Changes Path 1.12 +2 -0 ports/net-mgmt/mbrowse/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 17: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 5463916A4CE; Fri, 16 Apr 2004 17:51:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 384EC43D41; Fri, 16 Apr 2004 17:51:21 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H0pKGe009829; Fri, 16 Apr 2004 17:51:20 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H0pKH4009821; Fri, 16 Apr 2004 17:51:20 -0700 (PDT) (envelope-from kris) Message-Id: <200404170051.i3H0pKH4009821@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 16 Apr 2004 17:51:20 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/cad/tochnog 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, 17 Apr 2004 00:51:21 -0000 kris 2004/04/16 17:51:20 PDT FreeBSD ports repository Modified files: cad/tochnog Makefile Log: BROKEN: Does not compile Revision Changes Path 1.3 +2 -0 ports/cad/tochnog/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 17:52: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 31AA616A4CE; Fri, 16 Apr 2004 17:52:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1505143D53; Fri, 16 Apr 2004 17:52:55 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H0qsGe010903; Fri, 16 Apr 2004 17:52:54 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H0qsUp010902; Fri, 16 Apr 2004 17:52:54 -0700 (PDT) (envelope-from kris) Message-Id: <200404170052.i3H0qsUp010902@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 16 Apr 2004 17:52:54 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/simulavr 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, 17 Apr 2004 00:52:55 -0000 kris 2004/04/16 17:52:54 PDT FreeBSD ports repository Modified files: devel/simulavr Makefile Log: BROKEN on 4.x: Does not compile Revision Changes Path 1.8 +7 -1 ports/devel/simulavr/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 17:53: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 B691D16A4CE; Fri, 16 Apr 2004 17:53:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9B23C43D48; Fri, 16 Apr 2004 17:53:47 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H0rlGe010947; Fri, 16 Apr 2004 17:53:47 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H0rlaY010946; Fri, 16 Apr 2004 17:53:47 -0700 (PDT) (envelope-from kris) Message-Id: <200404170053.i3H0rlaY010946@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 16 Apr 2004 17:53:47 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/ruby-libgda 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, 17 Apr 2004 00:53:47 -0000 kris 2004/04/16 17:53:47 PDT FreeBSD ports repository Modified files: databases/ruby-libgda Makefile Log: BROKEN: Does not compile Revision Changes Path 1.3 +2 -0 ports/databases/ruby-libgda/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 17:57: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 74A3F16A4CE; Fri, 16 Apr 2004 17:57:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 57F2D43D54; Fri, 16 Apr 2004 17:57:38 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H0vcGe011137; Fri, 16 Apr 2004 17:57:38 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H0vbPh011136; Fri, 16 Apr 2004 17:57:37 -0700 (PDT) (envelope-from marcus) Message-Id: <200404170057.i3H0vbPh011136@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 16 Apr 2004 17:57:37 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/ruby-libgda Makefile ports/databases/ruby-libgda/files patch-libgda::src::rbgdacommand.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 00:57:38 -0000 marcus 2004/04/16 17:57:37 PDT FreeBSD ports repository Modified files: databases/ruby-libgda Makefile Added files: databases/ruby-libgda/files patch-libgda::src::rbgdacommand.c Log: Fix the build on 4.X. PR: 65466 Submitted by: maintainer Revision Changes Path 1.4 +0 -2 ports/databases/ruby-libgda/Makefile 1.1 +15 -0 ports/databases/ruby-libgda/files/patch-libgda::src::rbgdacommand.c (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 17:59: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 D340116A4CE; Fri, 16 Apr 2004 17:59:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B737F43D31; Fri, 16 Apr 2004 17:59:22 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H0xMGe011263; Fri, 16 Apr 2004 17:59:22 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H0xMWg011262; Fri, 16 Apr 2004 17:59:22 -0700 (PDT) (envelope-from marcus) Message-Id: <200404170059.i3H0xMWg011262@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 16 Apr 2004 17:59:22 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/gtstarter 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, 17 Apr 2004 00:59:23 -0000 marcus 2004/04/16 17:59:22 PDT FreeBSD ports repository Modified files: x11/gtstarter Makefile distinfo Log: Update to 0.2 which shows the profile icons (if configured) instead of just the name. PR: 65630 Submitted by: maintainer Revision Changes Path 1.2 +1 -1 ports/x11/gtstarter/Makefile 1.2 +2 -2 ports/x11/gtstarter/distinfo From owner-cvs-all@FreeBSD.ORG Fri Apr 16 18:17: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 453B616A4CE; Fri, 16 Apr 2004 18:17:51 -0700 (PDT) Received: from fledge.watson.org (fledge.watson.org [204.156.12.50]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB7CE43D1D; Fri, 16 Apr 2004 18:17:50 -0700 (PDT) (envelope-from robert@fledge.watson.org) Received: from fledge.watson.org (localhost [127.0.0.1]) by fledge.watson.org (8.12.10/8.12.10) with ESMTP id i3H1H4Pq049474; Fri, 16 Apr 2004 21:17:04 -0400 (EDT) (envelope-from robert@fledge.watson.org) Received: from localhost (robert@localhost)i3H1H4d3049471; Fri, 16 Apr 2004 21:17:04 -0400 (EDT) (envelope-from robert@fledge.watson.org) Date: Fri, 16 Apr 2004 21:17:04 -0400 (EDT) From: Robert Watson X-Sender: robert@fledge.watson.org To: Brian Somers In-Reply-To: <200404170029.i3H0THib004931@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/usr.sbin/ppp mbuf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 01:17:51 -0000 On Fri, 16 Apr 2004, Brian Somers wrote: > brian 2004/04/16 17:29:17 PDT > > FreeBSD src repository > > Modified files: > usr.sbin/ppp mbuf.c > Log: > Add a missing memcpy (*blush*!) > > Suggested by: James P Scully , Perianayagam Somasundaram > MFC after: 10 days Hey, welcome back! Any chance you're here to stay? :-) Robert N M Watson FreeBSD Core Team, TrustedBSD Projects robert@fledge.watson.org Senior Research Scientist, McAfee Research From owner-cvs-all@FreeBSD.ORG Fri Apr 16 18:18: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 DE0D016A4CE; Fri, 16 Apr 2004 18:18:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C0EC543D41; Fri, 16 Apr 2004 18:18:25 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H1IPGe016210; Fri, 16 Apr 2004 18:18:25 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H1IPLL016209; Fri, 16 Apr 2004 18:18:25 -0700 (PDT) (envelope-from kris) Message-Id: <200404170118.i3H1IPLL016209@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 16 Apr 2004 18:18:25 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/mifluz 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, 17 Apr 2004 01:18:26 -0000 kris 2004/04/16 18:18:25 PDT FreeBSD ports repository Modified files: textproc/mifluz Makefile pkg-plist Log: Correct INFO handling Revision Changes Path 1.11 +1 -4 ports/textproc/mifluz/Makefile 1.3 +0 -3 ports/textproc/mifluz/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 18:34: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 E284616A4CE; Fri, 16 Apr 2004 18:34:40 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C689543D39; Fri, 16 Apr 2004 18:34:40 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H1YeGe020052; Fri, 16 Apr 2004 18:34:40 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H1YeRO020051; Fri, 16 Apr 2004 18:34:40 -0700 (PDT) (envelope-from kris) Message-Id: <200404170134.i3H1YeRO020051@repoman.freebsd.org> From: Kris Kennaway Date: Fri, 16 Apr 2004 18:34:40 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/ocaml-findlib 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, 17 Apr 2004 01:34:41 -0000 kris 2004/04/16 18:34:40 PDT FreeBSD ports repository Modified files: devel/ocaml-findlib Makefile Log: BROKEN: Broken pkg-plist Revision Changes Path 1.10 +2 -0 ports/devel/ocaml-findlib/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 19:23: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 E2FAE16A4CE; Fri, 16 Apr 2004 19:23:50 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C488A43D41; Fri, 16 Apr 2004 19:23:50 -0700 (PDT) (envelope-from jkoshy@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H2NoGe030968; Fri, 16 Apr 2004 19:23:50 -0700 (PDT) (envelope-from jkoshy@repoman.freebsd.org) Received: (from jkoshy@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H2No8L030967; Fri, 16 Apr 2004 19:23:50 -0700 (PDT) (envelope-from jkoshy) Message-Id: <200404170223.i3H2No8L030967@repoman.freebsd.org> From: Joseph Koshy Date: Fri, 16 Apr 2004 19:23:50 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/nmh Makefile ports/mail/nmh/files patch-ad X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 02:23:51 -0000 jkoshy 2004/04/16 19:23:50 PDT FreeBSD ports repository Modified files: mail/nmh Makefile Added files: mail/nmh/files patch-ad Log: Fix a core dump in NMH's "sortm" command. PR: 63497 Approved by: Scott Blachowicz [MAINTAINER] Revision Changes Path 1.34 +1 -1 ports/mail/nmh/Makefile 1.1 +11 -0 ports/mail/nmh/files/patch-ad (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 19:37: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 927A716A4CE; Fri, 16 Apr 2004 19:37:10 -0700 (PDT) Received: from Awfulhak.org (awfulhak.demon.co.uk [80.177.173.150]) by mx1.FreeBSD.org (Postfix) with ESMTP id C448243D31; Fri, 16 Apr 2004 19:37:09 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from mail.lan.Awfulhak.org (brian@dev.lan.Awfulhak.org [172.16.0.5]) by Awfulhak.org (8.12.11/8.12.11) with SMTP id i3H2b5gl087409; Sat, 17 Apr 2004 03:37:05 +0100 (BST) (envelope-from brian@Awfulhak.org) Date: Sat, 17 Apr 2004 03:37:04 +0100 From: Brian Somers To: Robert Watson Message-Id: <20040417033704.7c822618@dev.lan.Awfulhak.org> In-Reply-To: References: <200404170029.i3H0THib004931@repoman.freebsd.org> X-Mailer: Sylpheed version 0.9.8claws (GTK+ 1.2.10; i386-portbld-freebsd5.2) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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 gw.lan.Awfulhak.org cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/usr.sbin/ppp mbuf.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 02:37:10 -0000 On Fri, 16 Apr 2004 21:17:04 -0400 (EDT), Robert Watson wrote: > > On Fri, 16 Apr 2004, Brian Somers wrote: > > > brian 2004/04/16 17:29:17 PDT > > > > FreeBSD src repository > > > > Modified files: > > usr.sbin/ppp mbuf.c > > Log: > > Add a missing memcpy (*blush*!) > > > > Suggested by: James P Scully , Perianayagam Somasundaram > > MFC after: 10 days > > Hey, welcome back! Any chance you're here to stay? :-) Well, hopefully. Work is slow and when the 3300 redundancies hit (Sun!), I'll need to find somewhere else to vent my frustrations! > Robert N M Watson FreeBSD Core Team, TrustedBSD Projects > robert@fledge.watson.org Senior Research Scientist, McAfee Research -- Brian Don't _EVER_ lose your sense of humour ! From owner-cvs-all@FreeBSD.ORG Fri Apr 16 19:46: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 5010316A4CE; Fri, 16 Apr 2004 19:46:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3388843D2D; Fri, 16 Apr 2004 19:46:06 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H2k5Ge036477; Fri, 16 Apr 2004 19:46:05 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H2k5jd036476; Fri, 16 Apr 2004 19:46:05 -0700 (PDT) (envelope-from bde) Message-Id: <200404170246.i3H2k5jd036476@repoman.freebsd.org> From: Bruce Evans Date: Fri, 16 Apr 2004 19:46:05 -0700 (PDT) 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_intr.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 02:46:06 -0000 bde 2004/04/16 19:46:05 PDT FreeBSD src repository Modified files: sys/kern kern_intr.c Log: Fixed some style bugs in previous commit (mainly an insertion sort error for declarations, and poorly worded messages). Fixed some nearby style bugs (unsorted declarations). Revision Changes Path 1.108 +10 -9 src/sys/kern/kern_intr.c From owner-cvs-all@FreeBSD.ORG Fri Apr 16 19: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 093B416A4CE; Fri, 16 Apr 2004 19:56:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E064B43D53; Fri, 16 Apr 2004 19:56:26 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H2uQGe039082; Fri, 16 Apr 2004 19:56:26 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H2uPrb039081; Fri, 16 Apr 2004 19:56:25 -0700 (PDT) (envelope-from linimon) Message-Id: <200404170256.i3H2uPrb039081@repoman.freebsd.org> From: Mark Linimon Date: Fri, 16 Apr 2004 19:56:25 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/rubyphoto 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, 17 Apr 2004 02:56:27 -0000 linimon 2004/04/16 19:56:25 PDT FreeBSD ports repository Modified files: graphics/rubyphoto pkg-plist Log: Per dosirak run, fix plist. Revision Changes Path 1.2 +2 -0 ports/graphics/rubyphoto/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 20:00: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 AEC7B16A4E8; Fri, 16 Apr 2004 20:00:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8FF5743D5C; Fri, 16 Apr 2004 20:00:53 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H30rGe039290; Fri, 16 Apr 2004 20:00:53 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H30qNV039289; Fri, 16 Apr 2004 20:00:52 -0700 (PDT) (envelope-from linimon) Message-Id: <200404170300.i3H30qNV039289@repoman.freebsd.org> From: Mark Linimon Date: Fri, 16 Apr 2004 20:00:52 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/rpc2 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, 17 Apr 2004 03:00:53 -0000 linimon 2004/04/16 20:00:52 PDT FreeBSD ports repository Modified files: devel/rpc2 pkg-plist Log: Per dosirak run, fix plist. Revision Changes Path 1.6 +3 -0 ports/devel/rpc2/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 20:16: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 78C9116A4CE; Fri, 16 Apr 2004 20:16:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5BC9043D1F; Fri, 16 Apr 2004 20:16:13 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H3GDGe044119; Fri, 16 Apr 2004 20:16:13 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H3GDMW044118; Fri, 16 Apr 2004 20:16:13 -0700 (PDT) (envelope-from linimon) Message-Id: <200404170316.i3H3GDMW044118@repoman.freebsd.org> From: Mark Linimon Date: Fri, 16 Apr 2004 20:16:13 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/pybook 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, 17 Apr 2004 03:16:13 -0000 linimon 2004/04/16 20:16:13 PDT FreeBSD ports repository Modified files: textproc/pybook pkg-plist Log: Per dosirak run, fix plist. Revision Changes Path 1.3 +34 -0 ports/textproc/pybook/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 21:12: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 978BF16A4CE; Fri, 16 Apr 2004 21:12:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 79B7D43D55; Fri, 16 Apr 2004 21:12:28 -0700 (PDT) (envelope-from brooks@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H4CSGe062809; Fri, 16 Apr 2004 21:12:28 -0700 (PDT) (envelope-from brooks@repoman.freebsd.org) Received: (from brooks@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H4CR9P062806; Fri, 16 Apr 2004 21:12:27 -0700 (PDT) (envelope-from brooks) Message-Id: <200404170412.i3H4CR9P062806@repoman.freebsd.org> From: Brooks Davis Date: Fri, 16 Apr 2004 21:12:27 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/rc.d 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, 17 Apr 2004 04:12:28 -0000 brooks 2004/04/16 21:12:27 PDT FreeBSD src repository Modified files: etc/rc.d Makefile Log: Actually install preseedrandom. Reported by: bde Revision Changes Path 1.40 +2 -1 src/etc/rc.d/Makefile From owner-cvs-all@FreeBSD.ORG Fri Apr 16 21: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 E907116A4CE; Fri, 16 Apr 2004 21:17:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA53D43D2D; Fri, 16 Apr 2004 21:17:21 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H4HLGe063362; Fri, 16 Apr 2004 21:17:21 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H4HLSJ063361; Fri, 16 Apr 2004 21:17:21 -0700 (PDT) (envelope-from linimon) Message-Id: <200404170417.i3H4HLSJ063361@repoman.freebsd.org> From: Mark Linimon Date: Fri, 16 Apr 2004 21:17:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/proxyper 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, 17 Apr 2004 04:17:22 -0000 linimon 2004/04/16 21:17:21 PDT FreeBSD ports repository Modified files: misc/proxyper pkg-plist Log: Per dosirak run, fix plist. Revision Changes Path 1.7 +1 -0 ports/misc/proxyper/pkg-plist From owner-cvs-all@FreeBSD.ORG Fri Apr 16 21:52: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 D15DA16A4CE; Fri, 16 Apr 2004 21:52:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B496043D2D; Fri, 16 Apr 2004 21:52:39 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H4qdGe075379; Fri, 16 Apr 2004 21:52:39 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H4qdIg075377; Fri, 16 Apr 2004 21:52:39 -0700 (PDT) (envelope-from marcus) Message-Id: <200404170452.i3H4qdIg075377@repoman.freebsd.org> From: Joe Marcus Clarke Date: Fri, 16 Apr 2004 21:52:38 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/gnomevfs2 Makefileports/devel/gnomevfs2/files patch-libgnomevfs_gnome-vfs-unix-mounts.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 04:52:40 -0000 marcus 2004/04/16 21:52:38 PDT FreeBSD ports repository Modified files: devel/gnomevfs2 Makefile devel/gnomevfs2/files patch-libgnomevfs_gnome-vfs-unix-mounts.c Log: * statfs.f_flags is a bitmap, so we need to do boolean operations, and not simply test for equality * Fix a potential crash in many GNOME applications because the device number for various file systems could not be obtained Revision Changes Path 1.80 +1 -1 ports/devel/gnomevfs2/Makefile 1.2 +24 -2 ports/devel/gnomevfs2/files/patch-libgnomevfs_gnome-vfs-unix-mounts.c From owner-cvs-all@FreeBSD.ORG Fri Apr 16 22:12: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 9FED116A4CE; Fri, 16 Apr 2004 22:12:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 80E6943D4C; Fri, 16 Apr 2004 22:12:34 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H5CYGe082592; Fri, 16 Apr 2004 22:12:34 -0700 (PDT) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H5CY8N082591; Fri, 16 Apr 2004 22:12:34 -0700 (PDT) (envelope-from bmah) Message-Id: <200404170512.i3H5CY8N082591@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 16 Apr 2004 22:12:33 -0700 (PDT) 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: Sat, 17 Apr 2004 05:12:34 -0000 bmah 2004/04/16 22:12:33 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Massage the GNOME update note a bit: Fix what looks like a mistaken reference to kde3, tweak wording slightly, and use the portupgrade manpage entity. Approved by: re (implicitly) Revision Changes Path 1.22.2.407 +4 -4 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Fri Apr 16 22: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 92A7716A4CE; Fri, 16 Apr 2004 22:21:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 751B543D54; Fri, 16 Apr 2004 22:21:41 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H5LfGe083985; Fri, 16 Apr 2004 22:21:41 -0700 (PDT) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H5Lftq083981; Fri, 16 Apr 2004 22:21:41 -0700 (PDT) (envelope-from bmah) Message-Id: <200404170521.i3H5Lftq083981@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 16 Apr 2004 22:21:41 -0700 (PDT) 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: Sat, 17 Apr 2004 05:21:41 -0000 bmah 2004/04/16 22:21:41 PDT FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release notes: ports/UPDATING and ports/CHANGES. MF4S: GNOME 2.6, KDE 3.2.1. Revision Changes Path 1.712 +34 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Fri Apr 16 22:22: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 4CCAF16A4CE; Fri, 16 Apr 2004 22:22:41 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EF4A43D31; Fri, 16 Apr 2004 22:22:41 -0700 (PDT) (envelope-from bmah@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H5MfGe084698; Fri, 16 Apr 2004 22:22:41 -0700 (PDT) (envelope-from bmah@repoman.freebsd.org) Received: (from bmah@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H5Me56084697; Fri, 16 Apr 2004 22:22:40 -0700 (PDT) (envelope-from bmah) Message-Id: <200404170522.i3H5Me56084697@repoman.freebsd.org> From: "Bruce A. Mah" Date: Fri, 16 Apr 2004 22:22:40 -0700 (PDT) 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: Sat, 17 Apr 2004 05:22:41 -0000 bmah 2004/04/16 22:22:40 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: src/CHANGES and src/UPDATING. Fix minor typo in previous commit. Approved by: re (implicitly) Revision Changes Path 1.22.2.408 +9 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Fri Apr 16 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 D366B16A4CE; Fri, 16 Apr 2004 22:33:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCC7543D5E; Fri, 16 Apr 2004 22:33:25 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H5XPGe086786; Fri, 16 Apr 2004 22:33:25 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H5XPbJ086785; Fri, 16 Apr 2004 22:33:25 -0700 (PDT) (envelope-from krion) Message-Id: <200404170533.i3H5XPbJ086785@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 22:33:25 -0700 (PDT) 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/py-memcached 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, 17 Apr 2004 05:33:26 -0000 krion 2004/04/16 22:33:25 PDT FreeBSD ports repository Modified files: databases Makefile Added files: databases/py-memcached Makefile distinfo pkg-descr pkg-plist Log: Add py-memcached 1.2, python API for memcached, a distributed memory cache daemon. PR: ports/65643 Submitted by: michael johnson Revision Changes Path 1.336 +1 -0 ports/databases/Makefile 1.1 +23 -0 ports/databases/py-memcached/Makefile (new) 1.1 +2 -0 ports/databases/py-memcached/distinfo (new) 1.1 +8 -0 ports/databases/py-memcached/pkg-descr (new) 1.1 +3 -0 ports/databases/py-memcached/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 22:33: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 431EC16A4FA; Fri, 16 Apr 2004 22:33:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E7FFB43D5C; Fri, 16 Apr 2004 22:33:38 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H5XcGe086834; Fri, 16 Apr 2004 22:33:38 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H5Xc9u086833; Fri, 16 Apr 2004 22:33:38 -0700 (PDT) (envelope-from krion) Message-Id: <200404170533.i3H5Xc9u086833@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 22:33:38 -0700 (PDT) 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, 17 Apr 2004 05:33:40 -0000 krion 2004/04/16 22:33:38 PDT FreeBSD ports repository Modified files: . modules Log: py-memcached --> ports/databases/py-memcached Revision Changes Path 1.9922 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 16 22: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 B47BE16A4CE; Fri, 16 Apr 2004 22:45:47 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ADD9C43D3F; Fri, 16 Apr 2004 22:45:47 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H5jlGe089574; Fri, 16 Apr 2004 22:45:47 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H5jl9X089571; Fri, 16 Apr 2004 22:45:47 -0700 (PDT) (envelope-from krion) Message-Id: <200404170545.i3H5jl9X089571@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 22:45:46 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games Makefile ports/games/supertux 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, 17 Apr 2004 05:45:47 -0000 krion 2004/04/16 22:45:46 PDT FreeBSD ports repository Modified files: games Makefile Added files: games/supertux Makefile distinfo pkg-descr pkg-plist Log: Add supertux 0.0.6, Super Tux is a side-scrolling run-and-jump game with a level editor similar to the original game "Super Mario Bros." from the Nintendo Entertainment System. PR: ports/65650 Submitted by: michael johnson Revision Changes Path 1.686 +1 -0 ports/games/Makefile 1.1 +45 -0 ports/games/supertux/Makefile (new) 1.1 +2 -0 ports/games/supertux/distinfo (new) 1.1 +5 -0 ports/games/supertux/pkg-descr (new) 1.1 +226 -0 ports/games/supertux/pkg-plist (new) From owner-cvs-all@FreeBSD.ORG Fri Apr 16 22: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 8328516A4CF; Fri, 16 Apr 2004 22:46:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 652E443D48; Fri, 16 Apr 2004 22:46:03 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H5k2Ge089746; Fri, 16 Apr 2004 22:46:02 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H5k2KN089743; Fri, 16 Apr 2004 22:46:02 -0700 (PDT) (envelope-from krion) Message-Id: <200404170546.i3H5k2KN089743@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 22:46:02 -0700 (PDT) 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, 17 Apr 2004 05:46:03 -0000 krion 2004/04/16 22:46:02 PDT FreeBSD ports repository Modified files: . modules Log: supertux --> ports/games/supertux Revision Changes Path 1.9923 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Fri Apr 16 23:05: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 70B8C16A4D0 for ; Fri, 16 Apr 2004 23:05:23 -0700 (PDT) Received: from root.org (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 458C143D64 for ; Fri, 16 Apr 2004 23:05:23 -0700 (PDT) (envelope-from nate@root.org) Received: (qmail 1888 invoked by uid 1000); 17 Apr 2004 06:05:25 -0000 Date: Fri, 16 Apr 2004 23:05:25 -0700 (PDT) From: Nate Lawson To: Paul Saab In-Reply-To: <20040416230100.5011316A4FE@hub.freebsd.org> Message-ID: <20040416230427.F1848@root.org> References: <20040416230100.5011316A4FE@hub.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/dev/ciss ciss.c cissreg.h cissvar.h src/share/man/man4 ciss.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, 17 Apr 2004 06:05:23 -0000 Excellent work, maintenance of our RAID drivers has been lacking as of late. On Fri, 16 Apr 2004, Paul Saab wrote: > ps 2004/04/16 16:00:02 PDT > > FreeBSD src repository > > Modified files: > sys/dev/ciss ciss.c cissreg.h cissvar.h > share/man/man4 ciss.4 > Log: > Add support for the HP Modular Smart Array 20 & 500 storage arrays. > Logical volumes on these devices show up as LUNs behind another > controller (also known as proxy controller). In order to issue > firmware commands for a volume on a proxy controller, they must be > targeted at the address of the proxy controller it is attached to, > not the Host/PCI controller. > > A proxy controller is defined as a device listed in the INQUIRY > PHYSICAL LUNS command who's L2 and L3 SCSI addresses are zero. The > corresponding address returned defines which "bus" the controller > lives on and we use this to create a virtual CAM bus. > > A logical volume's addresses first byte defines the logical drive > number. The second byte defines the bus that it is attached to > which corresponds to the BUS of the proxy controller's found or the > Host/PCI controller. > > Change event notification to be handled in its own kernel thread. > This is needed since some events may require the driver to sleep > on some operations and this cannot be done during interrupt context. > With this change, it is now possible to create and destroy logical > volumes from FreeBSD, but it requires a native application to > construct the proper firmware commands which is not publicly > available. > > Special thanks to John Cagle @ HP for providing remote access to > all the hardware and beating on the storage engineers at HP to > answer my questions. > > Revision Changes Path > 1.6 +4 -0 src/share/man/man4/ciss.4 > 1.41 +435 -124 src/sys/dev/ciss/ciss.c > 1.7 +9 -0 src/sys/dev/ciss/cissreg.h > 1.7 +18 -14 src/sys/dev/ciss/cissvar.h > From owner-cvs-all@FreeBSD.ORG Fri Apr 16 23: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 61D0816A4CE; Fri, 16 Apr 2004 23:15:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4583743D45; Fri, 16 Apr 2004 23:15:17 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H6FHGe098180; Fri, 16 Apr 2004 23:15:17 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H6FHPX098179; Fri, 16 Apr 2004 23:15:17 -0700 (PDT) (envelope-from ru) Message-Id: <200404170615.i3H6FHPX098179@repoman.freebsd.org> From: Ruslan Ermilov Date: Fri, 16 Apr 2004 23:15:16 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src MAINTAINERS X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 06:15:17 -0000 ru 2004/04/16 23:15:16 PDT FreeBSD src repository Modified files: . MAINTAINERS Log: Suspend my interest in maintaining libalias(3) and natd(8). Revision Changes Path 1.87 +0 -1 src/MAINTAINERS From owner-cvs-all@FreeBSD.ORG Fri Apr 16 23:22: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 CEABE16A4CE; Fri, 16 Apr 2004 23:22:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B003043D54; Fri, 16 Apr 2004 23:22:03 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H6M3Ge099772; Fri, 16 Apr 2004 23:22:03 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H6M3KX099771; Fri, 16 Apr 2004 23:22:03 -0700 (PDT) (envelope-from krion) Message-Id: <200404170622.i3H6M3KX099771@repoman.freebsd.org> From: Kirill Ponomarew Date: Fri, 16 Apr 2004 23:22:03 -0700 (PDT) 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 ports/security/gsasl/files patch-lib::lt-main.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: Sat, 17 Apr 2004 06:22:04 -0000 krion 2004/04/16 23:22:03 PDT FreeBSD ports repository Modified files: security/gsasl Makefile distinfo pkg-plist Added files: security/gsasl/files patch-lib::lt-main.sh Log: - Update to version 0.1.0 - Take maintainership Revision Changes Path 1.11 +3 -4 ports/security/gsasl/Makefile 1.7 +2 -2 ports/security/gsasl/distinfo 1.1 +15 -0 ports/security/gsasl/files/patch-lib::lt-main.sh (new) 1.5 +1 -0 ports/security/gsasl/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 00:16: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 2AB1216A4CE; Sat, 17 Apr 2004 00:16:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C34743D31; Sat, 17 Apr 2004 00:16:36 -0700 (PDT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H7GZGe011297; Sat, 17 Apr 2004 00:16:35 -0700 (PDT) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H7GZlI011296; Sat, 17 Apr 2004 00:16:35 -0700 (PDT) (envelope-from tjr) Message-Id: <200404170716.i3H7GZlI011296@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 17 Apr 2004 00:16:35 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: LESS Subject: cvs commit: src/contrib/less - 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: Sat, 17 Apr 2004 07:16:36 -0000 tjr 2004/04/17 00:16:35 PDT FreeBSD src repository src/contrib/less - Imported sources Update of /home/ncvs/src/contrib/less In directory repoman.freebsd.org:/tmp/cvs-serv11202 Log Message: Import less v381. Status: Vendor Tag: LESS Release Tags: v381 C src/contrib/less/main.c C src/contrib/less/screen.c U src/contrib/less/brac.c U src/contrib/less/ch.c U src/contrib/less/charset.c U src/contrib/less/cmdbuf.c C src/contrib/less/command.c U src/contrib/less/decode.c U src/contrib/less/edit.c U src/contrib/less/filename.c C src/contrib/less/forwback.c U src/contrib/less/help.c U src/contrib/less/ifile.c U src/contrib/less/input.c U src/contrib/less/jump.c U src/contrib/less/line.c U src/contrib/less/linenum.c U src/contrib/less/lsystem.c U src/contrib/less/mark.c U src/contrib/less/optfunc.c U src/contrib/less/option.c U src/contrib/less/opttbl.c U src/contrib/less/os.c U src/contrib/less/output.c U src/contrib/less/position.c C src/contrib/less/prompt.c C src/contrib/less/search.c C src/contrib/less/signal.c U src/contrib/less/tags.c U src/contrib/less/ttyin.c U src/contrib/less/version.c U src/contrib/less/regexp.c U src/contrib/less/regexp.h U src/contrib/less/COPYING U src/contrib/less/INSTALL U src/contrib/less/LICENSE U src/contrib/less/Makefile.in U src/contrib/less/Makefile.aut U src/contrib/less/NEWS U src/contrib/less/README U src/contrib/less/configure N src/contrib/less/configure.ac U src/contrib/less/lesskey.c U src/contrib/less/lessecho.c U src/contrib/less/scrsize.c U src/contrib/less/cmd.h U src/contrib/less/funcs.h U src/contrib/less/lglob.h C src/contrib/less/less.h U src/contrib/less/lesskey.h U src/contrib/less/option.h U src/contrib/less/pckeys.h U src/contrib/less/position.h U src/contrib/less/install.sh U src/contrib/less/defines.h.in U src/contrib/less/mkinstalldirs U src/contrib/less/less.nro U src/contrib/less/lesskey.nro U src/contrib/less/less.man U src/contrib/less/lesskey.man U src/contrib/less/less.hlp U src/contrib/less/mkfuncs.awk U src/contrib/less/mkhelp.c U src/contrib/less/defines.ds U src/contrib/less/Makefile.dsb U src/contrib/less/Makefile.dsg U src/contrib/less/Makefile.dsu U src/contrib/less/defines.o2 U src/contrib/less/Makefile.o2e U src/contrib/less/defines.o9 U src/contrib/less/Makefile.o9c U src/contrib/less/Makefile.o9u U src/contrib/less/defines.wn U src/contrib/less/Makefile.wnm U src/contrib/less/Makefile.wnb 8 conflicts created by this import. Use the following command to help the merge: cvs checkout -jLESS:yesterday -jLESS src/contrib/less From owner-cvs-all@FreeBSD.ORG Sat Apr 17 00:24: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 E381516A4CE; Sat, 17 Apr 2004 00:24:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DD08143D45; Sat, 17 Apr 2004 00:24:09 -0700 (PDT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H7O9Ge013263; Sat, 17 Apr 2004 00:24:09 -0700 (PDT) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H7O9Df013262; Sat, 17 Apr 2004 00:24:09 -0700 (PDT) (envelope-from tjr) Message-Id: <200404170724.i3H7O9Df013262@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 17 Apr 2004 00:24:09 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/less acconfig.h command.c configure.in defines.h.top forwback.c less.h main.c prompt.c screen.c search.c signal.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 07:24:10 -0000 tjr 2004/04/17 00:24:09 PDT FreeBSD src repository Modified files: contrib/less command.c forwback.c less.h main.c prompt.c screen.c search.c signal.c Removed files: contrib/less acconfig.h configure.in defines.h.top Log: Merge vendor changes onto mainline. Revision Changes Path 1.2 +0 -70 src/contrib/less/acconfig.h (dead) 1.5 +39 -25 src/contrib/less/command.c 1.2 +0 -302 src/contrib/less/configure.in (dead) 1.2 +0 -172 src/contrib/less/defines.h.top (dead) 1.4 +2 -2 src/contrib/less/forwback.c 1.5 +8 -1 src/contrib/less/less.h 1.4 +15 -6 src/contrib/less/main.c 1.4 +57 -51 src/contrib/less/prompt.c 1.4 +12 -11 src/contrib/less/screen.c 1.5 +84 -42 src/contrib/less/search.c 1.3 +1 -1 src/contrib/less/signal.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 00: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 8769216A4CE; Sat, 17 Apr 2004 00:46:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 699A343D1F; Sat, 17 Apr 2004 00:46:08 -0700 (PDT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H7k8Ge017565; Sat, 17 Apr 2004 00:46:08 -0700 (PDT) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H7k88r017564; Sat, 17 Apr 2004 00:46:08 -0700 (PDT) (envelope-from tjr) Message-Id: <200404170746.i3H7k88r017564@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 17 Apr 2004 00:46:08 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/less defines.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, 17 Apr 2004 07:46:08 -0000 tjr 2004/04/17 00:46:08 PDT FreeBSD src repository Modified files: usr.bin/less defines.h Log: Regenerate with less 381 configure script. Revision Changes Path 1.4 +173 -117 src/usr.bin/less/defines.h From owner-cvs-all@FreeBSD.ORG Sat Apr 17 00:48: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 4D07B16A4CE; Sat, 17 Apr 2004 00:48:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2F45743D3F; Sat, 17 Apr 2004 00:48:22 -0700 (PDT) (envelope-from tjr@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H7mMGe023616; Sat, 17 Apr 2004 00:48:22 -0700 (PDT) (envelope-from tjr@repoman.freebsd.org) Received: (from tjr@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H7mLK2023615; Sat, 17 Apr 2004 00:48:21 -0700 (PDT) (envelope-from tjr) Message-Id: <200404170748.i3H7mLK2023615@repoman.freebsd.org> From: "Tim J. Robbins" Date: Sat, 17 Apr 2004 00:48:21 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/usr.bin/less defines.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, 17 Apr 2004 07:48:22 -0000 tjr 2004/04/17 00:48:21 PDT FreeBSD src repository Modified files: usr.bin/less defines.h Log: Restore old value of LESSKEYFILE_SYS. Revision Changes Path 1.5 +1 -1 src/usr.bin/less/defines.h From owner-cvs-all@FreeBSD.ORG Sat Apr 17 01:05: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 EAA9A16A4CE; Sat, 17 Apr 2004 01:05:53 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CCD4843D45; Sat, 17 Apr 2004 01:05:53 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H85rGe028553; Sat, 17 Apr 2004 01:05:53 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H85rpB028552; Sat, 17 Apr 2004 01:05:53 -0700 (PDT) (envelope-from kris) Message-Id: <200404170805.i3H85rpB028552@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 01:05:53 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/ftp/pavuk 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, 17 Apr 2004 08:05:54 -0000 kris 2004/04/17 01:05:53 PDT FreeBSD ports repository Modified files: ftp/pavuk pkg-plist Log: Correct pkg-plist Pointy hat to: kris Revision Changes Path 1.10 +7 -7 ports/ftp/pavuk/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 01:25: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 39CE816A4CE; Sat, 17 Apr 2004 01:25:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1DE2743D64; Sat, 17 Apr 2004 01:25:17 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H8PGGe032516; Sat, 17 Apr 2004 01:25:16 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H8PG7c032515; Sat, 17 Apr 2004 01:25:16 -0700 (PDT) (envelope-from krion) Message-Id: <200404170825.i3H8PG7c032515@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 17 Apr 2004 01:25:16 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/zgv 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, 17 Apr 2004 08:25:17 -0000 krion 2004/04/17 01:25:16 PDT FreeBSD ports repository Modified files: graphics/zgv Makefile Log: - Fix build on 4-x Reported by: bento via kris Revision Changes Path 1.2 +1 -0 ports/graphics/zgv/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 01:34: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 A3F7616A4CE; Sat, 17 Apr 2004 01:34:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 885DC43D2D; Sat, 17 Apr 2004 01:34:32 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3H8YWGe034489; Sat, 17 Apr 2004 01:34:32 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3H8YWQU034488; Sat, 17 Apr 2004 01:34:32 -0700 (PDT) (envelope-from kris) Message-Id: <200404170834.i3H8YWQU034488@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 01:34:32 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/stund 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, 17 Apr 2004 08:34:32 -0000 kris 2004/04/17 01:34:32 PDT FreeBSD ports repository Modified files: net/stund Makefile Log: BROKEN on !i386: Does not compile Revision Changes Path 1.2 +7 -1 ports/net/stund/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 03:04: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 C293416A4CE; Sat, 17 Apr 2004 03:04:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 63A4A43D2F; Sat, 17 Apr 2004 03:04:13 -0700 (PDT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HA4CGe054382; Sat, 17 Apr 2004 03:04:12 -0700 (PDT) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HA4Baj054377; Sat, 17 Apr 2004 03:04:11 -0700 (PDT) (envelope-from brueffer) Message-Id: <200404171004.i3HA4Baj054377@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 17 Apr 2004 03:04:11 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: RELENG_4 Subject: cvs commit: src/lib/libc/sys acct.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: Sat, 17 Apr 2004 10:04:14 -0000 brueffer 2004/04/17 03:04:10 PDT FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_4) lib/libc/sys acct.2 Log: MFC: 1.16 - 1.19 o List some sysctl variables that influence accounting o Add reference to accton.8 o Bump document date Approved by: re (kensmith) Revision Changes Path 1.6.2.5 +16 -1 src/lib/libc/sys/acct.2 From owner-cvs-all@FreeBSD.ORG Sat Apr 17 03:06: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 DC15016A4CE; Sat, 17 Apr 2004 03:06:42 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BFE9043D41; Sat, 17 Apr 2004 03:06:42 -0700 (PDT) (envelope-from brueffer@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HA6fGe054521; Sat, 17 Apr 2004 03:06:41 -0700 (PDT) (envelope-from brueffer@repoman.freebsd.org) Received: (from brueffer@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HA6eWZ054520; Sat, 17 Apr 2004 03:06:40 -0700 (PDT) (envelope-from brueffer) Message-Id: <200404171006.i3HA6eWZ054520@repoman.freebsd.org> From: Christian Brueffer Date: Sat, 17 Apr 2004 03:06:40 -0700 (PDT) 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/accton accton.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: Sat, 17 Apr 2004 10:06:43 -0000 brueffer 2004/04/17 03:06:40 PDT FreeBSD src repository (doc committer) Modified files: (Branch: RELENG_4) usr.sbin/accton accton.8 Log: MFC: 1.13 o split a sentence to make it more understandable o mention that the acctfile has to exist for accton to work o add reference to acct.5 Approved by: re (kensmith) Revision Changes Path 1.6.2.7 +8 -2 src/usr.sbin/accton/accton.8 From owner-cvs-all@FreeBSD.ORG Sat Apr 17 03:25: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 E610516A4CE; Sat, 17 Apr 2004 03:25:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CA44A43D45; Sat, 17 Apr 2004 03:25:05 -0700 (PDT) (envelope-from mux@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HAP5Ge058774; Sat, 17 Apr 2004 03:25:05 -0700 (PDT) (envelope-from mux@repoman.freebsd.org) Received: (from mux@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HAP5pN058773; Sat, 17 Apr 2004 03:25:05 -0700 (PDT) (envelope-from mux) Message-Id: <200404171025.i3HAP5pN058773@repoman.freebsd.org> From: Maxime Henrion Date: Sat, 17 Apr 2004 03:25:04 -0700 (PDT) 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: Sat, 17 Apr 2004 10:25:06 -0000 mux 2004/04/17 03:25:04 PDT FreeBSD src repository Modified files: sys/isa psm.c Log: Don't check for device_get_softc() returning NULL, it can't happen. Revision Changes Path 1.68 +0 -3 src/sys/isa/psm.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 04:55: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 9335016A4CE; Sat, 17 Apr 2004 04:55:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 77D4443D4C; Sat, 17 Apr 2004 04:55:54 -0700 (PDT) (envelope-from yoichi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HBtrGe083763; Sat, 17 Apr 2004 04:55:54 -0700 (PDT) (envelope-from yoichi@repoman.freebsd.org) Received: (from yoichi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HBtqwg083752; Sat, 17 Apr 2004 04:55:52 -0700 (PDT) (envelope-from yoichi) Message-Id: <200404171155.i3HBtqwg083752@repoman.freebsd.org> From: Yoichi NAKAYAMA Date: Sat, 17 Apr 2004 04:55:52 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/xface.el 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, 17 Apr 2004 11:55:54 -0000 yoichi 2004/04/17 04:55:52 PDT FreeBSD ports repository Modified files: graphics/xface.el Makefile Log: Add one more master site. Revision Changes Path 1.18 +2 -1 ports/graphics/xface.el/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 04:57: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 9A47216A4CE; Sat, 17 Apr 2004 04:57:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7E09443D2D; Sat, 17 Apr 2004 04:57:35 -0700 (PDT) (envelope-from cperciva@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HBvZGe083841; Sat, 17 Apr 2004 04:57:35 -0700 (PDT) (envelope-from cperciva@repoman.freebsd.org) Received: (from cperciva@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HBvZp0083840; Sat, 17 Apr 2004 04:57:35 -0700 (PDT) (envelope-from cperciva) Message-Id: <200404171157.i3HBvZp0083840@repoman.freebsd.org> From: Colin Percival Date: Sat, 17 Apr 2004 04:57:35 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/puc pucdata.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 11:57:35 -0000 cperciva 2004/04/17 04:57:35 PDT FreeBSD src repository Modified files: sys/dev/puc pucdata.c Log: Add support for Exsys EX-41098 cards. PR: kern/65040 Submitted by: Stefan Grundmann Tested by: buildkernel "Just commit it" by: phk Revision Changes Path 1.31 +14 -0 src/sys/dev/puc/pucdata.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 05:19: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 A13EB16A4CE; Sat, 17 Apr 2004 05:19:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8296C43D53; Sat, 17 Apr 2004 05:19:46 -0700 (PDT) (envelope-from thierry@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HCJkGe088877; Sat, 17 Apr 2004 05:19:46 -0700 (PDT) (envelope-from thierry@repoman.freebsd.org) Received: (from thierry@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HCJkPJ088876; Sat, 17 Apr 2004 05:19:46 -0700 (PDT) (envelope-from thierry) Message-Id: <200404171219.i3HCJkPJ088876@repoman.freebsd.org> From: Thierry Thomas Date: Sat, 17 Apr 2004 05:19:46 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/libglut Makefile distinfo ports/graphics/libglut/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: Sat, 17 Apr 2004 12:19:46 -0000 thierry 2004/04/17 05:19:46 PDT FreeBSD ports repository Modified files: graphics/libglut Makefile distinfo graphics/libglut/files Makefile Log: Upgrade to 6.0.1. Same library .so. PR: ports/65353 Submitted by: Yarema Approved by: mat (mentor). Revision Changes Path 1.4 +2 -2 ports/graphics/libglut/Makefile 1.4 +2 -2 ports/graphics/libglut/distinfo 1.2 +3 -3 ports/graphics/libglut/files/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 05: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 AEA1E16A4CE; Sat, 17 Apr 2004 05:37:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 92FA543D5A; Sat, 17 Apr 2004 05:37:26 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HCbQGe092818; Sat, 17 Apr 2004 05:37:26 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HCbQ8m092817; Sat, 17 Apr 2004 05:37:26 -0700 (PDT) (envelope-from kris) Message-Id: <200404171237.i3HCbQ8m092817@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 05:37:25 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/c2lib 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, 17 Apr 2004 12:37:26 -0000 kris 2004/04/17 05:37:25 PDT FreeBSD ports repository Modified files: devel/c2lib pkg-plist Log: Correct silent rmdir (missing %D) Revision Changes Path 1.6 +2 -2 ports/devel/c2lib/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 05:39: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 CC40D16A4CE; Sat, 17 Apr 2004 05:39:35 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B0ECB43D54; Sat, 17 Apr 2004 05:39:35 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HCdZGe092888; Sat, 17 Apr 2004 05:39:35 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HCdZJD092887; Sat, 17 Apr 2004 05:39:35 -0700 (PDT) (envelope-from kris) Message-Id: <200404171239.i3HCdZJD092887@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 05:39:35 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators/gngb 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, 17 Apr 2004 12:39:36 -0000 kris 2004/04/17 05:39:35 PDT FreeBSD ports repository Modified files: emulators/gngb Makefile Log: Add missing manpage Revision Changes Path 1.14 +2 -0 ports/emulators/gngb/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 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 D028716A4CE; Sat, 17 Apr 2004 05:41:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B34BC43D2D; Sat, 17 Apr 2004 05:41:03 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HCf3Ge093047; Sat, 17 Apr 2004 05:41:03 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HCf3Ng093046; Sat, 17 Apr 2004 05:41:03 -0700 (PDT) (envelope-from kris) Message-Id: <200404171241.i3HCf3Ng093046@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 05:41:03 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/science/bblimage 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, 17 Apr 2004 12:41:04 -0000 kris 2004/04/17 05:41:03 PDT FreeBSD ports repository Modified files: science/bblimage pkg-plist Log: Add missing file Revision Changes Path 1.3 +1 -0 ports/science/bblimage/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 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 D75CE16A4CE; Sat, 17 Apr 2004 05:42:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D0FAF43D5C; Sat, 17 Apr 2004 05:42:17 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HCgHGe094720; Sat, 17 Apr 2004 05:42:17 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HCgHOi094719; Sat, 17 Apr 2004 05:42:17 -0700 (PDT) (envelope-from ru) Message-Id: <200404171242.i3HCgHOi094719@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 17 Apr 2004 05:42:17 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph ng_hub.c ng_hub.h src/sys/modules/netgraph Makefile src/sys/modules/netgraph/hub Makefile src/share/man/man4 Makefile ng_bridge.4 ng_hub.4 ng_one2many.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, 17 Apr 2004 12:42:18 -0000 ru 2004/04/17 05:42:17 PDT FreeBSD src repository Modified files: sys/modules/netgraph Makefile share/man/man4 Makefile ng_bridge.4 ng_one2many.4 Added files: sys/netgraph ng_hub.c ng_hub.h sys/modules/netgraph/hub Makefile share/man/man4 ng_hub.4 Log: A simple packet distribution node type that acts like an Ethernet hub. Revision Changes Path 1.265 +1 -0 src/share/man/man4/Makefile 1.10 +2 -0 src/share/man/man4/ng_bridge.4 1.1 +66 -0 src/share/man/man4/ng_hub.4 (new) 1.16 +1 -0 src/share/man/man4/ng_one2many.4 1.33 +1 -0 src/sys/modules/netgraph/Makefile 1.1 +6 -0 src/sys/modules/netgraph/hub/Makefile (new) 1.1 +110 -0 src/sys/netgraph/ng_hub.c (new) 1.1 +36 -0 src/sys/netgraph/ng_hub.h (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 17 05:43: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 C595016A4CE; Sat, 17 Apr 2004 05:43:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A035B43D45; Sat, 17 Apr 2004 05:43:19 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HChJGe094941; Sat, 17 Apr 2004 05:43:19 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HChJTV094940; Sat, 17 Apr 2004 05:43:19 -0700 (PDT) (envelope-from kris) Message-Id: <200404171243.i3HChJTV094940@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 05:43:19 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/fbpager 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, 17 Apr 2004 12:43:20 -0000 kris 2004/04/17 05:43:19 PDT FreeBSD ports repository Modified files: x11-wm/fbpager Makefile Log: s/PKG_PLIST/PLIST_FILES/ Obviously not tested by: osa Revision Changes Path 1.2 +1 -1 ports/x11-wm/fbpager/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 05:45: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 F067516A4CE; Sat, 17 Apr 2004 05:45:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D3D2F43D49; Sat, 17 Apr 2004 05:45:39 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HCjdGe095089; Sat, 17 Apr 2004 05:45:39 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HCjdlI095088; Sat, 17 Apr 2004 05:45:39 -0700 (PDT) (envelope-from kris) Message-Id: <200404171245.i3HCjdlI095088@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 05:45:39 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/emulators/doscmd 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, 17 Apr 2004 12:45:40 -0000 kris 2004/04/17 05:45:39 PDT FreeBSD ports repository Modified files: emulators/doscmd pkg-plist Log: Add missing directory Revision Changes Path 1.3 +1 -0 ports/emulators/doscmd/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 05:46: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 1E88A16A4CE; Sat, 17 Apr 2004 05:46:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0138543D49; Sat, 17 Apr 2004 05:46:29 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HCkSGe095182; Sat, 17 Apr 2004 05:46:28 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HCkSSP095181; Sat, 17 Apr 2004 05:46:28 -0700 (PDT) (envelope-from pav) Message-Id: <200404171246.i3HCkSSP095181@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 05:46:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/par Makefile ports/textproc/par/files patch-par.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 12:46:29 -0000 pav 2004/04/17 05:46:28 PDT FreeBSD ports repository Modified files: textproc/par Makefile Added files: textproc/par/files patch-par.c Log: - Par 1.52 on FreeBSD does not work as expected by the upstreams author. On FreeBSD, the isspace() system call returns true for the non-breaking space character 0xA0, but this is an unintended side effect. PR: ports/64845 Submitted by: Jean-Baptiste Quenot Not objected: maintainer (2 weeks) Revision Changes Path 1.12 +1 -0 ports/textproc/par/Makefile 1.1 +12 -0 ports/textproc/par/files/patch-par.c (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 17 05:51: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 EA80D16A4CE; Sat, 17 Apr 2004 05:51:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF7E643D58; Sat, 17 Apr 2004 05:51:02 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HCp2Ge095356; Sat, 17 Apr 2004 05:51:02 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HCp2fS095355; Sat, 17 Apr 2004 05:51:02 -0700 (PDT) (envelope-from kris) Message-Id: <200404171251.i3HCp2fS095355@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 05:51:02 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/chord2html 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, 17 Apr 2004 12:51:03 -0000 kris 2004/04/17 05:51:02 PDT FreeBSD ports repository Modified files: misc/chord2html Makefile Log: s/PLIST_DIR/PLIST_DIRS/ to unbreak plist Revision Changes Path 1.7 +1 -1 ports/misc/chord2html/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 05: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 E6A1316A561; Sat, 17 Apr 2004 05:51:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C97AF43D46; Sat, 17 Apr 2004 05:51:28 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HCpSGe096236; Sat, 17 Apr 2004 05:51:28 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HCpSkQ096229; Sat, 17 Apr 2004 05:51:28 -0700 (PDT) (envelope-from kris) Message-Id: <200404171251.i3HCpSkQ096229@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 05:51:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/adasockets 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, 17 Apr 2004 12:51:29 -0000 kris 2004/04/17 05:51:28 PDT FreeBSD ports repository Modified files: net/adasockets Makefile pkg-plist Log: Add missing files, and correct INFO processing Revision Changes Path 1.14 +1 -0 ports/net/adasockets/Makefile 1.6 +2 -3 ports/net/adasockets/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 05:55: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 4EC2A16A4CE; Sat, 17 Apr 2004 05:55:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3310D43D3F; Sat, 17 Apr 2004 05:55:26 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HCtPGe097231; Sat, 17 Apr 2004 05:55:25 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HCtOV0097229; Sat, 17 Apr 2004 05:55:24 -0700 (PDT) (envelope-from kris) Message-Id: <200404171255.i3HCtOV0097229@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 05:55:24 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/cmake 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, 17 Apr 2004 12:55:26 -0000 kris 2004/04/17 05:55:24 PDT FreeBSD ports repository Modified files: devel/cmake Makefile Log: Add missing manpages Revision Changes Path 1.8 +1 -1 ports/devel/cmake/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 05: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 AAE2516A4CE; Sat, 17 Apr 2004 05:56:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8F2EF43D5A; Sat, 17 Apr 2004 05:56:55 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HCutGe097316; Sat, 17 Apr 2004 05:56:55 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HCutam097315; Sat, 17 Apr 2004 05:56:55 -0700 (PDT) (envelope-from pav) Message-Id: <200404171256.i3HCutam097315@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 05:56:55 -0700 (PDT) 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: Sat, 17 Apr 2004 12:56:55 -0000 pav 2004/04/17 05:56:55 PDT FreeBSD ports repository Modified files: audio/baudline Makefile distinfo Log: - Update to 0.97 (unbreak fetch) - Add runtime dependency on mpg123 PR: ports/64970 Submitted by: Tom McLaughlin Approved by: maintainer timeout (2 weeks) Revision Changes Path 1.11 +3 -3 ports/audio/baudline/Makefile 1.8 +2 -1 ports/audio/baudline/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 17 06: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 EDE2016A4CE; Sat, 17 Apr 2004 06:01:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D32A043D31; Sat, 17 Apr 2004 06:01:59 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HD1xGe098473; Sat, 17 Apr 2004 06:01:59 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HD1xIc098460; Sat, 17 Apr 2004 06:01:59 -0700 (PDT) (envelope-from kris) Message-Id: <200404171301.i3HD1xIc098460@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 06:01:58 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/passivetex 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, 17 Apr 2004 13:02:00 -0000 kris 2004/04/17 06:01:58 PDT FreeBSD ports repository Modified files: print/passivetex Makefile Log: BROKEN: Broken dependency Revision Changes Path 1.9 +2 -0 ports/print/passivetex/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 06:04: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 3732816A4CE; Sat, 17 Apr 2004 06:04:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A42F43D1F; Sat, 17 Apr 2004 06:04:17 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HD4GGe000371; Sat, 17 Apr 2004 06:04:16 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HD4GiQ000370; Sat, 17 Apr 2004 06:04:16 -0700 (PDT) (envelope-from kris) Message-Id: <200404171304.i3HD4GiQ000370@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 06:04:16 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/camserv 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, 17 Apr 2004 13:04:17 -0000 kris 2004/04/17 06:04:16 PDT FreeBSD ports repository Modified files: multimedia/camserv Makefile Log: Set ONLY_FOR_ARCHS=i386 alpha since those are the only platforms with driver support. Revision Changes Path 1.12 +2 -0 ports/multimedia/camserv/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 06:04: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 609ED16A4CE; Sat, 17 Apr 2004 06:04:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3B62D43D46; Sat, 17 Apr 2004 06:04:56 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HD4tGe000406; Sat, 17 Apr 2004 06:04:55 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HD4tOS000405; Sat, 17 Apr 2004 06:04:55 -0700 (PDT) (envelope-from linimon) Message-Id: <200404171304.i3HD4tOS000405@repoman.freebsd.org> From: Mark Linimon Date: Sat, 17 Apr 2004 06:04:55 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/xdvik 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, 17 Apr 2004 13:04:56 -0000 linimon 2004/04/17 06:04:55 PDT FreeBSD ports repository Modified files: print/xdvik pkg-plist Log: Per dosirak run, fix plist. Revision Changes Path 1.3 +1 -0 ports/print/xdvik/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 06:07: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 2A8EA16A4CE; Sat, 17 Apr 2004 06:07:57 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0F42843D5E; Sat, 17 Apr 2004 06:07:57 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HD7uGe000558; Sat, 17 Apr 2004 06:07:56 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HD7uLY000557; Sat, 17 Apr 2004 06:07:56 -0700 (PDT) (envelope-from kris) Message-Id: <200404171307.i3HD7uLY000557@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 06:07:55 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/nss 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, 17 Apr 2004 13:07:57 -0000 kris 2004/04/17 06:07:55 PDT FreeBSD ports repository Modified files: security/nss Makefile Log: BROKEN on alpha and ia64: Does not compile Revision Changes Path 1.18 +4 -0 ports/security/nss/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 06: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 3251016A4CF; Sat, 17 Apr 2004 06:16:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 154C443D41; Sat, 17 Apr 2004 06:16:43 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HDGgGe002557; Sat, 17 Apr 2004 06:16:42 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HDGgod002556; Sat, 17 Apr 2004 06:16:42 -0700 (PDT) (envelope-from kris) Message-Id: <200404171316.i3HDGgod002556@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 06:16:42 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/xpm 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, 17 Apr 2004 13:16:43 -0000 kris 2004/04/17 06:16:42 PDT FreeBSD ports repository Modified files: graphics/xpm Makefile Log: IGNORE for XFREE86_VERSION > 3.x, since it is included in XFree86 Revision Changes Path 1.38 +7 -1 ports/graphics/xpm/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 06:34: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 70E6816A4CE; Sat, 17 Apr 2004 06:34:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 53AEB43D4C; Sat, 17 Apr 2004 06:34:03 -0700 (PDT) (envelope-from linimon@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HDY3Ge006406; Sat, 17 Apr 2004 06:34:03 -0700 (PDT) (envelope-from linimon@repoman.freebsd.org) Received: (from linimon@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HDY34R006405; Sat, 17 Apr 2004 06:34:03 -0700 (PDT) (envelope-from linimon) Message-Id: <200404171334.i3HDY34R006405@repoman.freebsd.org> From: Mark Linimon Date: Sat, 17 Apr 2004 06:34:02 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/xdvik 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, 17 Apr 2004 13:34:03 -0000 linimon 2004/04/17 06:34:02 PDT FreeBSD ports repository Modified files: print/xdvik pkg-plist Log: Cosmetic change. Revision Changes Path 1.4 +1 -1 ports/print/xdvik/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 06:41: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 8134E16A4CE; Sat, 17 Apr 2004 06:41:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6432543D1F; Sat, 17 Apr 2004 06:41:32 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HDfWGe007683; Sat, 17 Apr 2004 06:41:32 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HDfWC5007679; Sat, 17 Apr 2004 06:41:32 -0700 (PDT) (envelope-from kris) Message-Id: <200404171341.i3HDfWC5007679@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 06:41:32 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/sary 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, 17 Apr 2004 13:41:32 -0000 kris 2004/04/17 06:41:32 PDT FreeBSD ports repository Modified files: textproc/sary pkg-plist Log: Add missing file Revision Changes Path 1.4 +1 -0 ports/textproc/sary/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 06:48: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 3A8AE16A4CE; Sat, 17 Apr 2004 06:48:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1D39B43D49; Sat, 17 Apr 2004 06:48:00 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HDlxGe008604; Sat, 17 Apr 2004 06:47:59 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HDlxL5008603; Sat, 17 Apr 2004 06:47:59 -0700 (PDT) (envelope-from kris) Message-Id: <200404171347.i3HDlxL5008603@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 06:47:59 -0700 (PDT) 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-SAX-Machines 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, 17 Apr 2004 13:48:00 -0000 kris 2004/04/17 06:47:59 PDT FreeBSD ports repository Modified files: textproc/p5-XML-SAX-Machines pkg-plist Log: Add missing files and directory Revision Changes Path 1.3 +5 -0 ports/textproc/p5-XML-SAX-Machines/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 06:51: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 D64D716A4CE; Sat, 17 Apr 2004 06:51:05 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B9A4F43D39; Sat, 17 Apr 2004 06:51:05 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HDp5Ge008748; Sat, 17 Apr 2004 06:51:05 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HDp5dg008747; Sat, 17 Apr 2004 06:51:05 -0700 (PDT) (envelope-from kris) Message-Id: <200404171351.i3HDp5dg008747@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 06:51:05 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/p5-DBZ_File 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, 17 Apr 2004 13:51:06 -0000 kris 2004/04/17 06:51:05 PDT FreeBSD ports repository Modified files: databases/p5-DBZ_File pkg-plist Log: Don't remove directory we didn't create Revision Changes Path 1.3 +0 -1 ports/databases/p5-DBZ_File/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 06:53: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 E965416A4CF; Sat, 17 Apr 2004 06:53:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CC82343D4C; Sat, 17 Apr 2004 06:53:06 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HDr6Ge010524; Sat, 17 Apr 2004 06:53:06 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HDr6GY010523; Sat, 17 Apr 2004 06:53:06 -0700 (PDT) (envelope-from pav) Message-Id: <200404171353.i3HDr6GY010523@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 06:53:06 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/graphics/reallyslick 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, 17 Apr 2004 13:53:07 -0000 pav 2004/04/17 06:53:06 PDT FreeBSD ports repository Modified files: graphics/reallyslick Makefile distinfo pkg-plist Log: - Update to 0.7.6 PR: ports/64998 Submitted by: UMENO Takashi Approved by: maintainer timeout (2 weeks) Revision Changes Path 1.5 +6 -9 ports/graphics/reallyslick/Makefile 1.3 +2 -2 ports/graphics/reallyslick/distinfo 1.2 +6 -1 ports/graphics/reallyslick/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 06:55: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 67D8716A4CE; Sat, 17 Apr 2004 06:55:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 48E1043D69; Sat, 17 Apr 2004 06:55:43 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HDtgGe010661; Sat, 17 Apr 2004 06:55:42 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HDtgaI010656; Sat, 17 Apr 2004 06:55:42 -0700 (PDT) (envelope-from pav) Message-Id: <200404171355.i3HDtgaI010656@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 06:55:42 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/smssend Makefile distinfo pkg-plist ports/misc/smssend/files patch-email2smssend X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 13:55:43 -0000 pav 2004/04/17 06:55:42 PDT FreeBSD ports repository Modified files: misc/smssend Makefile distinfo pkg-plist Removed files: misc/smssend/files patch-email2smssend Log: - Update to 3.3 PR: ports/65050 Submitted by: Machiel Mastenbroek Approved by: maintainer timeout (2 weeks) Revision Changes Path 1.9 +3 -2 ports/misc/smssend/Makefile 1.7 +2 -2 ports/misc/smssend/distinfo 1.2 +0 -39 ports/misc/smssend/files/patch-email2smssend (dead) 1.7 +84 -20 ports/misc/smssend/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 06:55: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 14CFE16A530; Sat, 17 Apr 2004 06:55:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8AECC43D48; Sat, 17 Apr 2004 06:55:55 -0700 (PDT) (envelope-from vs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HDttGe010687; Sat, 17 Apr 2004 06:55:55 -0700 (PDT) (envelope-from vs@repoman.freebsd.org) Received: (from vs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HDttqv010686; Sat, 17 Apr 2004 06:55:55 -0700 (PDT) (envelope-from vs) Message-Id: <200404171355.i3HDttqv010686@repoman.freebsd.org> From: Volker Stolz Date: Sat, 17 Apr 2004 06:55:54 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/comms/tilp/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: Sat, 17 Apr 2004 13:55:56 -0000 vs 2004/04/17 06:55:54 PDT FreeBSD ports repository Added files: comms/tilp/files patch-src-Makefile.in Log: Unbreak after recent gtk update. PR: ports/65357 Submitted by: Tijl Coosemans (maintainer) Approved by: linimon (mentor) Revision Changes Path 1.1 +11 -0 ports/comms/tilp/files/patch-src-Makefile.in (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 17 07:00: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 0A36E16A4CE; Sat, 17 Apr 2004 07:00:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E325243D5D; Sat, 17 Apr 2004 07:00:44 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HE0iGe010918; Sat, 17 Apr 2004 07:00:44 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HE0itM010917; Sat, 17 Apr 2004 07:00:44 -0700 (PDT) (envelope-from kris) Message-Id: <200404171400.i3HE0itM010917@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 07:00:44 -0700 (PDT) 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-Primes 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, 17 Apr 2004 14:00:45 -0000 kris 2004/04/17 07:00:44 PDT FreeBSD ports repository Modified files: security/p5-Crypt-Primes Makefile Log: Add missing manpage Revision Changes Path 1.6 +1 -0 ports/security/p5-Crypt-Primes/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 07:04: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 2EBD616A4CE; Sat, 17 Apr 2004 07:04:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11D6443D1D; Sat, 17 Apr 2004 07:04:48 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HE4lGe013659; Sat, 17 Apr 2004 07:04:47 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HE4lfN013658; Sat, 17 Apr 2004 07:04:47 -0700 (PDT) (envelope-from kris) Message-Id: <200404171404.i3HE4lfN013658@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 07:04:47 -0700 (PDT) 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-PEM 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, 17 Apr 2004 14:04:48 -0000 kris 2004/04/17 07:04:47 PDT FreeBSD ports repository Modified files: converters/p5-Convert-PEM Makefile pkg-plist Log: Correct plist and manpages (add a missing entry and don't remove files we didn't install) Revision Changes Path 1.7 +1 -1 ports/converters/p5-Convert-PEM/Makefile 1.4 +2 -3 ports/converters/p5-Convert-PEM/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 07:07: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 0B02616A4CE; Sat, 17 Apr 2004 07:07:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E320643D58; Sat, 17 Apr 2004 07:07:30 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HE7UGe013826; Sat, 17 Apr 2004 07:07:30 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HE7Ubc013825; Sat, 17 Apr 2004 07:07:30 -0700 (PDT) (envelope-from pav) Message-Id: <200404171407.i3HE7Ubc013825@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 07:07:30 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/zope 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, 17 Apr 2004 14:07:31 -0000 pav 2004/04/17 07:07:30 PDT FreeBSD ports repository Modified files: www/zope pkg-plist Log: - Silently remove extra directory Reported by: bento's extras list Revision Changes Path 1.34 +1 -0 ports/www/zope/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 07:09: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 5388916A4CE; Sat, 17 Apr 2004 07:09:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 377C743D48; Sat, 17 Apr 2004 07:09:01 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HE90Ge013900; Sat, 17 Apr 2004 07:09:00 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HE906b013895; Sat, 17 Apr 2004 07:09:00 -0700 (PDT) (envelope-from kris) Message-Id: <200404171409.i3HE906b013895@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 07:09:00 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/p5-Algorithm-Annotate 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, 17 Apr 2004 14:09:01 -0000 kris 2004/04/17 07:09:00 PDT FreeBSD ports repository Modified files: devel/p5-Algorithm-Annotate pkg-plist Log: Add missing file Revision Changes Path 1.2 +1 -0 ports/devel/p5-Algorithm-Annotate/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 07:10: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 5C6D016A4CE; Sat, 17 Apr 2004 07:10:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4099243D54; Sat, 17 Apr 2004 07:10:21 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HEAKGe013993; Sat, 17 Apr 2004 07:10:20 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HEAKDM013992; Sat, 17 Apr 2004 07:10:20 -0700 (PDT) (envelope-from kris) Message-Id: <200404171410.i3HEAKDM013992@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 07:10:20 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/devel/swig13 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, 17 Apr 2004 14:10:21 -0000 kris 2004/04/17 07:10:20 PDT FreeBSD ports repository Modified files: devel/swig13 pkg-plist Log: Add missing files Revision Changes Path 1.26 +2 -0 ports/devel/swig13/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 07:14: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 527EC16A4CE; Sat, 17 Apr 2004 07:14:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 3640343D60; Sat, 17 Apr 2004 07:14:01 -0700 (PDT) (envelope-from leeym@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HEE0Ge015847; Sat, 17 Apr 2004 07:14:00 -0700 (PDT) (envelope-from leeym@repoman.freebsd.org) Received: (from leeym@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HEE0E8015844; Sat, 17 Apr 2004 07:14:00 -0700 (PDT) (envelope-from leeym) Message-Id: <200404171414.i3HEE0E8015844@repoman.freebsd.org> From: Yen-Ming Lee Date: Sat, 17 Apr 2004 07:14:00 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/libbt Makefile distinfo pkg-plist ports/net/libbt/files patch-src::peer.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 14:14:01 -0000 leeym 2004/04/17 07:14:00 PDT FreeBSD ports repository Modified files: net/libbt Makefile distinfo pkg-plist Added files: net/libbt/files patch-src::peer.c Log: Update libbt port to version 1.01 PR: 65498 Submitted by: Florent Thoumie Revision Changes Path 1.5 +4 -9 ports/net/libbt/Makefile 1.3 +2 -2 ports/net/libbt/distinfo 1.3 +10 -0 ports/net/libbt/files/patch-src::peer.c (new) 1.3 +1 -0 ports/net/libbt/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 07:14: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 2076716A4CE; Sat, 17 Apr 2004 07:14:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0240143D67; Sat, 17 Apr 2004 07:14:31 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HEEUGe015886; Sat, 17 Apr 2004 07:14:30 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HEEU83015883; Sat, 17 Apr 2004 07:14:30 -0700 (PDT) (envelope-from kris) Message-Id: <200404171414.i3HEEU83015883@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 07:14:30 -0700 (PDT) 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-Test 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, 17 Apr 2004 14:14:31 -0000 kris 2004/04/17 07:14:30 PDT FreeBSD ports repository Modified files: www/p5-Apache-Test pkg-plist Log: Add missing file Revision Changes Path 1.3 +1 -0 ports/www/p5-Apache-Test/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 07:17: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 E91A216A4CE; Sat, 17 Apr 2004 07:17:20 -0700 (PDT) Received: from mtaw6.prodigy.net (mtaw6.prodigy.net [64.164.98.56]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6A6043D45; Sat, 17 Apr 2004 07:17:20 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (8168f4832a9c216c32b0f86fa4e7a630@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw6.prodigy.net (8.12.10/8.12.10) with ESMTP id i3HEG7pT027829; Sat, 17 Apr 2004 07:16:09 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id 12198520E9; Sat, 17 Apr 2004 07:17:17 -0700 (PDT) Date: Sat, 17 Apr 2004 07:17:16 -0700 From: Kris Kennaway To: Yen-Ming Lee Message-ID: <20040417141716.GA40924@xor.obsecurity.org> References: <200404171414.i3HEE0E8015844@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="h31gzZEtNLTqOjlF" Content-Disposition: inline In-Reply-To: <200404171414.i3HEE0E8015844@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/net/libbt Makefile distinfo pkg-plist ports/net/libbt/files patch-src::peer.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 14:17:21 -0000 --h31gzZEtNLTqOjlF Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sat, Apr 17, 2004 at 07:14:00AM -0700, Yen-Ming Lee wrote: > | -.if ${ARCH} == "alpha" > | -BROKEN= "Does not compile on alpha" > | -.endif > | +ONLY_FOR_ARCHS= i386 Did you check this? The previous version compiled fine on non-alpha. Kris --h31gzZEtNLTqOjlF Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAgTxsWry0BWjoQKURAocLAKDbGXChADxb3LhOix4SUxcpAPeEogCfdGwb dD47P/DobhXNz/xPA5WNT3U= =BT7R -----END PGP SIGNATURE----- --h31gzZEtNLTqOjlF-- From owner-cvs-all@FreeBSD.ORG Sat Apr 17 07:23: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 3626C16A4CE; Sat, 17 Apr 2004 07:23:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1B47443D58; Sat, 17 Apr 2004 07:23:17 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HENGGe017918; Sat, 17 Apr 2004 07:23:16 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HENGXa017917; Sat, 17 Apr 2004 07:23:16 -0700 (PDT) (envelope-from krion) Message-Id: <200404171423.i3HENGXa017917@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 17 Apr 2004 07:23:16 -0700 (PDT) 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 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, 17 Apr 2004 14:23:17 -0000 krion 2004/04/17 07:23:16 PDT FreeBSD ports repository Modified files: devel/libidn Makefile pkg-plist Log: - Correct plist Revision Changes Path 1.26 +0 -8 ports/devel/libidn/Makefile 1.11 +2 -4 ports/devel/libidn/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 07:26: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 4842016A4CE; Sat, 17 Apr 2004 07:26:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2CE1743D5D; Sat, 17 Apr 2004 07:26:02 -0700 (PDT) (envelope-from clement@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HEQ1Ge018022; Sat, 17 Apr 2004 07:26:01 -0700 (PDT) (envelope-from clement@repoman.freebsd.org) Received: (from clement@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HEQ1mV018021; Sat, 17 Apr 2004 07:26:01 -0700 (PDT) (envelope-from clement) Message-Id: <200404171426.i3HEQ1mV018021@repoman.freebsd.org> From: Clement Laforet Date: Sat, 17 Apr 2004 07:26:01 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/apache2 Makefile.modules.3rd X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 14:26:02 -0000 clement 2004/04/17 07:26:01 PDT FreeBSD ports repository Modified files: www/apache2 Makefile.modules.3rd Log: - Do not activate module automatically [1] - Cosmectic change in autogenerated plist (run apxs before the removal of the module file, it can make apxs fail if you change module name/shortname) Forgotten by: me [1] Reminded by: discussion with kris [1] Revision Changes Path 1.4 +4 -4 ports/www/apache2/Makefile.modules.3rd From owner-cvs-all@FreeBSD.ORG Sat Apr 17 07:27: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 B550A16A4CE for ; Sat, 17 Apr 2004 07:27:02 -0700 (PDT) Received: from mailhub2.midco.net (mailhub2.midco.net [24.220.0.34]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4692843D2D for ; Sat, 17 Apr 2004 07:27:02 -0700 (PDT) (envelope-from pmes@bis.midco.net) Received: (qmail 16448 invoked by uid 0); 17 Apr 2004 15:27:04 -0000 Received: from host-195-219-220-24.midco.net (HELO bis.midco.net) ([24.220.219.195]) (envelope-sender ) by lvs-pop.midco.net (qmail-ldap-1.03) with SMTP for ; 17 Apr 2004 15:27:04 -0000 Message-ID: <40813EB5.3010104@bis.midco.net> Date: Sat, 17 Apr 2004 09:27:01 -0500 From: Peter Schultz User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.7b) Gecko/20040405 X-Accept-Language: en-us, en MIME-Version: 1.0 To: John Baldwin References: <200404161946.i3GJkUoo029614@repoman.freebsd.org> In-Reply-To: <200404161946.i3GJkUoo029614@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/i386/acpica madt.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 14:27:02 -0000 John Baldwin wrote: > jhb 2004/04/16 12:46:30 PDT > > FreeBSD src repository > > Modified files: > sys/i386/acpica madt.c > Log: > Revert part of the "BIOS brain damage" from rev 1.10. > Thank you, John! AFAIK FreeBSD is the only OS that supports ACPI on this crazy old motherboard (Tyan S1832DL). Thanks to Nate too. Pete... From owner-cvs-all@FreeBSD.ORG Sat Apr 17 07:30: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 1E7D816A4CE; Sat, 17 Apr 2004 07:30:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02A2243D53; Sat, 17 Apr 2004 07:30:04 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HEU3Ge018194; Sat, 17 Apr 2004 07:30:03 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HEU3K3018193; Sat, 17 Apr 2004 07:30:03 -0700 (PDT) (envelope-from pav) Message-Id: <200404171430.i3HEU3K3018193@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 07:30:03 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/zodb3 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, 17 Apr 2004 14:30:04 -0000 pav 2004/04/17 07:30:03 PDT FreeBSD ports repository Modified files: databases/zodb3 pkg-plist Log: - Add missing @dirrm's Reported by: bento's extras list Revision Changes Path 1.5 +9 -0 ports/databases/zodb3/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 07: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 7586B16A4CE; Sat, 17 Apr 2004 07:37:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 59E9243D1D; Sat, 17 Apr 2004 07:37:25 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HEbPGe020173; Sat, 17 Apr 2004 07:37:25 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HEbOc4020172; Sat, 17 Apr 2004 07:37:24 -0700 (PDT) (envelope-from krion) Message-Id: <200404171437.i3HEbOc4020172@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 17 Apr 2004 07:37:24 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/sweep pkg-plist ports/audio/sweep/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, 17 Apr 2004 14:37:25 -0000 krion 2004/04/17 07:37:24 PDT FreeBSD ports repository Modified files: audio/sweep pkg-plist audio/sweep/files patch-configure Log: - Correct plist Revision Changes Path 1.2 +11 -5 ports/audio/sweep/files/patch-configure 1.5 +0 -1 ports/audio/sweep/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 07:41: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 A7BD516A4CE; Sat, 17 Apr 2004 07:41:09 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A23A743D41; Sat, 17 Apr 2004 07:41:09 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HEf9Ge020499; Sat, 17 Apr 2004 07:41:09 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HEf8e1020446; Sat, 17 Apr 2004 07:41:08 -0700 (PDT) (envelope-from pav) Message-Id: <200404171441.i3HEf8e1020446@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 07:41:08 -0700 (PDT) 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/zope-ejsplitter 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: Sat, 17 Apr 2004 14:41:09 -0000 pav 2004/04/17 07:41:08 PDT FreeBSD ports repository Modified files: japanese Makefile Added files: japanese/zope-ejsplitter Makefile distinfo pkg-descr pkg-message Log: Add zope-ejsplitter, a word splitter for Japanese. It allows to search a Zope based website for a word in language that don't use spaces to delimit words. PR: ports/65293 Submitted by: HAYASHI Yasushi Revision Changes Path 1.527 +1 -0 ports/japanese/Makefile 1.1 +56 -0 ports/japanese/zope-ejsplitter/Makefile (new) 1.1 +2 -0 ports/japanese/zope-ejsplitter/distinfo (new) 1.1 +9 -0 ports/japanese/zope-ejsplitter/pkg-descr (new) 1.1 +3 -0 ports/japanese/zope-ejsplitter/pkg-message (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 17 07:42: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 7E19516A4CE; Sat, 17 Apr 2004 07:42:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6193243D54; Sat, 17 Apr 2004 07:42:02 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HEg2Ge021718; Sat, 17 Apr 2004 07:42:02 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HEg10n021714; Sat, 17 Apr 2004 07:42:01 -0700 (PDT) (envelope-from pav) Message-Id: <200404171442.i3HEg10n021714@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 07:42:01 -0700 (PDT) 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, 17 Apr 2004 14:42:02 -0000 pav 2004/04/17 07:42:01 PDT FreeBSD ports repository Modified files: . modules Log: ja-zope-ejsplitter --> ports/japanese/zope-ejsplitter Revision Changes Path 1.9924 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 17 08: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 7AE2F16A4CE; Sat, 17 Apr 2004 08:06:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5FB9E43D5D; Sat, 17 Apr 2004 08:06:30 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HF6UGe027278; Sat, 17 Apr 2004 08:06:30 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HF6UTh027277; Sat, 17 Apr 2004 08:06:30 -0700 (PDT) (envelope-from krion) Message-Id: <200404171506.i3HF6UTh027277@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 17 Apr 2004 08:06:30 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/harbour 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, 17 Apr 2004 15:06:30 -0000 krion 2004/04/17 08:06:29 PDT FreeBSD ports repository Modified files: lang/harbour pkg-plist Log: - Fix plist Revision Changes Path 1.2 +2 -0 ports/lang/harbour/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 08: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 37D0716A4CE; Sat, 17 Apr 2004 08:09:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1AFA343D58; Sat, 17 Apr 2004 08:09:37 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HF9aGe027348; Sat, 17 Apr 2004 08:09:36 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HF9aQv027347; Sat, 17 Apr 2004 08:09:36 -0700 (PDT) (envelope-from luigi) Message-Id: <200404171509.i3HF9aQv027347@repoman.freebsd.org> From: Luigi Rizzo Date: Sat, 17 Apr 2004 08:09:36 -0700 (PDT) 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: Sat, 17 Apr 2004 15:09:37 -0000 luigi 2004/04/17 08:09:36 PDT FreeBSD src repository Modified files: sys/net rtsock.c Log: misc cleanup in sysctl_ifmalist(): + remove a partly incorrect comment that i introduced in the last commit; + deal with the correct part of the above comment by cleaning up the updates of 'info' -- rti_addrs needd not to be updated, rti_info[RTAX_IFP] can be set once outside the loop. While at it, correct a few misspelling of NULL as 0, but there are way too many in this file, and i did not want to clutter the important part of this commit. Revision Changes Path 1.102 +10 -27 src/sys/net/rtsock.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 08:10: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 2A60616A4CE; Sat, 17 Apr 2004 08:10:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0ED1643D48; Sat, 17 Apr 2004 08:10:21 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HFAKGe027401; Sat, 17 Apr 2004 08:10:20 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HFAKwE027400; Sat, 17 Apr 2004 08:10:20 -0700 (PDT) (envelope-from luigi) Message-Id: <200404171510.i3HFAKwE027400@repoman.freebsd.org> From: Luigi Rizzo Date: Sat, 17 Apr 2004 08:10:20 -0700 (PDT) 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 route.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, 17 Apr 2004 15:10:21 -0000 luigi 2004/04/17 08:10:20 PDT FreeBSD src repository Modified files: sys/net route.c route.h Log: make route_init() static Revision Changes Path 1.99 +2 -2 src/sys/net/route.c 1.58 +0 -1 src/sys/net/route.h From owner-cvs-all@FreeBSD.ORG Sat Apr 17 08:16: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 DC15F16A4CE; Sat, 17 Apr 2004 08:16:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF21343D31; Sat, 17 Apr 2004 08:16:32 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HFGWGe029392; Sat, 17 Apr 2004 08:16:32 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HFGWb2029391; Sat, 17 Apr 2004 08:16:32 -0700 (PDT) (envelope-from krion) Message-Id: <200404171516.i3HFGWb2029391@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 17 Apr 2004 08:16:32 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/multimedia/libdvdcss 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, 17 Apr 2004 15:16:33 -0000 krion 2004/04/17 08:16:32 PDT FreeBSD ports repository Modified files: multimedia/libdvdcss pkg-plist Log: - Add missing file Revision Changes Path 1.6 +1 -0 ports/multimedia/libdvdcss/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 08: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 6B68916A4CE; Sat, 17 Apr 2004 08:22:44 -0700 (PDT) Received: from gw.celabo.org (gw.celabo.org [208.42.49.153]) by mx1.FreeBSD.org (Postfix) with ESMTP id C25D743D53; Sat, 17 Apr 2004 08:22:43 -0700 (PDT) (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 4708F5482B; Sat, 17 Apr 2004 10:22:43 -0500 (CDT) Received: by madman.celabo.org (Postfix, from userid 1001) id DDAEB6D455; Sat, 17 Apr 2004 10:22:42 -0500 (CDT) Date: Sat, 17 Apr 2004 10:22:42 -0500 From: "Jacques A. Vidrine" To: Oliver Eikemeier Message-ID: <20040417152242.GA5543@madman.celabo.org> Mail-Followup-To: "Jacques A. Vidrine" , Oliver Eikemeier , ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org References: <200404160124.i3G1OlUd067575@repoman.freebsd.org> <20040416163635.GB49780@madman.celabo.org> <4080151C.1070200@fillmore-labs.com> <20040416173857.GA50670@madman.celabo.org> <20040416174418.GC50670@madman.celabo.org> <40802354.3030202@fillmore-labs.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <40802354.3030202@fillmore-labs.com> X-Url: http://www.celabo.org/ User-Agent: Mutt/1.5.6i cc: cvs-ports@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/sysutils/pkg_install-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: Sat, 17 Apr 2004 15:22:44 -0000 On Fri, Apr 16, 2004 at 08:17:56PM +0200, Oliver Eikemeier wrote: > Jacques A. Vidrine wrote: > >On Fri, Apr 16, 2004 at 12:38:57PM -0500, Jacques A. Vidrine wrote: > > > >>On Fri, Apr 16, 2004 at 07:17:16PM +0200, Oliver Eikemeier wrote: > >> > >>>Jacques A. Vidrine wrote: > >>> > >>>>On Thu, Apr 15, 2004 at 06:24:47PM -0700, Oliver Eikemeier wrote: > >>>> > >>>>>Introduce '*' as the lowest possible version number, so that > >>>>> >=2.* <3.* > >>>>>matches all 2.X versions, even alpha. > >>>> > >>>>How is this different from ` >=2.a <3.a ' ? > >>> > >>>It matches 2.a.b, does not match 3.a.b2 > >> > >>*scratches head* I still don't see a difference. > >> > >> 2.a <= 2.a.b < 3.a > >> 2.a <= 3.a < 3.a.b2 > > > >*blink* Oh, wait, I got that wrong. 2.a > 2.a.b and 3.a > > >3.a.b2. Except that version names such as `2.a.b' and `3.a.b2' are > >unacceptable. > > See biology/fasta3 for an example. They may be unacceptable for portlint, > but pkg_install has to be as tolerant as possible, and needs a consistent > definition of version numbers. fasta3-33.t08.d4 Yes, it seems this version number is broken with regards to the current rules. > >>>and is more similar to >=2.X than >= 2.a is. > >> > >>How so? Maybe you mean to say that 2.a > 2.* ? > >>I find that rather confusing. > > I meant that 2.* is somewhat similar to 'all 2.X versions'. Of course > you have to be careful to get things right, but at least it is a proper > definition of 'the lowest possible version number' instead of hoping > that it would be 2.a. According to the current rules, there is no version beginning with 2 that comes `before' 2.a. There's no need to `hope' this is true: that is what the rules currently say :-) > There are already lot of entries in VuXML which > erroneously assume it would be 2.0. Would you mind pointing them out? Or perhaps you are making some erroneous assumptions. The intervals defined within VuXML are based upon *actual versions*, not `possible versions'. So unless there is an entry such as 2.02.5 where there was a vulnerable package version `2.0.a', there is no issue. (NOTE WELL: *package* version, as in *FreeBSD package*, not *vendor* version.) > >I think I'm with you now. `*' is not a version number, but a glob? > > Nope, * is a version number that can not be assigned to a port. It is > guaranteed to be the lowest possible one, and there is a similarity between > portname-2.* > and > portname>=2.* > the first being a glob (matching all 2.X versions, but not 02.1), the second > a relational comparison (matching all 2.X versions, but 3.2 too) . It may be > confusing, but in most cases it is easy to do the right thing, and things > like 2.# or 2.% aren't really better. Ugh. Oh well, I think I like the utility of `*' as a more natural way of expressing `all versions of this release, including alpha', and I agree other symbols aren't really any better. So, you mention that you devised an encoding below. How do you encode an interval in which one end includes `*'? In mine (outlined below), I guess I'd give it a value prior to `a' e.g. my letter encoding sequence would be based upon `*abcd...'. > >>Btw, at least for pkg_install-devel we have 2.pl0 < 2.a. > > > >How did that become broken? What does 2.pl0 even mean? Do you have > >an example? I'm certain that is against our naming conventions. > > Nope, refer to the FreeBSD Porter's Handbook, 5.2.4 Package Naming > Conventions: > > > Item 4. mentions `pl' as a version number, so it is special (like NetBSD's > nb), > and it makes no sense to allow it only as a standalone component. I think you need to re-read that section, in particular: The only exception is the string pl (meaning ``patchlevel''), which can be used *only* when there are no major and minor version numbers in the software. 2.pl0 is not a valid package version. The only valid package versions that include the string `pl' are of the form `plN'. > >I'm concerned because I have a function that converts a package > >version into a 128 bit integer, such that if the package version A is > >greater than package version B, then f(A) > f(B). If the versioning > >rules are being changed, I wanna know (and I'd also like to know why). > > I have a function that converts a version number into a floating point > number < 1.0, such that A > B iff f(A) > f(B). I doubt that 128 bits are > sufficient in every case, but I may be wrong. You are wrong. :-) I found that 96 bits is more than enough for everything in INDEX today. I used 128 bits just in case. Since my representation is actually a sequence of 32 bit integers, this is easily extended should it become necessary. If it does become necessary, though, then I think something else is broken :-) [1] Funny that you `doubt that 128 bits are sufficient', yet you claim to be using floating point. If you are using `long double's, aren't you limited to about 64 bits? > Do you have a reference to a definition of the versioning rules > besides PR 56961? You have some nerve :-) PR 56961 is only your individual interpretation, not a `definition of the versioning rules' or `reference' of any type. The rules are defined by the Porter's Handbook, and supplemented by *the real* (not your) pkg_install. I *would* like to see the package versioning rules made more clear and explicit, and perhaps even see some reform. However, making up a new special case for `pl' seems right out. Has much discussion over PR 56961 taken place anywhere? I like it as a starting point. Cheers, -- Jacques Vidrine / nectar@celabo.org / jvidrine@verio.net / nectar@freebsd.org [1] The encoding works something like so. The version is encoded as a sequence of variable length bit strings. Each component of the version string is converted to a bit string depending upon whether it is a number or letter: 000x xxx1 4-bit number 001x xxxx xxx1 8-bit number 010x xxxx xxxx xxxx xxx1 16-bit number 011x xxxx xxxx xxxx xxxx 32-bit number xxxx xxxx xxxx xxx1 1xxxxx1 letter (1=a, 2=b, ...) Those trailing `1' bits are replaced with `0' for our special case where a letter follows a `.' immediately. The first bit string in the sequence is derived from PORTEPOCH, the middle strings from PORTVERSION, and the final string from PORTREVISION. To convert our sequence of bit strings into a 128 bit integer, the strings are concatenated and right-padded with zero bits. I expected someone to ask ``why is this useful?'' It is useful to allow tools that don't grok our version numbering scheme to still sort our version numbers, e.g. sort, awk, SQL, Excel... From owner-cvs-all@FreeBSD.ORG Sat Apr 17 08:24: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 4C18416A4CE; Sat, 17 Apr 2004 08:24:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2EC1843D4C; Sat, 17 Apr 2004 08:24:44 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HFOiGe031271; Sat, 17 Apr 2004 08:24:44 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HFOhTN031270; Sat, 17 Apr 2004 08:24:43 -0700 (PDT) (envelope-from krion) Message-Id: <200404171524.i3HFOhTN031270@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 17 Apr 2004 08:24:43 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/mxico 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, 17 Apr 2004 15:24:44 -0000 krion 2004/04/17 08:24:43 PDT FreeBSD ports repository Modified files: x11/mxico pkg-plist Log: - Correct plist Revision Changes Path 1.3 +1 -0 ports/x11/mxico/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 08: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 CB6C616A4CE; Sat, 17 Apr 2004 08:27:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF10F43D3F; Sat, 17 Apr 2004 08:27:06 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HFR6Ge031389; Sat, 17 Apr 2004 08:27:06 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HFR6qo031388; Sat, 17 Apr 2004 08:27:06 -0700 (PDT) (envelope-from krion) Message-Id: <200404171527.i3HFR6qo031388@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 17 Apr 2004 08:27:06 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/newpg 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, 17 Apr 2004 15:27:06 -0000 krion 2004/04/17 08:27:06 PDT FreeBSD ports repository Modified files: security/newpg pkg-plist Log: - Fix plist Revision Changes Path 1.3 +1 -0 ports/security/newpg/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 08:31: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 BC90D16A4CE; Sat, 17 Apr 2004 08:31:04 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9FB7543D45; Sat, 17 Apr 2004 08:31:04 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HFV4Ge031573; Sat, 17 Apr 2004 08:31:04 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HFV4HE031572; Sat, 17 Apr 2004 08:31:04 -0700 (PDT) (envelope-from krion) Message-Id: <200404171531.i3HFV4HE031572@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 17 Apr 2004 08:31:04 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/textproc/openfts 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, 17 Apr 2004 15:31:04 -0000 krion 2004/04/17 08:31:04 PDT FreeBSD ports repository Modified files: textproc/openfts Makefile Log: - Add missing manpage Revision Changes Path 1.6 +3 -2 ports/textproc/openfts/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 08: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 CA5F116A4CE; Sat, 17 Apr 2004 08:34:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AE3C343D45; Sat, 17 Apr 2004 08:34:17 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HFYHGe033369; Sat, 17 Apr 2004 08:34:17 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HFYHkm033368; Sat, 17 Apr 2004 08:34:17 -0700 (PDT) (envelope-from pav) Message-Id: <200404171534.i3HFYHkm033368@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 08:34:17 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/games/pydance Makefile distinfo pkg-plist ports/games/pydance/files patch-constants.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: Sat, 17 Apr 2004 15:34:17 -0000 pav 2004/04/17 08:34:17 PDT FreeBSD ports repository Modified files: games/pydance Makefile distinfo pkg-plist Removed files: games/pydance/files patch-constants.py Log: - Update to 1.0.1 PR: ports/65654 Submitted by: Rudolf Polzer (maintainer) Revision Changes Path 1.6 +1 -2 ports/games/pydance/Makefile 1.4 +2 -2 ports/games/pydance/distinfo 1.2 +0 -11 ports/games/pydance/files/patch-constants.py (dead) 1.4 +1 -0 ports/games/pydance/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 08:42: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 23CD116A4CE; Sat, 17 Apr 2004 08:42:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 078C843D1D; Sat, 17 Apr 2004 08:42:10 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HFg9Ge035137; Sat, 17 Apr 2004 08:42:09 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HFg9fE035130; Sat, 17 Apr 2004 08:42:09 -0700 (PDT) (envelope-from krion) Message-Id: <200404171542.i3HFg9fE035130@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 17 Apr 2004 08:42:09 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java/proguard 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, 17 Apr 2004 15:42:10 -0000 krion 2004/04/17 08:42:09 PDT FreeBSD ports repository Modified files: java/proguard pkg-plist Log: - Fix plist Revision Changes Path 1.2 +5 -0 ports/java/proguard/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 08:43: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 2CEF416A4CE; Sat, 17 Apr 2004 08:43:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2718143D41; Sat, 17 Apr 2004 08:43:03 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HFh2Ge035474; Sat, 17 Apr 2004 08:43:02 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HFh2iv035473; Sat, 17 Apr 2004 08:43:02 -0700 (PDT) (envelope-from pav) Message-Id: <200404171543.i3HFh2iv035473@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 08:43:02 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-fonts/mkbold Makefileports/x11-fonts/mkitalic Makefile ports/print/acroread5-commfont Makefile ports/japanese/skkinput Makefile ports/japanese/skkinput3 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, 17 Apr 2004 15:43:03 -0000 pav 2004/04/17 08:43:02 PDT FreeBSD ports repository Modified files: x11-fonts/mkbold Makefile x11-fonts/mkitalic Makefile print/acroread5-commfont Makefile japanese/skkinput Makefile japanese/skkinput3 Makefile Log: - Update maintainer's address PR: ports/65663 Submitted by: KOMATSU Shinichiro (maintainer) Revision Changes Path 1.15 +1 -1 ports/japanese/skkinput/Makefile 1.14 +1 -1 ports/japanese/skkinput3/Makefile 1.20 +1 -1 ports/print/acroread5-commfont/Makefile 1.4 +1 -1 ports/x11-fonts/mkbold/Makefile 1.4 +1 -1 ports/x11-fonts/mkitalic/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 08:53: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 144B416A4CE; Sat, 17 Apr 2004 08:53:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED5F343D39; Sat, 17 Apr 2004 08:53:43 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HFrhGe043506; Sat, 17 Apr 2004 08:53:43 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HFrh9e043505; Sat, 17 Apr 2004 08:53:43 -0700 (PDT) (envelope-from blackend) Message-Id: <200404171553.i3HFrh9e043505@repoman.freebsd.org> From: Marc Fonvieille Date: Sat, 17 Apr 2004 08:53:42 -0700 (PDT) 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/mail 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, 17 Apr 2004 15:53:44 -0000 blackend 2004/04/17 08:53:42 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/mail chapter.sgml Log: - A rewording - Add missing application tags Revision Changes Path 1.113 +2 -2 doc/en_US.ISO8859-1/books/handbook/mail/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 08:58: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 9927516A4CE; Sat, 17 Apr 2004 08:58:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7763043D6D; Sat, 17 Apr 2004 08:58:25 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HFwMGe043680; Sat, 17 Apr 2004 08:58:22 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HFwMAq043679; Sat, 17 Apr 2004 08:58:22 -0700 (PDT) (envelope-from krion) Message-Id: <200404171558.i3HFwMAq043679@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 17 Apr 2004 08:58:21 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/astro/squeuer 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, 17 Apr 2004 15:58:25 -0000 krion 2004/04/17 08:58:21 PDT FreeBSD ports repository Modified files: astro/squeuer pkg-plist Log: - Fix plist Revision Changes Path 1.2 +1 -0 ports/astro/squeuer/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 09: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 D21E416A4CE; Sat, 17 Apr 2004 09:02:32 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B442243D46; Sat, 17 Apr 2004 09:02:32 -0700 (PDT) (envelope-from kuriyama@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HG2WGe045447; Sat, 17 Apr 2004 09:02:32 -0700 (PDT) (envelope-from kuriyama@repoman.freebsd.org) Received: (from kuriyama@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HG2WYK045443; Sat, 17 Apr 2004 09:02:32 -0700 (PDT) (envelope-from kuriyama) Message-Id: <200404171602.i3HG2WYK045443@repoman.freebsd.org> From: Jun Kuriyama Date: Sat, 17 Apr 2004 09:02:32 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/pgcluster Makefile distinfo check_pgreplicate.pl patch-libpq:recovery.c patch-libpq:replicate.c patch-main.c patch-pg_proc.h patch-pgrp:main.c patch-pgrp:recovery.c ... X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 16:02:33 -0000 kuriyama 2004/04/17 09:02:32 PDT FreeBSD ports repository Modified files: databases/pgcluster Makefile distinfo databases/pgcluster/files check_pgcluster.pl check_pgreplicate.pl patch-libpq:replicate.c patch-pg_proc.h Added files: databases/pgcluster/files patch-pgrp:main.c patch-pgrp:recovery.c patch-pgrp:replicate.c Removed files: databases/pgcluster/files patch-libpq:recovery.c patch-main.c patch-pool_process_query.c patch-postmaster.c patch-recovery.c patch-replicate.c Log: Update to recent snapshot. Revision Changes Path 1.5 +8 -8 ports/databases/pgcluster/Makefile 1.3 +2 -2 ports/databases/pgcluster/distinfo 1.2 +20 -16 ports/databases/pgcluster/files/check_pgcluster.pl 1.2 +18 -3 ports/databases/pgcluster/files/check_pgreplicate.pl 1.2 +0 -23 ports/databases/pgcluster/files/patch-libpq:recovery.c (dead) 1.2 +10 -38 ports/databases/pgcluster/files/patch-libpq:replicate.c 1.3 +0 -326 ports/databases/pgcluster/files/patch-main.c (dead) 1.2 +4 -5 ports/databases/pgcluster/files/patch-pg_proc.h 1.1 +322 -0 ports/databases/pgcluster/files/patch-pgrp:main.c (new) 1.1 +237 -0 ports/databases/pgcluster/files/patch-pgrp:recovery.c (new) 1.1 +124 -0 ports/databases/pgcluster/files/patch-pgrp:replicate.c (new) 1.3 +0 -58 ports/databases/pgcluster/files/patch-pool_process_query.c (dead) 1.2 +0 -19 ports/databases/pgcluster/files/patch-postmaster.c (dead) 1.3 +0 -232 ports/databases/pgcluster/files/patch-recovery.c (dead) 1.3 +0 -293 ports/databases/pgcluster/files/patch-replicate.c (dead) From owner-cvs-all@FreeBSD.ORG Sat Apr 17 09:03: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 86C1516A4CE; Sat, 17 Apr 2004 09:03:39 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6AD2643D2F; Sat, 17 Apr 2004 09:03:39 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HG3dGe046598; Sat, 17 Apr 2004 09:03:39 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HG3dpU046597; Sat, 17 Apr 2004 09:03:39 -0700 (PDT) (envelope-from blackend) Message-Id: <200404171603.i3HG3dpU046597@repoman.freebsd.org> From: Marc Fonvieille Date: Sat, 17 Apr 2004 09:03:39 -0700 (PDT) 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/mail 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, 17 Apr 2004 16:03:39 -0000 blackend 2004/04/17 09:03:39 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/mail chapter.sgml Log: Remove an extraneous space in a directory name. Revision Changes Path 1.114 +1 -1 doc/en_US.ISO8859-1/books/handbook/mail/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 09:14:09 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 6CC1416A4CE; Sat, 17 Apr 2004 09:14:09 -0700 (PDT) Received: from localhost (green@localhost [127.0.0.1]) by green.homeunix.org (8.12.11/8.12.11) with ESMTP id i3HGE79B039976; Sat, 17 Apr 2004 12:14:08 -0400 (EDT) (envelope-from green@green.homeunix.org) Message-Id: <200404171614.i3HGE79B039976@green.homeunix.org> X-Mailer: exmh version 2.6.3 04/04/2003 with nmh-1.0.4 To: Bruce Evans In-Reply-To: Message from Bruce Evans <20040417011735.N14463@gamplex.bde.org> From: "Brian F. Feldman" Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 17 Apr 2004 12:14:07 -0400 Sender: green@green.homeunix.org cc: cvs-src@freebsd.org cc: src-committers@freebsd.org cc: cvs-all@freebsd.org cc: David O'Brien Subject: Re: cvs commit: src/sbin/dump dump.8 dump.h main.c tape.c src/sbin/restore extern.h main.c restore.8 tape.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 16:14:10 -0000 Bruce Evans wrote: > On Fri, 16 Apr 2004, David O'Brien wrote: > > > On Mon, Apr 12, 2004 at 07:58:07PM -0700, Brian Feldman wrote: > > > green 2004/04/12 19:58:07 PDT > > > > > > FreeBSD src repository > > > > > > Modified files: > > > sbin/dump dump.8 dump.h main.c tape.c > > > sbin/restore extern.h main.c restore.8 tape.c > > > Log: > > > Add -P arguments for dump(8) and restore(8) which allow the user to > > > use backup methods other than files and tapes. The -P argument is > > > a normal sh(1) pipeline with either $DUMP_VOLUME or $RESTORE_VOLUME > > > defined in the environment, respectively. > > > > Why do you need an option for this? Can't you just use 'dump ... |' and > > '... | restore'? > > A simple pipeline can't handle media-change stuff well. Of course, the funny thing is that in the specific case I mentioned, there is no special "media-change stuff" ;-) DVD-R, DVD+R, DVD-RW, CD-R, and CD-RW can't just be opened, written to, and closed directly and need a program to do the burning. However, DVD-RAM and DVD+RW should be usable with just -f . Of course, DVD[-+]R's shelf-life is probably better suited for level 0 dumps. -- Brian Fundakowski Feldman \'[ FreeBSD ]''''''''''\ <> green@FreeBSD.org \ The Power to Serve! \ Opinions expressed are my own. \,,,,,,,,,,,,,,,,,,,,,,\ From owner-cvs-all@FreeBSD.ORG Sat Apr 17 09: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 CFF2316A4CE; Sat, 17 Apr 2004 09:40:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B324743D39; Sat, 17 Apr 2004 09:40:31 -0700 (PDT) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HGeVGe052789; Sat, 17 Apr 2004 09:40:31 -0700 (PDT) (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HGeVMT052788; Sat, 17 Apr 2004 09:40:31 -0700 (PDT) (envelope-from gerald) Message-Id: <200404171640.i3HGeVMT052788@repoman.freebsd.org> From: Gerald Pfeifer Date: Sat, 17 Apr 2004 09:40:30 -0700 (PDT) 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: Sat, 17 Apr 2004 16:40:32 -0000 gerald 2004/04/17 09:40:30 PDT FreeBSD ports repository Modified files: lang/gcc34 Makefile distinfo Log: Update to the 2004-04-14 snapshot, which should be nearly identical to the GCC 3.4.0 release. Tweak the pre-everything message, plus display a note when libgcj is not built. Revision Changes Path 1.169 +5 -2 ports/lang/gcc34/Makefile 1.82 +12 -12 ports/lang/gcc34/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 17 10: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 9110D16A4CE; Sat, 17 Apr 2004 10:06:29 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 722AB43D3F; Sat, 17 Apr 2004 10:06:29 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HH6TGe059634; Sat, 17 Apr 2004 10:06:29 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HH6TCx059633; Sat, 17 Apr 2004 10:06:29 -0700 (PDT) (envelope-from hrs) Message-Id: <200404171706.i3HH6TCx059633@repoman.freebsd.org> From: Hiroki Sato Date: Sat, 17 Apr 2004 10:06:28 -0700 (PDT) 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: Sat, 17 Apr 2004 17:06:29 -0000 hrs 2004/04/17 10:06:28 PDT FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release note: SA-04:07.cvs. Revision Changes Path 1.713 +7 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 10:08: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 0348416A4CE; Sat, 17 Apr 2004 10:08:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DA10643D41; Sat, 17 Apr 2004 10:08:47 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HH8lGe059694; Sat, 17 Apr 2004 10:08:47 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HH8lSm059693; Sat, 17 Apr 2004 10:08:47 -0700 (PDT) (envelope-from hrs) Message-Id: <200404171708.i3HH8lSm059693@repoman.freebsd.org> From: Hiroki Sato Date: Sat, 17 Apr 2004 10:08:47 -0700 (PDT) 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: Sat, 17 Apr 2004 17:08:48 -0000 hrs 2004/04/17 10:08:47 PDT FreeBSD src repository Modified files: (Branch: RELENG_4) release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: MFC: SA-04:07.cvs. Approved by: re (implicitly) Revision Changes Path 1.22.2.409 +7 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 10: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 05C7616A4CE; Sat, 17 Apr 2004 10:15:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DE52443D48; Sat, 17 Apr 2004 10:15:44 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HHFiGe061697; Sat, 17 Apr 2004 10:15:44 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HHFiWM061696; Sat, 17 Apr 2004 10:15:44 -0700 (PDT) (envelope-from hrs) Message-Id: <200404171715.i3HHFiWM061696@repoman.freebsd.org> From: Hiroki Sato Date: Sat, 17 Apr 2004 10:15:44 -0700 (PDT) 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: Sat, 17 Apr 2004 17:15:45 -0000 hrs 2004/04/17 10:15:44 PDT FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Update release note: All drivers that support polling(4) now also support per-interface polling(4). Pointed out by: ru Revision Changes Path 1.714 +4 -4 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 10:18: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 AF17816A4CE; Sat, 17 Apr 2004 10:18:43 -0700 (PDT) Received: from arginine.spc.org (arginine.spc.org [195.206.69.236]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A6FE43D31; Sat, 17 Apr 2004 10:18:43 -0700 (PDT) (envelope-from bms@spc.org) Received: from localhost (localhost [127.0.0.1]) by arginine.spc.org (Postfix) with ESMTP id 703FE651FC; Sat, 17 Apr 2004 18:18:41 +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 75876-01-7; Sat, 17 Apr 2004 18:18:41 +0100 (BST) Received: from empiric.dek.spc.org (82-147-17-88.dsl.uk.rapidplay.com [82.147.17.88]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by arginine.spc.org (Postfix) with ESMTP id D046F651F7; Sat, 17 Apr 2004 18:18:40 +0100 (BST) Received: by empiric.dek.spc.org (Postfix, from userid 1001) id 6BD0860EE; Sat, 17 Apr 2004 18:18:26 +0100 (BST) Date: Sat, 17 Apr 2004 18:18:26 +0100 From: Bruce M Simpson To: Luigi Rizzo Message-ID: <20040417171826.GQ53839@empiric.dek.spc.org> Mail-Followup-To: Luigi Rizzo , src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org References: <200404171509.i3HF9aQv027347@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200404171509.i3HF9aQv027347@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 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: Sat, 17 Apr 2004 17:18:43 -0000 On Sat, Apr 17, 2004 at 08:09:36AM -0700, Luigi Rizzo wrote: > misc cleanup in sysctl_ifmalist(): > + remove a partly incorrect comment that i introduced in the last commit; > + deal with the correct part of the above comment by cleaning up the > updates of 'info' -- rti_addrs needd not to be updated, > rti_info[RTAX_IFP] can be set once outside the loop. Thanks! BMS From owner-cvs-all@FreeBSD.ORG Sat Apr 17 10:24: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 37B7916A4EA; Sat, 17 Apr 2004 10:24:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1A5F243D58; Sat, 17 Apr 2004 10:24:58 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HHOvGe063610; Sat, 17 Apr 2004 10:24:57 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HHOvKc063609; Sat, 17 Apr 2004 10:24:57 -0700 (PDT) (envelope-from hrs) Message-Id: <200404171724.i3HHOvKc063609@repoman.freebsd.org> From: Hiroki Sato Date: Sat, 17 Apr 2004 10:24:57 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: doc/share/sgml man-refs.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, 17 Apr 2004 17:24:58 -0000 hrs 2004/04/17 10:24:57 PDT FreeBSD doc repository Modified files: share/sgml man-refs.ent Log: Add ng_hub(4). Revision Changes Path 1.275 +1 -0 doc/share/sgml/man-refs.ent From owner-cvs-all@FreeBSD.ORG Sat Apr 17 10:26: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 B25A316A4CE; Sat, 17 Apr 2004 10:26:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 968A243D1D; Sat, 17 Apr 2004 10:26:48 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HHQmGe063726; Sat, 17 Apr 2004 10:26:48 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HHQmOk063725; Sat, 17 Apr 2004 10:26:48 -0700 (PDT) (envelope-from hrs) Message-Id: <200404171726.i3HHQmOk063725@repoman.freebsd.org> From: Hiroki Sato Date: Sat, 17 Apr 2004 10:26:48 -0700 (PDT) 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: Sat, 17 Apr 2004 17:26:48 -0000 hrs 2004/04/17 10:26:48 PDT FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: New release note: ng_hub(4) added, and less-381 import. Revision Changes Path 1.715 +7 -0 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 10: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 3081D16A4CE; Sat, 17 Apr 2004 10:35:19 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1547443D1F; Sat, 17 Apr 2004 10:35:19 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HHZIGe065731; Sat, 17 Apr 2004 10:35:18 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HHZIZ7065730; Sat, 17 Apr 2004 10:35:18 -0700 (PDT) (envelope-from hrs) Message-Id: <200404171735.i3HHZIZ7065730@repoman.freebsd.org> From: Hiroki Sato Date: Sat, 17 Apr 2004 10:35:18 -0700 (PDT) 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: Sat, 17 Apr 2004 17:35:19 -0000 hrs 2004/04/17 10:35:18 PDT FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Sort entries in alphabetical order. Revision Changes Path 1.716 +3 -3 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 10:38: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 7093116A4CE; Sat, 17 Apr 2004 10:38:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5436C43D2F; Sat, 17 Apr 2004 10:38:49 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HHcmGe065840; Sat, 17 Apr 2004 10:38:48 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HHcmHC065839; Sat, 17 Apr 2004 10:38:48 -0700 (PDT) (envelope-from hrs) Message-Id: <200404171738.i3HHcmHC065839@repoman.freebsd.org> From: Hiroki Sato Date: Sat, 17 Apr 2004 10:38:48 -0700 (PDT) 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: Sat, 17 Apr 2004 17:38:49 -0000 hrs 2004/04/17 10:38:48 PDT FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Fix some typos: s/IPsec/IPSec/ s/ids/IDs/ s/didn't/did not/ Revision Changes Path 1.717 +3 -3 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 10: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 6159216A4CE; Sat, 17 Apr 2004 10:43:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44ACD43D41; Sat, 17 Apr 2004 10:43:10 -0700 (PDT) (envelope-from rwatson@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HHhAGe067718; Sat, 17 Apr 2004 10:43:10 -0700 (PDT) (envelope-from rwatson@repoman.freebsd.org) Received: (from rwatson@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HHhAhf067717; Sat, 17 Apr 2004 10:43:10 -0700 (PDT) (envelope-from rwatson) Message-Id: <200404171743.i3HHhAhf067717@repoman.freebsd.org> From: Robert Watson Date: Sat, 17 Apr 2004 10:43:10 -0700 (PDT) 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 wantlist.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, 17 Apr 2004 17:43:10 -0000 rwatson 2004/04/17 10:43:09 PDT FreeBSD doc repository Modified files: en/donations donors.sgml wantlist.sgml Log: Recognize donation of two 32-bit if_em cards from Jon Noack for use in network performance testing. Remove 32-bit if_em cards from want list. Remove dup unfurl box entry. Revision Changes Path 1.156 +8 -8 www/en/donations/donors.sgml 1.184 +1 -10 www/en/donations/wantlist.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 10: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 4D40516A4CE; Sat, 17 Apr 2004 10:49:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 30BF043D1F; Sat, 17 Apr 2004 10:49:20 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HHnKGe067918; Sat, 17 Apr 2004 10:49:20 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HHnJgs067917; Sat, 17 Apr 2004 10:49:19 -0700 (PDT) (envelope-from hrs) Message-Id: <200404171749.i3HHnJgs067917@repoman.freebsd.org> From: Hiroki Sato Date: Sat, 17 Apr 2004 10:49:19 -0700 (PDT) To: doc-committers@FreeBSD.org, cvs-doc@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: www/en/releases/4.10R 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: Sat, 17 Apr 2004 17:49:20 -0000 hrs 2004/04/17 10:49:19 PDT FreeBSD doc repository Modified files: en/releases/4.10R schedule.sgml Log: Update the actual date when the version number was bumped. Revision Changes Path 1.7 +2 -2 www/en/releases/4.10R/schedule.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 11:09: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 AA9C816A4CE; Sat, 17 Apr 2004 11:09:24 -0700 (PDT) Received: from zaphod.nitro.dk (port324.ds1-khk.adsl.cybercity.dk [212.242.113.79]) by mx1.FreeBSD.org (Postfix) with ESMTP id 079C243D49; Sat, 17 Apr 2004 11:09:24 -0700 (PDT) (envelope-from simon@zaphod.nitro.dk) Received: by zaphod.nitro.dk (Postfix, from userid 3000) id 569A71198A; Sat, 17 Apr 2004 20:09:21 +0200 (CEST) Date: Sat, 17 Apr 2004 20:09:21 +0200 From: "Simon L. Nielsen" To: Hiroki Sato Message-ID: <20040417180920.GM764@zaphod.nitro.dk> References: <200404171738.i3HHcmHC065839@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="hOcCNbCCxyk/YU74" Content-Disposition: inline In-Reply-To: <200404171738.i3HHcmHC065839@repoman.freebsd.org> 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/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: Sat, 17 Apr 2004 18:09:24 -0000 --hOcCNbCCxyk/YU74 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On 2004.04.17 10:38:48 -0700, Hiroki Sato wrote: > hrs 2004/04/17 10:38:48 PDT >=20 > FreeBSD src repository >=20 > Modified files: > release/doc/en_US.ISO8859-1/relnotes/common new.sgml=20 > Log: > Fix some typos: > s/IPsec/IPSec/ We normally use "IPsec" which is also in the FDP Primer word list. --=20 Simon L. Nielsen FreeBSD Documentation Team --hOcCNbCCxyk/YU74 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAgXLQh9pcDSc1mlERAnA9AJ9CpOxPxn6GsvBDbMsszXm/gl+3TgCgilds NhsLDX4X3dynl2sqmLew7hE= =95OS -----END PGP SIGNATURE----- --hOcCNbCCxyk/YU74-- From owner-cvs-all@FreeBSD.ORG Sat Apr 17 11:17: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 C4FC716A4CE; Sat, 17 Apr 2004 11:17:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A905843D58; Sat, 17 Apr 2004 11:17:15 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HIHFGe074897; Sat, 17 Apr 2004 11:17:15 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HIHFs1074896; Sat, 17 Apr 2004 11:17:15 -0700 (PDT) (envelope-from marcus) Message-Id: <200404171817.i3HIHFs1074896@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 17 Apr 2004 11:17:15 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/gtk12 Makefile ports/x11-toolkits/gtk12/files patch-ad X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 18:17:15 -0000 marcus 2004/04/17 11:17:15 PDT FreeBSD ports repository Modified files: x11-toolkits/gtk12 Makefile x11-toolkits/gtk12/files patch-ad Log: Always add the default gtkrc file to the search path so that we know we'll have some sane theme properties when using KDE 3 or GNOME 2. Submitted by: kan Revision Changes Path 1.99 +1 -1 ports/x11-toolkits/gtk12/Makefile 1.10 +32 -7 ports/x11-toolkits/gtk12/files/patch-ad From owner-cvs-all@FreeBSD.ORG Sat Apr 17 11:24: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 7070116A4CE; Sat, 17 Apr 2004 11:24:53 -0700 (PDT) Received: from abigail.blackend.org (blackend.org [212.11.35.229]) by mx1.FreeBSD.org (Postfix) with ESMTP id 87E1A43D1F; Sat, 17 Apr 2004 11:24:49 -0700 (PDT) (envelope-from marc@blackend.org) Received: from abigail.blackend.org (localhost [127.0.0.1]) by abigail.blackend.org (8.12.9/8.12.3) with ESMTP id i3HIOjui034566; Sat, 17 Apr 2004 20:24:46 +0200 (CEST) (envelope-from marc@abigail.blackend.org) Received: (from marc@localhost) by abigail.blackend.org (8.12.9/8.12.3/Submit) id i3HIOjgg034565; Sat, 17 Apr 2004 20:24:45 +0200 (CEST) (envelope-from marc) Date: Sat, 17 Apr 2004 20:24:44 +0200 From: Marc Fonvieille To: "Simon L. Nielsen" Message-ID: <20040417182444.GA26875@abigail.blackend.org> References: <200404171738.i3HHcmHC065839@repoman.freebsd.org> <20040417180920.GM764@zaphod.nitro.dk> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="GvXjxJ+pjyke8COw" Content-Disposition: inline In-Reply-To: <20040417180920.GM764@zaphod.nitro.dk> User-Agent: Mutt/1.4.2.1i X-Useless-Header: blackend.org X-Operating-System: FreeBSD 4.8-STABLE cc: cvs-src@FreeBSD.org cc: Hiroki Sato cc: cvs-all@FreeBSD.org cc: src-committers@FreeBSD.org Subject: Re: 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: Sat, 17 Apr 2004 18:24:53 -0000 --GvXjxJ+pjyke8COw Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 17, 2004 at 08:09:21PM +0200, Simon L. Nielsen wrote: > On 2004.04.17 10:38:48 -0700, Hiroki Sato wrote: > > hrs 2004/04/17 10:38:48 PDT > >=20 > > FreeBSD src repository > >=20 > > Modified files: > > release/doc/en_US.ISO8859-1/relnotes/common new.sgml=20 > > Log: > > Fix some typos: > > s/IPsec/IPSec/ >=20 > We normally use "IPsec" which is also in the FDP Primer word list. > I will even add "IPsec" is the official RFCs word. Marc --GvXjxJ+pjyke8COw Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAgXZD81T1MWxkgcoRAvkHAJ4lamuaY7TXQ3eQmoduLNhRO83gegCgkFZw LiRmmbTrxbKUhTiEePT0jWI= =UVSr -----END PGP SIGNATURE----- --GvXjxJ+pjyke8COw-- From owner-cvs-all@FreeBSD.ORG Sat Apr 17 11:25: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 DF6CF16A4CE; Sat, 17 Apr 2004 11:25:48 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C3C1143D46; Sat, 17 Apr 2004 11:25:48 -0700 (PDT) (envelope-from gerald@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HIPmGe076849; Sat, 17 Apr 2004 11:25:48 -0700 (PDT) (envelope-from gerald@repoman.freebsd.org) Received: (from gerald@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HIPlhM076848; Sat, 17 Apr 2004 11:25:48 -0700 (PDT) (envelope-from gerald) Message-Id: <200404171825.i3HIPlhM076848@repoman.freebsd.org> From: Gerald Pfeifer Date: Sat, 17 Apr 2004 11:25:47 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/lang/gcc33 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, 17 Apr 2004 18:25:49 -0000 gerald 2004/04/17 11:25:47 PDT FreeBSD ports repository Modified files: lang/gcc33 Makefile distinfo Log: Update to the 2004-04-11 snapshot and a later version of the bounds checking patch (which still has two mismatches, though). Tweak the pre-everything message, plus display a note when libgcj is not built. Revision Changes Path 1.180 +6 -3 ports/lang/gcc33/Makefile 1.90 +12 -12 ports/lang/gcc33/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 17 11:27: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 C452C16A4CE; Sat, 17 Apr 2004 11:27:40 -0700 (PDT) Received: from smtp.eos.ocn.ne.jp (eos.ocn.ne.jp [211.6.83.117]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9392643D31; Sat, 17 Apr 2004 11:27:40 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from delta.allbsd.org (p29143-adsao12honb4-acca.tokyo.ocn.ne.jp [219.161.182.143]) by smtp.eos.ocn.ne.jp (Postfix) with ESMTP id 776352FA3; Sun, 18 Apr 2004 03:27:39 +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 i3HIQkA2054090; Sun, 18 Apr 2004 03:26:48 +0900 (JST) (envelope-from hrs@FreeBSD.org) Date: Sun, 18 Apr 2004 03:26:04 +0900 (JST) Message-Id: <20040418.032604.78716341.hrs@eos.ocn.ne.jp> To: simon@FreeBSD.org From: Hiroki Sato In-Reply-To: <20040417180920.GM764@zaphod.nitro.dk> References: <200404171738.i3HHcmHC065839@repoman.freebsd.org> <20040417180920.GM764@zaphod.nitro.dk> X-PGPkey-fingerprint: BDB3 443F A5DD B3D0 A530 FFD7 4F2C D3D8 2793 CF2D X-Mailer: Mew version 4.0.64 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(Sun_Apr_18_03_26_05_2004_726)--" Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: 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: Sat, 17 Apr 2004 18:27:40 -0000 ----Security_Multipart(Sun_Apr_18_03_26_05_2004_726)-- Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit "Simon L. Nielsen" wrote in <20040417180920.GM764@zaphod.nitro.dk>: simon> On 2004.04.17 10:38:48 -0700, Hiroki Sato wrote: simon> > hrs 2004/04/17 10:38:48 PDT simon> > simon> > FreeBSD src repository simon> > simon> > Modified files: simon> > release/doc/en_US.ISO8859-1/relnotes/common new.sgml simon> > Log: simon> > Fix some typos: simon> > s/IPsec/IPSec/ simon> simon> We normally use "IPsec" which is also in the FDP Primer word list. Sorry, I got something wrong. I will back this out. Thanks for your insight. -- | Hiroki SATO ----Security_Multipart(Sun_Apr_18_03_26_05_2004_726)-- Content-Type: application/pgp-signature Content-Transfer-Encoding: 7bit -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQBAgXa9TyzT2CeTzy0RAiNNAJ4/Lqh4uNiwoaEmzEr8rtx0GQGBgwCfS1ha d7wxQ8ACGwLHfk7l3L5ibw0= =zoWB -----END PGP SIGNATURE----- ----Security_Multipart(Sun_Apr_18_03_26_05_2004_726)---- From owner-cvs-all@FreeBSD.ORG Sat Apr 17 11:31: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 44E1216A4CE; Sat, 17 Apr 2004 11:31:26 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 282CD43D48; Sat, 17 Apr 2004 11:31:26 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HIVPGe077921; Sat, 17 Apr 2004 11:31:25 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HIVPOZ077918; Sat, 17 Apr 2004 11:31:25 -0700 (PDT) (envelope-from hrs) Message-Id: <200404171831.i3HIVPOZ077918@repoman.freebsd.org> From: Hiroki Sato Date: Sat, 17 Apr 2004 11:31:25 -0700 (PDT) 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: Sat, 17 Apr 2004 18:31:26 -0000 hrs 2004/04/17 11:31:25 PDT FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Back out a change (s/IPsec/IPSec/) in rev.1.716->1.717. Pointed out by: simon Pointy hat to: hrs Revision Changes Path 1.718 +1 -1 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 11: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 8ED6616A4CE; Sat, 17 Apr 2004 11:44:24 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7385843D54; Sat, 17 Apr 2004 11:44:24 -0700 (PDT) (envelope-from pb@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HIiOGe080900; Sat, 17 Apr 2004 11:44:24 -0700 (PDT) (envelope-from pb@repoman.freebsd.org) Received: (from pb@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HIiOHP080899; Sat, 17 Apr 2004 11:44:24 -0700 (PDT) (envelope-from pb) Message-Id: <200404171844.i3HIiOHP080899@repoman.freebsd.org> From: Pierre Beyssac Date: Sat, 17 Apr 2004 11:44:23 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/contrib/traceroute traceroute.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 18:44:24 -0000 pb 2004/04/17 11:44:23 PDT FreeBSD src repository Modified files: contrib/traceroute traceroute.c Log: Check -s option source address for validity. PR: bin/29026 MFC after: 1 week Revision Changes Path 1.26 +2 -2 src/contrib/traceroute/traceroute.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 12:09: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 7674616A4CE; Sat, 17 Apr 2004 12:09:10 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B9F443D2F; Sat, 17 Apr 2004 12:09:10 -0700 (PDT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HJ9AGe086028; Sat, 17 Apr 2004 12:09:10 -0700 (PDT) (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HJ9A57086027; Sat, 17 Apr 2004 12:09:10 -0700 (PDT) (envelope-from fjoe) Message-Id: <200404171909.i3HJ9A57086027@repoman.freebsd.org> From: Max Khon Date: Sat, 17 Apr 2004 12:09:10 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/etc/rc.d sendmail X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 19:09:10 -0000 fjoe 2004/04/17 12:09:09 PDT FreeBSD src repository Modified files: etc/rc.d sendmail Log: sendmail_submit_enable and sendmail_outbound_enable checks were reverted. Found by: Morten Rodal Revision Changes Path 1.11 +2 -2 src/etc/rc.d/sendmail From owner-cvs-all@FreeBSD.ORG Sat Apr 17 12:12: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 A0FB416A4CE; Sat, 17 Apr 2004 12:12:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9BC2C43D39; Sat, 17 Apr 2004 12:12:38 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HJCcGe087954; Sat, 17 Apr 2004 12:12:38 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HJCchS087952; Sat, 17 Apr 2004 12:12:38 -0700 (PDT) (envelope-from krion) Message-Id: <200404171912.i3HJCchS087952@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 17 Apr 2004 12:12:38 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/archivers/arj Makefile ports/archivers/dact Makefile ports/archivers/gzip Makefile ports/archivers/par2cmdline Makefile ports/archivers/tardy Makefile ports/archivers/ucl 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, 17 Apr 2004 19:12:38 -0000 krion 2004/04/17 12:12:38 PDT FreeBSD ports repository Modified files: archivers/arj Makefile archivers/dact Makefile archivers/gzip Makefile archivers/par2cmdline Makefile archivers/tardy Makefile archivers/ucl Makefile Log: - Fix configure warning PR: 65668 65669 65670 65671 65672 65673 Submitted by: Roman Neuhauser Revision Changes Path 1.10 +1 -0 ports/archivers/arj/Makefile 1.11 +1 -0 ports/archivers/dact/Makefile 1.7 +1 -0 ports/archivers/gzip/Makefile 1.2 +1 -0 ports/archivers/par2cmdline/Makefile 1.4 +1 -0 ports/archivers/tardy/Makefile 1.11 +1 -0 ports/archivers/ucl/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 12:17: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 68A2C16A4CE; Sat, 17 Apr 2004 12:17:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4BE2743D5A; Sat, 17 Apr 2004 12:17:36 -0700 (PDT) (envelope-from knu@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HJHaGe088202; Sat, 17 Apr 2004 12:17:36 -0700 (PDT) (envelope-from knu@repoman.freebsd.org) Received: (from knu@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HJHa92088201; Sat, 17 Apr 2004 12:17:36 -0700 (PDT) (envelope-from knu) Message-Id: <200404171917.i3HJHa92088201@repoman.freebsd.org> From: Akinori MUSHA Date: Sat, 17 Apr 2004 12:17:36 -0700 (PDT) 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/ruby16 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, 17 Apr 2004 19:17:36 -0000 knu 2004/04/17 12:17:36 PDT FreeBSD ports repository Modified files: Mk bsd.ruby.mk lang/ruby16 distinfo Log: Update lang/ruby16 to the latest snapshot as of 2004-04-16, which fixes getaddrinfo() check failure on KAME. Requested by: suz Revision Changes Path 1.135 +4 -3 ports/Mk/bsd.ruby.mk 1.81 +2 -0 ports/lang/ruby16/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 17 12:20: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 D748D16A4CE; Sat, 17 Apr 2004 12:20:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D126443D54; Sat, 17 Apr 2004 12:20:31 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HJKVGe088406; Sat, 17 Apr 2004 12:20:31 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HJKVoD088405; Sat, 17 Apr 2004 12:20:31 -0700 (PDT) (envelope-from krion) Message-Id: <200404171920.i3HJKVoD088405@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 17 Apr 2004 12:20:31 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/astro/celestia Makefile ports/astro/fooseti Makefile ports/astro/jday Makefile ports/databases/db3 Makefile ports/devel/fam Makefile ports/devel/gengetopt 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, 17 Apr 2004 19:20:32 -0000 krion 2004/04/17 12:20:31 PDT FreeBSD ports repository Modified files: astro/celestia Makefile astro/fooseti Makefile astro/jday Makefile databases/db3 Makefile devel/fam Makefile devel/gengetopt Makefile Log: - Fix configure warning PR: 65674 65675 65676 65677 65678 65679 Submitted by: Roman Neuhauser Revision Changes Path 1.16 +1 -0 ports/astro/celestia/Makefile 1.21 +1 -0 ports/astro/fooseti/Makefile 1.6 +1 -0 ports/astro/jday/Makefile 1.55 +2 -2 ports/databases/db3/Makefile 1.20 +1 -0 ports/devel/fam/Makefile 1.14 +1 -0 ports/devel/gengetopt/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 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 85D8516A4CE; Sat, 17 Apr 2004 12:23:16 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6956D43D1F; Sat, 17 Apr 2004 12:23:16 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HJNGGe090200; Sat, 17 Apr 2004 12:23:16 -0700 (PDT) (envelope-from markm@repoman.freebsd.org) Received: (from markm@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HJNFje090199; Sat, 17 Apr 2004 12:23:16 -0700 (PDT) (envelope-from markm) Message-Id: <200404171923.i3HJNFje090199@repoman.freebsd.org> From: Mark Murray Date: Sat, 17 Apr 2004 12:23:15 -0700 (PDT) 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.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 19:23:16 -0000 markm 2004/04/17 12:23:15 PDT FreeBSD src repository Modified files: sys/dev/random randomdev.c Log: More removal of the abortive locking code; malloc buffers when needed, rather than potentially reusing contents. Revision Changes Path 1.52 +12 -4 src/sys/dev/random/randomdev.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 12:26: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 4F47316A4CE; Sat, 17 Apr 2004 12:26:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 31C8443D58; Sat, 17 Apr 2004 12:26:54 -0700 (PDT) (envelope-from markm@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HJQrGe090399; Sat, 17 Apr 2004 12:26:53 -0700 (PDT) (envelope-from markm@repoman.freebsd.org) Received: (from markm@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HJQrcx090398; Sat, 17 Apr 2004 12:26:53 -0700 (PDT) (envelope-from markm) Message-Id: <200404171926.i3HJQrcx090398@repoman.freebsd.org> From: Mark Murray Date: Sat, 17 Apr 2004 12:26:53 -0700 (PDT) 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 nehemiah.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 19:26:54 -0000 markm 2004/04/17 12:26:53 PDT FreeBSD src repository Modified files: sys/dev/random nehemiah.c Log: Add a Davies-Meyer style hash to the output. This is still pure Nehemiah chip, but the work is all done in hardware. There are three opportunities to add other entropy; the Data Buffer, the Cipher's IV and the Cipher's key. A future commit will exploit these opportunities. Revision Changes Path 1.2 +124 -12 src/sys/dev/random/nehemiah.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 12:26: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 605FD16A4CF; Sat, 17 Apr 2004 12:26:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 44E9A43D54; Sat, 17 Apr 2004 12:26:59 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HJQxGe090445; Sat, 17 Apr 2004 12:26:59 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HJQwGJ090444; Sat, 17 Apr 2004 12:26:58 -0700 (PDT) (envelope-from krion) Message-Id: <200404171926.i3HJQwGJ090444@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 17 Apr 2004 12:26:58 -0700 (PDT) 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 ports/sysutils/portdowngrade/files patch-portdowngrade.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, 17 Apr 2004 19:26:59 -0000 krion 2004/04/17 12:26:58 PDT FreeBSD ports repository Modified files: sysutils/portdowngrade Makefile distinfo Removed files: sysutils/portdowngrade/files patch-portdowngrade.cpp Log: - Update to version 0.2 PR: ports/65666 Submitted by: maintainer Revision Changes Path 1.4 +2 -2 ports/sysutils/portdowngrade/Makefile 1.3 +2 -2 ports/sysutils/portdowngrade/distinfo 1.2 +0 -12 ports/sysutils/portdowngrade/files/patch-portdowngrade.cpp (dead) From owner-cvs-all@FreeBSD.ORG Sat Apr 17 12: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 D2DF116A4CE; Sat, 17 Apr 2004 12:37:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B644E43D31; Sat, 17 Apr 2004 12:37:25 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HJbPGe092544; Sat, 17 Apr 2004 12:37:25 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HJbPva092543; Sat, 17 Apr 2004 12:37:25 -0700 (PDT) (envelope-from pav) Message-Id: <200404171937.i3HJbPva092543@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 12:37:24 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/naim 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, 17 Apr 2004 19:37:26 -0000 pav 2004/04/17 12:37:24 PDT FreeBSD ports repository Modified files: net/naim Makefile distinfo pkg-plist Log: - Update to 0.11.6.7 - Hand maintainership to submitter PR: ports/65550 Submitted by: Travis Poppe Approved by: maintainer Revision Changes Path 1.37 +2 -2 ports/net/naim/Makefile 1.21 +2 -1 ports/net/naim/distinfo 1.14 +0 -1 ports/net/naim/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 12:45: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 231C416A4CE; Sat, 17 Apr 2004 12:45:46 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0697543D39; Sat, 17 Apr 2004 12:45:46 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HJjjGe094569; Sat, 17 Apr 2004 12:45:45 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HJjjaS094566; Sat, 17 Apr 2004 12:45:45 -0700 (PDT) (envelope-from pav) Message-Id: <200404171945.i3HJjjaS094566@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 12:45:45 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/misc/callid 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, 17 Apr 2004 19:45:46 -0000 pav 2004/04/17 12:45:45 PDT FreeBSD ports repository Modified files: misc/callid Makefile distinfo Log: - Update to 1.2 PR: ports/65526 Submitted by: (maintainer) Revision Changes Path 1.2 +11 -5 ports/misc/callid/Makefile 1.2 +2 -1 ports/misc/callid/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 17 13:09: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 48B3F16A4CE; Sat, 17 Apr 2004 13:09:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BC9243D1F; Sat, 17 Apr 2004 13:09:13 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HK9CGe005812; Sat, 17 Apr 2004 13:09:12 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HK9CTr005811; Sat, 17 Apr 2004 13:09:12 -0700 (PDT) (envelope-from pav) Message-Id: <200404172009.i3HK9CTr005811@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 13:09:12 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net-mgmt/cricket 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, 17 Apr 2004 20:09:13 -0000 pav 2004/04/17 13:09:12 PDT FreeBSD ports repository Modified files: net-mgmt/cricket Makefile distinfo pkg-plist Log: - Update to 1.0.5 PR: ports/65525 Submitted by: Janos Mohacsi Revision Changes Path 1.19 +1 -1 ports/net-mgmt/cricket/Makefile 1.7 +2 -2 ports/net-mgmt/cricket/distinfo 1.7 +2 -0 ports/net-mgmt/cricket/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 13:30: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 C81A916A4D1; Sat, 17 Apr 2004 13:30:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id ACA1B43D2F; Sat, 17 Apr 2004 13:30:06 -0700 (PDT) (envelope-from fjoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HKU6Ge009860; Sat, 17 Apr 2004 13:30:06 -0700 (PDT) (envelope-from fjoe@repoman.freebsd.org) Received: (from fjoe@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HKU68K009859; Sat, 17 Apr 2004 13:30:06 -0700 (PDT) (envelope-from fjoe) Message-Id: <200404172030.i3HKU68K009859@repoman.freebsd.org> From: Max Khon Date: Sat, 17 Apr 2004 13:30:06 -0700 (PDT) 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 if_arlreg.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, 17 Apr 2004 20:30:06 -0000 fjoe 2004/04/17 13:30:06 PDT FreeBSD src repository Modified files: sys/dev/arl if_arl.c if_arlreg.h Log: Add 354k and 512k support. Fix quality stats. Submitted by: Stanislav A Svirid Revision Changes Path 1.5 +34 -11 src/sys/dev/arl/if_arl.c 1.4 +0 -3 src/sys/dev/arl/if_arlreg.h From owner-cvs-all@FreeBSD.ORG Sat Apr 17 14:05: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 EFFC116A4CE; Sat, 17 Apr 2004 14:05:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D2EE243D4C; Sat, 17 Apr 2004 14:05:31 -0700 (PDT) (envelope-from marcel@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HL5VGe018657; Sat, 17 Apr 2004 14:05:31 -0700 (PDT) (envelope-from marcel@repoman.freebsd.org) Received: (from marcel@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HL5V4e018656; Sat, 17 Apr 2004 14:05:31 -0700 (PDT) (envelope-from marcel) Message-Id: <200404172105.i3HL5V4e018656@repoman.freebsd.org> From: Marcel Moolenaar Date: Sat, 17 Apr 2004 14:05:31 -0700 (PDT) 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: Sat, 17 Apr 2004 21:05:32 -0000 marcel 2004/04/17 14:05:31 PDT FreeBSD src repository Modified files: . access Log: Add Marius Strobl (marius) -- among other things, he'll be focussing on sparc64. Approved by: core Mentorship: marcel Revision Changes Path 1.660 +1 -0 CVSROOT/access From owner-cvs-all@FreeBSD.ORG Sat Apr 17 14:17: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 13CB716A4CE; Sat, 17 Apr 2004 14:17:30 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA90E43D45; Sat, 17 Apr 2004 14:17:29 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HLHTGe020742; Sat, 17 Apr 2004 14:17:29 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HLHTV5020741; Sat, 17 Apr 2004 14:17:29 -0700 (PDT) (envelope-from blackend) Message-Id: <200404172117.i3HLHTV5020741@repoman.freebsd.org> From: Marc Fonvieille Date: Sat, 17 Apr 2004 14:17:29 -0700 (PDT) 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/x11 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, 17 Apr 2004 21:17:30 -0000 blackend 2004/04/17 14:17:29 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/x11 chapter.sgml Log: XFce4 uses startxfce4 not startxfce Submitted by: Pieter Koppelaar Revision Changes Path 1.134 +2 -2 doc/en_US.ISO8859-1/books/handbook/x11/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 14:26: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 5241F16A4CE; Sat, 17 Apr 2004 14:26:31 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4C79943D1F; Sat, 17 Apr 2004 14:26:31 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HLQVGe022761; Sat, 17 Apr 2004 14:26:31 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HLQVZY022760; Sat, 17 Apr 2004 14:26:31 -0700 (PDT) (envelope-from pav) Message-Id: <200404172126.i3HLQVZY022760@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 14:26:30 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/news Makefile ports/news/nzbget Makefile distinfo pkg-descr ports/news/nzbget/files patch-ArticleDownloader.cpp patch-Connection.cpp patch-Decoder.cpp patch-NNTPConnection.h 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, 17 Apr 2004 21:26:31 -0000 pav 2004/04/17 14:26:30 PDT FreeBSD ports repository Modified files: news Makefile Added files: news/nzbget Makefile distinfo pkg-descr news/nzbget/files patch-ArticleDownloader.cpp patch-Connection.cpp patch-Decoder.cpp patch-NNTPConnection.h patch-configure Log: Add nzbget, a NZB binaries format downloader from Usenet groups. PR: ports/65509 Submitted by: Lewis Thompson Revision Changes Path 1.101 +1 -0 ports/news/Makefile 1.1 +35 -0 ports/news/nzbget/Makefile (new) 1.1 +2 -0 ports/news/nzbget/distinfo (new) 1.1 +11 -0 ports/news/nzbget/files/patch-ArticleDownloader.cpp (new) 1.1 +11 -0 ports/news/nzbget/files/patch-Connection.cpp (new) 1.1 +11 -0 ports/news/nzbget/files/patch-Decoder.cpp (new) 1.1 +10 -0 ports/news/nzbget/files/patch-NNTPConnection.h (new) 1.1 +24 -0 ports/news/nzbget/files/patch-configure (new) 1.1 +5 -0 ports/news/nzbget/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 17 14: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 E7FE216A4CE; Sat, 17 Apr 2004 14:27:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CBE1B43D46; Sat, 17 Apr 2004 14:27:17 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HLRHGe022808; Sat, 17 Apr 2004 14:27:17 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HLRHB4022807; Sat, 17 Apr 2004 14:27:17 -0700 (PDT) (envelope-from pav) Message-Id: <200404172127.i3HLRHB4022807@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 14:27:17 -0700 (PDT) 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, 17 Apr 2004 21:27:18 -0000 pav 2004/04/17 14:27:17 PDT FreeBSD ports repository Modified files: . modules Log: nzbget --> ports/news/nzbget Revision Changes Path 1.9925 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 17 14: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 8A3B716A4CE; Sat, 17 Apr 2004 14:49:22 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6E77843D46; Sat, 17 Apr 2004 14:49:22 -0700 (PDT) (envelope-from blackend@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HLnMGe026869; Sat, 17 Apr 2004 14:49:22 -0700 (PDT) (envelope-from blackend@repoman.freebsd.org) Received: (from blackend@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HLnMIl026868; Sat, 17 Apr 2004 14:49:22 -0700 (PDT) (envelope-from blackend) Message-Id: <200404172149.i3HLnMIl026868@repoman.freebsd.org> From: Marc Fonvieille Date: Sat, 17 Apr 2004 14:49:22 -0700 (PDT) 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/x11 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, 17 Apr 2004 21:49:22 -0000 blackend 2004/04/17 14:49:22 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/x11 chapter.sgml Log: A s/startxfce/startxfce4 I missed during my previous change. Revision Changes Path 1.135 +1 -1 doc/en_US.ISO8859-1/books/handbook/x11/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 14:58: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 E316D16A4CE; Sat, 17 Apr 2004 14:58:11 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C568D43D48; Sat, 17 Apr 2004 14:58:11 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HLwBGe028890; Sat, 17 Apr 2004 14:58:11 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HLwBIM028889; Sat, 17 Apr 2004 14:58:11 -0700 (PDT) (envelope-from krion) Message-Id: <200404172158.i3HLwBIM028889@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 17 Apr 2004 14:58:11 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/lookat 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, 17 Apr 2004 21:58:12 -0000 krion 2004/04/17 14:58:11 PDT FreeBSD ports repository Modified files: sysutils/lookat Makefile distinfo Log: - Update to version 1.4.0 Revision Changes Path 1.7 +4 -7 ports/sysutils/lookat/Makefile 1.5 +2 -2 ports/sysutils/lookat/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 17 15: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 1A75816A4CE; Sat, 17 Apr 2004 15:08:12 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F234F43D49; Sat, 17 Apr 2004 15:08:11 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HM8BGe031935; Sat, 17 Apr 2004 15:08:11 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HM8BLl031934; Sat, 17 Apr 2004 15:08:11 -0700 (PDT) (envelope-from pav) Message-Id: <200404172208.i3HM8BLl031934@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 15:08:11 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/mess822 Makefile ports/mail/mess822/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: Sat, 17 Apr 2004 22:08:12 -0000 pav 2004/04/17 15:08:11 PDT FreeBSD ports repository Modified files: mail/mess822 Makefile mail/mess822/files patch-aa Log: - Avoid changing permissions of system directories on install - Unmark BROKEN - Portlint PR: ports/65575 Submitted by: David Siebörger (maintainer) Revision Changes Path 1.7 +2 -4 ports/mail/mess822/Makefile 1.2 +31 -11 ports/mail/mess822/files/patch-aa From owner-cvs-all@FreeBSD.ORG Sat Apr 17 15:15: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 B37C916A4CE; Sat, 17 Apr 2004 15:15:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 95EFA43D1F; Sat, 17 Apr 2004 15:15:43 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HMFhGe033936; Sat, 17 Apr 2004 15:15:43 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HMFgCd033935; Sat, 17 Apr 2004 15:15:42 -0700 (PDT) (envelope-from pav) Message-Id: <200404172215.i3HMFgCd033935@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 15:15:42 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/nagios-statd Makefile distinfo ports/sysutils/nagios-statd/files nagios-statd.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: Sat, 17 Apr 2004 22:15:43 -0000 pav 2004/04/17 15:15:42 PDT FreeBSD ports repository Modified files: sysutils/nagios-statd Makefile distinfo sysutils/nagios-statd/files nagios-statd.sh.sample Log: - Update to 3.10 PR: ports/65507 Submitted by: Jim Shewmaker (maintainer) Revision Changes Path 1.2 +1 -1 ports/sysutils/nagios-statd/Makefile 1.3 +2 -2 ports/sysutils/nagios-statd/distinfo 1.2 +2 -2 ports/sysutils/nagios-statd/files/nagios-statd.sh.sample From owner-cvs-all@FreeBSD.ORG Sat Apr 17 15:24: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 54A9916A4CE; Sat, 17 Apr 2004 15:24:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4EFC543D53; Sat, 17 Apr 2004 15:24:56 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HMOuGe035886; Sat, 17 Apr 2004 15:24:56 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HMOt2E035885; Sat, 17 Apr 2004 15:24:55 -0700 (PDT) (envelope-from pav) Message-Id: <200404172224.i3HMOt2E035885@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 15:24:55 -0700 (PDT) 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-configure.in ports/net-mgmt/nagios-plugins/scripts 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, 17 Apr 2004 22:24:56 -0000 pav 2004/04/17 15:24:55 PDT FreeBSD ports repository Modified files: net-mgmt/nagios-plugins Makefile net-mgmt/nagios-plugins/files patch-configure.in net-mgmt/nagios-plugins/scripts configure Log: - Fix parameters passed to /bin/ps which is used by check_procs and check_nagios - Port change: support environment value NAGIOS_PLUGINS_OPTIONS which can be used to preselect compile options PR: ports/65144 Submitted by: Blaz Zupan (maintainer) Revision Changes Path 1.26 +1 -1 ports/net-mgmt/nagios-plugins/Makefile 1.5 +31 -5 ports/net-mgmt/nagios-plugins/files/patch-configure.in 1.13 +29 -20 ports/net-mgmt/nagios-plugins/scripts/configure From owner-cvs-all@FreeBSD.ORG Sat Apr 17 16: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 E608C16A4CE; Sat, 17 Apr 2004 16:02:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C9EDE43D41; Sat, 17 Apr 2004 16:02:28 -0700 (PDT) (envelope-from edwin@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HN2SGe043777; Sat, 17 Apr 2004 16:02:28 -0700 (PDT) (envelope-from edwin@repoman.freebsd.org) Received: (from edwin@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HN2SKt043773; Sat, 17 Apr 2004 16:02:28 -0700 (PDT) (envelope-from edwin) Message-Id: <200404172302.i3HN2SKt043773@repoman.freebsd.org> From: Edwin Groothuis Date: Sat, 17 Apr 2004 16:02:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/net/ngrep 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, 17 Apr 2004 23:02:29 -0000 edwin 2004/04/17 16:02:28 PDT FreeBSD ports repository Modified files: net/ngrep Makefile Log: When running ngrep as non-root, the program tried to drop the priveleges too. This is now disabled via a configure option. Revision Changes Path 1.17 +4 -1 ports/net/ngrep/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 16: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 392B716A4CE; Sat, 17 Apr 2004 16:09:21 -0700 (PDT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 60C3143D4C; Sat, 17 Apr 2004 16:09:20 -0700 (PDT) (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 i3HNDN8x027749 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 18 Apr 2004 02:13: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 i3HN9FYa086763; Sun, 18 Apr 2004 02:09:15 +0300 (EEST) (envelope-from ru) Date: Sun, 18 Apr 2004 02:09:15 +0300 From: Ruslan Ermilov To: Luigi Rizzo Message-ID: <20040417230915.GB86698@ip.net.ua> References: <200404171509.i3HF9aQv027347@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="PmA2V3Z32TCmWXqI" Content-Disposition: inline In-Reply-To: <200404171509.i3HF9aQv027347@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) 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: Sat, 17 Apr 2004 23:09:21 -0000 --PmA2V3Z32TCmWXqI Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 17, 2004 at 08:09:36AM -0700, Luigi Rizzo wrote: > luigi 2004/04/17 08:09:36 PDT >=20 > FreeBSD src repository >=20 > Modified files: > sys/net rtsock.c=20 > Log: > misc cleanup in sysctl_ifmalist(): > + remove a partly incorrect comment that i introduced in the last comm= it; > + deal with the correct part of the above comment by cleaning up the > updates of 'info' -- rti_addrs needd not to be updated, > rti_info[RTAX_IFP] can be set once outside the loop. > While at it, correct a few misspelling of NULL as 0, but there are > way too many in this file, and i did not want to clutter the > important part of this commit. > =20 > Revision Changes Path > 1.102 +10 -27 src/sys/net/rtsock.c >=20 Thanks! Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --PmA2V3Z32TCmWXqI Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAgbkbUkv4P6juNwoRAu3GAJ46q6HblGhVI+KwPo/eiY0OpatBsACgiPZ+ kXjnlNYim7jazh8qVmwIPWA= =CQtT -----END PGP SIGNATURE----- --PmA2V3Z32TCmWXqI-- From owner-cvs-all@FreeBSD.ORG Sat Apr 17 16:10: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 2835A16A4D4; Sat, 17 Apr 2004 16:10:22 -0700 (PDT) Received: from tigra.ip.net.ua (tigra.ip.net.ua [82.193.96.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6015443D39; Sat, 17 Apr 2004 16:10:20 -0700 (PDT) (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 i3HNEMUb027788 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 18 Apr 2004 02:14:24 +0300 (EEST) (envelope-from ru@ip.net.ua) Received: (from ru@localhost) by heffalump.ip.net.ua (8.12.11/8.12.11) id i3HNAE2l086831; Sun, 18 Apr 2004 02:10:14 +0300 (EEST) (envelope-from ru) Date: Sun, 18 Apr 2004 02:10:14 +0300 From: Ruslan Ermilov To: Marcel Moolenaar Message-ID: <20040417231014.GC86698@ip.net.ua> References: <200404172105.i3HL5V4e018656@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="nmemrqcdn5VTmUEE" Content-Disposition: inline In-Reply-To: <200404172105.i3HL5V4e018656@repoman.freebsd.org> User-Agent: Mutt/1.5.6i X-Virus-Scanned: by amavisd-new X-Spam-Checker-Version: SpamAssassin 2.55 (1.174.2.19-2003-05-19-exp) cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: 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, 17 Apr 2004 23:10:22 -0000 --nmemrqcdn5VTmUEE Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable On Sat, Apr 17, 2004 at 02:05:31PM -0700, Marcel Moolenaar wrote: > marcel 2004/04/17 14:05:31 PDT >=20 > FreeBSD src repository >=20 > Modified files: > . access=20 > Log: > Add Marius Strobl (marius) -- among other things, he'll be focussing > on sparc64. > =20 > Approved by: core > Mentorship: marcel > =20 > Revision Changes Path > 1.660 +1 -0 CVSROOT/access >=20 Yay! ;) Cheers, --=20 Ruslan Ermilov ru@FreeBSD.org FreeBSD committer --nmemrqcdn5VTmUEE Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAgblWUkv4P6juNwoRAsAIAJ0TzhKFIpzFJuB4ri1CE9rpNvKA1QCgift9 9Vv507UXkVRuXWW5FlChWFw= =Vy9w -----END PGP SIGNATURE----- --nmemrqcdn5VTmUEE-- From owner-cvs-all@FreeBSD.ORG Sat Apr 17 16:17: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 CC81D16A4CE; Sat, 17 Apr 2004 16:17:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id C716A43D1D; Sat, 17 Apr 2004 16:17:33 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HNHXGe046983; Sat, 17 Apr 2004 16:17:33 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HNHX6p046982; Sat, 17 Apr 2004 16:17:33 -0700 (PDT) (envelope-from pav) Message-Id: <200404172317.i3HNHX6p046982@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 16:17:33 -0700 (PDT) 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/gkrelltop 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: Sat, 17 Apr 2004 23:17:33 -0000 pav 2004/04/17 16:17:33 PDT FreeBSD ports repository Modified files: sysutils Makefile Added files: sysutils/gkrelltop Makefile distinfo pkg-descr pkg-message Log: Add gkrelltop, a GKrellM 2.x plugin that displays top three processes. PR: ports/65476 Submitted by: David Gardner Revision Changes Path 1.520 +1 -0 ports/sysutils/Makefile 1.1 +31 -0 ports/sysutils/gkrelltop/Makefile (new) 1.1 +2 -0 ports/sysutils/gkrelltop/distinfo (new) 1.1 +8 -0 ports/sysutils/gkrelltop/pkg-descr (new) 1.1 +8 -0 ports/sysutils/gkrelltop/pkg-message (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 17 16:18: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 BC6BD16A4CE; Sat, 17 Apr 2004 16:18:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F79243D48; Sat, 17 Apr 2004 16:18:25 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HNIPGe047030; Sat, 17 Apr 2004 16:18:25 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HNIP2q047029; Sat, 17 Apr 2004 16:18:25 -0700 (PDT) (envelope-from pav) Message-Id: <200404172318.i3HNIP2q047029@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 16:18:25 -0700 (PDT) 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, 17 Apr 2004 23:18:25 -0000 pav 2004/04/17 16:18:25 PDT FreeBSD ports repository Modified files: . modules Log: gkrelltop --> ports/sysutils/gkrelltop Revision Changes Path 1.9926 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 17 16: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 BF94C16A4CE; Sat, 17 Apr 2004 16:29:25 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A248443D31; Sat, 17 Apr 2004 16:29:25 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HNTPGe049065; Sat, 17 Apr 2004 16:29:25 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HNTPeN049064; Sat, 17 Apr 2004 16:29:25 -0700 (PDT) (envelope-from luigi) Message-Id: <200404172329.i3HNTPeN049064@repoman.freebsd.org> From: Luigi Rizzo Date: Sat, 17 Apr 2004 16:29:25 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netipsec xform_ipip.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 23:29:25 -0000 luigi 2004/04/17 16:29:25 PDT FreeBSD src repository Modified files: sys/netipsec xform_ipip.c Log: use native names for if_link, ifa_link, if_addrhead. Change for (...) to TAILQ_FOREACH(...) Ok'ed by: sam Revision Changes Path 1.8 +2 -4 src/sys/netipsec/xform_ipip.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 16:31: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 DCCA316A4CE; Sat, 17 Apr 2004 16:31:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id BF17B43D2D; Sat, 17 Apr 2004 16:31:28 -0700 (PDT) (envelope-from pav@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HNVSGe050064; Sat, 17 Apr 2004 16:31:28 -0700 (PDT) (envelope-from pav@repoman.freebsd.org) Received: (from pav@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HNVSqa050060; Sat, 17 Apr 2004 16:31:28 -0700 (PDT) (envelope-from pav) Message-Id: <200404172331.i3HNVSqa050060@repoman.freebsd.org> From: Pav Lucistnik Date: Sat, 17 Apr 2004 16:31:28 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/audio/abcde 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, 17 Apr 2004 23:31:29 -0000 pav 2004/04/17 16:31:28 PDT FreeBSD ports repository Modified files: audio/abcde Makefile distinfo Log: - Update to 2.1.19 PR: ports/65686 Submitted by: Munish Chopra (maintainer) Revision Changes Path 1.22 +1 -1 ports/audio/abcde/Makefile 1.10 +2 -2 ports/audio/abcde/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 17 16:52: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 6D7AE16A4CE; Sat, 17 Apr 2004 16:52:58 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 50EE743D1F; Sat, 17 Apr 2004 16:52:58 -0700 (PDT) (envelope-from ru@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3HNqvGe060880; Sat, 17 Apr 2004 16:52:58 -0700 (PDT) (envelope-from ru@repoman.freebsd.org) Received: (from ru@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3HNqvoB060879; Sat, 17 Apr 2004 16:52:57 -0700 (PDT) (envelope-from ru) Message-Id: <200404172352.i3HNqvoB060879@repoman.freebsd.org> From: Ruslan Ermilov Date: Sat, 17 Apr 2004 16:52:57 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/netgraph ng_hub.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Apr 2004 23:52:58 -0000 ru 2004/04/17 16:52:57 PDT FreeBSD src repository Modified files: sys/netgraph ng_hub.c Log: Don't give up if sending to one link fails, continue. Suggested by: jmallett Revision Changes Path 1.2 +1 -1 src/sys/netgraph/ng_hub.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 17:30: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 14A9016A4CE; Sat, 17 Apr 2004 17:30:55 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC6B143D49; Sat, 17 Apr 2004 17:30:54 -0700 (PDT) (envelope-from ale@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I0UsGe068073; Sat, 17 Apr 2004 17:30:54 -0700 (PDT) (envelope-from ale@repoman.freebsd.org) Received: (from ale@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I0Useg068072; Sat, 17 Apr 2004 17:30:54 -0700 (PDT) (envelope-from ale) Message-Id: <200404180030.i3I0Useg068072@repoman.freebsd.org> From: Alex Dupre Date: Sat, 17 Apr 2004 17:30:54 -0700 (PDT) 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/x11 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, 18 Apr 2004 00:30:55 -0000 ale 2004/04/17 17:30:54 PDT FreeBSD doc repository Modified files: en_US.ISO8859-1/books/handbook/x11 chapter.sgml Log: Fix build. Revision Changes Path 1.136 +1 -1 doc/en_US.ISO8859-1/books/handbook/x11/chapter.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 17:56: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 931C416A4CE; Sat, 17 Apr 2004 17:56:45 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7532C43D5D; Sat, 17 Apr 2004 17:56:45 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I0ujGe073885; Sat, 17 Apr 2004 17:56:45 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I0uiiv073884; Sat, 17 Apr 2004 17:56:44 -0700 (PDT) (envelope-from luigi) Message-Id: <200404180056.i3I0uiiv073884@repoman.freebsd.org> From: Luigi Rizzo Date: Sat, 17 Apr 2004 17:56:44 -0700 (PDT) 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: Sun, 18 Apr 2004 00:56:45 -0000 luigi 2004/04/17 17:56:44 PDT FreeBSD src repository Modified files: sys/net rtsock.c Log: Minor changes to improve code readability (no actual code changes): + replace 0 with NULL where appropriate (not complete) + remove register declaration while there + add argument names to function prototypes to have a better idea of what they are used for + add 'const' qualifiers in 3 places Revision Changes Path 1.103 +63 -60 src/sys/net/rtsock.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 17:56: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 2CB1716A4CF; Sat, 17 Apr 2004 17:56:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1049243D31; Sat, 17 Apr 2004 17:56:49 -0700 (PDT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I0umGe073912; Sat, 17 Apr 2004 17:56:48 -0700 (PDT) (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I0umv6073911; Sat, 17 Apr 2004 17:56:48 -0700 (PDT) (envelope-from marius) Message-Id: <200404180056.i3I0umv6073911@repoman.freebsd.org> From: Marius Strobl Date: Sat, 17 Apr 2004 17:56:48 -0700 (PDT) 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: Sun, 18 Apr 2004 00:56:49 -0000 marius 2004/04/17 17:56:48 PDT FreeBSD doc repository (src committer) Modified files: en_US.ISO8859-1/share/sgml authors.ent Log: Add my entity. Approved by: marcel (mentor) Revision Changes Path 1.309 +2 -0 doc/en_US.ISO8859-1/share/sgml/authors.ent From owner-cvs-all@FreeBSD.ORG Sat Apr 17 18:00: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 9C38716A4CE; Sat, 17 Apr 2004 18:00:15 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7CEF343D4C; Sat, 17 Apr 2004 18:00:15 -0700 (PDT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I10FGe074081; Sat, 17 Apr 2004 18:00:15 -0700 (PDT) (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I10Fm7074080; Sat, 17 Apr 2004 18:00:15 -0700 (PDT) (envelope-from marius) Message-Id: <200404180100.i3I10Fm7074080@repoman.freebsd.org> From: Marius Strobl Date: Sat, 17 Apr 2004 18:00:14 -0700 (PDT) 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: Sun, 18 Apr 2004 01:00:15 -0000 marius 2004/04/17 18:00:14 PDT FreeBSD doc repository (src committer) Modified files: en_US.ISO8859-1/articles/contributors contrib.additional.sgml contrib.committers.sgml Log: Move me from contributors to developers. Approved by: marcel (mentor) Revision Changes Path 1.176 +0 -5 doc/en_US.ISO8859-1/articles/contributors/contrib.additional.sgml 1.36 +4 -0 doc/en_US.ISO8859-1/articles/contributors/contrib.committers.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 18:02: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 ED26216A4CE; Sat, 17 Apr 2004 18:02:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id CF90543D2F; Sat, 17 Apr 2004 18:02:56 -0700 (PDT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I12uGe075935; Sat, 17 Apr 2004 18:02:56 -0700 (PDT) (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I12ul4075934; Sat, 17 Apr 2004 18:02:56 -0700 (PDT) (envelope-from marius) Message-Id: <200404180102.i3I12ul4075934@repoman.freebsd.org> From: Marius Strobl Date: Sat, 17 Apr 2004 18:02:56 -0700 (PDT) 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: Sun, 18 Apr 2004 01:02:57 -0000 marius 2004/04/17 18:02:56 PDT FreeBSD doc repository (src committer) Modified files: en/news news.xml Log: Announce myself as a new committer. Approved by: marcel (mentor) Revision Changes Path 1.212 +10 -1 www/en/news/news.xml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 18:05: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 059B816A4D2; Sat, 17 Apr 2004 18:05:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB6E243D41; Sat, 17 Apr 2004 18:05:02 -0700 (PDT) (envelope-from onoe@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I152Ge076950; Sat, 17 Apr 2004 18:05:02 -0700 (PDT) (envelope-from onoe@repoman.freebsd.org) Received: (from onoe@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I152oY076949; Sat, 17 Apr 2004 18:05:02 -0700 (PDT) (envelope-from onoe) Message-Id: <200404180105.i3I152oY076949@repoman.freebsd.org> From: Atsushi Onoe Date: Sat, 17 Apr 2004 18:05:02 -0700 (PDT) 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: Sun, 18 Apr 2004 01:05:03 -0000 onoe 2004/04/17 18:05:02 PDT FreeBSD src repository Modified files: sys/dev/awi awi.c Log: Use IFF_ALLMULTI instead of if_amcount to decide if all multicast should be received. Pointed out by Luigi Rizzo. Revision Changes Path 1.32 +10 -5 src/sys/dev/awi/awi.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 18:05: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 1F2D216A4CE; Sat, 17 Apr 2004 18:05:56 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 01C0143D53; Sat, 17 Apr 2004 18:05:56 -0700 (PDT) (envelope-from marius@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I15tGe077021; Sat, 17 Apr 2004 18:05:55 -0700 (PDT) (envelope-from marius@repoman.freebsd.org) Received: (from marius@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I15tQH077020; Sat, 17 Apr 2004 18:05:55 -0700 (PDT) (envelope-from marius) Message-Id: <200404180105.i3I15tQH077020@repoman.freebsd.org> From: Marius Strobl Date: Sat, 17 Apr 2004 18:05:55 -0700 (PDT) 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: Sun, 18 Apr 2004 01:05:56 -0000 marius 2004/04/17 18:05:55 PDT FreeBSD src repository Modified files: usr.bin/calendar/calendars calendar.freebsd Log: Add my birthday. Approved by: marcel (mentor) Revision Changes Path 1.118 +1 -0 src/usr.bin/calendar/calendars/calendar.freebsd From owner-cvs-all@FreeBSD.ORG Sat Apr 17 18:07: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 88C1B16A4CE; Sat, 17 Apr 2004 18:07:31 -0700 (PDT) Received: from xorpc.icir.org (xorpc.icir.org [192.150.187.68]) by mx1.FreeBSD.org (Postfix) with ESMTP id 52AC743D48; Sat, 17 Apr 2004 18:07:31 -0700 (PDT) (envelope-from rizzo@icir.org) Received: from xorpc.icir.org (localhost [127.0.0.1]) by xorpc.icir.org (8.12.9p1/8.12.8) with ESMTP id i3I17Vgd099568; Sat, 17 Apr 2004 18:07:31 -0700 (PDT) (envelope-from rizzo@xorpc.icir.org) Received: (from rizzo@localhost) by xorpc.icir.org (8.12.9p1/8.12.3/Submit) id i3I17V1n099567; Sat, 17 Apr 2004 18:07:31 -0700 (PDT) (envelope-from rizzo) Date: Sat, 17 Apr 2004 18:07:31 -0700 From: Luigi Rizzo To: Atsushi Onoe Message-ID: <20040417180731.A97267@xorpc.icir.org> References: <200404180105.i3I152oY076949@repoman.freebsd.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5.1i In-Reply-To: <200404180105.i3I152oY076949@repoman.freebsd.org>; from onoe@FreeBSD.org on Sat, Apr 17, 2004 at 06:05:02PM -0700 cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: 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: Sun, 18 Apr 2004 01:07:31 -0000 On Sat, Apr 17, 2004 at 06:05:02PM -0700, Atsushi Onoe wrote: > onoe 2004/04/17 18:05:02 PDT > > FreeBSD src repository > > Modified files: > sys/dev/awi awi.c > Log: > Use IFF_ALLMULTI instead of if_amcount to decide if all multicast should > be received. Pointed out by Luigi Rizzo. thanks luigi From owner-cvs-all@FreeBSD.ORG Sat Apr 17 18:15: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 80B1516A4CE; Sat, 17 Apr 2004 18:15:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 7A63C43D31; Sat, 17 Apr 2004 18:15:33 -0700 (PDT) (envelope-from luigi@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I1FXGe079175; Sat, 17 Apr 2004 18:15:33 -0700 (PDT) (envelope-from luigi@repoman.freebsd.org) Received: (from luigi@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I1FXCO079174; Sat, 17 Apr 2004 18:15:33 -0700 (PDT) (envelope-from luigi) Message-Id: <200404180115.i3I1FXCO079174@repoman.freebsd.org> From: Luigi Rizzo Date: Sat, 17 Apr 2004 18:15:32 -0700 (PDT) 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_arp.h if_ethersubr.c if_fddisubr.c if_iso88025subr.c if_var.h src/sys/netgraph ng_eiface.c ng_ether.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2004 01:15:33 -0000 luigi 2004/04/17 18:15:32 PDT FreeBSD src repository Modified files: sys/net if_arp.h if_ethersubr.c if_fddisubr.c if_iso88025subr.c if_var.h sys/netgraph ng_eiface.c ng_ether.c Log: + rename and document an unused field in struct arpcom (field is still there so there are no ABI changes); + replace 5 redefinitions of the IPF2AC macro with one in if_arp.h Eventually (but before freezing the ABI) we need to get rid of struct arpcom (initially with the help of some smart #defines to avoid having to touch each and every driver, see below). Apart from the struct ifnet, struct arpcom now only stores a copy of the MAC address (ac_enaddr, but we already have another copy in the struct ifnet -- if_addrhead), and a netgraph-specific field which is _always_ accessed through the ifp, so it might well go into the struct ifnet too (where, besides, there is already an entry for AF_NETGRAPH data...) Too bad ac_enaddr is widely referenced by all drivers. But this can be fixed as follows: #define ac_enaddr ac_if.the_original_ac_enaddr_in_struct_ifnet (note that the right hand side would likely be a pointer rather than the base address of an array.) Revision Changes Path 1.19 +5 -1 src/sys/net/if_arp.h 1.166 +0 -1 src/sys/net/if_ethersubr.c 1.91 +0 -1 src/sys/net/if_fddisubr.c 1.62 +0 -1 src/sys/net/if_iso88025subr.c 1.72 +4 -0 src/sys/net/if_var.h 1.13 +0 -1 src/sys/netgraph/ng_eiface.c 1.33 +0 -1 src/sys/netgraph/ng_ether.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 18:29: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 D53DC16A4CE; Sat, 17 Apr 2004 18:29:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id B657A43D1F; Sat, 17 Apr 2004 18:29:33 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I1TXGe081303; Sat, 17 Apr 2004 18:29:33 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I1TXko081302; Sat, 17 Apr 2004 18:29:33 -0700 (PDT) (envelope-from marcus) Message-Id: <200404180129.i3I1TXko081302@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 17 Apr 2004 18:29:33 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/nss Makefile ports/security/nss/files patch-..::coreconf::FreeBSD.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: Sun, 18 Apr 2004 01:29:34 -0000 marcus 2004/04/17 18:29:33 PDT FreeBSD ports repository Modified files: security/nss Makefile security/nss/files patch-..::coreconf::FreeBSD.mk Log: Unbreak on ia64 and alpha by linking directly with libc. Revision Changes Path 1.19 +0 -4 ports/security/nss/Makefile 1.5 +6 -2 ports/security/nss/files/patch-..::coreconf::FreeBSD.mk From owner-cvs-all@FreeBSD.ORG Sat Apr 17 18:57: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 29A2A16A4CF; Sat, 17 Apr 2004 18:57:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0A94643D39; Sat, 17 Apr 2004 18:57:21 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I1vKGe087238; Sat, 17 Apr 2004 18:57:20 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I1vKAG087237; Sat, 17 Apr 2004 18:57:20 -0700 (PDT) (envelope-from marcus) Message-Id: <200404180157.i3I1vKAG087237@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 17 Apr 2004 18:57:20 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-toolkits/vte Makefileports/x11-toolkits/vte/files patch-src_vte.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2004 01:57:21 -0000 marcus 2004/04/17 18:57:20 PDT FreeBSD ports repository Modified files: x11-toolkits/vte Makefile x11-toolkits/vte/files patch-src_vte.c Log: Drop the coalescence timeout from 50 to 15 to compromise between actual rendering speed, and typing speed. The previous setting caused some jerkiness during key repeat. Basically, this gives the feeling of better terminal responsiveness. Submitted by: Jeremy Messenger Revision Changes Path 1.34 +1 -1 ports/x11-toolkits/vte/Makefile 1.6 +1 -1 ports/x11-toolkits/vte/files/patch-src_vte.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 19: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 428D416A4CE; Sat, 17 Apr 2004 19:11:05 -0700 (PDT) Received: from blues.jpj.net (blues.jpj.net [208.210.80.156]) by mx1.FreeBSD.org (Postfix) with ESMTP id C262243D31; Sat, 17 Apr 2004 19:11:04 -0700 (PDT) (envelope-from trevor@jpj.net) Received: from blues.jpj.net (localhost [127.0.0.1]) by blues.jpj.net (8.12.9p2/8.12.9) with ESMTP id i3I2Bpeg057752; Sat, 17 Apr 2004 22:11:51 -0400 (EDT) (envelope-from trevor@jpj.net) Received: from localhost (trevor@localhost)i3I2BpNk057749; Sat, 17 Apr 2004 22:11:51 -0400 (EDT) X-Authentication-Warning: blues.jpj.net: trevor owned process doing -bs Date: Sat, 17 Apr 2004 22:11:51 -0400 (EDT) From: Trevor Johnson To: Kirill Ponomarew In-Reply-To: <200404171920.i3HJKVoD088405@repoman.freebsd.org> Message-ID: <20040417220810.M41949@blues.jpj.net> References: <200404171920.i3HJKVoD088405@repoman.freebsd.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Scanned-By: MIMEDefang 2.39 cc: cvs-ports@FreeBSD.org cc: Roman Neuhauser cc: portmgr@FreeBSD.org cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org Subject: Re: cvs commit: ports/astro/celestia Makefile ports/astro/fooseti Makefile ports/astro/jday Makefile ports/databases/db3 Makefile ports/devel/fam Makefile ports/devel/gengetopt 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, 18 Apr 2004 02:11:05 -0000 Maybe the default CONFIGURE_TARGET in bsd.port.mk ought to be changed, or a second default (--build=...) made available? > krion 2004/04/17 12:20:31 PDT > > FreeBSD ports repository > > Modified files: > astro/celestia Makefile > astro/fooseti Makefile > astro/jday Makefile > databases/db3 Makefile > devel/fam Makefile > devel/gengetopt Makefile > Log: > - Fix configure warning > > PR: 65674 65675 65676 65677 65678 65679 > Submitted by: Roman Neuhauser > > Revision Changes Path > 1.16 +1 -0 ports/astro/celestia/Makefile > 1.21 +1 -0 ports/astro/fooseti/Makefile > 1.6 +1 -0 ports/astro/jday/Makefile > 1.55 +2 -2 ports/databases/db3/Makefile > 1.20 +1 -0 ports/devel/fam/Makefile > 1.14 +1 -0 ports/devel/gengetopt/Makefile > > > > > > > -- Trevor Johnson From owner-cvs-all@FreeBSD.ORG Sat Apr 17 19:12: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 B2FF616A4CE; Sat, 17 Apr 2004 19:12:34 -0700 (PDT) Received: from mtaw4.prodigy.net (mtaw4.prodigy.net [64.164.98.52]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9EF5F43D54; Sat, 17 Apr 2004 19:12:34 -0700 (PDT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (483e12fa1413cc1bf0c1894ae1f5b70d@adsl-67-115-73-128.dsl.lsan03.pacbell.net [67.115.73.128]) by mtaw4.prodigy.net (8.12.10/8.12.10) with ESMTP id i3I2CV5k024920; Sat, 17 Apr 2004 19:12:31 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id EBB2051FAC; Sat, 17 Apr 2004 19:12:30 -0700 (PDT) Date: Sat, 17 Apr 2004 19:12:30 -0700 From: Kris Kennaway To: Trevor Johnson Message-ID: <20040418021230.GA49365@xor.obsecurity.org> References: <200404171920.i3HJKVoD088405@repoman.freebsd.org> <20040417220810.M41949@blues.jpj.net> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="UlVJffcvxoiEqYs2" Content-Disposition: inline In-Reply-To: <20040417220810.M41949@blues.jpj.net> User-Agent: Mutt/1.4.2.1i cc: cvs-all@FreeBSD.org cc: ports-committers@FreeBSD.org cc: Roman Neuhauser cc: portmgr@FreeBSD.org cc: cvs-ports@FreeBSD.org cc: Kirill Ponomarew Subject: Re: cvs commit: ports/astro/celestia Makefile ports/astro/fooseti Makefile ports/astro/jday Makefile ports/databases/db3 Makefile ports/devel/fam Makefile ports/devel/gengetopt 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, 18 Apr 2004 02:12:34 -0000 --UlVJffcvxoiEqYs2 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline On Sat, Apr 17, 2004 at 10:11:51PM -0400, Trevor Johnson wrote: > Maybe the default CONFIGURE_TARGET in bsd.port.mk ought to be changed, or > a second default (--build=...) made available? Last time someone tried this it broke lots of ports, but feel free to give it another shot. Kris --UlVJffcvxoiEqYs2 Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.2.4 (FreeBSD) iD8DBQFAgeQOWry0BWjoQKURAvyAAKDtyhUFVVV0ZOsAFPt15Zc2eEFLcACgiK4a fu3ZkDTNnANi1RgDDrWfRnw= =9o9S -----END PGP SIGNATURE----- --UlVJffcvxoiEqYs2-- From owner-cvs-all@FreeBSD.ORG Sat Apr 17 19: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 BF7C116A4CE; Sat, 17 Apr 2004 19:39:02 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1BD543D31; Sat, 17 Apr 2004 19:39:02 -0700 (PDT) (envelope-from ps@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I2d2Ge096139; Sat, 17 Apr 2004 19:39:02 -0700 (PDT) (envelope-from ps@repoman.freebsd.org) Received: (from ps@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I2d2Yb096138; Sat, 17 Apr 2004 19:39:02 -0700 (PDT) (envelope-from ps) Message-Id: <200404180239.i3I2d2Yb096138@repoman.freebsd.org> From: Paul Saab Date: Sat, 17 Apr 2004 19:39:02 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/ciss ciss.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2004 02:39:02 -0000 ps 2004/04/17 19:39:02 PDT FreeBSD src repository Modified files: sys/dev/ciss ciss.c Log: move the cleanup of the control device into ciss_free and add some ifdefs for the diffrent kthread_create API between -current and -stable Revision Changes Path 1.42 +10 -2 src/sys/dev/ciss/ciss.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 20:12: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 6134516A4CE; Sat, 17 Apr 2004 20:12:06 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 419A543D1F; Sat, 17 Apr 2004 20:12:06 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I3C5Ge004815; Sat, 17 Apr 2004 20:12:05 -0700 (PDT) (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I3C5Oc004808; Sat, 17 Apr 2004 20:12:05 -0700 (PDT) (envelope-from green) Message-Id: <200404180312.i3I3C5Oc004808@repoman.freebsd.org> From: Brian Feldman Date: Sat, 17 Apr 2004 20:12:05 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/security/cfs Makefile ports/security/cfs/files patch-cfs_fh.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2004 03:12:06 -0000 green 2004/04/17 20:12:05 PDT FreeBSD ports repository Modified files: security/cfs Makefile security/cfs/files patch-cfs_fh.c Log: Previously, cfsd would screw up if you used 8-bit filenames. Fix the checksum mechanism for pathnames so that it works for those paths. Submitted by: Olof Samuelsson PR: 35353 Revision Changes Path 1.15 +1 -0 ports/security/cfs/Makefile 1.2 +69 -14 ports/security/cfs/files/patch-cfs_fh.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 20:18: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 1C06216A4CE; Sat, 17 Apr 2004 20:18:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F1C0F43D55; Sat, 17 Apr 2004 20:18:00 -0700 (PDT) (envelope-from hrs@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I3I0Ge005291; Sat, 17 Apr 2004 20:18:00 -0700 (PDT) (envelope-from hrs@repoman.freebsd.org) Received: (from hrs@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I3I02E005290; Sat, 17 Apr 2004 20:18:00 -0700 (PDT) (envelope-from hrs) Message-Id: <200404180318.i3I3I02E005290@repoman.freebsd.org> From: Hiroki Sato Date: Sat, 17 Apr 2004 20:18:00 -0700 (PDT) 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: Sun, 18 Apr 2004 03:18:01 -0000 hrs 2004/04/17 20:18:00 PDT FreeBSD src repository Modified files: release/doc/en_US.ISO8859-1/relnotes/common new.sgml Log: Fix typos (s/NetGraph/Netgraph/). Revision Changes Path 1.719 +2 -2 src/release/doc/en_US.ISO8859-1/relnotes/common/new.sgml From owner-cvs-all@FreeBSD.ORG Sat Apr 17 21:13: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 2A3D016A4CE; Sat, 17 Apr 2004 21:13:00 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0C40D43D48; Sat, 17 Apr 2004 21:13:00 -0700 (PDT) (envelope-from green@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I4CxGe023948; Sat, 17 Apr 2004 21:12:59 -0700 (PDT) (envelope-from green@repoman.freebsd.org) Received: (from green@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I4Cxbb023947; Sat, 17 Apr 2004 21:12:59 -0700 (PDT) (envelope-from green) Message-Id: <200404180412.i3I4Cxbb023947@repoman.freebsd.org> From: Brian Feldman Date: Sat, 17 Apr 2004 21:12:59 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-wm/olvwm 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, 18 Apr 2004 04:13:00 -0000 green 2004/04/17 21:12:59 PDT FreeBSD ports repository Modified files: x11-wm/olvwm Makefile Log: Unbreak olvwm for -CURRENT. Submitted by: Serge Gagnon PR 64819 Revision Changes Path 1.29 +7 -6 ports/x11-wm/olvwm/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 21: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 0DDBB16A4CE; Sat, 17 Apr 2004 21:31:59 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E39FF43D2D; Sat, 17 Apr 2004 21:31:58 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I4VwGe027412; Sat, 17 Apr 2004 21:31:58 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I4VwQt027408; Sat, 17 Apr 2004 21:31:58 -0700 (PDT) (envelope-from bde) Message-Id: <200404180431.i3I4VwQt027408@repoman.freebsd.org> From: Bruce Evans Date: Sat, 17 Apr 2004 21:31:58 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/puc pucdata.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2004 04:31:59 -0000 bde 2004/04/17 21:31:58 PDT FreeBSD src repository Modified files: sys/dev/puc pucdata.c Log: Fixed some style bugs in previous commit. Almmost every line was misformatted. Revision Changes Path 1.32 +13 -11 src/sys/dev/puc/pucdata.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 21:44: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 CC7AE16A4CE; Sat, 17 Apr 2004 21:44:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF4B243D39; Sat, 17 Apr 2004 21:44:28 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I4iSGe030023; Sat, 17 Apr 2004 21:44:28 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I4iSZ4030022; Sat, 17 Apr 2004 21:44:28 -0700 (PDT) (envelope-from bde) Message-Id: <200404180444.i3I4iSZ4030022@repoman.freebsd.org> From: Bruce Evans Date: Sat, 17 Apr 2004 21:44:28 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/puc pucdata.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2004 04:44:28 -0000 bde 2004/04/17 21:44:28 PDT FreeBSD src repository Modified files: sys/dev/puc pucdata.c Log: Fixed a style bug (insertion sort error) in rev.1.29. This file should be sorted in the same order as misc/pci_vendors (on vendor/device id), and already partly is. Revision Changes Path 1.33 +10 -10 src/sys/dev/puc/pucdata.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 21:48: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 6968516A4CE; Sat, 17 Apr 2004 21:48:54 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2881B43D48; Sat, 17 Apr 2004 21:48:54 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I4msGe030187; Sat, 17 Apr 2004 21:48:54 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I4mrrb030186; Sat, 17 Apr 2004 21:48:53 -0700 (PDT) (envelope-from bde) Message-Id: <200404180448.i3I4mrrb030186@repoman.freebsd.org> From: Bruce Evans Date: Sat, 17 Apr 2004 21:48:53 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/puc pucdata.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2004 04:48:54 -0000 bde 2004/04/17 21:48:53 PDT FreeBSD src repository Modified files: sys/dev/puc pucdata.c Log: Fixed some style bugs in rev.1.28. Almost every line was misindented. Revision Changes Path 1.34 +9 -9 src/sys/dev/puc/pucdata.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 21:53: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 3CD8E16A4CE; Sat, 17 Apr 2004 21:53:14 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1C32943D46; Sat, 17 Apr 2004 21:53:14 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I4rDGe032109; Sat, 17 Apr 2004 21:53:13 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I4rDaF032108; Sat, 17 Apr 2004 21:53:13 -0700 (PDT) (envelope-from marcus) Message-Id: <200404180453.i3I4rDaF032108@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 17 Apr 2004 21:53:13 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/print/freetype2 Makefileports/print/freetype2/files patch-src::type1::t1load.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2004 04:53:14 -0000 marcus 2004/04/17 21:53:13 PDT FreeBSD ports repository Modified files: print/freetype2 Makefile Added files: print/freetype2/files patch-src::type1::t1load.c Log: Check for the eexec keyword in type1 fonts. This fixes a potential hang when viewing certain PDF documents. Submitted by: Jeremy Messenger Obtained from: FreeType CVS More info: http://bugzilla.gnome.org/show_bug.cgi?id=129400 Revision Changes Path 1.55 +1 -1 ports/print/freetype2/Makefile 1.1 +14 -0 ports/print/freetype2/files/patch-src::type1::t1load.c (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 17 22: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 C922716A4CE; Sat, 17 Apr 2004 22:08:08 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id A967843D1F; Sat, 17 Apr 2004 22:08:08 -0700 (PDT) (envelope-from marcus@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I588Ge035273; Sat, 17 Apr 2004 22:08:08 -0700 (PDT) (envelope-from marcus@repoman.freebsd.org) Received: (from marcus@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I5883N035272; Sat, 17 Apr 2004 22:08:08 -0700 (PDT) (envelope-from marcus) Message-Id: <200404180508.i3I5883N035272@repoman.freebsd.org> From: Joe Marcus Clarke Date: Sat, 17 Apr 2004 22:08:08 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/gdm2 Makefile pkg-install ports/x11/gdm2/files patch-config_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, 18 Apr 2004 05:08:08 -0000 marcus 2004/04/17 22:08:08 PDT FreeBSD ports repository Modified files: x11/gdm2 Makefile pkg-install Added files: x11/gdm2/files patch-config_Makefile.in Log: Fix some packaging permission issues on GDM internal directories. Revision Changes Path 1.84 +1 -0 ports/x11/gdm2/Makefile 1.5 +18 -0 ports/x11/gdm2/files/patch-config_Makefile.in (new) 1.13 +2 -2 ports/x11/gdm2/pkg-install From owner-cvs-all@FreeBSD.ORG Sat Apr 17 22: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 30DDE16A4CE; Sat, 17 Apr 2004 22:21:37 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 11B8243D1D; Sat, 17 Apr 2004 22:21:37 -0700 (PDT) (envelope-from njl@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I5LaGe038336; Sat, 17 Apr 2004 22:21:36 -0700 (PDT) (envelope-from njl@repoman.freebsd.org) Received: (from njl@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I5LaVT038332; Sat, 17 Apr 2004 22:21:36 -0700 (PDT) (envelope-from njl) Message-Id: <200404180521.i3I5LaVT038332@repoman.freebsd.org> From: Nate Lawson Date: Sat, 17 Apr 2004 22:21:36 -0700 (PDT) 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 X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2004 05:21:37 -0000 njl 2004/04/17 22:21:36 PDT FreeBSD src repository Modified files: usr.sbin/acpi/acpidump acpi.c Log: Instead of using a static, check for the FADT revision before using it. This fixes a bug where acpidump -d crashed (but not -t -d). Submitted by: Alex Vasylenko Revision Changes Path 1.23 +20 -12 src/usr.sbin/acpi/acpidump/acpi.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 22:30: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 057A716A4CE; Sat, 17 Apr 2004 22:30:03 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DAE1D43D2F; Sat, 17 Apr 2004 22:30:02 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I5U2Ge039356; Sat, 17 Apr 2004 22:30:02 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I5U2kM039355; Sat, 17 Apr 2004 22:30:02 -0700 (PDT) (envelope-from bde) Message-Id: <200404180530.i3I5U2kM039355@repoman.freebsd.org> From: Bruce Evans Date: Sat, 17 Apr 2004 22:30:02 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/puc pucdata.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2004 05:30:03 -0000 bde 2004/04/17 22:30:02 PDT FreeBSD src repository Modified files: sys/dev/puc pucdata.c Log: Fixed some style bugs (tab lossage) in rev.1.26. Removed the requirement for a particular subvendor/subproduct in rev.1.26 (VScom PCI-800L card). While the BARs, etc., may depend on the sub-ids, this is not known to be so, and I think it is better to guess that they don't. The decision to check sub-id checks in this file is apparently random; for VScom cards they were checked in 3 of 8 cases. Reviewed by: timeout by committer (joerg) after 6 months Revision Changes Path 1.35 +2 -2 src/sys/dev/puc/pucdata.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 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 280F816A4CE; Sat, 17 Apr 2004 22:32:43 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 095F843D1D; Sat, 17 Apr 2004 22:32:43 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I5WgGe041214; Sat, 17 Apr 2004 22:32:42 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I5WgVJ041212; Sat, 17 Apr 2004 22:32:42 -0700 (PDT) (envelope-from obrien) Message-Id: <200404180532.i3I5WgVJ041212@repoman.freebsd.org> From: "David E. O'Brien" Date: Sat, 17 Apr 2004 22:32:42 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/sysutils/lsof 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, 18 Apr 2004 05:32:43 -0000 obrien 2004/04/17 22:32:42 PDT FreeBSD ports repository Modified files: sysutils/lsof Makefile distinfo pkg-descr Log: Update to a snap release that fixes the build on 5.2-CURRENT. Revision Changes Path 1.127 +3 -3 ports/sysutils/lsof/Makefile 1.101 +2 -2 ports/sysutils/lsof/distinfo 1.5 +2 -0 ports/sysutils/lsof/pkg-descr From owner-cvs-all@FreeBSD.ORG Sat Apr 17 22:36: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 894FE16A4CE; Sat, 17 Apr 2004 22:36:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B6E243D1F; Sat, 17 Apr 2004 22:36:38 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I5acGe041398; Sat, 17 Apr 2004 22:36:38 -0700 (PDT) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I5abSU041397; Sat, 17 Apr 2004 22:36:37 -0700 (PDT) (envelope-from alc) Message-Id: <200404180536.i3I5abSU041397@repoman.freebsd.org> From: Alan Cox Date: Sat, 17 Apr 2004 22:36:37 -0700 (PDT) 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 src/sys/amd64/include sf_buf.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, 18 Apr 2004 05:36:38 -0000 alc 2004/04/17 22:36:37 PDT FreeBSD src repository Modified files: sys/amd64/amd64 vm_machdep.c sys/amd64/include sf_buf.h Log: Simplify the sf_buf implementation. In short, make it a trivial veneer over the direct virtual-to-physical mapping. Revision Changes Path 1.234 +6 -64 src/sys/amd64/amd64/vm_machdep.c 1.2 +9 -8 src/sys/amd64/include/sf_buf.h From owner-cvs-all@FreeBSD.ORG Sat Apr 17 22:37: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 BDC3316A4CE; Sat, 17 Apr 2004 22:37:34 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9F29A43D31; Sat, 17 Apr 2004 22:37:34 -0700 (PDT) (envelope-from obrien@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I5bYGe041437; Sat, 17 Apr 2004 22:37:34 -0700 (PDT) (envelope-from obrien@repoman.freebsd.org) Received: (from obrien@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I5bY35041436; Sat, 17 Apr 2004 22:37:34 -0700 (PDT) (envelope-from obrien) Message-Id: <200404180537.i3I5bY35041436@repoman.freebsd.org> From: "David E. O'Brien" Date: Sat, 17 Apr 2004 22:37:34 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/tools/tools/usb print-usb-if-vids.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, 18 Apr 2004 05:37:35 -0000 obrien 2004/04/17 22:37:34 PDT FreeBSD src repository Added files: tools/tools/usb print-usb-if-vids.sh Log: Script for downloading and printing in hex, the offical vendor ID's from USB.org. Revision Changes Path 1.1 +31 -0 src/tools/tools/usb/print-usb-if-vids.sh (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 17 22:46: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 367F516A4CE; Sat, 17 Apr 2004 22:46:38 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1973143D3F; Sat, 17 Apr 2004 22:46:38 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I5kbGe043807; Sat, 17 Apr 2004 22:46:37 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I5kbYB043806; Sat, 17 Apr 2004 22:46:37 -0700 (PDT) (envelope-from bde) Message-Id: <200404180546.i3I5kbYB043806@repoman.freebsd.org> From: Bruce Evans Date: Sat, 17 Apr 2004 22:46:37 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/puc pucdata.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2004 05:46:38 -0000 bde 2004/04/17 22:46:37 PDT FreeBSD src repository Modified files: sys/dev/puc pucdata.c Log: Fixed some style bugs (formatting errors) in rev.1.25. Revision Changes Path 1.36 +5 -5 src/sys/dev/puc/pucdata.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 22:52: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 1162E16A4CE; Sat, 17 Apr 2004 22:52:36 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E802743D39; Sat, 17 Apr 2004 22:52:35 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I5qZGe045725; Sat, 17 Apr 2004 22:52:35 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I5qZRQ045724; Sat, 17 Apr 2004 22:52:35 -0700 (PDT) (envelope-from bde) Message-Id: <200404180552.i3I5qZRQ045724@repoman.freebsd.org> From: Bruce Evans Date: Sat, 17 Apr 2004 22:52:35 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/puc pucdata.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2004 05:52:36 -0000 bde 2004/04/17 22:52:35 PDT FreeBSD src repository Modified files: sys/dev/puc pucdata.c Log: Fixed some style bugs in rev.1.24. Almost every line was misformatted, and Oxford was misspelled. Revision Changes Path 1.37 +7 -7 src/sys/dev/puc/pucdata.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 23: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 091D816A4CE; Sat, 17 Apr 2004 23:12:17 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DEE0543D5A; Sat, 17 Apr 2004 23:12:16 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I6CGGe050528; Sat, 17 Apr 2004 23:12:16 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I6CGXP050524; Sat, 17 Apr 2004 23:12:16 -0700 (PDT) (envelope-from krion) Message-Id: <200404180612.i3I6CGXP050524@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 17 Apr 2004 23:12:16 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/comms/gnokii 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, 18 Apr 2004 06:12:17 -0000 krion 2004/04/17 23:12:16 PDT FreeBSD ports repository Modified files: comms/gnokii Makefile Log: - Fix build on 4-x Revision Changes Path 1.37 +4 -0 ports/comms/gnokii/Makefile From owner-cvs-all@FreeBSD.ORG Sat Apr 17 23:18: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 32F5516A4CE; Sat, 17 Apr 2004 23:18:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2BE6A43D31; Sat, 17 Apr 2004 23:18:20 -0700 (PDT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I6IJGe050973; Sat, 17 Apr 2004 23:18:20 -0700 (PDT) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I6IJt4050972; Sat, 17 Apr 2004 23:18:19 -0700 (PDT) (envelope-from glewis) Message-Id: <200404180618.i3I6IJt4050972@repoman.freebsd.org> From: Greg Lewis Date: Sat, 17 Apr 2004 23:18:19 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/java Makefileports/java/jakarta-commons-discovery 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, 18 Apr 2004 06:18:20 -0000 glewis 2004/04/17 23:18:19 PDT FreeBSD ports repository Modified files: java Makefile Added files: java/jakarta-commons-discovery Makefile distinfo pkg-descr Log: Add a port of jakarta-commons-discovery. The Discovery Component is about discovering, or finding, implementations for pluggable interfaces. It provides facilities intantiating classes in general, and for lifecycle management of singleton (factory) classes. Fundamentally, Discovery locates classes that implement a given Java interface. The discovery pattern, though not necessarily this package, is used in many projects including JAXP (SaxParserFactory and others) and commons-logging (LogFactory). By extracting this pattern, other projects can (re)use it and take advantage of improvements to the pattern as Discovery evolves. Discovery improves over previous implementations by establishing facilities for working within managed environments. These allow configuration and property overrides without appealing to the global System properties (which are scoped across an entire JVM). PR: 65490 Submitted by: Herve Quiroz Revision Changes Path 1.122 +1 -0 ports/java/Makefile 1.1 +48 -0 ports/java/jakarta-commons-discovery/Makefile (new) 1.1 +2 -0 ports/java/jakarta-commons-discovery/distinfo (new) 1.1 +16 -0 ports/java/jakarta-commons-discovery/pkg-descr (new) From owner-cvs-all@FreeBSD.ORG Sat Apr 17 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 02D5416A4CE; Sat, 17 Apr 2004 23:21:21 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id D880743D2F; Sat, 17 Apr 2004 23:21:20 -0700 (PDT) (envelope-from glewis@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I6LKGe051828; Sat, 17 Apr 2004 23:21:20 -0700 (PDT) (envelope-from glewis@repoman.freebsd.org) Received: (from glewis@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I6LKnC051824; Sat, 17 Apr 2004 23:21:20 -0700 (PDT) (envelope-from glewis) Message-Id: <200404180621.i3I6LKnC051824@repoman.freebsd.org> From: Greg Lewis Date: Sat, 17 Apr 2004 23:21:20 -0700 (PDT) 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, 18 Apr 2004 06:21:21 -0000 glewis 2004/04/17 23:21:20 PDT FreeBSD ports repository Modified files: . modules Log: jakarta-commons-discovery -> ports/java/jakarta-commons-discovery Revision Changes Path 1.9927 +1 -0 CVSROOT/modules From owner-cvs-all@FreeBSD.ORG Sat Apr 17 23:24: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 8A3FE16A4CE; Sat, 17 Apr 2004 23:24:52 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id F081543D39; Sat, 17 Apr 2004 23:24:51 -0700 (PDT) (envelope-from alc@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I6OpGe052903; Sat, 17 Apr 2004 23:24:51 -0700 (PDT) (envelope-from alc@repoman.freebsd.org) Received: (from alc@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I6OppF052902; Sat, 17 Apr 2004 23:24:51 -0700 (PDT) (envelope-from alc) Message-Id: <200404180624.i3I6OppF052902@repoman.freebsd.org> From: Alan Cox Date: Sat, 17 Apr 2004 23:24:51 -0700 (PDT) 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 vm_machdep.c src/sys/alpha/include sf_buf.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, 18 Apr 2004 06:24:52 -0000 alc 2004/04/17 23:24:51 PDT FreeBSD src repository Modified files: sys/alpha/alpha vm_machdep.c sys/alpha/include sf_buf.h Log: MFamd64 Simplify the sf_buf implementation. In short, make it a veneer over the direct virtual-to-physical mapping. Revision Changes Path 1.103 +6 -65 src/sys/alpha/alpha/vm_machdep.c 1.2 +9 -8 src/sys/alpha/include/sf_buf.h From owner-cvs-all@FreeBSD.ORG Sat Apr 17 23:36: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 A72A116A4CE; Sat, 17 Apr 2004 23:36:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 89E4543D2F; Sat, 17 Apr 2004 23:36:13 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I6aDGe055090; Sat, 17 Apr 2004 23:36:13 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I6aDi3055089; Sat, 17 Apr 2004 23:36:13 -0700 (PDT) (envelope-from bde) Message-Id: <200404180636.i3I6aDi3055089@repoman.freebsd.org> From: Bruce Evans Date: Sat, 17 Apr 2004 23:36:12 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/puc pucdata.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2004 06:36:13 -0000 bde 2004/04/17 23:36:12 PDT FreeBSD src repository Modified files: sys/dev/puc pucdata.c Log: Oops, fixed some more style bugs (tab lossage) in rev.1.28. Fixed the same style bug in revs.1.20, 1.18, 1.15 and 1.12. Revision Changes Path 1.38 +12 -12 src/sys/dev/puc/pucdata.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 23:38: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 23CE416A4CE; Sat, 17 Apr 2004 23:38:49 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 06DBA43D46; Sat, 17 Apr 2004 23:38:49 -0700 (PDT) (envelope-from lev@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I6cmGe055157; Sat, 17 Apr 2004 23:38:48 -0700 (PDT) (envelope-from lev@repoman.freebsd.org) Received: (from lev@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I6cmUn055156; Sat, 17 Apr 2004 23:38:48 -0700 (PDT) (envelope-from lev) Message-Id: <200404180638.i3I6cmUn055156@repoman.freebsd.org> From: "Lev A. Serebryakov" Date: Sat, 17 Apr 2004 23:38:48 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/www/neon 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, 18 Apr 2004 06:38:49 -0000 lev 2004/04/17 23:38:48 PDT FreeBSD ports repository Modified files: www/neon Makefile distinfo Log: Update to 0.24.5 Revision Changes Path 1.28 +1 -4 ports/www/neon/Makefile 1.20 +2 -2 ports/www/neon/distinfo From owner-cvs-all@FreeBSD.ORG Sat Apr 17 23: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 7A39416A4CE; Sat, 17 Apr 2004 23:41:33 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CF8943D1D; Sat, 17 Apr 2004 23:41:33 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I6fXGe056078; Sat, 17 Apr 2004 23:41:33 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I6fWTo056071; Sat, 17 Apr 2004 23:41:32 -0700 (PDT) (envelope-from kris) Message-Id: <200404180641.i3I6fWTo056071@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 23:41:32 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/databases/dbXML 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, 18 Apr 2004 06:41:33 -0000 kris 2004/04/17 23:41:32 PDT FreeBSD ports repository Modified files: databases/dbXML pkg-plist Log: Add missing file Revision Changes Path 1.3 +1 -0 ports/databases/dbXML/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 23:42: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 85A4916A4CE; Sat, 17 Apr 2004 23:42:28 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6779643D48; Sat, 17 Apr 2004 23:42:28 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I6gSGe056946; Sat, 17 Apr 2004 23:42:28 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I6gSW3056945; Sat, 17 Apr 2004 23:42:28 -0700 (PDT) (envelope-from bde) Message-Id: <200404180642.i3I6gSW3056945@repoman.freebsd.org> From: Bruce Evans Date: Sat, 17 Apr 2004 23:42:28 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/puc pucdata.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2004 06:42:28 -0000 bde 2004/04/17 23:42:27 PDT FreeBSD src repository Modified files: sys/dev/puc pucdata.c Log: Fixed some style bugs (misformatting) in rev.1.9. Revision Changes Path 1.39 +2 -2 src/sys/dev/puc/pucdata.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 23:43: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 4581116A4CE; Sat, 17 Apr 2004 23:43:20 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2720443D39; Sat, 17 Apr 2004 23:43:20 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I6hJGe057111; Sat, 17 Apr 2004 23:43:19 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I6hJUf057110; Sat, 17 Apr 2004 23:43:19 -0700 (PDT) (envelope-from kris) Message-Id: <200404180643.i3I6hJUf057110@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 23:43:19 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/mail/gkrellmmailwatch2 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, 18 Apr 2004 06:43:20 -0000 kris 2004/04/17 23:43:19 PDT FreeBSD ports repository Modified files: mail/gkrellmmailwatch2 pkg-plist Log: Don't remove directories we didn't create Revision Changes Path 1.3 +0 -2 ports/mail/gkrellmmailwatch2/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 23:46: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 781C316A4CE; Sat, 17 Apr 2004 23:46:01 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5B7DE43D48; Sat, 17 Apr 2004 23:46:01 -0700 (PDT) (envelope-from kris@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I6k1Ge057281; Sat, 17 Apr 2004 23:46:01 -0700 (PDT) (envelope-from kris@repoman.freebsd.org) Received: (from kris@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I6k1Kh057280; Sat, 17 Apr 2004 23:46:01 -0700 (PDT) (envelope-from kris) Message-Id: <200404180646.i3I6k1Kh057280@repoman.freebsd.org> From: Kris Kennaway Date: Sat, 17 Apr 2004 23:46:01 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11/gmrun 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, 18 Apr 2004 06:46:01 -0000 kris 2004/04/17 23:46:01 PDT FreeBSD ports repository Modified files: x11/gmrun pkg-plist Log: Add missing directory Revision Changes Path 1.3 +1 -0 ports/x11/gmrun/pkg-plist From owner-cvs-all@FreeBSD.ORG Sat Apr 17 23:49: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 21D4A16A4CE; Sat, 17 Apr 2004 23:49:27 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 04B1243D31; Sat, 17 Apr 2004 23:49:27 -0700 (PDT) (envelope-from bde@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I6nQGe057370; Sat, 17 Apr 2004 23:49:26 -0700 (PDT) (envelope-from bde@repoman.freebsd.org) Received: (from bde@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I6nQNU057369; Sat, 17 Apr 2004 23:49:26 -0700 (PDT) (envelope-from bde) Message-Id: <200404180649.i3I6nQNU057369@repoman.freebsd.org> From: Bruce Evans Date: Sat, 17 Apr 2004 23:49:26 -0700 (PDT) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src/sys/dev/puc pucdata.c X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 18 Apr 2004 06:49:27 -0000 bde 2004/04/17 23:49:26 PDT FreeBSD src repository Modified files: sys/dev/puc pucdata.c Log: Fixed some style bugs (perfect tab lossage on every line) in rev.1.4. Revision Changes Path 1.40 +11 -11 src/sys/dev/puc/pucdata.c From owner-cvs-all@FreeBSD.ORG Sat Apr 17 23: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 94F5916A4CE; Sat, 17 Apr 2004 23:51:44 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 766FC43D31; Sat, 17 Apr 2004 23:51:44 -0700 (PDT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.10/8.12.10) with ESMTP id i3I6piGe058523; Sat, 17 Apr 2004 23:51:44 -0700 (PDT) (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.12.10/8.12.10/Submit) id i3I6phG5058519; Sat, 17 Apr 2004 23:51:43 -0700 (PDT) (envelope-from krion) Message-Id: <200404180651.i3I6phG5058519@repoman.freebsd.org> From: Kirill Ponomarew Date: Sat, 17 Apr 2004 23:51:43 -0700 (PDT) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: ports/x11-fm/gentoo 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, 18 Apr 2004 06:51:44 -0000 krion 2004/04/17 23:51:43 PDT FreeBSD ports repository Modified files: x11-fm/gentoo Makefile pkg-plist Log: - Fix package build Revision Changes Path 1.42 +12 -0 ports/x11-fm/gentoo/Makefile 1.11 +12 -12 ports/x11-fm/gentoo/pkg-plist