Project

General

Profile

AptRepositories » History » Version 8

Dave Chapman, 2013-05-27 00:53

1 5 Andy Brown
h1. Ubuntu Apt Repository
2 1 Adam Sutton
3
Tvheadend now maintains its own apt repository (rather than the previous use of launchpad). The repository is actually made up of three separate sub-repositories containing builds of varying stability:
4
5
* http://apt.tvheadend.org/stable - this holds the latest stable release, use this for production systems.
6
* http://apt.tvheadend.org/beta - this holds beta builds for the next upcoming release, these are usually fairly stable though expect some problems early in the process.
7
* http://apt.tvheadend.org/unstable - this holds nightly (assuming something has changed) builds, they can vary from reasonably stable to downright awful, use at your own risk!
8
9 7 Adam Sutton
If you had previously added the launchpad PPA, please be sure to remove it (as it no longer exists)
10
11
<pre>
12
sudo apt-add-repository -r http://ppa.launchpad.net/adamsutton/tvheadend
13
</pre>
14
15 1 Adam Sutton
Before you can use the repositories you probably want to import the GPG signing key:
16
17
<pre>
18 8 Dave Chapman
curl http://apt.tvheadend.org/repo.gpg.key | sudo apt-key add -
19 1 Adam Sutton
</pre>
20
21 6 Adam Sutton
You will then need to add which ever repository you feel is most appropriate, for example if you want to be cautious and have a reliable system:
22 1 Adam Sutton
23
<pre>
24 6 Adam Sutton
sudo apt-add-repository http://apt.tvheadend.org/stable
25 3 Adam Sutton
sudo apt-get update
26 1 Adam Sutton
</pre>
27
28
Note: if you install more than one repository you will only ever get packages from the one holding the most recent version number, so the order of priority would be:
29
30 2 Adam Sutton
<pre>
31 1 Adam Sutton
unstable > beta > stable
32 2 Adam Sutton
</pre>
33 1 Adam Sutton
34 6 Adam Sutton
You can easily remove a repository though, so should you suddenly come over all crazy and want to live on the edge:
35 1 Adam Sutton
36
<pre>
37 6 Adam Sutton
sudo apt-add-repository -r http://apt.tvheadend.org/stable
38
sudo apt-add-repository http://apt.tvheadend.org/unstable
39
sudo apt-get update
40 1 Adam Sutton
</pre>
41 5 Andy Brown
42
h2. Debian Apt Repository
43
44
To add the repository to debian, it is a similar process to the above used for Ubuntu, however debian has a more manual way of adding repo's.
45
46
Selection of unstable > beta > stable is the same. Your /etc/apt/sources.list contains the repo's you currently have setup. So simply add the required revision in the following format:
47
48
<pre>
49
deb http://apt.tvheadend.org/stable wheezy main
50
</pre>
51
52
Change the entry of 'wheezy' to your current release/revision. After adding ensure you have added the GPG signing key (as above with Ubuntu), and then carry out your normal update and install
53
54
<pre>
55
apt-get update
56
apt-get install tvheadend
57
</pre>
58
59
60
h3. Raspberry Pi
61 4 Adam Sutton
62
There are now builds for the pi in the apt repository. We've been a bit naughty and just lumped them in main as armhf (which conflicts with standard debian repo's, but blame poor arch naming!). So you can just use the above commands or add:
63
64
<pre>
65
deb http://apt.tvheadend.org/stable wheezy main
66
</pre>
67
68
To your sources.list file.