FreeBSD ports you maintain which are out of date

2022-04-11 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: [RFC] patch's default backup behavior

2022-04-11 Thread Pau Amma
On 2022-04-09 03:25, Kyle Evans wrote: FreeBSD's patch follows historical patch(1) behavior w.r.t. backups, where a backup is created for every file patched. I'd like to test the waters on switching this to the GNU behavior, which feels a whole lot more reasonable. Notably, they'll only create b

Build issue with i386 port

2022-04-11 Thread jbo
Hello folks, I'm fairly new to the porting game so please bear with me. A few months ago, I created my first port: sysutils/cpufetch Back then, I was only testing this on amd64 so ONLY_FOR_ARCHS was set to amd64. In the meantime, I've spun up some i386 VMs (both FreeBSD 13 and 14) as upstream ad

Re: Build issue with i386 port

2022-04-11 Thread Fernando Apesteguía
On Mon, Apr 11, 2022 at 7:24 PM wrote: > > Hello folks, > > I'm fairly new to the porting game so please bear with me. > > A few months ago, I created my first port: sysutils/cpufetch > Back then, I was only testing this on amd64 so ONLY_FOR_ARCHS was set to > amd64. > In the meantime, I've spun

Re: Build issue with i386 port

2022-04-11 Thread Dimitry Andric
On 11 Apr 2022, at 19:53, Fernando Apesteguía wrote: > > On Mon, Apr 11, 2022 at 7:24 PM wrote: ... >> gmake[1]: Entering directory >> '/wrkdirs/usr/ports/sysutils/cpufetch/work/cpufetch-1.00' >> Makefile:38: Unsupported arch detected: i386. See >> https://github.com/Dr-Noob/cpufetch#1-support

Re: Build issue with i386 port

2022-04-11 Thread jbo
Oooh! This is so obvious it almost hurts... So basically what happened is that upstream's v1.00 release that the port is building didn't yet support i386. Meanwhile, I was able to compile successfully on my VMs because I was using the main/master branch which does support i386. I hope we can just

Re: Build issue with i386 port

2022-04-11 Thread Fernando Apesteguía
On Mon, Apr 11, 2022 at 8:04 PM wrote: > > Oooh! This is so obvious it almost hurts... > So basically what happened is that upstream's v1.00 release that the port is > building didn't yet support i386. Meanwhile, I was able to compile > successfully on my VMs because I was using the main/master b

Re: Build issue with i386 port

2022-04-11 Thread jbo
> I would cherry pick the patch with PATCHFILES: > https://docs.freebsd.org/en/books/porters-handbook/book/#makefile-distfiles > > +PATCH_SITES= https://github.com/Dr-Noob/cpufetch/commit/ > +PATCHFILES= 0db9f1f5c26e57a6383f4609c5605ed5d3d41fd1.patch:-p1 > > I already have the change ready to push

Re: Build issue with i386 port

2022-04-11 Thread Fernando Apesteguía
On Mon, Apr 11, 2022 at 8:14 PM wrote: > > > I would cherry pick the patch with PATCHFILES: > > https://docs.freebsd.org/en/books/porters-handbook/book/#makefile-distfiles > > > > +PATCH_SITES= https://github.com/Dr-Noob/cpufetch/commit/ > > +PATCHFILES= 0db9f1f5c26e57a6383f4609c5605ed5d3d41fd1.pa

Re: Build issue with i386 port

2022-04-11 Thread jbo
I'd have a follow up question based on your commit: What's the reason for not increasing PORTVERSION after modifying the port? ~ Joel --- Original Message --- On Monday, April 11th, 2022 at 20:18, Fernando Apesteguía wrote: > On Mon, Apr 11, 2022 at 8:14 PM jbo@insane.engineer wrote:

Re: Missing quarterly current pkg files?

2022-04-11 Thread Greg 'groggy' Lehey
[Copying -ports; the issue could be interesting to others] On Monday, 11 April 2022 at 0:22:23 -0700, Mark Millard wrote: > From: Greg 'groggy' Lehey > Date: Mon, 11 Apr 2022 09:04:43 +1000 : > >> I've checked both IPv4 sites, and >> http://pkg.FreeBSD.org/FreeBSD:14:amd64/ only contains a "late

Re: Missing quarterly current pkg files?

2022-04-11 Thread Mark Millard
On 2022-Apr-11, at 16:46, Greg 'groggy' Lehey wrote: > [Copying -ports; the issue could be interesting to others] > > On Monday, 11 April 2022 at 0:22:23 -0700, Mark Millard wrote: >> From: Greg 'groggy' Lehey >> Date: Mon, 11 Apr 2022 09:04:43 +1000 : >> >>> I've checked both IPv4 sites, and

Re: Missing quarterly current pkg files?

2022-04-11 Thread Mark Millard
On 2022-Apr-11, at 17:50, Mark Millard wrote: > On 2022-Apr-11, at 16:46, Greg 'groggy' Lehey wrote: > >> [Copying -ports; the issue could be interesting to others] >> >> On Monday, 11 April 2022 at 0:22:23 -0700, Mark Millard wrote: >>> From: Greg 'groggy' Lehey >>> Date: Mon, 11 Apr 2022 0

Re: Build issue with i386 port

2022-04-11 Thread Fernando Apesteguía
On Mon, Apr 11, 2022 at 10:12 PM wrote: > > I'd have a follow up question based on your commit: What's the reason for not > increasing PORTVERSION after modifying the port? That the resultant package will not change and that the port becomes buildable where it wasn't previously. https://docs.fr