Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/freebsd/poudriere.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2022-05-21Use recent FreeBSD versions in examples.Pau Amma
2022-04-29Fix the use of Xr in the manualsMateusz Piotrowski
2022-04-29Make it clear that overlays must be poudriere ports treesMateusz Piotrowski
2022-03-16Disable globs to process TMPFS_BLACKLISTRoss Williams
Disabling globs for the loop that checks currently building packages against TMPFS_BLACKLIST or wildcards in TMPFS_BLACKLIST will expand to files in the current directory, instead of being passed into the case statement as a pattern.
2022-03-16Fix typo in wrkdirs directory nameRoss Williams
Would prevent chflags command from succeeding when TMPFS_BLACKLIST_TMPDIR is set.
2022-03-10exit_handler: Show >0 exit status alwaysBryan Drewery
Issue #985
2022-03-10pkg repo: Be more verbose and catch errors better.Bryan Drewery
Issue #985
2022-03-10exit_handler: Alert if an unhandled error (set -e) is seen.Bryan Drewery
Issue #985
2022-02-05download.freebsd.org has no /ftp/ in the path anymoreLi-Wen Hsu
2022-01-22Enable filename-specific processing (like adding a slash to directorylherschi
names, quoting special characters or suppressing trailing spaces) for the -f switch of bulk, distclean, pkgclean and options.
2021-12-10Stop using logfile birthtime for durations.Bryan Drewery
Some older FreeBSD do not support passing this value over NFSv4 nor over NFSv3. This fixes wildly wrong durations showing in some logs and statuses.
2021-12-02Merge pull request #962 from jlduran/fix-image-zfs-boot-sizeBryan Drewery
image_zfs: Fix setting boot partition size
2021-12-02image_zfs: Fix setting boot partition sizeJose Luis Duran
2021-12-01poudriere.conf.sample: Bring all the web options togetherBryan Drewery
2021-12-01Merge pull request #953 from AMDmi3/allow-disable-log-greppingBryan Drewery
Allow to disable grepping logs for failure reason
2021-11-29image_zfs: Fix inverted logicJose Luis Duran
`zpool list -Ho ${ZFS_POOL_NAME}` exits with `0` if the name exists. This prevents overwriting the existing pool.
2021-11-28Fix include order for non-builtin shBryan Drewery
2021-11-25sh: Update from FreeBSD 971677d5fd4cc6e776468Bryan Drewery
2021-11-25trim_ignored: Run in parallelBryan Drewery
2021-11-25Add another IGNORE/listed listBryan Drewery
2021-11-25Add test for badly sorted FLAVORS where first is not defaultBryan Drewery
2021-11-25SIGINFO: New output formatBryan Drewery
- Auto-sized aligned columns using display_output() - Add tmpfs space usage column - Add cpu% and mem% (from ps) columns
2021-11-24display_output: Strip ansi colors from headers and when sizing fieldsBryan Drewery
2021-11-24colors: Remove the need to evaluate \033 escapeBryan Drewery
2021-11-24display_output: Don't size non-format-argumentsBryan Drewery
2021-11-24display_setup: columns are not used for anythingBryan Drewery
2021-11-24Add basic stripansi()Bryan Drewery
2021-11-24status -b: Fix showing logs after 3d248385baBryan Drewery
2021-11-24Add a mechanishm to avoid building rust in tmpfs.Bryan Drewery
- TMPFS_BLACKLIST should contain a list of package globs - TMPFS_BLACKLIST_TMPDIR should contain a host directory prefix where temporary directories can be created, outside tmpfs of course, to be used as the WRKDIR for packages in TMPFS_BLACKLIST. Fixes #888
2021-11-20cd: Need a critical section here.Bryan Drewery
If a SIGINT comes in while updating the relpaths it is possible to end up in cleanup traps where the values do not match $PWD.
2021-11-20stop_builders: Don't try to wait on host /var/run pidfilesBryan Drewery
2021-11-20err: Don't show logs in failed $()Bryan Drewery
2021-11-20Add local OPTIND=1 where getopts(1) is usedBryan Drewery
2021-11-18display: Don't size header into cols when hiddenBryan Drewery
2021-11-18bulk: Be verbose about builders startingBryan Drewery
Fixes: 80ec59d8e523fc116f80a8555a5d38bb60f09510
2021-11-18Run autogen.sh for image_zfs.shBryan Drewery
2021-11-18Need to bset builders still.Bryan Drewery
Fixes: 80ec59d8e523fc116f80a8555a5d38bb60f09510
2021-11-18SIGINFO should hide 'done:' jobs tooBryan Drewery
2021-11-18Revert "pkgqueue_remaining: Unhide errors"Bryan Drewery
This reverts commit 6d3fe23c9e43b9469536f330ede5c0015fd9c89f. This is too racy with clean_pool() to not hide the errors from find.
2021-11-18SIGINFO needs to go to stderrBryan Drewery
Otherwise it may taint some lookups. Not sure how this has been like this for so long.
2021-11-18mapfile_write (from stdin): Fix writing newline when none is readBryan Drewery
2021-11-18bulk: Opportunistically start builders as neededBryan Drewery
2021-11-18Update sh from git main 72f750dc7c732Bryan Drewery
2021-11-17Allow to disable grepping logs for failure reasonDmitry Marakasov
This takes a lot of time for no usable result in most cases
2021-11-04Add support for zfs image types, including send streamsAllan Jude
Adds the ability to create a ZFS disk image in the same style as bsdinstall(8). The default is to create a full GPT disk image, but is also supports just the raw pool. Also adds `zfs send` streams as an output format, includes support for sending the entire pool, just the boot environment (for upgrades), or both. Supports specifying both zfs+send targets (+full and +be) in a single run. Extends the existing -i support, to be able to modify existing images. Adds the -R flag to allow user to specify ZFS send feature flags Sponsored by: Modirum MDPay Sponsored by: Klara Inc.
2021-11-04image: use parameter substitution to parse $MEDIATYPEAllan Jude
Replace `$(echo ${MEDIATYPE} | cut -d '+' -f 1)` with shell builtins
2021-11-03image: Allow pre-build script to optionally replace the built-in _prepareAllan Jude
If the prebuild script sets SKIP_PREPARE then we don't run ${MAINMEDIATYPE}_prepare ${SUBMEDIATYPE} Allowing users to replace the built-in _prepare for the image type Cleans up the old 'skip' method that did nothing after b768a3692998
2021-11-03image: Use sysrc when setting hostnameAllan Jude
This ensures the hostname doesn't get set multiple times
2021-11-03Prefix image -A path with PWDAllan Jude
missed in e71815b2a9b59fc569dbb04d971c51197d2ab550
2021-10-26Actually fix pid pwaiting.Bryan Drewery
This probably _never_ worked so add a low timeout too. Fixes: 855b17c59b7