Updating ports that use FLAVOR with portmaster

2017-12-08 Thread Paul Schmehl
How do you do this? I have a number of py ports that need to be updated, 
but portmaster chokes on them. I don't see anything about FLAVOR in the man 
page. Do we actually have to update all these ports manually, one at a time?


Paul Schmehl, Retired
As if it wasn't already obvious, my opinions
are my own and not those of my employer.
***
"It is as useless to argue with those who have
renounced the use of reason as to administer
medication to the dead." Thomas Jefferson
"There are some ideas so wrong that only a very
intelligent person could believe in them." George Orwell

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Updating ports that use FLAVOR with portmaster

2017-12-08 Thread Freddie Cash
On Fri, Dec 8, 2017 at 12:31 PM, Paul Schmehl 
wrote:

> How do you do this? I have a number of py ports that need to be updated,
> but portmaster chokes on them. I don't see anything about FLAVOR in the man
> page. Do we actually have to update all these ports manually, one at a time?
>

​You wait patiently while portmaster is updated to support FLAVORs.  The
work is in progress, although there is no ETA on when it will be ready for
testing.

If you can't wait, then you can look into poudriere or synth.  They both
support FLAVOR already.

Or, do manual "pkg remove; make install" for each one.

-- 
Freddie Cash
fjwc...@gmail.com
___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Updating ports that use FLAVOR with portmaster

2017-12-08 Thread Paul Schmehl
--On December 8, 2017 at 12:49:44 PM -0800 Freddie Cash  
wrote:





On Fri, Dec 8, 2017 at 12:31 PM, Paul Schmehl 
wrote:



How do you do this? I have a number of py ports that need to be updated,
but portmaster chokes on them. I don't see anything about FLAVOR in the
man page. Do we actually have to update all these ports manually, one at
a time?





​You wait patiently while portmaster is updated to support FLAVORs. 
The work is in progress, although there is no ETA on when it will be
ready for testing.


If you can't wait, then you can look into poudriere or synth.  They both
support FLAVOR already.


Or, do manual "pkg remove; make install" for each one.


As my second post shows, I can't make FLAVOR=py27 install either. So, I 
guess I'm dead in the water. Until I can install py-setuptools, nothing 
else will work, including devel/llvm40.


It doesn't appear that pkg recognized FLAVOR either.

Paul Schmehl, Retired
As if it wasn't already obvious, my opinions
are my own and not those of my employer.
***
"It is as useless to argue with those who have
renounced the use of reason as to administer
medication to the dead." Thomas Jefferson
"There are some ideas so wrong that only a very
intelligent person could believe in them." George Orwell

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Updating ports that use FLAVOR with portmaster

2017-12-08 Thread Chris H

On Fri, 08 Dec 2017 15:14:11 -0600 "Paul Schmehl"  
said

--On December 8, 2017 at 12:49:44 PM -0800 Freddie Cash  
wrote:


>
>
> On Fri, Dec 8, 2017 at 12:31 PM, Paul Schmehl 
> wrote:
>
>
>
> How do you do this? I have a number of py ports that need to be updated,
> but portmaster chokes on them. I don't see anything about FLAVOR in the
> man page. Do we actually have to update all these ports manually, one at
> a time?
>
>
>
>
>
> ​You wait patiently while portmaster is updated to support FLAVORs. 
> The work is in progress, although there is no ETA on when it will be
> ready for testing.
>
>
> If you can't wait, then you can look into poudriere or synth.  They both
> support FLAVOR already.
>
>
> Or, do manual "pkg remove; make install" for each one.

As my second post shows, I can't make FLAVOR=py27 install either. So, I 
guess I'm dead in the water. Until I can install py-setuptools, nothing 
else will work, including devel/llvm40.


It doesn't appear that pkg recognized FLAVOR either.

I believe that pkg(8) version 1.10.3 will give it to you.
What revision of ports are you currently using?

--Chris


Paul Schmehl, Retired
As if it wasn't already obvious, my opinions
are my own and not those of my employer.
***
"It is as useless to argue with those who have
renounced the use of reason as to administer
medication to the dead." Thomas Jefferson
"There are some ideas so wrong that only a very
intelligent person could believe in them." George Orwell

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"



___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Updating ports that use FLAVOR with portmaster

2017-12-08 Thread Warren Block

On Fri, 8 Dec 2017, Paul Schmehl wrote:

As my second post shows, I can't make FLAVOR=py27 install either. So, I guess 
I'm dead in the water. Until I can install py-setuptools, nothing else will 
work, including devel/llvm40.


All I've had to do was py-setuptools.  The default flavor is py27, which 
covered most of my systems.  Then I had to

  make clean && make FLAVOR=py34 install clean

(or 36 or whatever version of python 3 was the current fad for whatever 
needed it on that system)

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Updating ports that use FLAVOR with portmaster

2017-12-08 Thread Paul Schmehl
--On December 8, 2017 at 1:38:24 PM -0800 Chris H  
wrote:




It doesn't appear that pkg recognized FLAVOR either.

I believe that pkg(8) version 1.10.3 will give it to you.

What revision of ports are you currently using?

pkg is 1.10.3. I moved the patch that was causing the failure, and the port 
built without FLAVOR.


Paul Schmehl, Retired
As if it wasn't already obvious, my opinions
are my own and not those of my employer.
***
"It is as useless to argue with those who have
renounced the use of reason as to administer
medication to the dead." Thomas Jefferson
"There are some ideas so wrong that only a very
intelligent person could believe in them." George Orwell

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"


Re: Updating ports that use FLAVOR with portmaster

2017-12-08 Thread Paul Schmehl
--On December 8, 2017 at 3:16:19 PM -0700 Warren Block  
wrote:



On Fri, 8 Dec 2017, Paul Schmehl wrote:


As my second post shows, I can't make FLAVOR=py27 install either. So, I
guess  I'm dead in the water. Until I can install py-setuptools, nothing
else will  work, including devel/llvm40.


All I've had to do was py-setuptools.  The default flavor is py27, which
covered most of my systems.  Then I had to
   make clean && make FLAVOR=py34 install clean

(or 36 or whatever version of python 3 was the current fad for whatever
needed it on that system)


Thanks, Warren. That's helpful.

Paul Schmehl, Retired
As if it wasn't already obvious, my opinions
are my own and not those of my employer.
***
"It is as useless to argue with those who have
renounced the use of reason as to administer
medication to the dead." Thomas Jefferson
"There are some ideas so wrong that only a very
intelligent person could believe in them." George Orwell

___
freebsd-ports@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"