Project

General

Profile

AptRepositories » History » Version 128

Mark Clarkstone, 2019-02-27 06:28

1 72 Mark Clarkstone
h1. APT Repositories
2 1 Adam Sutton
3 117 Mark Clarkstone
{{>toc}} 
4 50 Jaroslav Kysela
5 117 Mark Clarkstone
h2. Official
6 1 Adam Sutton
7 117 Mark Clarkstone
Our official repository and packages are provided by "Doozer":https://doozer.io on https://apt.tvheadend.org.
8 1 Adam Sutton
9 117 Mark Clarkstone
h4. Status
10 87 Mark Clarkstone
11 128 Mark Clarkstone
(/) 02/27/2018 - OK
12 126 Mark Clarkstone
13 128 Mark Clarkstone
Please report any issues to: #5264
14 1 Adam Sutton
15 117 Mark Clarkstone
h3. Build Types
16 1 Adam Sutton
17 117 Mark Clarkstone
| *Build Type* | *Description*             | *(Current) Version* | *Repo Component* |
18 121 Mark Clarkstone
| Stable       | Latest release and fixes  | v4.2.7-*~githash      | stable           |
19
| Development  | Development builds        | v4.3.*-*~githash      | unstable         |
20 1 Adam Sutton
21 117 Mark Clarkstone
(/) Stable is the +recommended+ choice for most people.
22
(!) Development is for those who want to help develop and test the latest code.
23 1 Adam Sutton
24 117 Mark Clarkstone
*But, where's release?!*
25 1 Adam Sutton
26 117 Mark Clarkstone
We've decided not to offer "frozen" builds anymore, this is so that people get fixes much sooner. Those that are currently using release can modify their apt sources to stable, or continue as they are now, and move when they feel ready.
27 101 Mark Clarkstone
28 117 Mark Clarkstone
h3. Supported Distros and Architectures
29 1 Adam Sutton
30 117 Mark Clarkstone
| *Distro*            | *Code-name*      | *Architectures*    | *Notes*                                    |
31
| Debian Stretch 9    | stretch          | amd64, i386        | None                                       |
32
| Debian Jessie 8     | jessie           | amd64, i386        | See footnote 1[1]                          |
33
| Ubuntu Bionic 18.04 | bionic           | amd64, i386        | None                                       |
34
| Ubuntu Xenial 16.04 | xenial           | amd64, i386, arm64 | See footnote 1[1] - applies to arm64 only  |
35
| Ubuntu Trusty 14.04 | trusty           | amd64, i386        | None                                       |
36
| Raspbian Stretch 9  | raspbian-stretch | armhf              | See footnote 1[1]                          |
37
| Raspbian Jessie 8   | raspbian-jessie  | armhf              | See footnote 1[1]                          |
38 72 Mark Clarkstone
39 117 Mark Clarkstone
fn1. Transcoding support is unavailable on these distros.
40 1 Adam Sutton
41 117 Mark Clarkstone
-
42 1 Adam Sutton
43 117 Mark Clarkstone
h3. Usage
44 1 Adam Sutton
45 117 Mark Clarkstone
Here are some copy/paste examples on how to use the repo that should work for most[2].
46 1 Adam Sutton
47 117 Mark Clarkstone
h4. 1. Install Required Packages and add the Repository PGP key
48 116 Andreas Smas
49 117 Mark Clarkstone
<pre>
50
sudo apt-get -y install coreutils wget apt-transport-https lsb-release ca-certificates
51
sudo wget -qO- https://doozer.io/keys/tvheadend/tvheadend/pgp | sudo apt-key add -
52
</pre>
53 1 Adam Sutton
54 117 Mark Clarkstone
fn2. We assume you have sudo installed. If not, and you're root, you can omit sudo, otherwise please ask your administrator to.. <pre>apt-get install sudo; usermod -aG sudo <your account name></pre>
55
56
-
57
58
h4. 2. Create/Add the Sources List
59
60
*Raspbian users (and anyone else who can't install/use lsb-release) please see the third footnote[3]*.
61
62
Stable:
63 94 Mark Clarkstone
<pre>
64 117 Mark Clarkstone
sudo sh -c 'echo "deb https://apt.tvheadend.org/stable $(lsb_release -sc) main" | tee -a /etc/apt/sources.list.d/tvheadend.list'
65 1 Adam Sutton
</pre>
66 94 Mark Clarkstone
67 117 Mark Clarkstone
Unstable:
68 94 Mark Clarkstone
<pre>
69 117 Mark Clarkstone
sudo sh -c 'echo "deb https://apt.tvheadend.org/unstable $(lsb_release -sc) main" | tee -a /etc/apt/sources.list.d/tvheadend.list'
70 1 Adam Sutton
</pre>
71 83 Mark Clarkstone
72 117 Mark Clarkstone
fn3. Unfortunately you won't be able to use the command, at least not in the way it's shown, you need to replace " $(lsb_release -sc)" with "raspbian-stretch", "raspbian-jessie" or your distros code-name.
73 94 Mark Clarkstone
74 117 Mark Clarkstone
fn3001. Examples.. 
75
<pre>
76
echo "deb http://apt.tvheadend.org/stable raspbian-jessie main" | sudo tee -a /etc/apt/sources.list.d/tvheadend.list
77
echo "deb http://apt.tvheadend.org/stable raspbian-stretch main" | sudo tee -a /etc/apt/sources.list.d/tvheadend.list
78 94 Mark Clarkstone
</pre>
79
80 117 Mark Clarkstone
fn3002. *Tip:* If you want to use unstable, simply replace _stable_ with _unstable_.
81 94 Mark Clarkstone
82 117 Mark Clarkstone
-
83 94 Mark Clarkstone
84 117 Mark Clarkstone
h4. 3. Update Sources and Install
85 94 Mark Clarkstone
86
<pre>
87 117 Mark Clarkstone
sudo apt-get update
88
sudo apt-get install tvheadend
89 94 Mark Clarkstone
</pre>
90 106 Mark Clarkstone
91 117 Mark Clarkstone
*Tip:* On some installs (generally fresh ones) you might be asked to enter some details. If you'd like to reconfigure these details later, you can run.. <pre>sudo dpkg-reconfigure tvheadend</pre> and afterwards.. <pre>sudo service tvheadend restart</pre> :)
92 21 Mark Clarkstone
93 117 Mark Clarkstone
Job done!
94 21 Mark Clarkstone
95 119 Mark Clarkstone
h3. Help / Feedback
96 21 Mark Clarkstone
97 119 Mark Clarkstone
Please add to issue #5264 or join the IRC channel to report problems/give feedback.
98 117 Mark Clarkstone
99 28 Adam Sutton
---
100
101 117 Mark Clarkstone
h2. Third-party
102 1 Adam Sutton
103 117 Mark Clarkstone
Third-party repositories are provided as-is and supported by the person who manages them, we cannot guarantee that we'll be able to help with issues relating to the use of these packages/repositories. The older official Bintray is exempt from this (Yes we know it's not technically third party ;) ). 
104 1 Adam Sutton
105 117 Mark Clarkstone
In any case we'll try our best to help, or point you to where you can get some!
106 50 Jaroslav Kysela
107 117 Mark Clarkstone
h3. (Older) Official Bintray
108 58 Mark Clarkstone
109 117 Mark Clarkstone
This is our older official Bintray repository, packages are built using Doozer, the repository itself is provided by "Bintray":https://bintray.com via https://bintray.com/tvheadend.
110 58 Mark Clarkstone
111 117 Mark Clarkstone
h4. What Happened to the Bintray Repository?
112 58 Mark Clarkstone
113 117 Mark Clarkstone
Unfortunately due to rate-limiting we've decided to phase-out (SLOWLY) the use of Bintray. *Don't worry the repository won't be disappearing[4], it just won't be updated - sorry about that.* :( 
114 58 Mark Clarkstone
115 117 Mark Clarkstone
You can continue to use Bintray if you like, old instructions can be viewed "here":https://tvheadend.org/projects/tvheadend/wiki/AptRepository/116.
116 58 Mark Clarkstone
117 117 Mark Clarkstone
*Tip:* You can use both apt.tvheadend.org and bintray.com/tvheadend
118
119
fn4. mpmc's third-party Bintray repository will still be updated regularly, so Raspbian users don't panic - see the link above for usage. :) However, it's now recommended that you use the official repo.
120
121
-
122
123 58 Mark Clarkstone
h3. Help
124
125 119 Mark Clarkstone
Please tell us here #5264, make sure you mention you're using Bintray. You can also join the IRC channel if you prefer.
126 58 Mark Clarkstone
127 117 Mark Clarkstone
---
128 62 Mark Clarkstone
129 58 Mark Clarkstone
h3. Ubuntu PPA
130 72 Mark Clarkstone
131 117 Mark Clarkstone
Unofficial PPAs are provided by Michael Marley that provide packages for Artful, Zesty, Yakkety, Xenial and so on for the amd64, arm64, armhf, i386 and ppc64el architectures.
132 57 Mark Clarkstone
133 117 Mark Clarkstone
h4. Status
134
135
Please see "here (stable)":https://launchpad.net/~mamarley/+archive/ubuntu/tvheadend-git-stable and "here (unstable)":https://launchpad.net/~mamarley/+archive/ubuntu/tvheadend-git for PPA status.
136
137 1 Adam Sutton
h4. Usage
138 78 Mark Clarkstone
139 117 Mark Clarkstone
*1. Pick a Build Type*
140 1 Adam Sutton
141 118 Mark Clarkstone
For the stable PPA containing daily builds from the latest stable branch:
142 1 Adam Sutton
<pre>sudo apt-add-repository ppa:mamarley/tvheadend-git-stable</pre>
143 72 Mark Clarkstone
144 118 Mark Clarkstone
For the unstable PPA containing daily builds from master:
145 96 Mark Clarkstone
<pre>sudo apt-add-repository ppa:mamarley/tvheadend-git</pre>
146
147 117 Mark Clarkstone
*2. Update Sources*
148 107 Mark Clarkstone
149
<pre>sudo apt update</pre>
150
151 117 Mark Clarkstone
*3. Install* 
152 72 Mark Clarkstone
<pre>sudo apt install tvheadend</pre>
153
154
h4. Help
155
156 1 Adam Sutton
If you experience issues with this PPA please contact Michael on IRC (mamarley in #hts on Freenode) or "Launchpad":https://launchpad.net/~mamarley.