Skip to main content

RPKG

âž•

  • CLI deffinition for tools build on top of the rpkg
  • Python API, some examples:
    • cli
    • commands
      • add_tag(tagname, force=False, message=None, file=None)
      • build(skip_tag=False, scratch=False, background=False, url=None, chain=None, arches=None, sets=False, nvr_check=True, fail_fast=False)
      • container_build_koji(target_override=False, opts={}, kojiconfig=None, kojiprofile=None, build_client=None, koji_task_watcher=None, nowait=False, flatpak=False)
      • copr_build(project, srpm_name, nowait, config_file)
      • import_srpm(srpm)
      • koji_upload(file, path, callback=None)
      • patch(suffix, rediff=False)
      • prep(arch=None, builddir=None, buildrootdir=None)
      • switch_branch(branch, fetch=True), ...
    • lookaside cache
      • download(name, filename, hash, outfile, hashtype=None, **kwargs)
      • remote_file_exists(name, filename, hash)
      • upload(name, filepath, hash), ...
    • sources
    • gitignore

➖​

  • .

Requirements​

  • mock: for local mockbuild.
  • rpm-build: for local RPM build, which provides the command line rpm.
  • rpmlint: check SPEC.
  • copr-cli: for building package in Fedora Copr.
  • module-build-service: for building modules.

RPKG2​

rpkg2 is a project forked from rpkg to introduce various major improvements and refactor in order to:

  • Modern modularization.
  • A real library for import from other projects to operate package repository or access package metadata.
  • Extensible for writing package client tool.
  • A framework to write subcommands in a decoupled way to build artifacts, including RPMs, modules, or containers.
  • Remove all deprecation and technical debt.
  • Python 3 default apparently.

Examples:

from pyrpkg.pkgrepo import PackageRepository
repo = PackageRepository('/path/to/package')
print(repo.branch_merge)
print(repo.branch_remote)
print(repo.push_url)
print(repo.commit_hash)
from pyrpkg.pkgrepo import PackageRepository
from pyrpkg.pkginfo import PackageMetadata

repo = PackageRepository('/path/to/package')
pkg = PackageMetadata(repo)
print(pkg.ns)
print(pkg.ns_repo_name)
print(pkg.disttag)
print(pkg.spec)
from pyrpkg.config import read_config

config = read_config('/path/to/rpkg.config')
print(config.rpkg.anongiturl)
print(config.rpkg.distgit_namespaced)

Two (probably mirrored) repositories:

And the old github one:

For the background, see this discussion and the this wiki Thoughts_on_rpkg2.