βŒˆβŒ‹ βŽ‡ branch:  freshcode


Update of "AutoupdateDebian"

Many hyperlinks are disabled.
Use anonymous login to enable hyperlinks.

Overview

Artifact ID: 9397c3c80a4e07e5a4abc14e3dfbb99a1076065c
Page Name:AutoupdateDebian
Date: 2016-05-05 02:24:43
Original User: mario
Mimetype:text/x-markdown
Next 6c7c9b0b26788d6d2197a0b96e370755cf986adb
Content

Equivalent to the Changelog method with a preset regex for debian/changelog files.

  • This is really just a variation of plain changelogs.

    Uses the same backend code with a regex of:

     /^[\w-]+\h+\((\d[\w.-]+)\)\s*\w+;\s*urgency=\w+\h*$/m;
    

    And only strips the trailing -- author/date… suffix

  • Technically they're package release logs.

  • See https://www.debian.org/doc/manuals/maint-guide/dreq.en.html#changelog

     package (0.1.2-3) STATE; urgency=SCOPE
    
       * First package. Closes: #54321
       * As stolen from Gentoo.
       * Introduced arbitrary DFSG constraint.
    
      -- Elisa Examplary <liz@debian.org>  Mon, 25 May 2016 01:22:33 +0100
    
  • Now state and scope aren't yet mapped.

  • Added this reluctantly. But they're still common enough to warrant support.