Skip to content
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

Track upstream release and build .deb

Installing the built packages

Every automated run publishes its output as a GitHub Release with individual .deb files attached - no need to build locally to use this.

  1. Open the latest release.

  2. Download all the .deb assets into their own folder (skip the two Source code archives - those aren't needed for installing). Transmission's packaging splits into several packages that depend on each other (transmission-common, transmission-gtk, transmission-qt, etc.) - grab the whole set together rather than just the one client you want, so nothing's missing mid-install. transmission-common is required regardless of which client(s) you use.

  3. From inside that folder, install with whichever tool you're comfortable with:

    apt (recommended - resolves dependencies across the whole batch of local files in one transaction):

       sudo apt install ./*.deb

    dpkg, classic two-step (what this build was actually validated with):

       sudo dpkg -i *.deb
       sudo apt-get install -f   # only if dpkg reports anything missing

    GDebi - convenient for a single package via double-click, but its dependency resolution checks your configured repos, not sibling files in the same folder. If you're installing several of these local .debs together, install transmission-common first, then the rest - or just use apt/dpkg above, which treat the whole folder as one batch.

    No need to remove any existing repo version first - since the local build's version number sorts higher, installing over it is a normal in-place upgrade; the package manager replaces the old files cleanly on its own.

Important note about this auto-build project

Because Transmission itself isn't updated on a regular schedule, a cron gate is baked into the automation which checks upstream for updates on the 1st and 15th of each month. If there's a new version upstream, we build new packages. If not, we skip the build and wait for the next scheduled check.

About

Fork of Official Transmission BitTorrent client repository

Resources

Stars

0 stars

Watchers

0 watching

Forks

Releases

Packages

Contributors