Changes between Version 6 and Version 7 of GettingStartedWithDevelopment


Ignore:
Timestamp:
04/24/12 12:25:32 (12 years ago)
Author:
jdreed
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GettingStartedWithDevelopment

    v6 v7  
    1212}}} 
    1313 
    14 Note that if you end up getting involved in upstream Debian or Ubuntu development, you might consider punting the last two lines. They do make things easier assuming you're developing for Debian. 
     14(Note that if you end up getting involved in upstream Debian or Ubuntu development, you might consider punting the last two lines. They do make things easier assuming you're developing for Debian.) 
     15 
     16The DEBUILD_DPKG_BUILDPACKAGE_OPTS options mean: 
     17 
     18  * (`-sa`) Look for original source as a tarfile or create one. 
     19  * (`-us`) Do not sign the source package. 
     20  * (`-uc`) Do not sign the changes file. 
     21  * (`-i`) Ignore common version control metadata files when creating diffs. 
     22  * (`-I`) (previously `-I.svn`) Ignore [.svn] paths when creating tarballs. 
     23 
     24 
     25You may also want a $HOME/.sbuildrc file containing the following: 
     26 
     27{{{ 
     28  $nolog = 1; 
     29  $mailto = 'yourusername'; 
     30  $log_dir = '/tmp/sbuild-logs'; 
     31  $maintainer_name = 'Debathena Project <debathena@mit.edu>'; 
     32  $force_orig_source = 1; 
     33  $sbuild_mode = "user"; 
     34  1; 
     35}}} 
     36 
     37You should also set the environment variable `DEBATHENA_APT` to `/afs/sipb.mit.edu/project/debathena/apt`.