<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=3924&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / Sources.list ascii-backports question]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=3924</link>
		<description><![CDATA[The most recent posts in Sources.list ascii-backports question.]]></description>
		<lastBuildDate>Tue, 03 Nov 2020 21:59:12 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: Sources.list ascii-backports question]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=25650#p25650</link>
			<description><![CDATA[<div class="quotebox"><cite>rolfie wrote:</cite><blockquote><div><p>... backports is pinned down.<br />If you want packages from backports, you need to enter:</p><div class="codebox"><pre><code>apt -t ascii-backports install wine</code></pre></div></div></blockquote></div><p>Thanks for the heads up.<br />I&#039;m still trying to learn how to use command line instead of synaptic.</p><div class="quotebox"><cite>ralph.ronnquist wrote:</cite><blockquote><div><p>... <span class="bbc">apt policy wine</span>, the backports version(s) have priority 100 which is less than the 500 of the version(s) currently installed.<br />... 100 is the default priority for backports on the basis that they should not be installed unless explicitly asked ...</p></div></blockquote></div><p>I see.<br />I&#039;ll get on to that and see how it goes.</p><p>Thanks for your input.</p><p>Cheers,</p><p>A.</p>]]></description>
			<author><![CDATA[dummy@example.com (Altoid)]]></author>
			<pubDate>Tue, 03 Nov 2020 21:59:12 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=25650#p25650</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sources.list ascii-backports question]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=25644#p25644</link>
			<description><![CDATA[<p>Yes.</p><p>As you see wth <span class="bbc">apt policy wine</span>, the backports version(s) have priority 100 which is less than the 500 of the version(s) currently installed. That 100 is the default priority for backports on the basis that they should not be installed unless explicitly asked for or being an update of what is currently installed. As is, the 500 of the currently installed version(s) win.</p><p>You as @rolfie says probably want to leave the priorities like that, and just install manually, with</p><div class="codebox"><pre><code>apt-get install --no-install-recommends -t ascii-backports wine</code></pre></div><p> The <span class="bbc">-t ascii-backports</span> part tells <span class="bbc">apt-get</span> to for sure install the nominated package and its dependencies from <span class="bbc">ascii-backports</span> as if it had priority 1000 (or something above 500).</p><p>If later <span class="bbc">ascii-backports</span> gets another, newer version, the installed version will be an unsupported version at priority 100, and therefore a plain <span class="bbc">upgrade</span> will result in it being upgraded.</p>]]></description>
			<author><![CDATA[dummy@example.com (ralph.ronnquist)]]></author>
			<pubDate>Tue, 03 Nov 2020 20:58:54 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=25644#p25644</guid>
		</item>
		<item>
			<title><![CDATA[Re: Sources.list ascii-backports question]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=25641#p25641</link>
			<description><![CDATA[<p>Yes, backports is pinned down. If you want packages from backports, you need to enter:</p><div class="codebox"><pre><code>apt -t ascii-backports install wine</code></pre></div><p>or (as example)</p><div class="codebox"><pre><code>apt install wine-4.0-2~bpo9+1</code></pre></div><p>rolfie</p>]]></description>
			<author><![CDATA[dummy@example.com (rolfie)]]></author>
			<pubDate>Tue, 03 Nov 2020 20:45:28 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=25641#p25641</guid>
		</item>
		<item>
			<title><![CDATA[Sources.list ascii-backports question]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=25639#p25639</link>
			<description><![CDATA[<p>Hello:</p><p>I run Devuan ascii latest:</p><div class="codebox"><pre><code>groucho@devuan:~$ uname -a
Linux devuan 4.9.0-14-amd64 #1 SMP Debian 4.9.240-2 (2020-10-30) x86_64 GNU/Linux
groucho@devuan:~$ </code></pre></div><p>This is my sources.list file:</p><div class="codebox"><pre><code>groucho@devuan:~$ more /etc/apt/sources.list
## package repositories

deb http://deb.devuan.org/merged/ ascii main contrib non-free
deb http://deb.devuan.org/merged/ ascii-security main contrib non-free
deb http://deb.devuan.org/merged/ ascii-updates main contrib non-free
deb http://deb.devuan.org/merged/ ascii-backports main contrib non-free 

groucho@devuan:~$ </code></pre></div><p>I see there is a backport of wine in the ascii repository ...</p><div class="codebox"><pre><code>29 results for &quot;wine&quot; in ascii (in 10.138602ms)

    [ascii-backports] fonts-wine-4.0-2~bpo9+1
    [ascii-backports] libwine-4.0-2~bpo9+1
    [ascii-backports] libwine-dev-4.0-2~bpo9+1
    [ascii-backports] q4wine-1.3.11-1~bpo9+1
    [ascii-backports] wine-4.0-2~bpo9+1
    [ascii-backports] wine64-4.0-2~bpo9+1
    [ascii-backports] wine64-preloader-4.0-2~bpo9+1
    [ascii-backports] wine64-tools-4.0-2~bpo9+1
    [ascii-backports] wine-binfmt-4.0-2~bpo9+1
--- snip ---</code></pre></div><p>... but it is not installed in my system:</p><div class="codebox"><pre><code>groucho@devuan:~$ apt policy wine
wine:
  Installed: 1.8.7-2
  Candidate: 1.8.7-2
  Version table:
     4.0-2~bpo9+1 100
        100 http://deb.devuan.org/merged ascii-backports/main amd64 Packages
        100 http://deb.devuan.org/merged ascii-backports/main i386 Packages
 *** 1.8.7-2 500
        500 http://deb.devuan.org/merged ascii/main amd64 Packages
        500 http://deb.devuan.org/merged ascii/main i386 Packages
        100 /var/lib/dpkg/status
groucho@devuan:~$ </code></pre></div><p>Does it have to be purposely installed?</p><p>Thanks in advance.</p><p>A.</p>]]></description>
			<author><![CDATA[dummy@example.com (Altoid)]]></author>
			<pubDate>Tue, 03 Nov 2020 20:36:03 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=25639#p25639</guid>
		</item>
	</channel>
</rss>
