Re: We need to do something about build times

2023-10-24 Thread Sysadmin Lists
> > From: Robert Clausecker > Date: Oct 24, 2023, 12:12:13 PM > To: > Subject: We need to do something about build times > > > The build times have gone up to the point where they are unsustainable. > Frequent updates to key ports (like llvm*, rust, gcc*

Re: Fill a disk with more recent files

2022-04-27 Thread Sysadmin Lists
With a source disk containing x-amount of space, and a backup disk containing y-amount of space, where x > y, to back up files from x, newest first, until disk y is full, it's as simple as a bash-loop where you specify date ranges on each iteration: for days in {1..30}; do find source/ -type f -

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: Sysad

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

Re: audio/clementine-player maintainership

2022-02-07 Thread Sysadmin Lists
> > From: Andriy Gapon > Sent: Mon Feb 07 15:34:46 CET 2022 > To: Bryan Frimin , Muhammad Moinur Rahman > Cc: Sean Bruno , > Subject: Re: audio/clementine-player maintainership > > > On 07/02/2022 00:55, Bryan Frimin wrote: > > > >> Does it work as ex

Re: anki latest? (FIXED - read for details)

2022-01-29 Thread Sysadmin Lists
> > From: Pau Amma > Sent: Sat Jan 29 02:22:15 CET 2022 > To: Sysadmin Lists > Cc: Freebsd ports , Jan Beich > Subject: Re: anki latest? (FIXED - read for details) > > I'm not going to pretend your bogus excuse for not >

Re: anki latest? (FIXED - read for details)

2022-01-28 Thread Sysadmin Lists
> > From: Pau Amma > Sent: Thu Jan 27 22:20:26 CET 2022 > To: Sysadmin Lists > Cc: Freebsd ports , Jan Beich > Subject: Re: anki latest? (FIXED - read for details) > > > On 2022-01-27 17:19, Sysadmin Lists wrote: >

Re: anki latest? (FIXED - read for details)

2022-01-27 Thread Sysadmin Lists
> > From: Pau Amma > Sent: Thu Jan 27 00:47:09 CET 2022 > To: Sysadmin Lists > Cc: Freebsd ports , Jan Beich > Subject: Re: anki latest? (FIXED - read for details) > > > On 2022-01-26

Re: anki latest? (FIXED - read for details)

2022-01-26 Thread Sysadmin Lists
> > From: Pau Amma > Sent: Wed Jan 26 21:20:05 CET 2022 > To: Jan Beich > Cc: Freebsd ports > Subject: Re: anki latest? (FIXED - read for details) > > > On 2022-01-25 01:49, Jan Beich wrote: > > Pau Amma writes: > > > For example, mixing ports and pa

Re: sed trouble when UNAME_* is set in jail (fwd)

2022-01-25 Thread Sysadmin Lists
You should learn basic troubleshooting steps for shell scripts: Enable debugging by adding 'set -x' around a block of code, and disable it with 'set +x'. > > > > > > From: Dmitry Morozovsky > > > Sent: Mon Jan 24 20:45:11 CET 2022 > > > To: > > > Subject

Re: sed trouble when UNAME_* is set in jail (fwd)

2022-01-24 Thread Sysadmin Lists
> > From: Dmitry Morozovsky > Sent: Mon Jan 24 20:45:11 CET 2022 > To: > Subject: sed trouble when UNAME_* is set in jail (fwd) > > I have a jail on my build system, nested-built on a previous major; on the > case, it's stable/10; for a poudriere, it is d