Manages a local copy of the HardenedBSD ports tree
Find a file
2024-05-21 22:38:34 -03:00
.github/workflows Add shellcheck target 2024-04-02 13:40:16 -03:00
bin Prefix errors with ERR 2024-05-21 22:35:16 -03:00
libexec/portzap Update portzap-pull 2024-05-21 22:38:34 -03:00
man/man8 Add 'portzap checkout' 2024-05-21 22:25:37 -03:00
share/portzap v0.10.1 2024-04-20 17:22:43 -03:00
.projectile Add HardenedBSD source 2023-01-29 07:48:09 -03:00
LICENSE License = 0BSD 2023-03-11 22:15:49 -03:00
Makefile Fix 'make deinstall' 2024-04-19 06:24:05 -03:00
README.md Reduce diff with sourcezap 2024-05-21 22:29:30 -03:00

About

portzap is a utility that manages a local copy of the HardenedBSD ports tree. The copy of the ports tree is maintained by members of the _portzap group, and the copy of the ports tree can be installed into /usr/ports/ by root.

Examples

CLI: setup-portzap

This command should be run after installing portzap for the first time:

# Add the '_portzap' user, group and home directory
# This command requires root privileges
# setup-portzap

CLI: portzap

# Clone the HardenedBSD ports tree into /home/_portzap/ports/
# This command is delegated to the '_portzap' user
$ portzap clone

# Pull updates into /home/_portzap/ports/
# This command is delegated to the '_portzap' user
$ portzap pull

# Checkout a branch other than the default: hardenedbsd/main
# This command is delegated to the '_portzap' user
$ portzap checkout

# Install /home/_portzap/ports/ into /usr/ports/
# This command requires root privileges
# portzap install

# Remove the contents of /usr/ports/ and /home/_portzap/ports/
# This command requires root privileges
$ portzap rm

ENVIRONMENT

Install

Port

portzap is available as a HardenedBSD port.
pkg install portzap should work too but expect slower updates.

Source

The most recent version of portzap can be installed directly via git:

$ git clone https://github.com/0x1eef/portzap.git
$ cd portzap
# make install
# portzap setup
# pw groupmod -n _portzap -m <user>

Requirements

  • doas (pkg install doas)
  • git (pkg install git)

Sources

License

BSD Zero Clause
See LICENSE