>
> 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*
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 -
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
`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
>
> 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
>
> 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
>
>
> 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:
>
>
> 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
>
> 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
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
>
> 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
11 matches
Mail list logo