internals:review_comments

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
internals:review_comments [2013/01/09 11:17] – notes on C99 johannesinternals:review_comments [2017/09/22 13:28] (current) – external edit 127.0.0.1
Line 1: Line 1:
 +===== Common comments from reviewing PECL proposals =====
 +
 While reviewing PECL proposals there are some common issues which can be observed. This page collects some of those to provide extended information and saving reviewers from explaining those multiple times. This is different from other sections on this wiki a it focusses on review perspective. While reviewing PECL proposals there are some common issues which can be observed. This page collects some of those to provide extended information and saving reviewers from explaining those multiple times. This is different from other sections on this wiki a it focusses on review perspective.
  
Line 135: Line 137:
     NULL,     NULL,
     PHP_MINFO(myext),     PHP_MINFO(myext),
-    MYEXT_VERSION,+    PHP_MYEXT_VERSION,
     STANDARD_MODULE_PROPERTIES     STANDARD_MODULE_PROPERTIES
   };   };
Line 142: Line 144:
  
 Also see the previous item. Also see the previous item.
 +
 +====== PECL site conformity ======
 +
 +A few conformity checks are done on the tarball upload, the PECL site will check for
 +
 +. presence of LICENSE or COPYING in the package.xml, add it to the root dir with the line like this
 +  
 +  <file name="LICENSE" role="doc" />
 +
 +. for version string compliance in package.xml and the extension source code. The following should be defined in one of the extension header files
 +
 +  #define PHP_EXTNAME_VERSION "1.2.3"
 +
 +This macros has to be used within your extname_module_entry to indicate the extension version. The version string in both package.xml and the defined macros have to match. The work of adding that macros could be already done when using ext_skel on PHP versions as of 5.4.21 or 5.5.5.
internals/review_comments.txt · Last modified: 2017/09/22 13:28 by 127.0.0.1