Re: update PHP

2015-11-29 Thread Miroslav Lachman
Matthew D. Fuller wrote on 11/29/2015 03:45: On Sat, Nov 28, 2015 at 07:21:10PM +0100 I heard the voice of Miroslav Lachman, and lo! it spake thus: Carmel NY wrote on 11/27/2015 12:39: Would I l then need to rebuild everything that depends on PHP or could I just add the "-r" flag to portupgrade

Re: update PHP

2015-11-28 Thread Matthew D. Fuller
On Sat, Nov 28, 2015 at 07:21:10PM +0100 I heard the voice of Miroslav Lachman, and lo! it spake thus: > Carmel NY wrote on 11/27/2015 12:39: > > Would I l then need to rebuild everything that depends on PHP or could I > > just > > add the "-r" flag to portupgrade? > > You can get list of all ori

Re: update PHP

2015-11-28 Thread Miroslav Lachman
Carmel NY wrote on 11/28/2015 21:45: On Sat, 28 Nov 2015 19:21:10 +0100, Miroslav Lachman stated: pkg query %o `pkg info -r php55 | tail -n +2` | sed 's~php5~php56~' > my_php_ports That list 1154 ports. I am sorry I sent you a wrong command :) I tried it on my server with PHP 5.5 (port lan

Re: update PHP

2015-11-28 Thread Carmel NY
On Sat, 28 Nov 2015 19:21:10 +0100, Miroslav Lachman stated: >pkg query %o `pkg info -r php55 | tail -n +2` | sed 's~php5~php56~' > >my_php_ports That list 1154 ports. pkg query %o `pkg info -r php5 | tail -n +2` results in 22 ports. print/pecl-pdflib www/pecl-APC www/php5-session textproc/php

Re: update PHP

2015-11-28 Thread Miroslav Lachman
Carmel NY wrote on 11/27/2015 12:39: I am running a FreeBSD 10.2 - p7 machine. I have PHP 5.4 installed . I want to update it to version 5.6. Would this method work: portupgrade -o lang/php56 lang/php5 Then: portupgrade -o lang/php56-extensions lang/php5-extensions Would I l then need to rebu

update PHP

2015-11-27 Thread Carmel NY
I am running a FreeBSD 10.2 - p7 machine. I have PHP 5.4 installed . I want to update it to version 5.6. Would this method work: portupgrade -o lang/php56 lang/php5 Then: portupgrade -o lang/php56-extensions lang/php5-extensions Would I l then need to rebuild everything that depends on PHP or c

Re: Update php from 5.5 to 5.6?

2014-10-10 Thread Matthew D. Fuller
On Fri, Oct 10, 2014 at 11:37:24AM +0200 I heard the voice of Mathieu Arnold, and lo! it spake thus: > > Easiest way to do it would be to remove php55-* and mod_php55-xxx > and install their php56-* and mod_php56-xxx equivalents. Pre-pkgng, I did it via creepy magic sed'ery in /var/db/pkg; change

Re: Update php from 5.5 to 5.6?

2014-10-10 Thread Mark Felder
On Fri, Oct 10, 2014, at 04:37, Mathieu Arnold wrote: > > > +--On 10 octobre 2014 09:11:10 +0200 Jakob Breivik Grimstveit > wrote: > | Hi there, fellows! > | > | I'm looking at jumping from php5.5 to php5.6, but I'm wondering whether > | anyone have any experience on this, and any accompanyin

Re: Update php from 5.5 to 5.6?

2014-10-10 Thread Mathieu Arnold
+--On 10 octobre 2014 09:11:10 +0200 Jakob Breivik Grimstveit wrote: | Hi there, fellows! | | I'm looking at jumping from php5.5 to php5.6, but I'm wondering whether | anyone have any experience on this, and any accompanying recommendations | :-). | | Need to have it working together with apac

Update php from 5.5 to 5.6?

2014-10-10 Thread Jakob Breivik Grimstveit
Hi there, fellows! I'm looking at jumping from php5.5 to php5.6, but I'm wondering whether anyone have any experience on this, and any accompanying recommendations :-). Need to have it working together with apache24 and mysql56 Thank you in advance! $ pkg info | grep -ie ^php -ie ^apache -ie ^

Re: Update php from 5.4 to 5.5 ?

2014-06-19 Thread Jim Trigg
Quoting "Matthew D. Fuller" : On Wed, Jun 18, 2014 at 10:05:46PM +0200 I heard the voice of Melvyn Sopacua, and lo! it spake thus: You can do the following: pkg query -e '%o ~ */php5-*' '%o'| while read origin; do \ new_origin=`echo ${origin} | sed -e 's/php5-/php55-/'` echo portmaster -o ${ne

Re: Update php from 5.4 to 5.5 ?

2014-06-18 Thread Matthew D. Fuller
On Wed, Jun 18, 2014 at 10:05:46PM +0200 I heard the voice of Melvyn Sopacua, and lo! it spake thus: > > You can do the following: > pkg query -e '%o ~ */php5-*' '%o'| while read origin; do \ > new_origin=`echo ${origin} | sed -e 's/php5-/php55-/'` > echo portmaster -o ${new_origin} ${origin}; don

Re: Update php from 5.4 to 5.5 ?

2014-06-18 Thread Melvyn Sopacua
Hi Kurt, On Wed, 18 Jun 2014, Kurt Jaeger wrote: For each module, I have to find the suitable php55 module to replace it. So it will be a manual process, for now. Not entirely... www/pecl-APC: doesn't support PHP 5.5 That's real. But it's APC. It's somewhat dying, somewhat staying aroun

Re: Update php from 5.4 to 5.5 ?

2014-06-18 Thread Kurt Jaeger
Hi! > If I would like to upgrade from php 5.4 to 5.5, would this work ? > > portupgrade -o lang/php55 -f lang/php5 > portupgrade -fr lang/php55 > > vi /etc/make.conf > DEFAULT_VERSIONS= php=5.5 The short answer: No. The long answer: I have approx. 46 php5-xxx-5.4.29 modules installed. The fi

Re: Update php from 5.4 to 5.5 ?

2014-06-18 Thread Dr. Peter Voigt
Am Wed, 18 Jun 2014 13:09:20 +0200 schrieb Kurt Jaeger : > Hi! > > If I would like to upgrade from php 5.4 to 5.5, would this work ? > > portupgrade -o lang/php55 -f lang/php5 > portupgrade -fr lang/php55 > > vi /etc/make.conf > DEFAULT_VERSIONS= php=5.5 > Hi Kurt, just a few days ago I have

Update php from 5.4 to 5.5 ?

2014-06-18 Thread Kurt Jaeger
Hi! If I would like to upgrade from php 5.4 to 5.5, would this work ? portupgrade -o lang/php55 -f lang/php5 portupgrade -fr lang/php55 vi /etc/make.conf DEFAULT_VERSIONS= php=5.5 -- p...@opsec.eu+49 171 3101372 6 years to go ! __