AptRepositories » History » Version 82
Mark Clarkstone, 2017-12-18 12:54
1 | 72 | Mark Clarkstone | h1. APT Repositories |
---|---|---|---|
2 | 1 | Adam Sutton | |
3 | 72 | Mark Clarkstone | {{>toc}} |
4 | 50 | Jaroslav Kysela | |
5 | 72 | Mark Clarkstone | h2. Official Repository |
6 | 1 | Adam Sutton | |
7 | 74 | Mark Clarkstone | The official deb packages are built using "Doozer":https://doozer.io and our repository is provided by "Bintray":https://bintray.com/tvheadend. |
8 | 1 | Adam Sutton | |
9 | 72 | Mark Clarkstone | h3. Build Types and Versions |
10 | 1 | Adam Sutton | |
11 | 72 | Mark Clarkstone | | *Build Type* | *Description* | *Version* | *Repo Component* | |
12 | 82 | Mark Clarkstone | | release | The latest version marked for release | 4.2.5 | release-4.2 | |
13 | | stable | The latest stable code with changes/fixes between releases | 4.2.5-x~githash | stable-4.2 | |
||
14 | 72 | Mark Clarkstone | | unstable | This is the current development "bleeding-edge" | 4.3.x | unstable | |
15 | 1 | Adam Sutton | |
16 | 72 | Mark Clarkstone | *It's advised that you use release or stable, only use unstable if you want bleeding-edge & don't mind breakages!* |
17 | 1 | Adam Sutton | |
18 | 72 | Mark Clarkstone | h3. Supported Distributions and Architectures |
19 | 1 | Adam Sutton | |
20 | 72 | Mark Clarkstone | The official repository supports the following distributions and architectures. |
21 | 54 | Mark Clarkstone | |
22 | 72 | Mark Clarkstone | | *Distribution* | *Architecture* | *Notes* | |
23 | | Debian Jessie "jessie" (8.x) | - i386 |
||
24 | - amd64 | | |
||
25 | | Debian Stretch "stretch" (9.x) | - i386 |
||
26 | - amd64 | | |
||
27 | | Ubuntu Xenial "xenial" (16.04) | - i386 |
||
28 | - amd64 |
||
29 | - armhf |
||
30 | - arm64 | armhf/arm64 do not have transcoding support (yet) | |
||
31 | | Trusty "trusty" (14.04) | - i386 |
||
32 | - amd64 | | |
||
33 | 1 | Adam Sutton | |
34 | 72 | Mark Clarkstone | *Where are the builds for my distro/arch?* |
35 | At the moment the Doozer build system only has support for a limited number of build targets. New targets will be added as soon as possible. Take a look at the 3rd-party repos below or build your own. |
||
36 | 1 | Adam Sutton | |
37 | 72 | Mark Clarkstone | h3. Usage |
38 | 1 | Adam Sutton | |
39 | First install bintray's GPG key: |
||
40 | |||
41 | <pre> |
||
42 | sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 379CE192D401AB61 |
||
43 | </pre> |
||
44 | |||
45 | Select which build type you want and add the repository accordingly: |
||
46 | |||
47 | 50 | Jaroslav Kysela | <pre> |
48 | 72 | Mark Clarkstone | echo "deb https://dl.bintray.com/tvheadend/deb DISTRO REPO-COMPONENT" | sudo tee -a /etc/apt/sources.list |
49 | 1 | Adam Sutton | </pre> |
50 | 28 | Adam Sutton | |
51 | 72 | Mark Clarkstone | Replace DISTRO with the distribution's code name (as quoted in _Supported Distributions and Architectures_). |
52 | Replace REPO-COMPONENT with the desired build type. |
||
53 | 1 | Adam Sutton | |
54 | 35 | Mark Clarkstone | > Example: |
55 | 34 | Mark Clarkstone | > <pre> |
56 | 50 | Jaroslav Kysela | echo "deb https://dl.bintray.com/tvheadend/deb xenial stable-4.2" | sudo tee -a /etc/apt/sources.list |
57 | 21 | Mark Clarkstone | </pre> |
58 | |||
59 | 28 | Adam Sutton | Refresh the available packages and install: |
60 | 21 | Mark Clarkstone | |
61 | <pre> |
||
62 | 28 | Adam Sutton | sudo apt-get update |
63 | 21 | Mark Clarkstone | sudo apt-get install tvheadend |
64 | </pre> |
||
65 | |||
66 | 28 | Adam Sutton | Note: if you install more than one suite you will only ever get packages from the one holding the most recent version number, so the order of priority would be: |
67 | 50 | Jaroslav Kysela | |
68 | 28 | Adam Sutton | <pre> |
69 | unstable > stable-4.2 > stable |
||
70 | 54 | Mark Clarkstone | </pre> |
71 | 1 | Adam Sutton | |
72 | 72 | Mark Clarkstone | h3. Help |
73 | 1 | Adam Sutton | |
74 | 72 | Mark Clarkstone | Please open an issue or join the IRC channel to report problems with the official repository. |
75 | 50 | Jaroslav Kysela | |
76 | 72 | Mark Clarkstone | h2. Unofficial Repositories |
77 | 58 | Mark Clarkstone | |
78 | 72 | Mark Clarkstone | 3rd-party unofficial repositories. |
79 | 58 | Mark Clarkstone | |
80 | 72 | Mark Clarkstone | h3. Ubuntu PPA |
81 | 58 | Mark Clarkstone | |
82 | Unofficial PPAs are provided by Michael Marley that provide packages for Artful, Zesty, Yakkety, and Xenial for the amd64, arm64, armhf, i386 and ppc64el architectures. |
||
83 | |||
84 | 72 | Mark Clarkstone | h4. Usage |
85 | 58 | Mark Clarkstone | |
86 | 72 | Mark Clarkstone | First, pick either the Stable or Unstable build: |
87 | |||
88 | For the Stable PPA containing daily builds from the latest stable branch: |
||
89 | 58 | Mark Clarkstone | <pre>sudo apt-add-repository ppa:mamarley/tvheadend-git-stable</pre> |
90 | 62 | Mark Clarkstone | |
91 | 72 | Mark Clarkstone | For the Unstable PPA containing daily builds from master: |
92 | 58 | Mark Clarkstone | <pre>sudo apt-add-repository ppa:mamarley/tvheadend-git</pre> |
93 | |||
94 | 1 | Adam Sutton | Then, for both: |
95 | 58 | Mark Clarkstone | |
96 | 72 | Mark Clarkstone | Update your packages: |
97 | 62 | Mark Clarkstone | <pre>sudo apt update</pre> |
98 | 58 | Mark Clarkstone | |
99 | 72 | Mark Clarkstone | Install: |
100 | 50 | Jaroslav Kysela | <pre>sudo apt install tvheadend</pre> |
101 | 57 | Mark Clarkstone | |
102 | 72 | Mark Clarkstone | h4. Help |
103 | |||
104 | 73 | Mark Clarkstone | If you experience issues with this PPA please contact Michael on IRC (mamarley in #hts on Freenode) or "Launchpad":https://launchpad.net/~mamarley. |
105 | 1 | Adam Sutton | |
106 | h3. Raspberry Pi / Raspbian armhf |
||
107 | 78 | Mark Clarkstone | |
108 | 81 | Mark Clarkstone | **Update: Bintray have very kindly unblocked my repo. The fault was mine. I was pushing too many builds to the repo & hitting the API limits, therefore I'll be limiting building on both Pi's to nightly instead of per commit.** |
109 | 72 | Mark Clarkstone | |
110 | Unofficial Raspbian packages are provided by mpmc for both Raspbian Jessie and Stretch. *Before using this repo please read the notes.* |
||
111 | |||
112 | h4. Usage |
||
113 | |||
114 | To use this repository follow the official usage guide, but change the repository URL from *https://dl.bintray.com/tvheadend/deb* to *https://dl.bintray.com/mpmc/deb* and replace DISTRO with raspbianstretch or raspbianjessie. |
||
115 | 1 | Adam Sutton | |
116 | 72 | Mark Clarkstone | h4. Notes |
117 | |||
118 | * These builds are done *manually* and may lag behind, however I'll do my best to keep them updated until the official repo is able to provide the packages. |
||
119 | 76 | Mark Clarkstone | * -Only *stable-4.2* and *unstable* builds are available. *There is no release-4.2 build*.- There is now a release-4.2 starting with 4.2.4. |
120 | 72 | Mark Clarkstone | * There's no transcoding support, mainly because the Pi isn't powerful enough to do software transcoding and hardware transcoding is not yet available. |
121 | * There is no changes to the code whatsoever for these builds. |
||
122 | * Make sure to enter the distro as raspbianjessie/raspbianstretch and not jessie/stretch. |
||
123 | |||
124 | h4. Help |
||
125 | |||
126 | If you experience issues with this repository contact mpmc on "github":http://github.com/mpmc or send a message on IRC (mpmc in #hts on Freenode). |