contributing.texi 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506
  1. @node Contributing
  2. @chapter Contributing
  3. This project is a cooperative effort, and we need your help to make it
  4. grow! Please get in touch with us on @email{guix-devel@@gnu.org} and
  5. @code{#guix} on the Freenode IRC network. We welcome ideas, bug
  6. reports, patches, and anything that may be helpful to the project. We
  7. particularly welcome help on packaging (@pxref{Packaging Guidelines}).
  8. @cindex code of conduct, of contributors
  9. @cindex contributor covenant
  10. We want to provide a warm, friendly, and harassment-free environment, so
  11. that anyone can contribute to the best of their abilities. To this end
  12. our project uses a ``Contributor Covenant'', which was adapted from
  13. @url{http://contributor-covenant.org/}. You can find a local version in
  14. the @file{CODE-OF-CONDUCT} file in the source tree.
  15. Contributors are not required to use their legal name in patches and
  16. on-line communication; they can use any name or pseudonym of their
  17. choice.
  18. @menu
  19. * Building from Git:: The latest and greatest.
  20. * Running Guix Before It Is Installed:: Hacker tricks.
  21. * The Perfect Setup:: The right tools.
  22. * Coding Style:: Hygiene of the contributor.
  23. * Submitting Patches:: Share your work.
  24. @end menu
  25. @node Building from Git
  26. @section Building from Git
  27. If you want to hack Guix itself, it is recommended to use the latest
  28. version from the Git repository:
  29. @example
  30. git clone https://git.savannah.gnu.org/git/guix.git
  31. @end example
  32. When building Guix from a checkout,
  33. the following packages are required in addition to those mentioned in
  34. the installation instructions (@pxref{Requirements}).
  35. @itemize
  36. @item @url{http://gnu.org/software/autoconf/, GNU Autoconf};
  37. @item @url{http://gnu.org/software/automake/, GNU Automake};
  38. @item @url{http://gnu.org/software/gettext/, GNU Gettext};
  39. @item @url{http://gnu.org/software/texinfo/, GNU Texinfo};
  40. @item @url{http://www.graphviz.org/, Graphviz};
  41. @item @url{http://www.gnu.org/software/help2man/, GNU Help2man (optional)}.
  42. @end itemize
  43. The easiest way to set up a development environment for Guix is, of
  44. course, by using Guix! The following command starts a new shell where
  45. all the dependencies and appropriate environment variables are set up to
  46. hack on Guix:
  47. @example
  48. guix environment guix
  49. @end example
  50. @xref{Invoking guix environment}, for more information on that command.
  51. Extra dependencies can be added with @option{--ad-hoc}:
  52. @example
  53. guix environment guix --ad-hoc help2man git strace
  54. @end example
  55. Run @command{./bootstrap} to generate the build system infrastructure
  56. using Autoconf and Automake. If you get an error like this one:
  57. @example
  58. configure.ac:46: error: possibly undefined macro: PKG_CHECK_MODULES
  59. @end example
  60. @noindent
  61. it probably means that Autoconf couldn’t find @file{pkg.m4}, which is
  62. provided by pkg-config. Make sure that @file{pkg.m4} is available. The
  63. same holds for the @file{guile.m4} set of macros provided by Guile. For
  64. instance, if you installed Automake in @file{/usr/local}, it wouldn’t
  65. look for @file{.m4} files in @file{/usr/share}. In that case, you have
  66. to invoke the following command:
  67. @example
  68. export ACLOCAL_PATH=/usr/share/aclocal
  69. @end example
  70. @xref{Macro Search Path,,, automake, The GNU Automake Manual}, for
  71. more information.
  72. Then, run @command{./configure} as usual. Make sure to pass
  73. @code{--localstatedir=@var{directory}} where @var{directory} is the
  74. @code{localstatedir} value used by your current installation (@pxref{The
  75. Store}, for information about this).
  76. Finally, you have to invoke @code{make check} to run tests
  77. (@pxref{Running the Test Suite}). If anything
  78. fails, take a look at installation instructions (@pxref{Installation})
  79. or send a message to the @email{guix-devel@@gnu.org, mailing list}.
  80. @node Running Guix Before It Is Installed
  81. @section Running Guix Before It Is Installed
  82. In order to keep a sane working environment, you will find it useful to
  83. test the changes made in your local source tree checkout without
  84. actually installing them. So that you can distinguish between your
  85. ``end-user'' hat and your ``motley'' costume.
  86. To that end, all the command-line tools can be used even if you have not
  87. run @code{make install}. To do that, you first need to have an environment
  88. with all the dependencies available (@pxref{Building from Git}), and then
  89. simply prefix each command with
  90. @command{./pre-inst-env} (the @file{pre-inst-env} script lives in the
  91. top build tree of Guix; it is generated by @command{./configure}),
  92. as in@footnote{The @option{-E} flag to
  93. @command{sudo} guarantees that @code{GUILE_LOAD_PATH} is correctly set
  94. such that @command{guix-daemon} and the tools it uses can find the Guile
  95. modules they need.}:
  96. @example
  97. $ sudo -E ./pre-inst-env guix-daemon --build-users-group=guixbuild
  98. $ ./pre-inst-env guix build hello
  99. @end example
  100. @noindent
  101. Similarly, for a Guile session using the Guix modules:
  102. @example
  103. $ ./pre-inst-env guile -c '(use-modules (guix utils)) (pk (%current-system))'
  104. ;;; ("x86_64-linux")
  105. @end example
  106. @noindent
  107. @cindex REPL
  108. @cindex read-eval-print loop
  109. @dots{} and for a REPL (@pxref{Using Guile Interactively,,, guile, Guile
  110. Reference Manual}):
  111. @example
  112. $ ./pre-inst-env guile
  113. scheme@@(guile-user)> ,use(guix)
  114. scheme@@(guile-user)> ,use(gnu)
  115. scheme@@(guile-user)> (define snakes
  116. (fold-packages
  117. (lambda (package lst)
  118. (if (string-prefix? "python"
  119. (package-name package))
  120. (cons package lst)
  121. lst))
  122. '()))
  123. scheme@@(guile-user)> (length snakes)
  124. $1 = 361
  125. @end example
  126. The @command{pre-inst-env} script sets up all the environment variables
  127. necessary to support this, including @env{PATH} and @env{GUILE_LOAD_PATH}.
  128. Note that @command{./pre-inst-env guix pull} does @emph{not} upgrade the
  129. local source tree; it simply updates the @file{~/.config/guix/current}
  130. symlink (@pxref{Invoking guix pull}). Run @command{git pull} instead if
  131. you want to upgrade your local source tree.
  132. @node The Perfect Setup
  133. @section The Perfect Setup
  134. The Perfect Setup to hack on Guix is basically the perfect setup used
  135. for Guile hacking (@pxref{Using Guile in Emacs,,, guile, Guile Reference
  136. Manual}). First, you need more than an editor, you need
  137. @url{http://www.gnu.org/software/emacs, Emacs}, empowered by the
  138. wonderful @url{http://nongnu.org/geiser/, Geiser}.
  139. Geiser allows for interactive and incremental development from within
  140. Emacs: code compilation and evaluation from within buffers, access to
  141. on-line documentation (docstrings), context-sensitive completion,
  142. @kbd{M-.} to jump to an object definition, a REPL to try out your code,
  143. and more (@pxref{Introduction,,, geiser, Geiser User Manual}). For
  144. convenient Guix development, make sure to augment Guile’s load path so
  145. that it finds source files from your checkout:
  146. @lisp
  147. ;; @r{Assuming the Guix checkout is in ~/src/guix.}
  148. (with-eval-after-load 'geiser-guile
  149. (add-to-list 'geiser-guile-load-path "~/src/guix"))
  150. @end lisp
  151. To actually edit the code, Emacs already has a neat Scheme mode. But in
  152. addition to that, you must not miss
  153. @url{http://www.emacswiki.org/emacs/ParEdit, Paredit}. It provides
  154. facilities to directly operate on the syntax tree, such as raising an
  155. s-expression or wrapping it, swallowing or rejecting the following
  156. s-expression, etc.
  157. @cindex code snippets
  158. @cindex templates
  159. @cindex reducing boilerplate
  160. We also provide templates for common git commit messages and package
  161. definitions in the @file{etc/snippets} directory. These templates can
  162. be used with @url{http://joaotavora.github.io/yasnippet/, YASnippet} to
  163. expand short trigger strings to interactive text snippets. You may want
  164. to add the snippets directory to the @var{yas-snippet-dirs} variable in
  165. Emacs.
  166. @lisp
  167. ;; @r{Assuming the Guix checkout is in ~/src/guix.}
  168. (with-eval-after-load 'yasnippet
  169. (add-to-list 'yas-snippet-dirs "~/src/guix/etc/snippets"))
  170. @end lisp
  171. The commit message snippets depend on @url{https://magit.vc/, Magit} to
  172. display staged files. When editing a commit message type @code{add}
  173. followed by @kbd{TAB} to insert a commit message template for adding a
  174. package; type @code{update} followed by @kbd{TAB} to insert a template
  175. for updating a package; type @code{https} followed by @kbd{TAB} to
  176. insert a template for changing the home page URI of a package to HTTPS.
  177. The main snippet for @code{scheme-mode} is triggered by typing
  178. @code{package...} followed by @kbd{TAB}. This snippet also inserts the
  179. trigger string @code{origin...}, which can be expanded further. The
  180. @code{origin} snippet in turn may insert other trigger strings ending on
  181. @code{...}, which also can be expanded further.
  182. @node Coding Style
  183. @section Coding Style
  184. In general our code follows the GNU Coding Standards (@pxref{Top,,,
  185. standards, GNU Coding Standards}). However, they do not say much about
  186. Scheme, so here are some additional rules.
  187. @menu
  188. * Programming Paradigm:: How to compose your elements.
  189. * Modules:: Where to store your code?
  190. * Data Types and Pattern Matching:: Implementing data structures.
  191. * Formatting Code:: Writing conventions.
  192. @end menu
  193. @node Programming Paradigm
  194. @subsection Programming Paradigm
  195. Scheme code in Guix is written in a purely functional style. One
  196. exception is code that involves input/output, and procedures that
  197. implement low-level concepts, such as the @code{memoize} procedure.
  198. @node Modules
  199. @subsection Modules
  200. Guile modules that are meant to be used on the builder side must live in
  201. the @code{(guix build @dots{})} name space. They must not refer to
  202. other Guix or GNU modules. However, it is OK for a ``host-side'' module
  203. to use a build-side module.
  204. Modules that deal with the broader GNU system should be in the
  205. @code{(gnu @dots{})} name space rather than @code{(guix @dots{})}.
  206. @node Data Types and Pattern Matching
  207. @subsection Data Types and Pattern Matching
  208. The tendency in classical Lisp is to use lists to represent everything,
  209. and then to browse them ``by hand'' using @code{car}, @code{cdr},
  210. @code{cadr}, and co. There are several problems with that style,
  211. notably the fact that it is hard to read, error-prone, and a hindrance
  212. to proper type error reports.
  213. Guix code should define appropriate data types (for instance, using
  214. @code{define-record-type*}) rather than abuse lists. In addition, it
  215. should use pattern matching, via Guile’s @code{(ice-9 match)} module,
  216. especially when matching lists.
  217. @node Formatting Code
  218. @subsection Formatting Code
  219. @cindex formatting code
  220. @cindex coding style
  221. When writing Scheme code, we follow common wisdom among Scheme
  222. programmers. In general, we follow the
  223. @url{http://mumble.net/~campbell/scheme/style.txt, Riastradh's Lisp
  224. Style Rules}. This document happens to describe the conventions mostly
  225. used in Guile’s code too. It is very thoughtful and well written, so
  226. please do read it.
  227. Some special forms introduced in Guix, such as the @code{substitute*}
  228. macro, have special indentation rules. These are defined in the
  229. @file{.dir-locals.el} file, which Emacs automatically uses. Also note
  230. that Emacs-Guix provides @code{guix-devel-mode} mode that indents and
  231. highlights Guix code properly (@pxref{Development,,, emacs-guix, The
  232. Emacs-Guix Reference Manual}).
  233. @cindex indentation, of code
  234. @cindex formatting, of code
  235. If you do not use Emacs, please make sure to let your editor knows these
  236. rules. To automatically indent a package definition, you can also run:
  237. @example
  238. ./etc/indent-code.el gnu/packages/@var{file}.scm @var{package}
  239. @end example
  240. @noindent
  241. This automatically indents the definition of @var{package} in
  242. @file{gnu/packages/@var{file}.scm} by running Emacs in batch mode. To
  243. indent a whole file, omit the second argument:
  244. @example
  245. ./etc/indent-code.el gnu/services/@var{file}.scm
  246. @end example
  247. @cindex Vim, Scheme code editing
  248. If you are editing code with Vim, we recommend that you run @code{:set
  249. autoindent} so that your code is automatically indented as you type.
  250. Additionally,
  251. @uref{https://www.vim.org/scripts/script.php?script_id=3998,
  252. @code{paredit.vim}} may help you deal with all these parentheses.
  253. We require all top-level procedures to carry a docstring. This
  254. requirement can be relaxed for simple private procedures in the
  255. @code{(guix build @dots{})} name space, though.
  256. Procedures should not have more than four positional parameters. Use
  257. keyword parameters for procedures that take more than four parameters.
  258. @node Submitting Patches
  259. @section Submitting Patches
  260. Development is done using the Git distributed version control system.
  261. Thus, access to the repository is not strictly necessary. We welcome
  262. contributions in the form of patches as produced by @code{git
  263. format-patch} sent to the @email{guix-patches@@gnu.org} mailing list.
  264. This mailing list is backed by a Debbugs instance accessible at
  265. @uref{https://bugs.gnu.org/guix-patches}, which allows us to keep track
  266. of submissions. Each message sent to that mailing list gets a new
  267. tracking number assigned; people can then follow up on the submission by
  268. sending email to @code{@var{NNN}@@debbugs.gnu.org}, where @var{NNN} is
  269. the tracking number (@pxref{Sending a Patch Series}).
  270. Please write commit logs in the ChangeLog format (@pxref{Change Logs,,,
  271. standards, GNU Coding Standards}); you can check the commit history for
  272. examples.
  273. Before submitting a patch that adds or modifies a package definition,
  274. please run through this check list:
  275. @enumerate
  276. @item
  277. If the authors of the packaged software provide a cryptographic
  278. signature for the release tarball, make an effort to verify the
  279. authenticity of the archive. For a detached GPG signature file this
  280. would be done with the @code{gpg --verify} command.
  281. @item
  282. Take some time to provide an adequate synopsis and description for the
  283. package. @xref{Synopses and Descriptions}, for some guidelines.
  284. @item
  285. Run @code{guix lint @var{package}}, where @var{package} is the
  286. name of the new or modified package, and fix any errors it reports
  287. (@pxref{Invoking guix lint}).
  288. @item
  289. Make sure the package builds on your platform, using @code{guix build
  290. @var{package}}.
  291. @item
  292. @cindex bundling
  293. Make sure the package does not use bundled copies of software already
  294. available as separate packages.
  295. Sometimes, packages include copies of the source code of their
  296. dependencies as a convenience for users. However, as a distribution, we
  297. want to make sure that such packages end up using the copy we already
  298. have in the distribution, if there is one. This improves resource usage
  299. (the dependency is built and stored only once), and allows the
  300. distribution to make transverse changes such as applying security
  301. updates for a given software package in a single place and have them
  302. affect the whole system---something that bundled copies prevent.
  303. @item
  304. Take a look at the profile reported by @command{guix size}
  305. (@pxref{Invoking guix size}). This will allow you to notice references
  306. to other packages unwillingly retained. It may also help determine
  307. whether to split the package (@pxref{Packages with Multiple Outputs}),
  308. and which optional dependencies should be used.
  309. @item
  310. For important changes, check that dependent package (if applicable) are
  311. not affected by the change; @code{guix refresh --list-dependent
  312. @var{package}} will help you do that (@pxref{Invoking guix refresh}).
  313. @c See <https://lists.gnu.org/archive/html/guix-devel/2016-10/msg00933.html>.
  314. @cindex branching strategy
  315. @cindex rebuild scheduling strategy
  316. Depending on the number of dependent packages and thus the amount of
  317. rebuilding induced, commits go to different branches, along these lines:
  318. @table @asis
  319. @item 300 dependent packages or less
  320. @code{master} branch (non-disruptive changes).
  321. @item between 300 and 1,200 dependent packages
  322. @code{staging} branch (non-disruptive changes). This branch is intended
  323. to be merged in @code{master} every 3 weeks or so. Topical changes
  324. (e.g., an update of the GNOME stack) can instead go to a specific branch
  325. (say, @code{gnome-updates}).
  326. @item more than 1,200 dependent packages
  327. @code{core-updates} branch (may include major and potentially disruptive
  328. changes). This branch is intended to be merged in @code{master} every
  329. 2.5 months or so.
  330. @end table
  331. All these branches are @uref{https://hydra.gnu.org/project/gnu,
  332. tracked by our build farm} and merged into @code{master} once
  333. everything has been successfully built. This allows us to fix issues
  334. before they hit users, and to reduce the window during which pre-built
  335. binaries are not available.
  336. Generally, branches other than @code{master} are considered
  337. @emph{frozen} if there has been a recent evaluation, or there is a
  338. corresponding @code{-next} branch. Please ask on the mailing list or
  339. IRC if unsure where to place a patch.
  340. @c TODO: It would be good with badges on the website that tracks these
  341. @c branches. Or maybe even a status page.
  342. @item
  343. @cindex determinism, of build processes
  344. @cindex reproducible builds, checking
  345. Check whether the package's build process is deterministic. This
  346. typically means checking whether an independent build of the package
  347. yields the exact same result that you obtained, bit for bit.
  348. A simple way to do that is by building the same package several times in
  349. a row on your machine (@pxref{Invoking guix build}):
  350. @example
  351. guix build --rounds=2 my-package
  352. @end example
  353. This is enough to catch a class of common non-determinism issues, such
  354. as timestamps or randomly-generated output in the build result.
  355. Another option is to use @command{guix challenge} (@pxref{Invoking guix
  356. challenge}). You may run it once the package has been committed and
  357. built by @code{@value{SUBSTITUTE-SERVER}} to check whether it obtains the same
  358. result as you did. Better yet: Find another machine that can build it
  359. and run @command{guix publish}. Since the remote build machine is
  360. likely different from yours, this can catch non-determinism issues
  361. related to the hardware---e.g., use of different instruction set
  362. extensions---or to the operating system kernel---e.g., reliance on
  363. @code{uname} or @file{/proc} files.
  364. @item
  365. When writing documentation, please use gender-neutral wording when
  366. referring to people, such as
  367. @uref{https://en.wikipedia.org/wiki/Singular_they, singular
  368. ``they''@comma{} ``their''@comma{} ``them''}, and so forth.
  369. @item
  370. Verify that your patch contains only one set of related changes.
  371. Bundling unrelated changes together makes reviewing harder and slower.
  372. Examples of unrelated changes include the addition of several packages,
  373. or a package update along with fixes to that package.
  374. @item
  375. Please follow our code formatting rules, possibly running the
  376. @command{etc/indent-code.el} script to do that automatically for you
  377. (@pxref{Formatting Code}).
  378. @item
  379. When possible, use mirrors in the source URL (@pxref{Invoking guix download}).
  380. Use reliable URLs, not generated ones. For instance, GitHub archives are not
  381. necessarily identical from one generation to the next, so in this case it's
  382. often better to clone the repository. Don't use the @command{name} field in
  383. the URL: it is not very useful and if the name changes, the URL will probably
  384. be wrong.
  385. @end enumerate
  386. When posting a patch to the mailing list, use @samp{[PATCH] @dots{}} as
  387. a subject. You may use your email client or the @command{git
  388. send-email} command (@pxref{Sending a Patch Series}). We prefer to get
  389. patches in plain text messages, either inline or as MIME attachments.
  390. You are advised to pay attention if your email client changes anything
  391. like line breaks or indentation which could potentially break the
  392. patches.
  393. When a bug is resolved, please close the thread by sending an email to
  394. @email{@var{NNN}-done@@debbugs.gnu.org}.
  395. @unnumberedsubsec Sending a Patch Series
  396. @anchor{Sending a Patch Series}
  397. @cindex patch series
  398. @cindex @code{git send-email}
  399. @cindex @code{git-send-email}
  400. When sending a patch series (e.g., using @code{git send-email}), please
  401. first send one message to @email{guix-patches@@gnu.org}, and then send
  402. subsequent patches to @email{@var{NNN}@@debbugs.gnu.org} to make sure
  403. they are kept together. See
  404. @uref{https://debbugs.gnu.org/Advanced.html, the Debbugs documentation}
  405. for more information.
  406. @c Debbugs bug: https://debbugs.gnu.org/db/15/15361.html