Re: An idea for a pkg option

2022-03-22 Thread Mark Millard
On 2022-Mar-22, at 18:50, Tatsuki Makino wrote: > Mark Millard wrote on 2022/03/23 09:49: >> custom: { >>url: "file:///usr/local/poudriere/data/packages/13_0R-amd64-default", >>enabled: yes, >> } > > If the package exists on local file system, > > pkg delete -f llvm14 > pkg add

Re: An idea for a pkg option

2022-03-22 Thread Tatsuki Makino
Mark Millard wrote on 2022/03/23 09:49: > custom: { > url: "file:///usr/local/poudriere/data/packages/13_0R-amd64-default", > enabled: yes, > } If the package exists on local file system, pkg delete -f llvm14 pkg add -A -M /usr/local/poudriere/data/packages/13_0R-amd64-default/Al

Re: An idea for a pkg option

2022-03-22 Thread Mark Millard
On 2022-Mar-22, at 17:49, Mark Millard wrote: > On 2022-Mar-22, at 04:44, Eugene Grosbein wrote: >> >> 22.03.2022 16:56, Mark Millard wrote: >> >>> For my explicit list of what to try to install >>> (in the file) your command does not work for >>> my purpose/goal: >>> >>> # pkg install -yU `c

Re: An idea for a pkg option

2022-03-22 Thread Mark Millard
On 2022-Mar-22, at 04:44, Eugene Grosbein wrote: > > 22.03.2022 16:56, Mark Millard wrote: > >> For my explicit list of what to try to install >> (in the file) your command does not work for >> my purpose/goal: >> >> # pkg install -yU `cat ~/origins/amd64-pkgs.txt` >> pkg: No packages available

Re: aarch64 native context, devel/llvm14 build via poudriere-devel: build fails during "Building package for llvm14-14.0.0.r2" (armv7 too)

2022-03-22 Thread Brooks Davis
On Tue, Mar 22, 2022 at 02:09:23AM -0700, Mark Millard wrote: > On 2022-Mar-17, at 10:55, Brooks Davis wrote: > > > Thank you for the reports. > > > > I think I know what the issues are and am working on fixes. I believe > > using BE_STANDARD will work as a workaround. > > FYI: using BE_NATIVE

Re: An idea for a pkg option

2022-03-22 Thread Sysadmin Lists
Nevermind. I see now this was a feature request, not a help request sent to @freebsd-questions. Anyway, it might be possible to use `pkg shell' to query the package's info page for an 'update available' boolean. > > From: Sysadmin Lists > Sent: Tue Mar

Re: An idea for a pkg option

2022-03-22 Thread Sysadmin Lists
`awk' could probably handle that. Something like this*: BEGIN { system("pkg update") } { while ("pkg info " $1 | getline line > 0) { if ( line ~ /^Available/) { packages = package $1 " "; break } } END { "pkg -y upgrade " packages } # awk -f pkg_upgrade.awk ~/origins/CA72-pkgs.txt 1. updates pk

FreeBSD ports you maintain which are out of date

2022-03-22 Thread portscout
Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you

Re: An idea for a pkg option

2022-03-22 Thread Eugene Grosbein
22.03.2022 16:56, Mark Millard wrote: > For my explicit list of what to try to install > (in the file) your command does not work for > my purpose/goal: > > # pkg install -yU `cat ~/origins/amd64-pkgs.txt` > pkg: No packages available to install matching 'rpi4-edk2' have been found in > the repo

Re: An idea for a pkg option

2022-03-22 Thread Mark Millard
On 2022-Mar-22, at 02:34, Eugene Grosbein wrote: > 22.03.2022 16:28, Mark Millard wrote: > >> So it might look something like: >> >> # pkg install --available-ones-of `cat ~/origins/CA72-pkgs.txt` >> Updating custom repository catalogue... >> custom repository is up to date. >> All repositories

Re: An idea for a pkg option

2022-03-22 Thread Eugene Grosbein
22.03.2022 16:28, Mark Millard wrote: > So it might look something like: > > # pkg install --available-ones-of `cat ~/origins/CA72-pkgs.txt` > Updating custom repository catalogue... > custom repository is up to date. > All repositories are up to date. > pkg: No packages available to install matc

An idea for a pkg option

2022-03-22 Thread Mark Millard
There are times when I wish I could do something like: # pkg install `cat ~/origins/CA72-pkgs.txt` Updating custom repository catalogue... custom repository is up to date. All repositories are up to date. pkg: No packages available to install matching 'macchiatobin-edk2' have been found in the re

Re: aarch64 native context, devel/llvm14 build via poudriere-devel: build fails during "Building package for llvm14-14.0.0.r2" (armv7 too)

2022-03-22 Thread Mark Millard
On 2022-Mar-17, at 10:55, Brooks Davis wrote: > Thank you for the reports. > > I think I know what the issues are and am working on fixes. I believe > using BE_STANDARD will work as a workaround. FYI: using BE_NATIVE on an aarch64 for the new update to .r4 : [01:38:51] [04] [01:38:29] Finishe