Skip to content
Snippets Groups Projects
  1. Nov 28, 2024
    • Jakub Klinkovský's avatar
      fix(offload-build): fix quoting in sshopts and rsyncopts · effe5119
      Jakub Klinkovský authored and Christian Heusel's avatar Christian Heusel committed
      Verified
      effe5119
    • Jakub Klinkovský's avatar
      fix(offload-build): ungolfing remote command execution · 1cd213b2
      Jakub Klinkovský authored and Christian Heusel's avatar Christian Heusel committed
      Instead of passing the command as one complex string to ssh, we create
      an SSH master connection and use its control socket in multiple simpler
      commands. The same socket is passed also to rsync to transfer the srcpkg
      to the remote and to download the build artifacts.
      
      Previously, the srcpkg was passed via stdin to ssh, which prevented
      `pkgctl build --offload --inspect` from working. This change frees stdin
      for proper remote ptty allocation.
      
      However, it seems that ssh commands with and without the `-t` flag
      cannot be multiplexed on a single connection, so there are technically
      two SSH connections active for the offload-build execution.
      Verified
      1cd213b2
  2. Nov 26, 2024
  3. Nov 23, 2024
  4. Nov 09, 2024
    • Celeste Liu's avatar
      fix(arch-nspawn): add --timezone=off to avoid pollute build environment · 5c0f8d37
      Celeste Liu authored
      
      From systemd-nspawn(1),
      
      	--timezone=
      		Configures how /etc/localtime inside of the container (i.e. local timezone synchronization from host to container) shall be handled. Takes one of "off", "copy", "bind", "symlink", "delete" or "auto". If set to "off" the /etc/localtime file in the container
      		is left as it is included in the image, and neither modified nor bind mounted over. If set to "copy" the /etc/localtime file of the host is copied into the container. Similarly, if "bind" is used, the file is bind mounted from the host into the container. If
      		set to "symlink", a symlink is created pointing from /etc/localtime in the container to the timezone file in the container that matches the timezone setting on the host. If set to "delete", the file in the container is deleted, should it exist. If set to
      		"auto" and the /etc/localtime file of the host is a symlink, then "symlink" mode is used, and "copy" otherwise, except if the image is read-only in which case "bind" is used instead. Defaults to "auto".
      
      		Added in version 239.
      
      After this commit, we need to recreate all build environment to clean up
      pollution already existed.
      
      resolve #250
      
      Signed-off-by: default avatarCeleste Liu <CoelacanthusHex@gmail.com>
      Unverified
      5c0f8d37
  5. Sep 29, 2024
    • Christian Heusel's avatar
      fix: disable confirmation when dropping packages · e1401ce4
      Christian Heusel authored
      
      Since commit 1d433f60 ("feat(db): confirm list of all packages that will be removed") packages need confirmation by default when being dropped from the db. If we make it to the DB drop phase the package already is pushed to the AUR, so it is safe to remove from the database and not removing it would create a somewhat broken state, so we assume that the package should unconditionally be removed from the db.
      
      Component: pkgctl aur drop-from-repo
      Signed-off-by: default avatarChristian Heusel <christian@heusel.eu>
      Verified
      e1401ce4
  6. Sep 25, 2024
  7. Sep 10, 2024
  8. Sep 08, 2024
    • Christian Heusel's avatar
      fix: remove duplicate error message · f1dc2e18
      Christian Heusel authored
      
      It seems like nvchecker emits two log entries for errors:
      
          $ nvchecker --logger json -c .nvchecker.toml
          {"logger_name": "nvchecker.core", "name": "curl", "event": "token not given but it is required", "level": "error"}
          {"logger_name": "nvchecker.core", "name": "curl", "error": "token not given but it is required", "event": "no-result", "level": "error"}
      
      This leads to a double error message as described in the related issue,
      which we fix by narrowing the selector to filter for the error entry.
      
      Fixes #235
      
      Component: pkgctl version check
      Signed-off-by: default avatarChristian Heusel <christian@heusel.eu>
      Verified
      f1dc2e18
    • Christian Heusel's avatar
      fix(makechrootpkg): improve btrfs sanity checks · c9d82144
      Christian Heusel authored
      If the chroot was created in a way where it resides on a BTRFS file
      system but "$copydir/root" is not a snapshot an error like the following
      would be emitted:
      
        $ makechrootpkg -r ~/chroot
        ==> Synchronizing chroot copy [/home/chris/chroot/root] -> [chris]...ERROR: Not a Btrfs subvolume: Invalid argument
        ==> ERROR: Unable to create subvolume /home/chris/chroot/chris
      
      Fix this by adding an additional check, which detects if the folder is
      actually the root of a BTRFS snapshot before attempting to clone it.
      
      Related to !259
      
      
      
      Signed-off-by: default avatarChristian Heusel <christian@heusel.eu>
      Verified
      c9d82144
  9. Aug 21, 2024
  10. Jun 26, 2024
  11. Jun 19, 2024
  12. Jun 18, 2024
  13. Jun 15, 2024
  14. Jun 11, 2024
  15. Jun 09, 2024
  16. Jun 08, 2024
  17. May 22, 2024
  18. May 18, 2024
  19. May 17, 2024
    • Jan Alexander Steffens (heftig)'s avatar
      fix: consider all git repos inside the chroot safe · 7cb72699
      Jan Alexander Steffens (heftig) authored and Christian Heusel's avatar Christian Heusel committed
      Git 2.45.1 expanded its security checks to deny cloning even local repos
      that are owned by another user. Previously, this just affected network
      filesystems.
      
      On our buildserver, this prevents makepkg from cloning repos from our
      shared srcdest into the srcdir, if these repos were created by another
      packager.
      
      To disable this check, set `safe.directory` to `*`. This looks like a
      glob, but is really just a special value. The only other option would be
      to add each Git repository in srcdest to the configuration.
      
      Component: makechrootpkg
      Verified
      7cb72699
  20. May 10, 2024
  21. May 01, 2024
  22. Apr 30, 2024
  23. Apr 29, 2024
  24. Apr 28, 2024
  25. Apr 27, 2024
    • Levente Polyak's avatar
      feat(db): add partial split package option to db remove · 7b553afc
      Levente Polyak authored
      
      By default passing a pkgbase removes all split packages, debug packages
      as well as entries from the state repo for all existing architectures.
      
      When using the `--partial` option it may most likely lead to undesired
      effects by leaving debug packages behind as well as dangling entries in
      the state repository. However, for specific use cases its required to
      get rid of old split package parts.
      
      Fixes #218
      
      Component: pkgctl db remove
      Signed-off-by: Levente Polyak's avatarLevente Polyak <anthraxx@archlinux.org>
      Verified
      7b553afc
    • Stefan  's avatar
      feat(arch-nspawn): set console mode to autopipe · 01614c68
      Stefan   authored and Levente Polyak's avatar Levente Polyak committed
      systemd-nspawn sets up a pts in the container by default which build
      scripts might use to ask for interactive input.  This is only okay if
      the host side is also a TTY.  The 'autopipe' mode deals with this
      situation appropriately.
      Verified
      01614c68
  26. Apr 24, 2024
    • Christian Heusel's avatar
      fix(completion): fix erroneous completion variables · dced77d2
      Christian Heusel authored and Levente Polyak's avatar Levente Polyak committed
      
      The architecture definition of the variable was using invalid bash
      syntax and was previously unused:
      
          $ _binary_arch=${DEVTOOLS_VALID_ARCHES[*]:0:-1}
          bash: -1: substring expression < 0
      
      We therefore fix the definition of the variable and use it for the
      autocompletion of the offload-build command.
      
      Furthermore fix wrongly named architecture variables that have been
      missed from previous refactoring.
      
      Fixes #222
      
      Component: completion
      Fixes: f961e2e9 ("completion: implemented structured declarative bash completions")
      Fixes: 4173e0a ("chore: refactor variable names in valid-{tags,repos}.sh")
      Signed-off-by: default avatarChristian Heusel <christian@heusel.eu>
      Co-authored-by: Levente Polyak's avatarLevente Polyak <anthraxx@archlinux.org>
      Verified
      dced77d2
  27. Apr 23, 2024
    • Levente Polyak's avatar
      fix(release): ensure we release split package uploads as one batch · 5780ba0e
      Levente Polyak authored
      Use a central location in common.sh to define the default rsync options.
      Switch to use batched uploads by targeting a partial directory which is
      not taken into account by db update. Instead, once all packages that
      belong to a split package group are uploaded into the .partial
      directory, all artifacts are moved in one batch into the staging
      directory of the repo server. This reduced the window of opportunity for
      a partial release significantly to a tiny window.
      
      Component: pkgctl release
      Verified
      5780ba0e
    • Levente Polyak's avatar
      feat(pkgctl): add internal update checksums to better control output · 9a5181db
      Levente Polyak authored
      This allows us to have more control over the output and status logs.
      Using this method we are able to avoid cluttering the version upgrade
      subcommand while downloading sources for updating the checksums.
      
      Having this internally will also allow us in the future to have smart
      checksums updating by only trying to change the checksums of sources
      that have actually changed, for example when adjusting a patch file we
      should avoid trying to overwrite the archive checksums unintentionally.
      
      Component: pkgctl version upgrade
      Verified
      9a5181db
    • Robin Candau's avatar
      feat(version): let upgrade subcommand also update checksums · 55c2ca13
      Robin Candau authored and Levente Polyak's avatar Levente Polyak committed
      This commit aims to make 'pkgctl version upgrade' also update checksums
      in addition of bumping the pkgver and reseting the pkgrel.
      
      Component: pkgctl version upgrade
      Verified
      55c2ca13
  28. Apr 16, 2024
    • Vekhir --'s avatar
      fix: conflicting packages when using -I · ccee85b2
      Vekhir -- authored and Vekhir --'s avatar Vekhir -- committed
      Originally fixed in b7893a2c, that approach created another bug when packages have several providers. In that case, pacman expects a number, so "yes" is not a valid answer, leading to an infinite loop.
      
      Using the undocumented, but stable option "--ask=4" allows to selectively change the default answer for conflicts, therefore properly fixing the underlying issue.
      See also: pacman/pacman#60
      Fixes #163
      
      Component: makechrootpkg
      ccee85b2
  29. Mar 23, 2024
Loading