On Debian-based distros, when an app is available as a DEB or an AppImage (that doesn’t self-update), but no APT repository, PPA or Flatpak, the only option is to manually download each update, and usually manually check even whether there are updates.

But, what if those would be upgraded at the same time as everything else using the tools you’re familiar with ?

dynapt is a local web server that fetches those DEBs (and AppImages to be wrapped into DEBs) wherever those are, then serves these to APT like any package repository does.

I started building it a few months ago, and after using it to upgrade apps on my computers and servers for some time, I pre-released it for the first time last week.

The stable version will come with a CLI wizard to avoid this manual configuration.

Feedback is welcome :)

        • KaKi87@jlai.luOP
          link
          fedilink
          arrow-up
          2
          ·
          9 days ago

          I’d be willing to implement additional features for people who are extra careful about security.

          Could you please explain what does this consist in ?

          Thanks

      • Semperverus@lemmy.world
        link
        fedilink
        English
        arrow-up
        8
        ·
        10 days ago

        I’d say going directly to a developer’s github page for packages isnt too bad, especially now with all of the security features github has in the background, but yea technically true.

  • bizdelnick@lemmy.ml
    link
    fedilink
    arrow-up
    10
    ·
    edit-2
    10 days ago

    If I’d decide to implement something like this, I’d consider two options: local repo with file:// scheme or custom apt-transport. HTTP server is needless here. (But I’ll never do this because I prefer to rebuild packages myself if there’s no repo for my distro.)

    • KaKi87@jlai.luOP
      link
      fedilink
      English
      arrow-up
      9
      ·
      10 days ago

      local repo with file:// scheme

      With that, I couldn’t trigger a download when apt update is ran, I could only do a cron, i.e. a delay, that I do not want.

      custom apt-transport

      I thought about that, but found no documentation on how to do it. If you have any, I’m interested.

      Even just finding documentation on how to generate DEBs and APT repository metadata files was very hard.

      • bizdelnick@lemmy.ml
        link
        fedilink
        arrow-up
        8
        ·
        10 days ago

        It is documented in libapt-pkg-doc (/usr/share/doc/libapt-pkg-doc/method.html/index.html).

        • KaKi87@jlai.luOP
          link
          fedilink
          arrow-up
          6
          ·
          10 days ago

          In an APT package OMG 😂

          I found an online version though, which I would never have found through my search engine (and on a site that doesn’t even support HTTPS) 😅

          Looks like difficult reading too 😭

          Thanks anyway.

        • KaKi87@jlai.luOP
          link
          fedilink
          English
          arrow-up
          4
          ·
          10 days ago

          Yeah, I don’t have the skill for this. I’d be very happy if someone else would make this, but if not then I’m sticking to HTTP.

          • keturn@sh.itjust.works
            link
            fedilink
            English
            arrow-up
            2
            ·
            9 days ago

            I went way down the rabbit hole on this one and ended up with a proof of concept that’s probably close enough to be able to wire it up: https://gitlab.com/-/snippets/3745244

            I guess it didn’t end up too much code, but I’m not entirely sure it’s worth it.

            (it’s after 3 AM? oh no what have I done)

            • KaKi87@jlai.luOP
              link
              fedilink
              arrow-up
              1
              ·
              9 days ago

              Why the OOP structure and syntax ? Sorry but it makes it difficult to read for me even in my own language 😅

      • keturn@sh.itjust.works
        link
        fedilink
        English
        arrow-up
        1
        ·
        edit-2
        9 days ago

        differently hacky idea:

        since you do end up with all the packages in a repository on the filesystem, and you just want to have it do this just-in-time updating when the Packages file is accessed…

        what if you list it as a normal file apt source, but you make the Packages file a FIFO?

        it’s a cursed idea but I’m not sure it is any less cursed than the other options we’ve come up with.

        it may or may not help to have systemd.socket manage creating the FIFO and running the service.

        • KaKi87@jlai.luOP
          link
          fedilink
          arrow-up
          1
          ·
          9 days ago

          What’s a FIFO ?

          I’ve also looked into VFS but found nothing I’d have the skills to implement. 😅

  • JubilantJaguar@lemmy.world
    link
    fedilink
    arrow-up
    7
    ·
    edit-2
    10 days ago

    Looks great, well done.

    Personally, the deb-related annoyance that I have encountered most often in recent years is that there is an APT repo but I have to jump thru hoops to add it. An example is signal-desktop, where the handy one-click installation goes like this:

    # 1. Install our official public software signing key:
    wget -O- https://updates.signal.org/desktop/apt/keys.asc | gpg --dearmor > signal-desktop-keyring.gpg
    cat signal-desktop-keyring.gpg | sudo tee /usr/share/keyrings/signal-desktop-keyring.gpg > /dev/null
    
    # 2. Add our repository to your list of repositories:
    echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/signal-desktop-keyring.gpg] https://updates.signal.org/desktop/apt xenial main' |\
      sudo tee /etc/apt/sources.list.d/signal-xenial.list
    
    # 3. Update your package database and install Signal:
    sudo apt update && sudo apt install signal-desktop
    

    Why does Debian-Ubuntu not provide a simple command for this? Yes there is add-apt-repository but for some reason it doesn’t deal with keys. I’ve had to deal with this PITA on multiple occasions, what’s up with this?

    • cqst@lemmy.blahaj.zone
      link
      fedilink
      arrow-up
      1
      ·
      edit-2
      9 days ago

      Why does Debian-Ubuntu not provide a simple command for this?

      You aren’t supposed to add repos. Ever. https://wiki.debian.org/UntrustedDebs

      Apt is not built with security in mind, at all. The partial sandboxing it does do is trivial to bypass. Adding a repo is basically a RAT Trojan on your computer.

      An example is signal-desktop

      Yeah don’t use signal. They restrict freedom 3 by making distribution difficult. Thats why they trick you into using their RAT repo.

      https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=842943

      The least bad option is the unofficial flatpak.

    • KaKi87@jlai.luOP
      link
      fedilink
      arrow-up
      1
      ·
      10 days ago

      Thanks, and agreed !

      Fortunately, copy/pasting works and you only have to do it once.

  • JustARegularNerd@aussie.zone
    link
    fedilink
    English
    arrow-up
    6
    ·
    edit-2
    9 days ago

    This might be for the better, but Discord was so infuriating about updates and forcing you to download them what felt like 50% of the time I opened it, I gave up and just use it in Ungoogled Chromium now. I’m pretty sure within a few months I ended up having 15+ debs of Discord in my Downloads folder.

    For anyone else trying to use the native Discord app on Debian, I think they’ll find this a major treat.

    • KaKi87@jlai.luOP
      link
      fedilink
      arrow-up
      5
      ·
      9 days ago

      Discord not automating downloads of DEBs is one of the reasons motivating me to do this.

      Personally I need the desktop client because I mod it with plugins that are so useful that I can’t do without these anymore.

      Alternatively, there are third-party repositories here and here.

      There still is delay between Discord releases and repository updates so I still believe dynapt to be the better solution.

      • KaKi87@jlai.luOP
        link
        fedilink
        arrow-up
        3
        ·
        9 days ago

        I didn’t know there was one, that’s interesting, thanks.

        Updates must still be delayed because of being third-party though.

  • Asetru@feddit.org
    link
    fedilink
    arrow-up
    4
    ·
    9 days ago

    Sorry to be that guy, but this sounds like a cybersecurity nightmare. While everybody was busy to come up with schemes that make absolutely sure that only trusted sources can update a system to avoid having malicious players push their code to users, this one just takes any rando’s pile of whatever and injects it straight into the system’s core? Like, that doesn’t sound like a good idea.

    • KaKi87@jlai.luOP
      link
      fedilink
      arrow-up
      7
      ·
      9 days ago

      Well, I’m just automating what people currently have to do manually : visit GitHub and download DEB and install DEB.

      If the automated process would be dangerous then the manual process also would be, and that would be on the maintainer for not providing an APT repository or a Flatpak, not on the user for just downloading from GitHub.

      • cqst@lemmy.blahaj.zone
        link
        fedilink
        arrow-up
        2
        arrow-down
        2
        ·
        edit-2
        9 days ago

        Well, I’m just automating what people currently have to do manually : visit GitHub and download DEB and install DEB.

        Yeah. You should never do that. Like ever. Build from source; or use a vendored tarball. https://wiki.debian.org/DontBreakDebian

        .deb is a terribly insecure nightmare thats held up by the excellent debian packagers, gpg , and checksums, and stable release model. don’t use .deb files.

          • cqst@lemmy.blahaj.zone
            link
            fedilink
            arrow-up
            1
            arrow-down
            1
            ·
            edit-2
            9 days ago

            I’m and end user

            Yeah, we all are. What’s your point?

            End users are also developers. All computer users are developers. You are developing.

            user working for end users

            By making a script that lets me get backdoors and shitty packages with ease? The linux package distribution system is a nightmare, Debian is the least bad approach. There is basically always a better option to using a .deb file. If you come across something that isn’t packaged, I recommend Flatpak, building from source (and installing unprivileged), or using the developers vendored tarball (installing unprivileged).

            https://wiki.debian.org/SecureApt

            By using local .debs you lose the benefit of:

            Reproducible builds

            GPG checksums

            Stable release model

            debian security team

            • KaKi87@jlai.luOP
              link
              fedilink
              arrow-up
              1
              ·
              9 days ago

              My point is that I’m working a solution for end users.

              The solutions you’re offering are not user-friendly.

    • markstos@lemmy.world
      link
      fedilink
      arrow-up
      3
      arrow-down
      1
      ·
      9 days ago

      No matter where you install from, you have to trust the source. Indeed, you have to trust every step in the supply chain.

      If you are getting your code straight from the author, you are eliminating an exploit that’s introduced by a compromised account of a packager.

      Carry on.

      • cqst@lemmy.blahaj.zone
        link
        fedilink
        arrow-up
        1
        arrow-down
        1
        ·
        9 days ago

        If you are getting your code straight from the author,

        Which is not what you are doing at all with a .deb file. A .deb file is a binary with a bunch of scripts to “properly” install your package. Building from source is what you SHOULD be doing. Debian has an entire policy handbook on how packages are supposed to be packaged. Progrmatically you can review the quality of a package with ‘lintian’. .debs made by developers following a wiki tutorial can’t even come close. remember, apt installs happen as root and can execute arbitrary code.

        Also, debian packagers can be project maintainers, so they can be “the author.”

    • λλλ@programming.dev
      link
      fedilink
      arrow-up
      1
      ·
      9 days ago

      I see it more as a local repo. Like, setup the repo to do what you would have done manually so that you don’t have to do it on multiple computers. I could be misunderstanding it though.

  • Telorand@reddthat.com
    link
    fedilink
    arrow-up
    4
    ·
    10 days ago

    I like it. Wonder if this could be retooled to work on rpm-ostree systems, because any layered packages installed from RPM files have the same limitation of needing to be manually upgraded.

    • KaKi87@jlai.luOP
      link
      fedilink
      arrow-up
      3
      ·
      10 days ago

      I don’t know anything about RPMs, but if you or anyone is familiar with it then perhaps !

  • skimm@lemmy.sdf.org
    link
    fedilink
    English
    arrow-up
    1
    ·
    9 days ago

    Neat project!

    While this might not solve all of your use cases, did you consider a tool like mise?

    Theres a number of other options out there such as asdf-vm and others who’s names I can’t recall. I recently moved from asdf to miss but its a great way to install things on different machines and track it with your dotfiles, or any other repo you want to use. Mise has tons of configuration options for allowing overrides and local machine specific versions.

    It won’t tie into apt for your upgrades but you could just alias your apt update to include && mise up.

  • markstos@lemmy.world
    link
    fedilink
    arrow-up
    1
    ·
    9 days ago

    This is somewhat re-inventing some things Ansible can do, which is download and install software whether it has a formal or informal source.

    Ansible is the automation I use to manage personal and professional servers.

  • Shdwdrgn@mander.xyz
    link
    fedilink
    English
    arrow-up
    3
    arrow-down
    3
    ·
    10 days ago

    Sorry to ask, but isn’t this basically the same thing as apt-cacher-ng?

    • KaKi87@jlai.luOP
      link
      fedilink
      arrow-up
      7
      ·
      10 days ago

      Sorry to ask

      Don’t be. I would love to know that an existing and more experienced program does what mine does.

      I’ve been looking for it myself for a long time before deciding to build it.

      isn’t this basically the same thing as apt-cacher-ng?

      Here’s what I’m reading :

      Apt-Cache-ng is A caching proxy. Specialized for package files from Linux distributors, primarily for Debian (and Debian based) distributions but not limited to those.

      A caching proxy have the following benefits:

      • Lower latency
      • Reduce WAN traffic
      • Higher speed for cached contents
      +------------+         +------------+        +------------+
      | Apt Client |  <------+ Apt Cache  | <------+ Apt Mirror |
      +------------+         +------------+        +------------+
      

      So, not the same thing.

      It locally mirrors existing repositories containing existing packages, it doesn’t locally create a new repository for new packages from standalone DEBs.

      • Shdwdrgn@mander.xyz
        link
        fedilink
        English
        arrow-up
        3
        ·
        10 days ago

        OK yeah, I wasn’t sure if it had a way to collect debs from other sources. I’ve been using it for years to locally cache the standard Debian repos so I don’t need to re-download packages every time I update my various servers and VMs, but I haven’t really tried using it for anything beyond that.