<?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=3188&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / How to setup PHP=>7.1 on Devuan 2.1?]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=3188</link>
		<description><![CDATA[The most recent posts in How to setup PHP=>7.1 on Devuan 2.1?.]]></description>
		<lastBuildDate>Tue, 05 May 2020 06:38:02 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: How to setup PHP=>7.1 on Devuan 2.1?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=21443#p21443</link>
			<description><![CDATA[<div class="quotebox"><cite>IdeaFix wrote:</cite><blockquote><div><div class="quotebox"><cite>xinomilo wrote:</cite><blockquote><div><p><a href="https://dev1galaxy.org/viewtopic.php?id=3331&amp;p=2" rel="nofollow">https://dev1galaxy.org/viewtopic.php?id=3331&amp;p=2</a></p></div></blockquote></div><p>Unfortunately (for me) i need 386 builds, and there is only amd64.</p></div></blockquote></div><p>Just <a href="https://github.com/oerdnj/deb.sury.org/issues/1354#issuecomment-597537555" rel="nofollow">fudge it with equivs</a>. Either use the dummy package as-is or build your own that symlinks opentmpfiles.</p><p>PHP-FPM from packages.sury.org doesn&#039;t really need systemd, some nit just decided to use systemd-tmpfiles because it&#039;s there... And be a dick about it when someone tries it where systemd is not installable.<br />It&#039;s probably time to retire the use of that repo if this kind of idiocy is going to continue (and I expect it will), but for now a dirty little one-line shell hack keeps the wheels turning.</p><p>Probably a bit late for you I know, but I&#039;ll leave it here for reference anyway.</p>]]></description>
			<author><![CDATA[dummy@example.com (steve_v)]]></author>
			<pubDate>Tue, 05 May 2020 06:38:02 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=21443#p21443</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to setup PHP=>7.1 on Devuan 2.1?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=21234#p21234</link>
			<description><![CDATA[<div class="quotebox"><cite>xinomilo wrote:</cite><blockquote><div><p><a href="https://dev1galaxy.org/viewtopic.php?id=3331&amp;p=2" rel="nofollow">https://dev1galaxy.org/viewtopic.php?id=3331&amp;p=2</a></p></div></blockquote></div><p>Unfortunately (for me) i need 386 builds, and there is only amd64.</p>]]></description>
			<author><![CDATA[dummy@example.com (IdeaFix)]]></author>
			<pubDate>Wed, 22 Apr 2020 16:21:02 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=21234#p21234</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to setup PHP=>7.1 on Devuan 2.1?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=21216#p21216</link>
			<description><![CDATA[<p><a href="https://dev1galaxy.org/viewtopic.php?id=3331&amp;p=2" rel="nofollow">https://dev1galaxy.org/viewtopic.php?id=3331&amp;p=2</a></p>]]></description>
			<author><![CDATA[dummy@example.com (xinomilo)]]></author>
			<pubDate>Wed, 22 Apr 2020 08:17:39 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=21216#p21216</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to setup PHP=>7.1 on Devuan 2.1?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=21213#p21213</link>
			<description><![CDATA[<p>HELP! SOS!</p><p>I can not upgrade PHP from sury! It depends now from systemd-tmpfiles&#160; <img src="https://dev1galaxy.org/img/smilies/sad.png" width="15" height="15" alt="sad" /></p>]]></description>
			<author><![CDATA[dummy@example.com (IdeaFix)]]></author>
			<pubDate>Wed, 22 Apr 2020 07:40:28 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=21213#p21213</guid>
		</item>
		<item>
			<title><![CDATA[Re: How to setup PHP=>7.1 on Devuan 2.1?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=19276#p19276</link>
			<description><![CDATA[<p>You can use sury, but you should edit apt sources file.</p><p>Hereis an official description - <a href="https://packages.sury.org/php/README.txt" rel="nofollow">https://packages.sury.org/php/README.txt</a></p><p>but you may be should make not this code:</p><div class="codebox"><pre><code>#!/bin/bash
# To add this repository please do:

if [ &quot;$(whoami)&quot; != &quot;root&quot; ]; then
    SUDO=sudo
fi

${SUDO} apt-get -y install apt-transport-https lsb-release ca-certificates curl
${SUDO} wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
${SUDO} sh -c &#039;echo &quot;deb https://packages.sury.org/php/ $(lsb_release -sc) main&quot; &gt; /etc/apt/sources.list.d/php.list&#039;
${SUDO} apt-get update</code></pre></div><p>but this:</p><div class="codebox"><pre><code>#!/bin/bash
# To add this repository please do:

if [ &quot;$(whoami)&quot; != &quot;root&quot; ]; then
    SUDO=sudo
fi

${SUDO} apt-get -y install apt-transport-https lsb-release ca-certificates curl
${SUDO} wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg
${SUDO} sh -c &#039;echo &quot;deb https://packages.sury.org/php/ stretch main&quot; &gt; /etc/apt/sources.list.d/php.list&#039;
${SUDO} apt-get update</code></pre></div><p>There is no ascii in deb.sury.org repository.</p>]]></description>
			<author><![CDATA[dummy@example.com (IdeaFix)]]></author>
			<pubDate>Thu, 02 Jan 2020 20:16:26 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=19276#p19276</guid>
		</item>
		<item>
			<title><![CDATA[How to setup PHP=>7.1 on Devuan 2.1?]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=18751#p18751</link>
			<description><![CDATA[<p>How to setup PHP=&gt;7.1 on Devuan 2.1?</p><p>default installation is PHP v7.0.33-0+deb9u6</p><p>can i use deb.sury.org repository?</p>]]></description>
			<author><![CDATA[dummy@example.com (ezmax)]]></author>
			<pubDate>Fri, 29 Nov 2019 03:33:36 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=18751#p18751</guid>
		</item>
	</channel>
</rss>
