README_maintainer 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  1. # -*- mode:org -*-
  2. #+TITLE: Org maintainer tasks
  3. #+STARTUP: noindent
  4. #+OPTIONS: ^:nil
  5. This document describes the tasks the Org-mode maintainer has to do
  6. and how they are performed.
  7. * Git workflow
  8. The git repository has two branches:
  9. - master :: for current development.
  10. - maint :: for bug fixes against latest major or minor release.
  11. Bug fixes always go on =maint= then are merged on =master=.
  12. New features always go on =master=.
  13. * Releasing
  14. ** Major release
  15. The release number for main releases look like this: =7.13=
  16. Main releases are made whenever Org is in a state where the feature
  17. set is consistent and we feel that the features that are implemented
  18. is something we want to support in the future.
  19. A major release turns the current state of the master branch into a
  20. release.
  21. When doing a /major release/, make sure all changes from the maint
  22. branch are merged into the the master branch, then merge the master
  23. branch back into maint to synchronize the two.
  24. ** Minor release
  25. The release number for minor releases look like this: =7.13.1=
  26. Minor releases are small amends to main releases. Usually they fix
  27. critical bugs discovered in a main release. Minor bugs are usually
  28. not fixed -- they will be adressed in the next main release.
  29. Only the fix to the bug is bundled into a release, without the main
  30. development work going on in the master branch. Since the bug fix
  31. will also be needed in the master branch, usually the fix is made in
  32. maint then merged in master.
  33. ** Tagging the release
  34. When doing a major and a minor release, after all necessary merging is
  35. done, tag the _maint_ branch for the release with:
  36. git tag -a release_7.9.1 -m "Adding release tag"
  37. and push tags with
  38. git push --tags
  39. We also encourage you to sign release tags like this:
  40. git tag -s release_7.9.1 -m "Adding release tag"
  41. ** Uploading the release files from the orgmode.org server
  42. Log on the orgmode.org server as the emacs user and cd to
  43. ~/git/org-mode
  44. From there do
  45. make release
  46. make upload
  47. to create the .tar.gz and .zip files, the documentation, and to
  48. upload everything at the right place.
  49. * Available Org's builds on the server
  50. There are two cron tasks on the server: one that builds the ELPA
  51. packages and one that builds org-latest.tar.gz and org-latest.zip.
  52. ELPA packages are built from the *maint* branch. One ELPA package
  53. contains Org's core, another one called "org-plus-contrib" contains
  54. Org and contributed libraries.
  55. org-latest* snapshots are built from the *master* branch.
  56. * Synchronization Org and upstream Emacs
  57. Below it is described how Org is kept in sync with the upstream Emacs.
  58. ** Backporting changes from upstream Emacs
  59. Sometimes Emacs maintainers make changes to Org files. The process of
  60. propagating the changes back to the Org repository is called
  61. /backporting/ for historical reasons.
  62. To find changes that need to be backported from the Emacs repository,
  63. the following =git= command, courtesy of [[http://permalink.gmane.org/gmane.emacs.devel/215861][Kyle Meyer]], can be used:
  64. #+begin_src shell
  65. git log $rev..origin/emacs-25 -- lisp/org doc/misc/org.texi \
  66. etc/refcards/orgcard.tex etc/ORG-NEWS etc/org \
  67. etc/schema/od-manifest-schema-v1.2-os.rnc \
  68. etc/schema/od-schema-v1.2-os.rnc
  69. #+end_src
  70. here, =$rev= is the last commit from the =emacs-25= branch that was
  71. backported. The should also be done for the =master= branch.
  72. There is also a [[http://git.savannah.gnu.org/cgit/emacs.git/atom/lisp/org/][feed]] to keep track of new changes in the =lisp/org=
  73. folder in the Emacs repository.
  74. ** Updating the Org version in upstream Emacs
  75. New releases of Org should be added to the [[https://git.savannah.gnu.org/cgit/emacs.git][Emacs repository]].
  76. Typically, Org can be synchronized by copying over files from the
  77. =emacs-sync= branch of the Org repository to the =master= branch of Emacs
  78. repository. The =emacs-sync= branch has a few extra changes compared with
  79. the =maint= branch. If the Emacs maintainers are planning a new release
  80. of Emacs soon, it is possible that another branch should be used.
  81. If the new release of Org contains many changes, it may be useful to
  82. use a separate branch before merging, e.g. =scratch/org-mode-merge=.
  83. This branch can then be merged with the =master= branch, when everything
  84. has been tested.
  85. Please see [[http://git.savannah.gnu.org/cgit/emacs.git/tree/CONTRIBUTE][CONTRIBUTE]] in the Emacs repository for guidelines on
  86. contributing to the Emacs repository.
  87. *** Where to files go
  88. The following list shows where files in Org repository are copied to in
  89. the Emacs repository, folder by folder.
  90. **** =org-mode/doc=
  91. - =org.texi= :: Copy to =emacs/doc/misc=. It may be necessary to replace,
  92. ~@include org-version.inc~ with ~@set VERSION 9.0.9~ or similar.
  93. - =orgcard.tex= :: Copy to =emacs/etc/refcards=. Make sure that
  94. ~\def\orgversionnumber~ and ~\def\versionyear~ are up to date.
  95. **** =org-mode/etc=
  96. - =styles/*= :: Copy to =emacs/etc/org=.
  97. - =schema/*.rnc= :: Copy to =emacs/etc/schema=.
  98. - =schema/schemas.xml= :: Any new entries in this file should be added
  99. to =emacs/etc/schema/schemas.xml=.
  100. - =ORG-NEWS= :: Copy to =emacs/etc=
  101. **** =org-mode/lisp=
  102. - Copy =*.el= files to =emacs/lisp/org=, except =org-loaddefs.el=!
  103. - You should create =org-version.el= in =emacs/lisp/org=. The file is
  104. created when you =make= Org.
  105. **** TODO =org-mode/testing=
  106. * Updating the list of hooks/commands/options on Worg
  107. Load the =mk/eldo.el= file then =M-x eldo-make-doc RET=.
  108. This will produce an org file with the documentation.
  109. Import this file into =worg/doc.org=, leaving the header untouched
  110. (except for the release number).
  111. Then commit and push the change on the =worg.git= repository.
  112. * Copyright assignments
  113. The maintainer needs to keep track of copyright assignments. Even
  114. better, find a volunteer to do this.
  115. The assignment form is included in the repository as a file that you
  116. can send to contributors: =request-assign-future.txt=
  117. The list of all contributors from who we have the papers is kept on
  118. Worg at https://orgmode.org/worg/org-contribute.html, so that
  119. committers can check if a patch can go into the core.
  120. The assignment process does not allways go smoothly, and it has
  121. happened several times that it gets stuck or forgotten at the FSF.
  122. The contact at the FSF for this is: mailto:copyright-clerk@fsf.org
  123. Emails from the paper submitter have been ignored in the past, but an
  124. email from me (Carsten) as the maintainer of Org mode has usually
  125. fixed such cases within a few days.