summaryrefslogtreecommitdiff
path: root/README.RELEASE_PROCESS
diff options
context:
space:
mode:
authorLukas Smith <lsmith@php.net>2008-08-31 10:35:06 +0000
committerLukas Smith <lsmith@php.net>2008-08-31 10:35:06 +0000
commit043ae9ea985e988e72dde4e22829166928ce13b9 (patch)
treee964e9431ddfcb47ada225cd4c73dfa76c879a1c /README.RELEASE_PROCESS
parentdc2f8f6e3cc17e87150fb4accae5d99f0200d0d2 (diff)
downloadphp-git-043ae9ea985e988e72dde4e22829166928ce13b9.tar.gz
MFH
Diffstat (limited to 'README.RELEASE_PROCESS')
-rw-r--r--README.RELEASE_PROCESS17
1 files changed, 16 insertions, 1 deletions
diff --git a/README.RELEASE_PROCESS b/README.RELEASE_PROCESS
index 12c05ad7a1..27fd6f597d 100644
--- a/README.RELEASE_PROCESS
+++ b/README.RELEASE_PROCESS
@@ -21,7 +21,22 @@ php/QA/bug websites try to have someone from the webmaster team (Bjori) on hand.
5. Verify the tags to be extra sure everything was tagged properly.
6. Moving extensions from/to PECL requires root level access to the CVS server.
-Do not use cvs rm, because this will prevent moving the CVS history.
+Contact systems@php.net to get this taken care of.
+
+Moving extensions from php-src to PECL
+- Filesystem: cp -r php-src/ext/foo pecl/foo
+- cvs rm php-src/ext/foo
+
+If the extension is still usable or not dead, in cooperation with the extension
+maintainers if any:
+- create the pecl.php.net/foo package and its content, license, maintainer
+- create the package.xml, commit
+- release the package
+
+Moving extensions from PECL to php-src
+- Filesystem: cp -r pecl/foo php-src/ext/foo
+OR depending on the wishes from the PECL extension maintainer.
+- Filesystem: ln -s pecl/foo php-src/ext/foo
Rolling a non stable release (alpha/beta/RC)
--------------------------------------------