Project

General

Profile

AptRepositories » History » Version 145

saen acro, 2022-12-29 15:54

1 72 Mark Clarkstone
h1. APT Repositories
2 1 Adam Sutton
3 139 saen acro
{{>toc}}
4 50 Jaroslav Kysela
5 138 saen acro
h2. user#14626 repository on cloudsmith.io
6 1 Adam Sutton
7 138 saen acro
https://cloudsmith.io/~tvheadend/
8
9 143 saen acro
10 139 saen acro
This repository support various targets i386, i686, x86_64, aarch64, armv6l, armv7l.
11
Distributions:
12 140 saen acro
13
h4. *Ubuntu LTS:*
14 141 saen acro
15 144 saen acro
{{collapse(View details...)
16 139 saen acro
14.04 LTS (Trusty Tahr)
17
16.04 LTS (Xenial Xerus)
18
18.04 LTS (Bionic Beaver)
19
20.04 LTS (Focal Fossa)
20 1 Adam Sutton
22.04 LTS (Jammy Jellyfish)
21 144 saen acro
}}
22 140 saen acro
h4. *Debian:* 
23 1 Adam Sutton
24 144 saen acro
{{collapse(View details...)
25 1 Adam Sutton
Debian 8 (Jessie)
26
Debian 9 (Stretch)
27
Debian 10 (Buster)
28
Debian 11 (Bullseye)
29
Debian 12 (Bookworm)
30 144 saen acro
}}
31 143 saen acro
h3. Setup:
32
<pre><code class="shell">
33
curl -1sLf \
34
  'https://dl.cloudsmith.io/public/tvheadend/tvheadend/setup.deb.sh' \
35
  | sudo -E bash
36 1 Adam Sutton
</code></pre>
37
Copy and paste to terminal
38 144 saen acro
39
40 138 saen acro
---
41
42 142 saen acro
h2.  %{color: #f00}*+OUTDATED+* Official%
43 138 saen acro
44 117 Mark Clarkstone
Our official repository and packages are provided by "Doozer":https://doozer.io on https://apt.tvheadend.org.
45 1 Adam Sutton
46 145 saen acro
{{collapse(View details...)
47 117 Mark Clarkstone
h4. Status
48 1 Adam Sutton
49 133 Mark Clarkstone
(/) *Development is the +recommended+ choice for most people as Stable is very out-of-date at the moment.*
50 130 Mark Clarkstone
51 133 Mark Clarkstone
2021/08/15 : Unstable builds are available for Debian Bullseye on amd64 and i386.
52 1 Adam Sutton
53 130 Mark Clarkstone
Please report any issues here - #5264.
54 1 Adam Sutton
55 117 Mark Clarkstone
h3. Build Types
56 1 Adam Sutton
57 117 Mark Clarkstone
| *Build Type* | *Description*             | *(Current) Version* | *Repo Component* |
58 121 Mark Clarkstone
| Stable       | Latest release and fixes  | v4.2.7-*~githash      | stable           |
59 132 Flole Systems
| Development  | Development builds        | v4.3.*-*~githash      | unstable         |
60 1 Adam Sutton
61 117 Mark Clarkstone
*But, where's release?!*
62 1 Adam Sutton
63
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.
64 117 Mark Clarkstone
65
h3. Supported Distros and Architectures
66
67 133 Mark Clarkstone
Rather than listing all the supported distros please take a look at the directory listing on "apt.tvheadend.org":http://apt.tvheadend.org/ for your chosen build type.
68 117 Mark Clarkstone
69 72 Mark Clarkstone
70 133 Mark Clarkstone
fn1. Transcoding support is unavailable on some builds/distros.
71
72 117 Mark Clarkstone
-
73 1 Adam Sutton
74 117 Mark Clarkstone
h3. Usage
75 1 Adam Sutton
76 117 Mark Clarkstone
Here are some copy/paste examples on how to use the repo that should work for most[2].
77 1 Adam Sutton
78 137 saen acro
h4. 1. Install Required Packages and add the Repository PGP key *+OUTDATED+*
79 116 Andreas Smas
80 117 Mark Clarkstone
<pre>
81
sudo apt-get -y install coreutils wget apt-transport-https lsb-release ca-certificates
82 134 Mark Clarkstone
</pre>
83
84
<pre>
85 117 Mark Clarkstone
sudo wget -qO- https://doozer.io/keys/tvheadend/tvheadend/pgp | sudo apt-key add -
86
</pre>
87 134 Mark Clarkstone
88
*Note*: _apt-key_ on some newer distros may fail as it's no longer available, in such cases please run the following command instead.
89
90
<pre>
91
wget -qO- https://doozer.io/keys/tvheadend/tvheadend/pgp | sudo tee /etc/apt/trusted.gpg.d/tvheadend.asc
92
</pre>
93
94 1 Adam Sutton
95 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>
96
97
-
98
99
h4. 2. Create/Add the Sources List
100
101
*Raspbian users (and anyone else who can't install/use lsb-release) please see the third footnote[3]*.
102
103
Stable:
104 94 Mark Clarkstone
<pre>
105 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'
106 1 Adam Sutton
</pre>
107 94 Mark Clarkstone
108 117 Mark Clarkstone
Unstable:
109 94 Mark Clarkstone
<pre>
110 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'
111 1 Adam Sutton
</pre>
112 83 Mark Clarkstone
113 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.
114 94 Mark Clarkstone
115 117 Mark Clarkstone
fn3001. Examples.. 
116
<pre>
117
echo "deb http://apt.tvheadend.org/stable raspbian-jessie main" | sudo tee -a /etc/apt/sources.list.d/tvheadend.list
118
echo "deb http://apt.tvheadend.org/stable raspbian-stretch main" | sudo tee -a /etc/apt/sources.list.d/tvheadend.list
119 94 Mark Clarkstone
</pre>
120
121 117 Mark Clarkstone
fn3002. *Tip:* If you want to use unstable, simply replace _stable_ with _unstable_.
122 94 Mark Clarkstone
123 117 Mark Clarkstone
-
124 94 Mark Clarkstone
125 117 Mark Clarkstone
h4. 3. Update Sources and Install
126 94 Mark Clarkstone
127
<pre>
128 21 Mark Clarkstone
sudo apt-get update
129 119 Mark Clarkstone
sudo apt-get install tvheadend
130 136 saen acro
</pre>
131
132
*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> :)
133
134
Job done!
135
136
h3. Help / Feedback
137
138
Please add to issue #5264 or join the IRC channel to report problems/give feedback.
139 145 saen acro
}}
140 136 saen acro
---
141
142 135 saen acro
h2. Third-party 
143
144
h3. %{color: #f00}*Unofficial version!*%
145
%{background:lightgreen}*It can contain unpublic code, 
146
reporting bug's in this version is not acceptable*%<notextile></notextile>
147 28 Adam Sutton
148 1 Adam Sutton
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 ;) ). 
149
150 117 Mark Clarkstone
In any case we'll try our best to help, or point you to where you can get some!
151 58 Mark Clarkstone
152 133 Mark Clarkstone
-
153 58 Mark Clarkstone
154 133 Mark Clarkstone
h3. What Happened to the Bintray Repository?
155 58 Mark Clarkstone
156 133 Mark Clarkstone
Unfortunately due to rate-limiting we've decided to stop/end the use of Bintray. *Don't worry the repository won't be disappearing[4], it just won't be updated - sorry about that.* :( 
157 58 Mark Clarkstone
158 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.
159
160
*Tip:* You can use both apt.tvheadend.org and bintray.com/tvheadend
161
162
-
163
164 58 Mark Clarkstone
h3. Help
165
166 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.
167 58 Mark Clarkstone
168 117 Mark Clarkstone
---
169 62 Mark Clarkstone
170 58 Mark Clarkstone
h3. Ubuntu PPA
171 72 Mark Clarkstone
172 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.
173 57 Mark Clarkstone
174 117 Mark Clarkstone
h4. Status
175
176
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.
177
178 1 Adam Sutton
h4. Usage
179 78 Mark Clarkstone
180 117 Mark Clarkstone
*1. Pick a Build Type*
181 1 Adam Sutton
182 118 Mark Clarkstone
For the stable PPA containing daily builds from the latest stable branch:
183 1 Adam Sutton
<pre>sudo apt-add-repository ppa:mamarley/tvheadend-git-stable</pre>
184 72 Mark Clarkstone
185 118 Mark Clarkstone
For the unstable PPA containing daily builds from master:
186 96 Mark Clarkstone
<pre>sudo apt-add-repository ppa:mamarley/tvheadend-git</pre>
187
188 117 Mark Clarkstone
*2. Update Sources*
189 107 Mark Clarkstone
190
<pre>sudo apt update</pre>
191
192 117 Mark Clarkstone
*3. Install* 
193 72 Mark Clarkstone
<pre>sudo apt install tvheadend</pre>
194
195
h4. Help
196
197 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.