summaryrefslogtreecommitdiffstats
path: root/doc/developer/contributing.rst
blob: b40f98c086b0f17fb49542653cc9e5599bfe9267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
Submitting patches or diff's to the FreeRADIUS project
======================================================

For a person or company wishing to submit a change to the FreeRADIUS project
the process can sometimes be daunting if you're not familiar with "the system."
This text is a collection of suggestions which can greatly increase the chances
of your change being accepted.

Note: Only trivial patches will be accepted via email. Large patches, or
patches that modify a number of files MUST be submitted as a pull-request via
GitHub.

Hints and tips
--------------

1. Describe your changes
~~~~~~~~~~~~~~~~~~~~~~~~

Describe the technical detail of the change(s) your patch or commit includes.

Be as specific as possible. The WORST descriptions possible include things like
"update file X", "bug fix for file X", or "this patch includes updates for
subsystem X. Please apply."

If your description starts to get long, that's a sign that you probably need to
split up your commit. See #3, next.

2. Separate your changes
~~~~~~~~~~~~~~~~~~~~~~~~

Separate each logical change into its own commit.

For example, if your changes include both bug fixes and performance
enhancements for a single module, separate those changes into two or more
patches.

On the other hand, if you make a single change to numerous files, group those
changes into a single commit.  Thus a single LOGICAL change is contained within
a single commit.

If one commit depends on another commit in order for a change to be complete,
that is OK. Simply note "this commit depends on commit X" in the extended
commit description.

If your commit includes significant whitespace changes these should also be
broken out into another, separate, commit.

Submitting patches via GitHub
-----------------------------

See the following links for more details about submitting via github:

- https://help.github.com/articles/fork-a-repo
- http://wiki.freeradius.org/contributing/GitHub

Submitting patches via email
----------------------------

1. "diff -u"
~~~~~~~~~~~~
Use ``diff -u`` or ``diff -urN`` to create patches.

All changes to the source occur in the form of patches, as generated by
diff(1).  When creating your patch, make sure to create it in "unified diff"
format, as supplied by the '-u' argument to diff(1). Patches should be based in
the root source directory, not in any lower subdirectory.

To create a patch for a single file, it is often sufficient to do::

   SRCTREE=/home/user/src/freeradiusd/
   MYFILE=src/modules/rlm_foo/foo.c

   cd $SRCTREE
   cp $MYFILE $MYFILE.orig
   vi $MYFILE # make your change
   diff -u $MYFILE.orig $MYFILE > /tmp/patch

To create a patch for multiple files, you should unpack a "vanilla", or
unmodified source tree, and generate a diff against your own source tree. For
example::

   MYSRC=/home/user/src/freeradiusd-feature/

   gunzip freeradiusd-version.tar.gz
   tar xvf freeradiusd-version.tar
   diff -urN freeradiusd-version $MYSRC > ~/feature-version.patch


2. Select e-mail destination
~~~~~~~~~~~~~~~~~~~~~~~~~~~~

If you are on the developers mailing list, send the patch there.
freeradius-devel@lists.freeradius.org

Otherwise, send the patch to 'patches@freeradius.org'

3. No MIME, no links, no compression, no attachments. Just plain text
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

The developers need to be able to read and comment on the changes you are
submitting. It is important for a developer to be able to "quote" your changes,
using standard e-mail tools, so that they may comment on specific portions of
your code.

For this reason, all patches should be submitting e-mail "inline".

Do not attach the patch as a MIME attachment, compressed or not. Many popular
e-mail applications will not always transmit a MIME attachment as plain text,
making it impossible to comment on your code. A MIME attachment also takes a
bit more time to process, decreasing the likelihood of your MIME-attached
change being accepted.

Compressed patches are generally rejected outright.  If the developer has to do
additional work to read your patch, the odds are that it will be ignored
completely.

4. E-mail size
~~~~~~~~~~~~~~

Large changes are not appropriate for mailing lists, and some maintainers. If
your patch, exceeds 5Kb in size, you must submit the patch via GitHub instead.

5. Name the version of the server
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

It is important to note, either in the subject line or in the patch
description, the server version to which this patch applies.