~geda-admins/geda/geda-main

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
128
129
130
131
132
133
134
135
136
137
138
==============================================
 'gschem and Friends' Electronic Design Suite
==============================================

Copyright (C) 1998-2020 gEDA Developers

This file contains information which you may find useful if you wish
to contribute to gEDA.

How to submit patches
=====================

Please submit patches to the bug tracker on Launchpad:

  <https://bugs.launchpad.net/geda>

Once you've submitted your patches, you may wish to also e-mail the
`gEDA-user' mailing list [1] to announce that you've done so and to ask
for feedback.

To make it easier for developers to promptly verify your patches and
integrate them, please try to follow the following guidelines:

  - If your patch is big, try to split it up into a series of small,
    logical steps, and use a separate patch for each.

  - Avoid unnecessary whitespace changes. Please do not add trailing
    whitespace.  If you must make bulk whitespace changes
    (e.g. because a file or function is formatted in a way that is
    *offensively ugly*) then please do so as a separate patch.

  - Ensure that each of your patches applies cleanly against the
    `master' branch of the geda-gaf main git repository.

  - Please format your patches with `git format-patch' [2], and ensure
    that they contain good commit messages.  The commit messages
    should include:

      * A one-line summary of what the patch changes.

      * A detailed explanation of what the patch changes, the problem
        it solves, and why you chose that approach to solving the
        problem.  Sometimes, the change will be very self-explanatory.
        Sometimes, the commit message will be considerably longer than
        the patch itself.

      * If the patch is related to another bug in the Launchpad
        tracker, include its bug number.

      * If your patch fixes a regression, and you know which commit
        introduced the regression, include the broken commit's ID.

    If you don't use `git format-patch' to create your patch, please
    include the commands needed to apply it when you submit it.
    Assume the reader's current working directory is the top level of
    the gEDA/gaf source tree.

  - Make sure it's clear whether, and in what ways, you've tested your
    patch.

  - If you add functions, or change function definitions, make sure
    that the doxygen [3] comments are up-to-date.

Sometimes, you may submit a patch and not hear anything back for a
while.  This can be for a number of reasons, and it's only very rarely
that there's a great conspiracy of gEDA developers to obstruct your
changes from getting included.  It might even be that your patch has
been committed, but the developer who did so forgot to let you know!
If it's been more than a couple of weeks since you submitted a patch,
you should e-mail the `gEDA-user' mailing list with a reminder.

A final thought: to get your patches included, make it easy to accept
them!

[1] http://www.delorie.com/listserv/
[2] http://www.kernel.org/pub/software/scm/git/docs/git-format-patch.html
[3] http://www.stack.nl/~dimitri/doxygen/

C coding style
==============

gEDA C coding style is fairly flexible.  However, there are a few requests.

  - Indent using spaces only, with an indentation step of two spaces.

  - Avoid C++ style comments (`//').

  - `switch' statements should always include a `default' label.

  - Do not comment out code or omit it using `#if 0', unless
    absolutely necessary for documentation purposes.  If code is not
    needed, delete it.

  - Wrap code at 80 columns.

  - Wrap the body of an `if' statement in braces `{}', even if the
    body only contains one statement.

  - When checking a pointer for validity, explicitly compare it with
    `NULL'.

       if (ptr == NULL) { return; } /* Good */
       if (!ptr) { return; }        /* Bad */

Obviously, all these rules are made to be broken, and it'll be obvious
when it's appropriate to do so. ;-)

Here is a set of options to GNU `indent' which approximates the gEDA
indentation style:

  -br -blf -bls -cdw -ce -cs -ts2 -sc -nut -bap -pcs -psl -lp l80 -bbo

Scheme coding style
===================

gEDA Scheme coding style is also fairly flexible.  Once again, though,
there are a few things to bear in mind!

  - When you need to iterate over a list, it's often better to use
    `map', `for-each' or SRFI-1 `fold' than to make your function
    recursive [1][2].

  - Predicate functions should have names ending in `?', and
    destructive functions should have names ending in `!'.

  - When defining a function, please use the "implicit define" form of
    `define' [3]:

    (define (<name> <formals>) <body>)

  - It's often clearer to use `format' to format strings rather than
    using a combination of `string-append', `display' and `newline'.
    This function is always available in Guile 1.8.x [4].

[1] http://www.schemers.org/Documents/Standards/R5RS/HTML/r5rs-Z-H-9.html#%_idx_558
[2] http://www.gnu.org/software/guile/manual/html_node/SRFI_002d1-Fold-and-Map.html#index-fold-3609
[3] http://www.schemers.org/Documents/Standards/R5RS/HTML/r5rs-Z-H-8.html#%_sec_5.2
[4] http://www.gnu.org/software/guile/manual/html_node/Writing.html#index-simple_002dformat-2052