~jcowgill/ubuntu/trusty/easytag/bug-1295882

« back to all changes in this revision

Viewing changes to HACKING

  • Committer: Package Import Robot
  • Author(s): Julian Taylor
  • Date: 2012-04-13 21:14:54 UTC
  • mfrom: (8.1.2 sid)
  • Revision ID: package-import@ubuntu.com-20120413211454-32npmljr4ftjth3u
Tags: 2.1.7-1ubuntu1
* Merge from Debian unstable (LP: #883019, #979316)
  remaining Ubuntu changes:
  + debian/control:
    - Add easytag-aac transitional package.
  + debian/install:
    - Install upstream files to easytag binary package.
  + debian/rules:
    - Do not fail on deleting ChangeLog file if it doesn't exist.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
This version of EasyTag is maintained in a git repository on github as
2
 
the project never had a publicly accessible version control
3
 
repository. The initial repository was created from a number of
4
 
publicly available tarballs. You can find the current state of the
5
 
repository at:
6
 
 
7
 
    https://github.com/stsquad/easytag
8
 
 
9
 
It is intended as a place where patches and pull requests can be
10
 
processed until Jérôme starts making releases again (hopefully with a
11
 
public repo). In the meantime patches that look sane and don't crash
12
 
EasyTag it will be accepted by myself.
13
 
 
14
 
Contributing
15
 
============
16
 
 
17
 
My preferences for contributions are as follows:
18
 
 
19
 
1. Pull request on github
20
 
2. Pull request from another git repository
21
 
3. Patches
22
 
 
23
 
Patches are fine but GIT pull requests make it a lot easier to keep
24
 
attribution correct and it makes my life easier ;-)
25
 
 
26
 
Coding Style
27
 
============
28
 
 
29
 
I couldn't find any reference to the style to follow but running
30
 
indent_finder.py suggests the code is currently:
31
 
 
32
 
    No Tabs, Indent Level of 4 characters
33
 
 
34
 
In Emacs the style can be set by the following:
35
 
 
36
 
   (defconst easytag-c-style
37
 
    '(
38
 
       (indent-tabs-mode . nil)
39
 
       (c-basic-offset . 4)
40
 
       (c-comment-only-line-offset . 0))
41
 
       "EasyTag Programming Style")
42
 
 
43
 
       
44
 
 
45