Re: Port update and consumers bump

2023-10-09 Thread Matthias Fechner
Am 07.10.2023 um 13:49 schrieb Nuno Teixeira: I'm working on x11-toolkits/wxgtk32 update. not sure if wxgtk32 is used as a LIB_DEPENDS in other ports, if yes, you can also have a look on my script: Tools/scripts/search_lib_depends_and_bump.sh x11-toolkits/wxgtk32 It is not a simple grep, but

Re: Port update and consumers bump

2023-10-09 Thread Nuno Teixeira
Please take a look at: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=274367 Thanks all! Nuno Teixeira escreveu no dia sábado, 7/10/2023 à(s) 13:30: > Thanks Moin! > > Now I have understand it. > > I will use: > > git grep -e 'USE_WX' --and \( -e 3.0+ -e 3.2 \) > Looks for a line that has US

Re: Port update and consumers bump

2023-10-07 Thread Nuno Teixeira
Thanks Moin! Now I have understand it. I will use: git grep -e 'USE_WX' --and \( -e 3.0+ -e 3.2 \) Looks for a line that has USE_WX and either 3.0+ or 3.2. (3.2+ will be included too) Cheers Moin Rahman escreveu no dia sábado, 7/10/2023 à(s) 13:03: > > > > On Oct 7, 2023, at 2:00 PM, Nuno Te

Re: Port update and consumers bump

2023-10-07 Thread Moin Rahman
> On Oct 7, 2023, at 2:00 PM, Nuno Teixeira wrote: > > > This 3.2 search might be counterproductive as we have an option "3.0+" which > also indicates 3.2 as a valid value. > > ports with 3.0+ will use 3.0 for building without changes . For this > particular update involving 3.2 shouldn't w

Re: Port update and consumers bump

2023-10-07 Thread Nuno Teixeira
> This 3.2 search might be counterproductive as we have an option "3.0+" > which also indicates 3.2 as a valid value. ports with 3.0+ will use 3.0 for building without changes . For this particular update involving 3.2 shouldn't we focus on consumers using 3.2 only?

Re: Port update and consumers bump

2023-10-07 Thread Moin Rahman
> On Oct 7, 2023, at 1:42 PM, Nuno Teixeira wrote: > > git grep is cool for an AND condition. > > git grep -l -e USE_WX --and -e 3.2 | sed s,/Makefile,, This 3.2 search might be counterproductive as we have an option "3.0+" which also indicates 3.2 as a valid value. My workflow is a bit diff

Re: Port update and consumers bump

2023-10-07 Thread Mathieu Arnold
On Sat, Oct 07, 2023 at 12:51:59PM +0200, Kurt Jaeger wrote: > Hi! > > > I'm working on x11-toolkits/wxgtk32 update. > > > > What's the correct method to do this wotk since it involves bumping > > consumers? > > Can't find it in Porter's handbook. > > > > For now I did: > > > > 1. Update x11-to

Re: Port update and consumers bump

2023-10-07 Thread Nuno Teixeira
git grep is cool for an AND condition. git grep -l -e USE_WX --and -e 3.2 | sed s,/Makefile,, I will check list and then run bump-revision.sh on list created. Thanks Moin Rahman escreveu no dia sábado, 7/10/2023 à(s) 12:16: > > > > On Oct 7, 2023, at 1:09 PM, Nuno Teixeira wrote: > > > > Hel

Re: Port update and consumers bump

2023-10-07 Thread Moin Rahman
> On Oct 7, 2023, at 1:09 PM, Nuno Teixeira wrote: > > Hello Kurt, > > On git ports root: > > grep -Rl 'x11-toolkits/wxgtk32' [a-ce-z]* d[a-hj-z]* > /tmp/list > > Gives an empty list file. > > Do I missing something? YES. Please search for USE_WX. > Kurt Jaeger escreveu no dia sábado, 7/1

Re: Port update and consumers bump

2023-10-07 Thread Nuno Teixeira
Hello Kurt, On git ports root: grep -Rl 'x11-toolkits/wxgtk32' [a-ce-z]* d[a-hj-z]* > /tmp/list Gives an empty list file. Do I missing something? Kurt Jaeger escreveu no dia sábado, 7/10/2023 à(s) 11:52: > Hi! > > > I'm working on x11-toolkits/wxgtk32 update. > > > > What's the correct metho

Re: Port update and consumers bump

2023-10-07 Thread Kurt Jaeger
Hi! > I'm working on x11-toolkits/wxgtk32 update. > > What's the correct method to do this wotk since it involves bumping > consumers? > Can't find it in Porter's handbook. > > For now I did: > > 1. Update x11-toolkits/wxgtk32 and test build > 2. Build consumers `portgrep -o USE_WX 3.2` > 3. Ru

Port update and consumers bump

2023-10-07 Thread Nuno Teixeira
Hello all, I'm working on x11-toolkits/wxgtk32 update. What's the correct method to do this wotk since it involves bumping consumers? Can't find it in Porter's handbook. For now I did: 1. Update x11-toolkits/wxgtk32 and test build 2. Build consumers `portgrep -o USE_WX 3.2` 3. Run test some of