AptRepositories » History » Version 90
Mark Clarkstone, 2018-02-22 17:43
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 | 88 | Mark Clarkstone | h3. Repository Status |
10 | 87 | Mark Clarkstone | |
11 | 89 | Mark Clarkstone | (/) OK as of 02/22/18. |
12 | 87 | Mark Clarkstone | |
13 | 72 | Mark Clarkstone | h3. Build Types and Versions |
14 | 1 | Adam Sutton | |
15 | 86 | Mark Clarkstone | |
16 | 72 | Mark Clarkstone | | *Build Type* | *Description* | *Version* | *Repo Component* | |
17 | 82 | Mark Clarkstone | | release | The latest version marked for release | 4.2.5 | release-4.2 | |
18 | | stable | The latest stable code with changes/fixes between releases | 4.2.5-x~githash | stable-4.2 | |
||
19 | 72 | Mark Clarkstone | | unstable | This is the current development "bleeding-edge" | 4.3.x | unstable | |
20 | 1 | Adam Sutton | |
21 | 90 | Mark Clarkstone | *It's advised that you use release or stable, only use unstable if you want bleeding-edge & don't mind breakages.* |
22 | |||
23 | If using unstable be sure to install tvheadend-dbg. If reporting crashes with unstable, please include proper [[debugging]] & [[Traces|trace]] information. |
||
24 | 1 | Adam Sutton | |
25 | 72 | Mark Clarkstone | h3. Supported Distributions and Architectures |
26 | 1 | Adam Sutton | |
27 | 72 | Mark Clarkstone | The official repository supports the following distributions and architectures. |
28 | 54 | Mark Clarkstone | |
29 | 72 | Mark Clarkstone | | *Distribution* | *Architecture* | *Notes* | |
30 | | Debian Jessie "jessie" (8.x) | - i386 |
||
31 | - amd64 | | |
||
32 | | Debian Stretch "stretch" (9.x) | - i386 |
||
33 | - amd64 | | |
||
34 | | Ubuntu Xenial "xenial" (16.04) | - i386 |
||
35 | - amd64 |
||
36 | - armhf |
||
37 | - arm64 | armhf/arm64 do not have transcoding support (yet) | |
||
38 | | Trusty "trusty" (14.04) | - i386 |
||
39 | - amd64 | | |
||
40 | 1 | Adam Sutton | |
41 | 72 | Mark Clarkstone | *Where are the builds for my distro/arch?* |
42 | 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. |
||
43 | 1 | Adam Sutton | |
44 | 72 | Mark Clarkstone | h3. Usage |
45 | 1 | Adam Sutton | |
46 | First install bintray's GPG key: |
||
47 | |||
48 | <pre> |
||
49 | sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 379CE192D401AB61 |
||
50 | </pre> |
||
51 | |||
52 | 83 | Mark Clarkstone | > If you see something like the following: |
53 | > <pre>Executing: /tmp/apt-key-gpghome666/gpg.1.sh --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 379CE192D401AB61 |
||
54 | gpg: failed to start the dirmngr '/usr/bin/dirmngr': No such file or directory |
||
55 | gpg: connecting dirmngr at '/run/user/0/gnupg/d.1234/S.dirmngr' failed: No such file or directory |
||
56 | gpg: keyserver receive failed: No dirmngr |
||
57 | </pre> |
||
58 | > You need to install dirmngr |
||
59 | > <pre>sudo apt-get install dirmngr</pre> |
||
60 | > Once installed add the key again, it should succeed this time. |
||
61 | |||
62 | 1 | Adam Sutton | Select which build type you want and add the repository accordingly: |
63 | |||
64 | 50 | Jaroslav Kysela | <pre> |
65 | 72 | Mark Clarkstone | echo "deb https://dl.bintray.com/tvheadend/deb DISTRO REPO-COMPONENT" | sudo tee -a /etc/apt/sources.list |
66 | 1 | Adam Sutton | </pre> |
67 | |||
68 | 86 | Mark Clarkstone | Replace DISTRO with the distribution's code name (as quoted in _Supported Distributions and Architectures_). Replace REPO-COMPONENT with the desired build type. |
69 | |||
70 | *Make sure you, use the text in the +Repo Component+ column and not +Build Type+.* |
||
71 | 1 | Adam Sutton | |
72 | 35 | Mark Clarkstone | > Example: |
73 | 34 | Mark Clarkstone | > <pre> |
74 | 50 | Jaroslav Kysela | echo "deb https://dl.bintray.com/tvheadend/deb xenial stable-4.2" | sudo tee -a /etc/apt/sources.list |
75 | 21 | Mark Clarkstone | </pre> |
76 | |||
77 | 28 | Adam Sutton | Refresh the available packages and install: |
78 | 21 | Mark Clarkstone | |
79 | <pre> |
||
80 | 28 | Adam Sutton | sudo apt-get update |
81 | 21 | Mark Clarkstone | sudo apt-get install tvheadend |
82 | </pre> |
||
83 | |||
84 | 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: |
85 | 50 | Jaroslav Kysela | |
86 | 28 | Adam Sutton | <pre> |
87 | unstable > stable-4.2 > stable |
||
88 | 54 | Mark Clarkstone | </pre> |
89 | 1 | Adam Sutton | |
90 | 72 | Mark Clarkstone | h3. Help |
91 | 1 | Adam Sutton | |
92 | 72 | Mark Clarkstone | Please open an issue or join the IRC channel to report problems with the official repository. |
93 | 50 | Jaroslav Kysela | |
94 | 72 | Mark Clarkstone | h2. Unofficial Repositories |
95 | 58 | Mark Clarkstone | |
96 | 72 | Mark Clarkstone | 3rd-party unofficial repositories. |
97 | 58 | Mark Clarkstone | |
98 | 72 | Mark Clarkstone | h3. Ubuntu PPA |
99 | 58 | Mark Clarkstone | |
100 | 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. |
||
101 | |||
102 | 72 | Mark Clarkstone | h4. Usage |
103 | 58 | Mark Clarkstone | |
104 | 72 | Mark Clarkstone | First, pick either the Stable or Unstable build: |
105 | |||
106 | For the Stable PPA containing daily builds from the latest stable branch: |
||
107 | 58 | Mark Clarkstone | <pre>sudo apt-add-repository ppa:mamarley/tvheadend-git-stable</pre> |
108 | 62 | Mark Clarkstone | |
109 | 72 | Mark Clarkstone | For the Unstable PPA containing daily builds from master: |
110 | 58 | Mark Clarkstone | <pre>sudo apt-add-repository ppa:mamarley/tvheadend-git</pre> |
111 | |||
112 | 1 | Adam Sutton | Then, for both: |
113 | 58 | Mark Clarkstone | |
114 | 72 | Mark Clarkstone | Update your packages: |
115 | 62 | Mark Clarkstone | <pre>sudo apt update</pre> |
116 | 58 | Mark Clarkstone | |
117 | 72 | Mark Clarkstone | Install: |
118 | 50 | Jaroslav Kysela | <pre>sudo apt install tvheadend</pre> |
119 | 57 | Mark Clarkstone | |
120 | 72 | Mark Clarkstone | h4. Help |
121 | |||
122 | 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. |
123 | 1 | Adam Sutton | |
124 | h3. Raspberry Pi / Raspbian armhf |
||
125 | 78 | Mark Clarkstone | |
126 | 72 | Mark Clarkstone | Unofficial Raspbian packages are provided by mpmc for both Raspbian Jessie and Stretch. *Before using this repo please read the notes.* |
127 | |||
128 | h4. Usage |
||
129 | |||
130 | 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. |
||
131 | 1 | Adam Sutton | |
132 | 72 | Mark Clarkstone | h4. Notes |
133 | |||
134 | * 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. |
||
135 | 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. |
136 | 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. |
137 | * There is no changes to the code whatsoever for these builds. |
||
138 | * Make sure to enter the distro as raspbianjessie/raspbianstretch and not jessie/stretch. |
||
139 | |||
140 | h4. Help |
||
141 | |||
142 | 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). |