Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
cms:repository [2018/10/21 10:52] Andrey Tataranovichcms:repository [2020/02/02 09:22] Andrey Tataranovich
Line 19: Line 19:
     versions = {     versions = {
         'debian': ['Jessie', 'Stretch', 'Buster', 'Sid'],         'debian': ['Jessie', 'Stretch', 'Buster', 'Sid'],
-        'ubuntu': ['Trusty', 'Xenial', 'Bionic']+        'ubuntu': ['Trusty', 'Xenial', 'Bionic', 'Eoan']
     }     }
     dist = document.getElementById('distribution');     dist = document.getElementById('distribution');
Line 38: Line 38:
         'debian-jessie': 'deb http://www.tataranovich.com/debian jessie main backports',         'debian-jessie': 'deb http://www.tataranovich.com/debian jessie main backports',
         'debian-stretch': 'deb http://www.tataranovich.com/debian stretch main backports',         'debian-stretch': 'deb http://www.tataranovich.com/debian stretch main backports',
-        'debian-buster': 'deb http://www.tataranovich.com/debian buster main',+        'debian-buster': 'deb http://www.tataranovich.com/debian buster main backports',
         'debian-sid': 'deb http://www.tataranovich.com/debian sid main',         'debian-sid': 'deb http://www.tataranovich.com/debian sid main',
         'ubuntu-trusty': 'deb http://www.tataranovich.com/ubuntu trusty main',         'ubuntu-trusty': 'deb http://www.tataranovich.com/ubuntu trusty main',
         'ubuntu-xenial': 'deb http://www.tataranovich.com/ubuntu xenial main',         'ubuntu-xenial': 'deb http://www.tataranovich.com/ubuntu xenial main',
-        'ubuntu-bionic': 'deb http://www.tataranovich.com/ubuntu bionic main'+        'ubuntu-bionic': 'deb http://www.tataranovich.com/ubuntu bionic main'
 +        'ubuntu-eoan': 'deb http://www.tataranovich.com/ubuntu eoan main',
     }     }
     dist = document.getElementById('distribution');     dist = document.getElementById('distribution');
Line 51: Line 52:
     key = distribution + '-' + version;     key = distribution + '-' + version;
     if (key in sources) {     if (key in sources) {
-        text = 'sudo apt-get install curl gnupg\n';+        text = 'sudo apt-get install -y curl gnupg\n';
         text = text + 'curl -fsSL http://www.tataranovich.com/debian/gpg | sudo apt-key add -\n';         text = text + 'curl -fsSL http://www.tataranovich.com/debian/gpg | sudo apt-key add -\n';
         text = text + `APT_SOURCE='${sources[key]}'\n`;         text = text + `APT_SOURCE='${sources[key]}'\n`;
Line 74: Line 75:
  
 <script>repoUpdateVersion()</script> <script>repoUpdateVersion()</script>
 +
 +<noscript>
 +<p>Debian Jessie</p>
 +<pre>
 +deb http://www.tataranovich.com/debian jessie main backports
 +deb-src http://www.tataranovich.com/debian jessie main backports
 +</pre>
 +
 +<p>Debian Stretch</p>
 +<pre>
 +deb http://www.tataranovich.com/debian stretch main backports
 +deb-src http://www.tataranovich.com/debian stretch main backports
 +</pre>
 +
 +<p>Debian Buster</p>
 +<pre>
 +deb http://www.tataranovich.com/debian buster main backports
 +deb-src http://www.tataranovich.com/debian buster main backports
 +</pre>
 +
 +<p>Debian Sid</p>
 +<pre>
 +deb http://www.tataranovich.com/debian sid main
 +deb-src http://www.tataranovich.com/debian sid main
 +</pre>
 +
 +<p>Ubuntu Trusty</p>
 +<pre>
 +deb http://www.tataranovich.com/ubuntu trusty main
 +deb-src http://www.tataranovich.com/ubuntu trusty main
 +</pre>
 +
 +
 +<p>Ubuntu Xenial</p>
 +<pre>
 +deb http://www.tataranovich.com/ubuntu xenial main
 +deb-src http://www.tataranovich.com/ubuntu xenial main
 +</pre>
 +
 +
 +<p>Ubuntu Bionic</p>
 +<pre>
 +deb http://www.tataranovich.com/ubuntu bionic main
 +deb-src http://www.tataranovich.com/ubuntu bionic main
 +</pre>
 +
 +
 +<p>Ubuntu Eoan</p>
 +<pre>
 +deb http://www.tataranovich.com/ubuntu eoan main
 +deb-src http://www.tataranovich.com/ubuntu eoan main
 +</pre>
 +</noscript>
 </HTML> </HTML>
  
 Please report any problem to the //pkg-master@tataranovich.com//. Please report any problem to the //pkg-master@tataranovich.com//.