Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:2664 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 47338 invoked from network); 23 Jun 2003 21:37:57 -0000 Received: from unknown (HELO milton.schell.de) (217.160.72.35) by pb1.pair.com with SMTP; 23 Jun 2003 21:37:57 -0000 Received: (qmail 24851 invoked by uid 501); 23 Jun 2003 21:37:56 -0000 Received: from unknown (HELO eco.foo) (80.143.32.249) by kdserv.de with SMTP; 23 Jun 2003 21:37:56 -0000 Received: from localhost (localhost [127.0.0.1]) by eco.foo (Postfix) with ESMTP id 39C6D7567 for ; Mon, 23 Jun 2003 23:37:56 +0200 (CEST) Date: Mon, 23 Jun 2003 23:37:56 +0200 (CEST) X-X-Sender: sas@eco.foo To: internals@lists.php.net Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Subject: HEADS UP: CVS changes From: sascha@schumann.cx (Sascha Schumann) The great unification has commenced. There is now a single module php-src which contains all PHP 4 and PHP 5 branches. BRANCH INFORMATION Please make yourself familiar with the "cvs checkout -r BRANCH" notation. It will be necessary from now on for a checkout. Some examples: PHP 5: cvs co -r PHP_5 php-src-ze2 PHP 4: cvs co -r PHP_4 php-src-ze1 PHP 4.3: cvs co -r PHP_4_3 php-src-ze1 The branch names can also be used for cvs diff and merge operations. Note that all of the above commands create a local directory named "php-src". I hope that we can eliminate the ze1/ze2 suffixes soon, but that is another topic. UPGRADE PROCEDURE The php4/php5 modules have been disabled so that you cannot accidentially commit code into the wrong branch. A "cvs update" will also fail. Please use the following syntax to upgrade your existing checkout: $ cd phpX $ find . -name Repository|xargs perl -pi -e 's/php./php-src/' $ cvs upd -r PHP_5 Replace PHP_5 with the name of the branch you are working on. - Sascha