feature(keyringctl): move main/packager folders to isolated keyring dir
This helps to structure the layout of the repository better by having one root folder that contains the actual decomposed keyring structure.
This commit is contained in:
parent
48e9bb67cb
commit
b91e8b983c
2
Makefile
2
Makefile
@ -1,6 +1,6 @@
|
||||
PREFIX ?= /usr/local
|
||||
KEYRING_TARGET_DIR=$(DESTDIR)$(PREFIX)/share/pacman/keyrings/
|
||||
KEYRING_FILES=$(wildcard output/*.gpg) $(wildcard output/*-revoked) $(wildcard output/*-trusted)
|
||||
KEYRING_FILES=$(wildcard keyring/output/*.gpg) $(wildcard keyring/output/*-revoked) $(wildcard keyring/output/*-trusted)
|
||||
|
||||
all: build
|
||||
|
||||
|
@ -6,8 +6,8 @@ The keyring is used by pacman to establish the web of trust for the packagers
|
||||
of the distribution.
|
||||
|
||||
The PGP packets describing the main signing keys can be found below the
|
||||
[main](main) directory, while those of the packagers are located below the
|
||||
[packager](packager) directory.
|
||||
[keyring/main](keyring/main) directory, while those of the packagers are located below the
|
||||
[keyring/packager](keyring/packager) directory.
|
||||
|
||||
## Requirements
|
||||
|
||||
|
@ -1196,7 +1196,7 @@ if __name__ == "__main__":
|
||||
|
||||
# temporary working directory that gets auto cleaned
|
||||
with TemporaryDirectory(prefix="arch-keyringctl-") as tempdir:
|
||||
keyring_root = Path().absolute()
|
||||
keyring_root = Path("keyring").absolute()
|
||||
working_dir = Path(tempdir)
|
||||
debug(f"Working directory: {working_dir}")
|
||||
with cwd(working_dir):
|
||||
|
Loading…
Reference in New Issue
Block a user