Skip to content

Latest commit

 

History

History
118 lines (103 loc) · 5.91 KB

BugFixingCheckList.md

File metadata and controls

118 lines (103 loc) · 5.91 KB

Bug fixing checklist

  • 1. Get code and tarball. For the tarball, you have to be inside repo folder. You must checkout to the version you need before get the tarball.

    • git-ubuntu clone <source_package_name> [destination_folder]
      • tarball: git-ubuntu export-orig
    • If not there, from ubuntu-dev-tools package: pull-lp-source <source_package_name> [release|version]
    • If not there, from ubuntu-dev-tools package: pull-debian-source <source_package_name> [release|version]
    • or, from devscripts: debcheckout <source_package_name>
      • tarball: origtargz
    • or, from devscripts: dget <url_dsc_file_of_the_package (tracker.debian.org/salsa.debian ... look on this webs for this)>
    • or, from git-buildpackage: gpb import-dsc --pristine-tar <url_dsc_file_of_the_package (tracker.debian.org/salsa.debian ... look on this webs for this)>
      • tarball: gbp import-orig --uscan or uscan or origtargz
  • 2. Bug fix

    • Step-to-reproduce (for later copy-paste)
    • Record bad case (for later copy-paste)
    • Code the fix:
      • Changes are under debian folder or the package is Native (debian/source/format is Native 1.0)
      • or Patching: Changes are outside debian folder or incorporating a patch-as-is and debian/source/format is Quilt 3.0:
        • Create the patch using dquilt (Note: don't forget to activate the new patch BEFORE doing the changes!!!)
          • or using git diff
          • or using Git Patch on VSCode
          • or edit-patch (for incorporating/changing an existing one)
        • Check the patch header:
          • if it doesn't exist, create a new one: quilt header -e --dep3 <patch_file>
          • Check header style:
            • Not references to the functions after @@
            • Path of the files are with a and b
            • New lines are with a dot (.) in the Description (no empty lines)
    • Record good case (for later copy-paste)
  • 3. Build new package

    • debian/changelog (use dch -i)
      • version: for an SRU, it increments decimal. More here.
      • Change UNRELEASED to series name
      • Respect the format:
        • Check there are ≤ 70 chars per line
        • Check no trailing spaces are present
        • Indent has 2 spaces since last bullet point (or the beginning)
        • Bullet points go from * (more general) then -, then +
        • (LP: #XXXXXXXX) is present if a fix for a LP bug is being released
        • (LP: XXXXXXXX) is present if a LP bug is referenced
        • If Debian related bug is mentioned: Closes: NNNNNNN
        • If Debian related bug is being fixed: Closes: #NNNNNNN
        • Optional: A "Thanks to" is present if you are not the author of the code being submitted (normally when submitting patches).
    • debian/control: check maintainers field is set to Ubuntu Developers (if not, use update-maintainer from ubuntu-dev-tools ... this is more frequent in merges).
    • Optional: Get lintian ouput
    • Optional: Autopackage output (DEP-8 tests)
      • Locally.
      • Using the PPA's package (Recommended): ppa tests ${ppa_address} --release ${codename}
  • 4. Optional: PPA :

    • Change Build types
    • dput signed changes file
  • 5. Optional: SRU/MIR/FFe template

    [SRU] [MIR] [FFe]:

    [[ Feature Freeze Exception ]]
    [Description]
       * A description of the proposed changes, with sufficient detail to estimate their potential impact on the distribution
    [Rationale]
       * A rationale for the exception, explaining the benefit of the change
    [Additional information]
       * Any additional information which would be helpful in considering the decision:
         -  If the upload is a new upstream microrelease, the relevant part of the upstream changelog and/or release notes.
         -  An explanation of the testing which has been performed on the new version in Ubuntu (main features screenshot), including verification that the new package:
           + builds (attach build.log)
           + installs and upgrades (attach install log)
    [Original Report]
    ----------------------------
    
  • 6. MP

    • Target Branch: ubuntu/<UbuntuSeries>-devel for BugFixing or debian/sid for merges
    • Reviewers : $(ubuntu-upload-permission --list-uploaders <package>) and canonical-<your-team> (E.g. canonical-server-reporter` for server team members)
    • Description:
      • PPA
      • Optional: Tags for merge bugs
      • G/B cases or refer to SRU template
      • Optional: Autopackages test output
      • Optional: Lintian output

After the submission (once you get it Approved):

  • 7. Upload the package (or look for Sponsorship).
  • 8. Tracking migration: check update_excuses
  • 9. if SRU: Verification: change the tags in LP bug for the done ones instead of the needed ones
  • 10. Optional: When Fix Released: Removed server-next /server-todo tags in the LP bug