Skip to content

v0.4.0

Latest
Compare
Choose a tag to compare
@PeterMylemans PeterMylemans released this 06 Mar 08:44
· 1 commit to main since this release

⚠️ Breaking changes

To allow support for both debian, ubuntu and their respective archive mirrors, we needed a breaking change from mirros to urls attribute. You can also take the opportunity to add the archive mirrors for your repositories.

Please update your repositories rules accordingly:

For Debian with archive

        urls = [
            "http://deb.debian.org/debian/$(package_path)",
            "http://deb.debian.org/debian-security/$(package_path)",
            "https://snapshot.debian.org/archive/debian/$(timestamp)/$(package_path)",  # Needed in case of superseded archive no more available on the mirrors
            "https://snapshot.debian.org/archive/debian-security/$(timestamp)/$(package_path)",  # Needed in case of superseded archive no more available on the mirrors
        ],

For Ubuntu with archive

        urls = [
            "http://us.archive.ubuntu.com/ubuntu/$(package_path)",
            "http://security.ubuntu.com/ubuntu/$(package_path)",
            "https://launchpad.net/ubuntu/+archive/primary/+files/$(package_file)",  # Needed in case of superseded archive no more available on the mirrors
        ],

🚀 Improvements

  • Add templating to URLs for downloading package (#2) @y0psolo
  • Added linting and CI jobs to this repository