Project

General

Profile

AptRepositories » History » Version 70

Mark Clarkstone, 2017-09-18 17:03

1 54 Mark Clarkstone
h1. Official APT Repository
2 1 Adam Sutton
3 68 Mark Clarkstone
*We are aware that +stable-4.2+ packages are currently missing from Bintray, please see #4547 for details.* Packages can be directly downloaded from "here (Doozer.io)":https://doozer.io/tvheadend/tvheadend/builds/e195d1845f6ce0c3031c4f4f9de465693d82842a.
4
5 70 Mark Clarkstone
*Update*:
6 69 Mark Clarkstone
There are still some issues with the repository but things are starting to return to normal.
7
8 54 Mark Clarkstone
The repository is provided by "Bintray":https://bintray.com/tvheadend containing packages built by "Doozer.io":https://doozer.io/tvheadend/tvheadend. 
9 50 Jaroslav Kysela
10 54 Mark Clarkstone
*Please note that with the changes to the build system, the list of supported distros has changed.* Please check the _Supported Distributions / Platforms_ list below, if your distribution isn't listed there may be an older version available, new build targets *will* be added as soon as possible.
11 50 Jaroslav Kysela
12 54 Mark Clarkstone
h2. 4.2
13 50 Jaroslav Kysela
14
This is the current-stable release.
15
16 54 Mark Clarkstone
h3. Supported Distributions / Platforms
17 50 Jaroslav Kysela
18 1 Adam Sutton
* Debian
19 50 Jaroslav Kysela
** Jessie "jessie" (8.x) - i386 / amd64
20 62 Mark Clarkstone
** Jessie "stretch" (9.x) - i386 / amd64
21 1 Adam Sutton
22 50 Jaroslav Kysela
* Ubuntu
23
** Xenial "xenial" (16.04.x) - i386 / amd64 / armhf / arm64.
24 53 Mark Clarkstone
** Trusty "trusty" (14.04.x) - i386 / amd64 - see note 1.
25 1 Adam Sutton
26 62 Mark Clarkstone
If you're looking for Raspbian "raspbianjessie/raspbianstretch" packages, please see the Help! below.
27 50 Jaroslav Kysela
28
Notes:
29 1 Adam Sutton
# The armhf and arm64 builds do not have transcoding built in at the moment.
30 53 Mark Clarkstone
31 1 Adam Sutton
h4. Build types
32
33 61 Mark Clarkstone
* release-4.2 - The latest version marked as release (like 4.2.2). This is currently 4.2.3.
34 1 Adam Sutton
* stable-4.2 - The latest official / stable code including changes between releases (like 4.2.2-10~gHASH).
35 53 Mark Clarkstone
36 54 Mark Clarkstone
h2. 4.0
37 1 Adam Sutton
38 50 Jaroslav Kysela
This is the old-stable release. Please note, there will be no further updates to this version.
39 1 Adam Sutton
40 54 Mark Clarkstone
h3. Supported Distributions / Platforms
41 1 Adam Sutton
42 50 Jaroslav Kysela
* Debian
43 1 Adam Sutton
** Jessie "jessie" (8.x) - i386 / amd64
44 28 Adam Sutton
45 1 Adam Sutton
* Ubuntu
46 50 Jaroslav Kysela
** Xenial "xenial" (16.04.x) - i386 / amd64
47 1 Adam Sutton
** Wily Werewolf "wily" (15.10.x) - i386 / amd64
48 50 Jaroslav Kysela
** Trusty (14.04.x) "trusty" - i386 / amd64
49
50 1 Adam Sutton
h4. Build types
51 50 Jaroslav Kysela
52 1 Adam Sutton
There is currently only one build type for 4.0.
53 50 Jaroslav Kysela
54
* stable - An old-stable build from the 4.0 release branch.
55
56 54 Mark Clarkstone
h2. Development/Unstable
57 50 Jaroslav Kysela
58
This is the current development "bleeding-edge" release. It contains builds from the development (master) branch on "Github":https://github.com/tvheadend/tvheadend. *Only use this build if you want bleeding-edge & don't mind breakages!*
59
60 54 Mark Clarkstone
h3. Supported Distributions / Platforms
61 50 Jaroslav Kysela
62
* Debian
63 1 Adam Sutton
** Jessie "jessie" (8.x) - i386 / amd64
64 62 Mark Clarkstone
** Jessie "stretch" (9.x) - i386 / amd64
65 50 Jaroslav Kysela
66
* Ubuntu
67
** Xenial "xenial" (16.04.x) - i386 / amd64 / armhf / arm64 - see note 1 + 2.
68
** Trusty "trusty" (14.04.x) - i386 / amd64 - see note 1.
69 1 Adam Sutton
70 50 Jaroslav Kysela
Notes:
71 21 Mark Clarkstone
# Due to issues with building x264, i386 builds have limited transcoding support.
72 50 Jaroslav Kysela
# armhf and arm64 builds do not have transcoding built in at the moment.
73 28 Adam Sutton
74 50 Jaroslav Kysela
h4. Build types
75 28 Adam Sutton
76 50 Jaroslav Kysela
There is currently only one build type for unstable.
77
78
* unstable - This will contain a nightly build from the development branch (master)
79
80 54 Mark Clarkstone
h2. Usage
81 50 Jaroslav Kysela
82 1 Adam Sutton
First install bintray's GPG key:
83
84
<pre>
85
sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 379CE192D401AB61 
86
</pre>
87
88
Select which build type you want and add the repository accordingly:
89
90 21 Mark Clarkstone
<pre>
91 28 Adam Sutton
echo "deb https://dl.bintray.com/tvheadend/deb DISTRO BUILDTYPE" | sudo tee -a /etc/apt/sources.list
92 21 Mark Clarkstone
</pre>
93
94 33 Mark Clarkstone
Replace DISTRO with the distribution's code name (as quoted in the _Supported Distro's / Platforms_ list). 
95 21 Mark Clarkstone
Replace BUILDTYPE with the desired build type.
96 1 Adam Sutton
 
97 35 Mark Clarkstone
> Example:
98 34 Mark Clarkstone
> <pre>
99 50 Jaroslav Kysela
echo "deb https://dl.bintray.com/tvheadend/deb xenial stable-4.2" | sudo tee -a /etc/apt/sources.list
100 21 Mark Clarkstone
</pre>
101
102
Refresh the available packages and install:
103 1 Adam Sutton
104 28 Adam Sutton
<pre>
105 21 Mark Clarkstone
sudo apt-get update
106
sudo apt-get install tvheadend
107 28 Adam Sutton
</pre>
108 21 Mark Clarkstone
109
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:
110
111 28 Adam Sutton
<pre>
112 50 Jaroslav Kysela
unstable > stable-4.2 > stable
113 28 Adam Sutton
</pre>
114
115 54 Mark Clarkstone
h2. Help!
116 1 Adam Sutton
117 50 Jaroslav Kysela
*Where are the builds for my distro/arch?*
118 1 Adam Sutton
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. If you're impatient you may build your own packages. 
119
120 50 Jaroslav Kysela
*What happened to nightly builds?*
121 53 Mark Clarkstone
They're no longer being provided, packages are now built on-the-fly once a commit to the branch has been pushed.
122 58 Mark Clarkstone
123 63 Mark Clarkstone
*Are there packages for Raspbian?*
124 58 Mark Clarkstone
Yes! However it's not official, but pretty close. To use it, you simply follow the usage instructions above but change the apt source URL..
125
* From 
126
<pre>
127
deb https://dl.bintray.com/tvheadend/deb
128
</pre>
129
130
* To 
131
<pre>
132
deb https://dl.bintray.com/mpmc/deb
133 1 Adam Sutton
</pre>
134 58 Mark Clarkstone
> Example:
135 62 Mark Clarkstone
> <pre>echo "deb https://dl.bintray.com/mpmc/deb raspbianstretch stable-4.2" | sudo tee -a /etc/apt/sources.list</pre>
136 58 Mark Clarkstone
137
Please read the following:
138
* 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.
139 1 Adam Sutton
* Only *stable-4.2* and *unstable* builds are available. *There is no release-4.2 build*.
140 58 Mark Clarkstone
* There is no transcoding support, mainly because the Pi isn't powerful enough to do software transcoding & hardware transcoding is not yet available. 
141
* There is no changes to the code whatsoever for these builds.
142 62 Mark Clarkstone
* Make sure to enter the distro as "raspbianjessie"/"raspbianstretch" and not "jessie"/"stretch".
143 58 Mark Clarkstone
* If you experience an issue please contact me on "github":http://github.com/mpmc, or send me a message on IRC - I idle as mpmc in #hts on Freenode.
144 28 Adam Sutton
145 50 Jaroslav Kysela
*Is there an Ubuntu PPA?*
146 57 Mark Clarkstone
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.
147 1 Adam Sutton
148 57 Mark Clarkstone
First, pick either the Stable or Unstable builds:
149 1 Adam Sutton
150 57 Mark Clarkstone
* For the Stable PPA containing daily builds from the latest stable branch:
151
<pre>sudo apt-add-repository ppa:mamarley/tvheadend-git-stable</pre>
152
153
* For the Unstable PPA containing daily builds from master:
154 1 Adam Sutton
<pre>sudo apt-add-repository ppa:mamarley/tvheadend-git</pre>
155 50 Jaroslav Kysela
156 57 Mark Clarkstone
Then, for both:
157
158 50 Jaroslav Kysela
* Update your packages:
159 1 Adam Sutton
<pre>sudo apt update</pre>
160
161 52 Mark Clarkstone
* Install:
162 50 Jaroslav Kysela
<pre>sudo apt install tvheadend</pre>
163 1 Adam Sutton
164 57 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.