Add the beginnings of the 5.0-RELEASE schedule. This includes
information about the 'Developer Preview' snapshots (which will be snapshots that have been polished by the RE team, with a full package set, release documentation, etc..), the feature-list discussion we will have to have at the FreeBSD Summit at Usenix, the feature freeze, and then finally the code freeze.
This commit is contained in:
parent
b2259c4ce8
commit
618ca33bf3
Notes:
svn2git
2020-12-08 03:00:23 +00:00
svn path=/www/; revision=12355
3 changed files with 109 additions and 1 deletions
12
en/releases/5.0R/Makefile
Normal file
12
en/releases/5.0R/Makefile
Normal file
|
@ -0,0 +1,12 @@
|
|||
# $FreeBSD$
|
||||
|
||||
.if exists(../Makefile.conf)
|
||||
.include "../Makefile.conf"
|
||||
.endif
|
||||
.if exists(../Makefile.inc)
|
||||
.include "../Makefile.inc"
|
||||
.endif
|
||||
|
||||
DOCS= schedule.sgml
|
||||
|
||||
.include "${WEB_PREFIX}/share/mk/web.site.mk"
|
95
en/releases/5.0R/schedule.sgml
Normal file
95
en/releases/5.0R/schedule.sgml
Normal file
|
@ -0,0 +1,95 @@
|
|||
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" [
|
||||
<!ENTITY base CDATA "../..">
|
||||
<!ENTITY email 'freebsd-qa'>
|
||||
<!ENTITY date "$FreeBSD$">
|
||||
<!ENTITY title "FreeBSD 5.0 Release Process">
|
||||
<!ENTITY % includes SYSTEM "../../includes.sgml"> %includes;
|
||||
]>
|
||||
|
||||
<html>
|
||||
&header;
|
||||
|
||||
<h1>Introduction</h1>
|
||||
|
||||
<p>This is a specific schedule for the release of FreeBSD 5.0. For
|
||||
more general information about the release engineering process,
|
||||
please see the <a href="&base;/releng/index.html">Release
|
||||
Engineering</a> section of the web site.</p>
|
||||
|
||||
<p>General discussions about the release engineering process or
|
||||
quality assurance issues should be sent to the public <a
|
||||
href="mailto:freebsd-qa@FreeBSD.org">freebsd-qa</a> mailing list.
|
||||
<a
|
||||
href="&base;/doc/en_US.ISO8859-1/books/faq/misc.html#DEFINE-MFC">MFC</a>
|
||||
requests should be sent to <a
|
||||
href="mailto:re@FreeBSD.org">re@FreeBSD.org</a>.</p>
|
||||
|
||||
<h1>Schedule</h1>
|
||||
|
||||
<table border=1>
|
||||
<tr><td>Action</td><td>Expected</td><td>Actual</td><td>Description</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td><tt>RELENG_5_0_DP1</tt> branch</td><td>15 Mar
|
||||
2002</td><td>--</td><td>Branch created, commits require re@
|
||||
approval. The branch will be used to allow us time to QA the
|
||||
release, synchronize the release notes with the translation
|
||||
teams, synchronize sysinstall and the package set, etc without
|
||||
disrupting the normal flow of development on <tt>-CURRENT</tt>.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>FreeBSD 5.0 Developer Preview 1</td><td>1 Apr
|
||||
2002</td><td>--</td><td>A full release for the i386, Alpha, and
|
||||
sparc64 architectures. The i386 and Alpha releases at least
|
||||
will contain a full package set and a disc1 ISO image will be
|
||||
made available.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><tt>RELENG_5_0_DP2</tt> branch</td><td>10 Jun
|
||||
2002</td><td>--</td><td>Branch created, commits require re@
|
||||
approval.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>5.0 Feature List finalized</td><td>16 Jun
|
||||
2002</td><td>--</td><td>At the FreeBSD Developer Summit at
|
||||
Usenix, we will need to finalize the list of features that will
|
||||
be included with FreeBSD 5.0. Some features will just have to
|
||||
wait for 5.1 to give us ample time to QA the many features that
|
||||
are ready.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>FreeBSD 5.0 Developer Preview 2</td><td>25 Jun
|
||||
2002</td><td>--</td><td>A full release for the i386, Alpha, and
|
||||
sparc64 architectures. The i386 and Alpha releases at least
|
||||
will contain a full package set and a disc1 ISO image will be
|
||||
made available.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><tt>-CURRENT</tt> feature freeze</td><td>1 Oct
|
||||
2002</td><td>--</td><td>After this date, significant new features
|
||||
should be discussed with <tt>re@</tt> before consideration for
|
||||
5.0-RELEASE.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td><tt>-CURRENT</tt> code freeze</td><td>20 Oct
|
||||
2002</td><td>--</td><td>The code freeze for 5.0. Commits to
|
||||
HEAD require re@ approval.</td>
|
||||
</tr>
|
||||
|
||||
<tr>
|
||||
<td>FreeBSD 5.0 Released</td><td>20 Nov
|
||||
2002</td><td>--</td><td>FreeBSD 5.0 is announced.</td>
|
||||
</tr>
|
||||
|
||||
</table>
|
||||
|
||||
&footer;
|
||||
|
||||
</body>
|
||||
</html>
|
|
@ -1,4 +1,4 @@
|
|||
# $FreeBSD: www/en/releases/Makefile,v 1.30 2002/01/12 13:29:24 murray Exp $
|
||||
# $FreeBSD: www/en/releases/Makefile,v 1.31 2002/02/01 06:15:22 bmah Exp $
|
||||
|
||||
.if exists(../Makefile.conf)
|
||||
.include "../Makefile.conf"
|
||||
|
@ -12,6 +12,7 @@ DOCS?= index.sgml snapshots.sgml
|
|||
SUBDIR= 1.1 1.1.5 2.0 2.0.5R 2.1R 2.1.5R 2.1.6R 2.1.7R 2.2R
|
||||
SUBDIR+= 2.2.1R 2.2.2R 2.2.5R 2.2.6R 2.2.7R 2.2.8R 3.0R 3.1R 3.2R
|
||||
SUBDIR+= 3.3R 3.4R 3.5R 4.0R 4.1R 4.1.1R 4.2R 4.3R 4.4R 4.5R 4.6R
|
||||
SUBDIR+= 5.0R
|
||||
|
||||
.if defined $(NEW_BUILD)
|
||||
SUBDIR=
|
||||
|
|
Loading…
Reference in a new issue