Changes between Version 78 and Version 79 of DevWikiComitGuidelines
- Timestamp:
- 02/19/22 13:49:14 (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
TabularUnified DevWikiComitGuidelines
v78 v79 1 = RFC-5: PostGIS Co mmitter Guidelines =1 = RFC-5: PostGIS Core Contributor Guidelines = 2 2 3 3 ||Version:|| 2.0 4 4 ||Author:|| Regina Obe <lr at pcorp dot us>|| 5 ||Last Edited:|| 20 19/10/27||5 ||Last Edited:|| 2022/02/19|| 6 6 ||Status:|| Draft|| 7 7 … … 10 10 11 11 == Purpose == 12 To formalize source tree access, and specify some guidelines for source committers and patch submitters.12 To formalize source tree access, and specify some guidelines for primary source committers and patch submitters. 13 13 14 == Election to Co mmit Access==15 Permission for commit source tree access shall be provided to new developers only if accepted by the PostGIS Project Steering Committee. A proposal should be written to the PSC for new committers and voted on normally. It is not necessary to write an RFC document for these votes, a proposal to postgis-dev is sufficient.14 == Election to Core Contributors Group == 15 Permission for write source tree access shall be provided to contributors only if accepted by the PostGIS Project Steering Committee. A proposal should be written to the PSC for new contributors and voted on normally. It is not necessary to write an RFC document for these votes, a proposal to postgis-dev is sufficient. After approval, the approved contributor shall be given write access to the PostGIS source repo and also added to the documentation under the section [https://postgis.net/docs/manual-dev/postgis_introduction.html#credits_core_present Core Contributors Present] 16 16 17 Removal of commitaccess should be handled by the same process.17 Removal of write access should be handled by the same process. 18 18 19 The new committer should have demonstrated commitment to PostGIS and knowledge of the PostGIS source code and processes to the committee's satisfaction, usually by reporting bugs, submitting patches, and/or actively participating in the PostGIS mailing list(s).19 The contributor should have demonstrated commitment to PostGIS and knowledge of the PostGIS source code and processes to the committee's satisfaction, usually by reporting bugs, submitting patches, and/or actively participating in the PostGIS mailing list(s). 20 20 21 The new committer should also be prepared to support any new feature or changes that he/she commits to the PostGIS source tree in future releases, or to find someone to which to delegate responsibility for them if he/she stops being available to support the portions of code that he/sheis responsible for.21 The contributor should also be prepared to support any new feature or changes in future releases that the contributor commits to the PostGIS source tree, or to find someone to which to delegate responsibility to should the contributor stop being available to support the portions of code the contributor is responsible for. 22 22 23 All co mmitters should also be a member of the postgis-dev mailing list so they can stay informed on policies, technical developments and release preparation.23 All core contributors should also be a member of the postgis-dev mailing list so they can stay informed on policies, technical developments and release preparation. 24 24 25 New co mmitters are responsible for having read, and understood this document.25 New core contributors are responsible for having read, and understood this document. 26 26 27 27 == Code and Documentation Conventions == … … 34 34 == Repo Administrator == 35 35 36 One member of the Project Steering Committee will be designated as the Repo Administrator. That person will be responsible for giving commit access to folks, updating the CREDITS and authors.git file, and other repo related management.36 One member of the Project Steering Committee will be designated as the Repo Administrator. That person will be responsible for giving write access to folks, updating the CREDITS, and other repo related management. 37 37 38 38 Paul Ramsey is currently designated as the Repo Administrator. 39 40 **TODO: Is this still true? It is extremely critical that the new committer's user name be added to authors.svn and authors.git before their first commit otherwise the git replication will break.**41 39 42 40 == Commit and Bug, Feature Tracking Practices == … … 46 44 1. Use meaningful descriptions for commit log entries. 47 45 2. Add a bug reference like "#1232" at the beginning or end of commit log entries when committing changes related to a ticket in Trac. The '#' character enables Trac to create a hyperlink from the changeset to the mentioned ticket. 48 For small changes where there is no ticket and there is a pull request or patch, reference to these e.g. github/gitlab pull request link is sufficient46 For small changes where there is no ticket and there is a pull request or patch, reference to these e.g. github/gitlab/gitea pull request link is sufficient 49 47 3. If you are given a patch or pull request from a community person, note their name in both the commit log entry and NEWS file. 50 48 4. To close a ticket or pull request you can add to your commit log Closes #[xyz] where xyx is the trac ticket, or Closes [link to pull request]. Our trac system has a hook to automatically close these on trac and our git mirrors. 51 5. ** TODO: Not sure this is proper way to reference git** - Similarly adding References #[xyz] will automatically put the commit log notes on the trac ticket. If you forget to add the notes to the commit log, edit the trac ticket and put the notes in - After committing changes related to a ticket in Trac, write the tree and revision in which it was fixed in the ticket description. Such as "Fixed in master ..git hash and in branches/3.0 <githas>". The 'r' character enables Trac to create a hyperlink from the ticket to the changeset.49 5. Similarly adding References #[xyz] or References [link to pull request] will automatically put the commit log notes on the trac ticket/git pull request. If you forget to add the notes to the commit log, edit the trac ticket/git pull request and put the notes in - After committing changes related to a ticket in Trac, write the tree and revision in which it was fixed in the ticket description. Such as "Fixed in master ..git hash and in branches/3.0 <githas>". The 'r' character enables Trac to create a hyperlink from the ticket to the changeset. 52 50 6. When new enhancements are added or breaking changes are made and completed the related ticket should be added to the NEWS file. 53 7. Changes should not be committed in stable branches without a corresponding bug id in NEWS. Any change worth pushing into the stable version is worth a bug entry. 51 7. Changes should not be committed in stable branches without a corresponding bug id in NEWS. Any change worth pushing into the stable version is worth a bug entry. Bug fixes pushed to stable branches do not need to be noted in the development branch (except during alpha/beta/rc releases) because it is assumed the development branch includes all bug fixes of prior stable versions. 54 52 8. Never commit new features to a stable branch without permission of the PSC or release manager. Normally only fixes should go into stable branches. 55 9. New features go in the ma in development master.53 9. New features go in the master branch. 56 54 10. Only bug fixes should be committed to the code during pre-release code freeze, without permission from the PSC or release manager. 57 11. Significant changes to the main development version should be discussed on the postgis-dev list before you make them, and larger changes will require an RFC approved by the PSC. 58 12. Do not create new branches. Feature branches should be created in your own personal repo of choice. Release managers are assumed to have permission to create a branch. 59 13. spike branch (those in the spike/username area are to be used for experimentation or for major code refactoring that will destabilize the master After such experimentation is deemed stable, this can then be merged into the master after approval from PSC members. 60 14. When committing new features or significant changes to existing source code, the committer should take reasonable measures to insure that the source code continues to build and work on the most commonly supported platforms (currently Linux, Mac, and Windows), either by testing on those platforms directly, running Buildbot tests, or by getting help from other developers working on those platforms. If new files or library dependencies are added, then the configure.in, Makefile.in and related documentations should be kept up to date. 55 11. Significant changes to the development version, in particular breaking backward-compatibility, should be discussed on the postgis-dev list before you make them, and larger changes will require an RFC approved by the PSC. 56 12. As a general rule, do not create new branches. Feature branches should be created in your own personal repo of choice. Release managers are assumed to have permission to create a branch. 57 13. When committing new features or significant changes to existing source code, the committer should take reasonable measures to insure that the source code continues to build and work on the most commonly supported platforms (currently Linux, FreeBSD, Mac, and Windows), either by testing on those platforms directly, running CI tests, or by getting help from other developers working on those platforms. If new files or library dependencies are added, then the configure.in, Makefile.in and related documentations should be kept up to date. 61 58 15. After each commit, verify that all the build bots are happy on this page - https://trac.osgeo.org/postgis/ and if their unhappiness is caused by your commit, fix the issue before making any other changes. 62 59 63 60 == Committer Tracking == 64 61 65 A list of all project committers will be kept in the main postgis directory in a file called (CREDITS) listing for each committer. This will be the responsibility of the PSC to ensure:62 A list of all core contributors is listed in the manual under the section "Core Contributors Present" in file doc/introduction.xml. This will be the responsibility of the PSC to keep up to date: 66 63 67 * Userid: the id that will appear in the logs for this person.68 64 * Full name: the users actual name. 69 * Email address: A current email address at which the committer can be reached. It may be altered in normal ways to make it harder to auto-harvest.70 65 * A brief indication of areas of responsibility. 71 * The name of key developers and their area of responsibility should also be prominently shown in latest release of manual in the doc/introduction.xml file.72 This will be the responsibility of the documentation lead (currently Regina Obe) to ensure.66 67 This will be the responsibility of the documentation lead (currently Regina Obe) to manage. All stable non-EOL'd documents should list this information for core contributors. 73 68 74 69 == Relationship with other Projects == … … 79 74 80 75 * postgresql ( https://www.postgresql.org) 81 * geos ( http ://geos.osgeo.org)76 * geos ( https://libgeos.org) 82 77 * proj ( https://proj.org) 83 78 * gdal ( https://gdal.org) 84 79 85 GIS FOSS suites that need testing beforePostGIS major release:80 GIS FOSS suites that may be impacted by PostGIS major release: 86 81 * mapserver (https://mapserver.org) 87 82 * geoserver (https://geoserver.org) … … 94 89 == Legal == 95 90 96 Co mmitters are the front line gatekeepers to keep the code base clear of improperly contributed code. It is important to the PostGIS users, developers and the OSGeo foundation to avoid contributing any code to the project without it being clearly licensed under the project license.91 Core contributors are the front line gatekeepers to keep the code base clear of improperly contributed code. It is important to the PostGIS users, developers and the OSGeo foundation to avoid contributing any code to the project without it being clearly licensed under the project license. 97 92 98 Generally speaking the key issues are that those providing code to be included in the repository understand that the code will be released under the original GPL license, and that the person providing the code has the right to contribute the code. For the committer themselves understanding about the license is hopefully clear. For other contributors, the committer should verify the understandingunless the committer is very comfortable that the contributor understands the license (for instance frequent contributors).93 Generally speaking the key issues are that those providing code to be included in the repository understand that the code will be released under the original GPL license, and that the person providing the code has the right to contribute the code. The core contributor that accepts and committs the code should verify the understanding of the contributor unless the committer is very comfortable that the contributor understands the license (for instance frequent contributors). 99 94 100 95 If the contribution was developed on behalf of an employer (on work time, as part of a work project, etc) then it is important that an appropriate representative of the employer understand that the code will be contributed under the GPL license. The arrangement should be cleared with an authorized supervisor/manager, etc. … … 104 99 All unusual situations need to be discussed and/or documented. 105 100 106 Co mmitters should adhere to the following guidelines, and may be personally legally liable for improperly contributing code to the source repository:101 Core contributors should adhere to the following guidelines, and may be personally legally liable for improperly contributing code to the source repository: 107 102 108 103 * Make sure the contributor (and possibly employer) is aware of the contribution terms. 109 104 * Code coming from a source other than the contributor (such as adapted from another project) should be clearly marked as to the original source, copyright holders, license terms and so forth. This information can be in the file headers, but should also be added to the project licensing file if not exactly matching normal project licensing. 110 105 * Existing copyright headers and license text should never be stripped from a file. If a copyright holder wishes to give up copyright they must do so in writing to the OSGeo foundation before copyright messages are removed. If license terms are changed it has to be by agreement (written in email is ok) of the copyright holders. 111 * Code with licenses requiring credit, or disclosure to users should be added to /postgis/trunk/LICENSE.TXT.106 * Code with licenses requiring credit, or disclosure to users should be added to LICENSE.TXT. 112 107 * When substantial contributions are added to a file (such as substantial patches) the author/contributor should be added to the list of copyright holders for the file. 113 108 * If there is uncertainty about whether a change is proper to contribute to the code base, please seek more information from the project steering committee, or the foundation legal counsel. 114 109 * New contributors and company contributors should be added to the credits in doc/introduction.xml of the latest release of the PostGIS manual. 115 * It is the responsibility of the document lead to ensure when new enhancements are added or breaking changes are made, these are noted in the trunk/NEWS orrelevant branch/NEWS as soon as conveniently possible. The note should include the trac # (unless a major feature with many tickets) and contributors to the feature/change.110 * It is the responsibility of the document lead to ensure when new enhancements are added or breaking changes are made, these are noted in the relevant branch/NEWS as soon as conveniently possible. The note should include the trac # (unless a major feature with many tickets) and contributors to the feature/change. 116 111 117 112 == Bootstrapping ==