| 2f29060f | 07-Oct-2024 |
Ed Maste <[email protected]> |
pkg: improve error message
Print the complete list of url that have failed
PR: 281924 Co-authored-by: Baptiste Daroussin <[email protected]> Differential Revision: https://reviews.freebsd.org/D4698
pkg: improve error message
Print the complete list of url that have failed
PR: 281924 Co-authored-by: Baptiste Daroussin <[email protected]> Differential Revision: https://reviews.freebsd.org/D46983
(cherry picked from commit be9243409d6be99f5d7815b6d074a85a6e84f7ce)
show more ...
|
| d3516453 | 18-Feb-2021 |
Kyle Evans <[email protected]> |
pkg: use specific CONFSNAME_${file} for FreeBSD.conf
Setting CONFSNAME directly is a little more complicated for downstream consumers, as any additional CONFS that are added here will inherit the gr
pkg: use specific CONFSNAME_${file} for FreeBSD.conf
Setting CONFSNAME directly is a little more complicated for downstream consumers, as any additional CONFS that are added here will inherit the group name by default. This is perhaps arguably a design flaw in CONFS because inheriting NAME will never give a good result when additional files are added, but this is a low-effort change.
While we're here, pull FreeBSD.conf.${branch} out into a PKGCONF variable so one can just drop a new repo config in entirely with a new naming scheme. CONFSNAME gets set based on chopping anything off after ".conf", so that, e.g.:
- FooBSD.conf => FooBSD.conf - FooBSD.conf.internal => FooBSD.conf
Reviewed by: bapt, manu Differential Revision: https://reviews.freebsd.org/D28767
show more ...
|
| cc9a8a11 | 27-Apr-2021 |
Baptiste Daroussin <[email protected]> |
pkg(7): replace usage of sbuf(9) with open_memstream(3)
open_memstream(3) is a standard way to obtain the same feature we do get by using sbuf(9) (aka dynamic size buffer), switching to using it mak
pkg(7): replace usage of sbuf(9) with open_memstream(3)
open_memstream(3) is a standard way to obtain the same feature we do get by using sbuf(9) (aka dynamic size buffer), switching to using it makes pkg(7) more portable, and reduces its number of dependencies.
Reviewed by: manu Differential Revision: https://reviews.freebsd.org/D30005
show more ...
|