README_maintainer 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  1. # -*- mode:org -*-
  2. #+title: Maintainer tasks
  3. #+startup: noindent
  4. This document describes the tasks the Org-mode maintainer has to do
  5. and how they are performed.
  6. * Working with patchwork
  7. John Wiegley is running a patchwork server that looks at the
  8. emacs-orgmode mailing list and extracts patches. The maintainer and
  9. his helpers should work through such patches, give feedback on them
  10. and apply the ones which are good and done.
  11. I have found that the best workflow for this is using the pw script by
  12. Nate Case, with the modifications for Org-mode made by John Wiegley
  13. and Carsten Dominik. The correct version of this script that should
  14. be used with Org mode is distributed in the UTILITIES directory of the
  15. Org mode distribution. Here is the basic workflow for this.
  16. ** Access to the patchwork server
  17. If you want to work on patchwork patches, you need write access at the
  18. patchwork server. You need to contact John Wiegley to get this
  19. access.
  20. There is a web interface to look at the patches and to change the
  21. status of patches. This interface is self-explanatory. There is also
  22. a command line script which can be very convenient to use.
  23. ** Testing patches
  24. To start testing a patch, first assign it to yourself
  25. : pw update -s "Under Review" -d DELEGATE-NAME NNN
  26. where =NNN= is a patch number and =DELEGATE-NAME= is your user name on
  27. the patchwork server.
  28. The get the patch into a branch:
  29. : pw branch NNN
  30. This will create a local topic branch in your git repository with the
  31. name =t/patchNNN=. You will also be switched to the branch so that
  32. you can immediately start testing it. Quite often small amends need
  33. to be made, or documentation has to be added. Also, many contributors
  34. do not yet provide the proper ChangeLog-like entries in the commit
  35. message for the patch. As a maintainer, you have two options here.
  36. Either ask the contributor to make the changes and resubmit the patch,
  37. or fix it yourself. In principle, asking to contributor to change the
  38. patch until it is complete is the best route, because it will educate
  39. the contributor and minimize the work for the maintainer. However,
  40. sometimes it can be less hassle to fix things directly and commit the
  41. changes to the same branch =t/patchNNN=.
  42. If you ask the contributor to make the changes, the patch should be
  43. marked on the patchwork server as "changes requested".
  44. : pw update -s "Changed Requested" -m "What to change" NNN
  45. This will send an email to the contributor and the mailing list with a
  46. request for changes. The =-m= message should not be more than one
  47. sentence and describe the requested changes. If you need to explain
  48. in more detail, write a separate email to the contributor.
  49. When a new version of the patch arrives, you mark the old one as
  50. superseded
  51. : pw update -s "Superseded" NNN
  52. and start working at the new one.
  53. ** Merging a final patch
  54. Once the patch has been iterated and is final (including the
  55. ChangeLog-like entries in the commit message), it should be merged.
  56. The assumption here is that the final version of the patch is given by
  57. the HEAD state in the branch =t/patchNNN=. To merge, do this:
  58. : pw merge -m "maintainer comment" NNN
  59. This will merge the patch into master, switch back to master and send
  60. an email to both contributor and mailing list stating that this change
  61. has been accepted, along with the comment given in the =-m= message.
  62. At some point you might then want to remove the topic branch
  63. : git -d t/patchNNN
  64. * Releases
  65. ** Main releases
  66. The release number for main releases look like this: =7.13=
  67. Main releases are made whenever Org is in a state where the feature
  68. set is consistent and we feel that the features that are implemented
  69. is something we want to support in the future.
  70. A major release turns the current state of the master branch into a
  71. release. The release process is a single make command:
  72. : make release TAG=7.13
  73. Before issuing this command, you should make sure that everything
  74. during the process will work right, you can do so my running
  75. : make testrelease TAG=7.13
  76. When this fails, make sure to clean up. =git reset --hard= if
  77. necessary, and check if there are unwanted files, directories, or
  78. branches left over from the testing.
  79. ** Minor releases
  80. The release number for minor releases look like this: =7.13.01=
  81. Minor releases are small amends to main releases. Usually they fix
  82. bugs discovered in a main release. Only the fix to the bug is
  83. bundled into a release, without the main development work going on in
  84. the master branch. Since the bug fix will also be needed in the
  85. master branch, usually the fix is made in master and then
  86. cherry-picked into maint. When this is done, a release is made from
  87. maint with this command:
  88. : make fixrelease TAG=7.13.01
  89. ** Between releases
  90. While working on master between releases, I use something like
  91. 7.02trans as the version string. To set this version string in all
  92. relevant files, use
  93. : UTILITIES/set_version 7.02trans
  94. and commit the result. Note that the above command does not change
  95. the version string in the file from which Org's homepage is
  96. generated. To change that as well, you would use a =--all= flag. TO
  97. change only this file, use =--only=.
  98. * Synchonization with Emacs
  99. This is still a significant headache. Some hand work is needed here.
  100. Emacs uses bzr, and while I see all the advantages this would have, I
  101. cannot bring myself to switch away from git for my day-to-day work.
  102. So the way I have been doing things with Emacs is this:
  103. 1. I do not update the version in Emacs too often. Just once every
  104. few month - this is frequently enough for the Emacs release cycle.
  105. 2. I watch the Emacs diffs for changes made by the maintainers of
  106. Emacs in the org-mode files in Emacs. Any changes that come up
  107. there, I merge into the development version of Org-mode.
  108. Occasionally I do not do this, if I do not agree with a change.
  109. The changes go into Org /without/ a ChangeLog-like entry in the
  110. commit message. The reason for this is that we will later generate
  111. a ChangeLog file from our commit messages, and I do not want double
  112. ChangeLog entries in the Emacs ChangeLog file.
  113. 3. When I have made a release (usually I wait for the minor releases
  114. to stabilize), I *copy* org files into the Emacs repository. Yes,
  115. I do not merge, I copy. This has been the source of some problems
  116. in the past - but I have not had the patience to work out a better
  117. mechanism, and I really dislike the idea that the version in Emacs
  118. starts diverging from my own.
  119. Careful: Copy /org.texi/ and /orgcard.tex/ into the right places,
  120. and also copy the lisp files with *two exceptions*: Do *not* copy
  121. /org-colview-xemacs.el/ and /org-install.el/. The former does not
  122. belong in Emacs. And the latter would actually be harmful because
  123. Emacs generates its own autoloads. The Emacs distribution contains
  124. an empty org-install.el, so that users can have =(require
  125. 'org-install)= in .emacs with no ill effects. So if you were to
  126. copy org-install.el, you would overwrite that empty placeholder
  127. file.
  128. 4. Generate the ChangeLog entries
  129. For this, I do in the org-mode git repository
  130. : UTILITIES/make_emacs_changelog release_7.02.05..release_7.03.02
  131. This will spit out ChangeLog entries (for the given commit range)
  132. that need to go into the ChangeLog files in Emacs. Org-mode
  133. contributes to 3 different ChangeLog files in Emacs:
  134. : lisp/org/ChangeLog (for lisp changes)
  135. : doc/misc/ChangeLog (for org.texi changes)
  136. : etc/ChangeLog (for refcard changes)
  137. When you run the =make_emacs_changelog= program, you will be
  138. prompted for a date in ISO format YYYY-MM-DD, this date will be
  139. used in the ChangeLog entries - Emacs wants these dates to be the
  140. time when the change has been installed into Emacs, not the time
  141. when we made the change in our own repository. You will also be
  142. prompted for the kind of ChangeLog you want to make, possible
  143. answers are =lisp=, =texi=, and =card=. The program will then
  144. select the correct entries for the specified ChangeLog file. If
  145. you don't like being prompted, you can give the date and type as
  146. second and third command line arguments to =make_emacs_changelog=.
  147. These entries need to be added to the ChangeLog files in Emacs.
  148. You should, in the ChangeLog file, select the inserted region of
  149. new entries and do =M-x fill-region=, so that the entries are
  150. formatted correctly. I then do look through the entries quickly to
  151. make sure they are formatted properly, that the email addresses
  152. look right etc.
  153. 5. Commit the changes into the bzr repository and you are done. Emacs
  154. developers often look throught the commit and make minor changes -
  155. these need to be merged back into our own repo.