Changelog
All notable changes to this project should be documented here. For more detailed information have a look at the git log.
[Unreleased]
[0.3.1] - 2024-04-13
Changed
The test dependency on
pytest-lazy-fixturehas been replaced withpytest-lazy-fixtures.
Fixed
The code has been adapted to changes in metadata files in pacman 6.1. Most notably, the
md5sumfield in repository sync databasedescfiles has been removed, while thepgpsigfield has been made optional. This change made the introduction ofPackageV2,OutputPackageV2necessary, whilePackageDescV2has been adapted accordingly.Various typing related issues have been addressed, that would lead to errors in future versions of
pydantic.
[0.3.0] - 2023-07-17
Added
A section in the documentation now provides a high-level introduction to how repod works as well as examples on how to add packages, write sync databases and use a repository with pacman.
Classes to allow transactional tasks with pre and post checks.
Write sync databases as part of a transaction.
The command
repod-file repo importpkgnow automatically creates symlinks in a subdirectory of a repository’s management repository from each package name to their respectivepkgbase. This allows for easier search by package name.Checks now ensure that when adding packages (update or new additions) their versions will be greater than already existing packages. The checks also consider changes to the pkgbase of a package (e.g. ensuring, that a previously existing pkgbase providing a package must be updated if a package’s pkgbase changes).
Validation of source URLs per
pkgbaseagainst one or several allowed URLs is now possible per repository and can be configured usingrepod.conf.The command
repod-file repo importpkglearned a new parameter (-u/--source-url) with which users may provide lists ofpkgbase=urlstrings, that - if matching - are combined with the data gained from consumed packages and is used for source URL validation.The
repod.confman page now features information on how to configure debug repositories.Symlinks in package and managment repositories, that belong to the previous versions of packages are now removed when updating packages.
When adding packages to a stability layer of a repository (e.g. stable, testing or staging), the layers above and below are checked, so that pkgbases in lower layers do not have a higher version and pkgbases in higher layer do not have lower versions than the one being added.
Checks now ensure that when adding packages the filename of the package and the package’s info name are the same.
By default
repod-filenow also creates an archive of all packages added to a repository. The archiving locations are configurable globally and per repository.The existence of build requirements of added packages are checked by default now (in the archive, the target repository and amongst the added packages), unless
build_requirements_existis set tofalseinrepod.conf. This check fails on missing requirements and thus ensures that added packages are fully reproducible.Repositories can now be grouped together in the configuration, by assigning the same positive integer to them. Packages in grouped repositories are unique in the group (no duplicate
pkgbaseorpkgnameis allowed). Furthermore grouped repositories share the same parent directory for all of their management repository directories, the same grandparent directory for all of their package repository directories, the same parent directory for all of their package pool directories and the same parent directory for all of their source pool directories.A parser for
.SRCINFOfiles can now be used to retrieve and validate data of these files. This is useful when validating data of packages against the data from their source repositories.Documentation for tests now provide more context about the various helper functions and fixtures. A
pydocstylebased linting of in-code documentation now ensures, that documentation follows a common style.A logo for repod has been created by Safi @ http://betriebsbuero.com, which is licensed under the terms of the CC-BY-SA-4.0.
A
Makefilecan now be used to build and install repod system-wide.
Changed
The command
repod-file repo importpkgnow uses transactional tasks, that are chained into an atomic action, which automatically reverts itself if any of the tasks fail.The command
repod-file repo importpkgis now able to import packages of differingpkgbase.The command
repod-file repo importpkgnow automatically also writes the sync databases of the repository after adding packages.The command
repod-file repo writedbnow writes the sync databases in a transaction.The CLI now automatically checks whether all consumed packages match the target repository’s CPU architecture.
Type hints now use generics for the standard containers
dict,list,setandtupleinstead of the imports fromtyping.Type hints now use the union operator
|instead ofUnionandOptional.The validation for package and signature filenames relied on regular expressions which proved too cumbersome to maintain and extend. The validation now relies on regular expressions only for the actual filenames and validation for absolute vs. relative paths relies on
pathlib.Path.The command
repod-file repo writedbnow allows writing empty sync databases from empty management repositories.The definition of workflows (e.g. adding packages, writing sync databases) is now done in a separate module and is decoupled from the CLI.
The
repod.confman page now covers themanagement_repoconfiguration in greater detail.The
formatfield in.BUILDINFOfiles maps to aSchemaVersionV1orSchemaVersionV2rather than aFormatV1orFormatV2. This provides a uniform approach to versioning objects across object types.The configuration file now understands
staging_debugandtesting_debugoptions per package repository. Analogous to setting thedebugrepository name for the stable repository, identified byname, the new options are used to set the debug repository names forstagingandtestingrepositories.The configuration file now requires, that all directories except the
package_poolandsource_pooldirectories must be unique.Use
tomllibon Python 3.11+.Use
pydanticversion 2.
Fixed
The parser for mtree files did not zerofill retrieved file modes and as mtree may return strings shorter than three chars as a file mode, this led to ValidationErrors when initializing MTree objects.
In the
repod.confman page, TOML inline tables had been used falsely as tables.The library (magic) used for detecting the file type of a package file does not always return the correct type as its first match, this caused importing to fail, if the type was misdetected. All the detected types of the package file is now checked for a match.
Removed
The
justfilehas been removed in favor of aMakefile.
[0.2.2] - 2022-08-29
Fixed
The implementation of
PkgInfoV2was based on an early patch series towards pacman that had been superseded since. Instead of a top-levelpkgtypeattribute,PkgInfoV2now tracks an optional set of extended/ extra data (xdata), which is in line with the implementation in pacman.
Changed
Return help strings instead of raising
RuntimeErrorif no commands are provided torepod-fileor any of its subcommands.
[0.2.1] - 2022-08-23
Fixed
The
justfileis now contained in the sdist tarball and fixed to install using a destination directory (destdir).
[0.2.0] - 2022-08-22
Added
Man page for
repod.conf.Per repository debug repository handling in configuration layer and CLI.
Package verification based on
pacman-keymay be configured by setting the global configuration optionpackage_verificationtopacman-key.A
PackageDescV2which removes the%PGPSIG%identifier in thedescfiles rendered from it. The default is stillPackageDescV1(which provides the%PGPSIG%identifier), but users may already try the new functionality using thesyncdb_settings.desc_versionoption inrepod.conf(seeman 5 repod.conf).The
repod.repo.package.repofilemodule provides functionality for file operations on repository files (e.g. package files or package signature files). TheRepoFileclass allows moving, copying, symlinking and removing of files.The
repod-file repo importpkgsubcommand which supersedesrepod-file package import, while also implementing the addition of package files (and optionally their signatures) to a given repository’s package pool directory and creating the symlinks for them in the repository’s package repository directory.A justfile for installing directories required for system mode and man pages.
The
repod-file repo importdb,repod-file repo importpkgandrepod-file repo writedbcommands now accept a-a/--architectureflag to define the target repository architecture, if repositories of the same name but differing CPU architectures exist.
Changed
Configuration layer is now used in the CLI and required directories for repositories and data are automatically created upon launching it. The configuration layer distinguishes between system-wide and per-user locations.
Extend
OutputPackageBaseV1with optional.BUILDINFOdata retrieved from packages using the newOutputBuildInfo(and child classes). This adds a relevant subset of.BUILDINFOfiles to the management repository.The
repod-filesubcommandmanagementis renamed torepoand its subsubcommandsimportandexportare renamed toimportdbandwritedb(respectively). Therepod-file repo writedbcommand only accepts the name of the target repository and no target file anymore, as the repository sync database files are written to the binary package directory of the target repository.The email validation done for the
Packagermodel does not by default check for deliverability anymore. In the future this is supposed to become configurable.The database compression of repositories can now only be set in the configuration file.
Fixed
.PKGINFOvalues with equal signs are now handled correctly (e.g., equal signs in descriptions ofoptdependsentries).The
usersettingsfixture no longer leaks test state into the user system.The calculation of
SHA-256checksums for packages inrepod.file.package.Package.from_filewere not done correctly, because after a previousMD5checksum calculation the package file was not read in its entirety.Fix file mode validation for
.MTREEfiles.Fix path validation for
.MTREEfiles.The conversion of special characters in octal representation in the
mtreefiles did not work for non-English unicode characters (e.g. cyrillic) and attempting to import packages that contain file names with such characters would fail.Some of the online documentation did not reflect the current state of the CLI anymore, so all information for the
repod-filehas been consolidated with its man page.
Removed
The
repod-filesubcommandsyncdbis removed due to being the reverse pendant to themanagementcommand.The
repod-file package importsubcommand as it is superseded byrepod-file repo importpkg.
[0.1.0] - 2022-07-02
Changed
Documentation on installation and dependencies.
[0.1.0-alpha1] - 2022-07-01
Added
Functionality to validate package files in accordance with current versions of
.BUILDINFO,.MTREEand.PKGINFOfiles.Functionality to validate repository sync databases in accordance with current versions of
descandfilesfiles found in the default and files sync databases.Functionality to describe the contents of repository sync databases in the context of a management repository consisting of JSON files per
pkgbase.Functionality to export JSON schema which can be used to validate existing functionality and data formats.
A self-validating configuration layer which will be used in upcoming versions of the project to allow configuration of a
repodservice.The commandline utility
repod-fileto expose existing functionality for package inspection, data transformation and JSON schema export.Documentation on internals of the project and the
repod-filecommandline utility.Manual page for
repod-file.