Skip to content

Add rsync - #568

Merged
twitchyliquid64 merged 4 commits into
gominimal:mainfrom
lrishi:add_rsync
Aug 6, 2026
Merged

Add rsync#568
twitchyliquid64 merged 4 commits into
gominimal:mainfrom
lrishi:add_rsync

Conversation

@lrishi

@lrishi lrishi commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

Summary

Add rsync to packages. It's dependency xxhash is also added

Related issues

Changes

Checklist

  • I've read CONTRIBUTING.md.
  • I've accepted the ICLA (and CCLA if contributing on my employer's time). CLA Assistant will prompt me on this PR if I haven't already.
  • min check passes for the affected packages/harnesses.
  • min patched-build <name> succeeds for any package I added or modified.
  • For new packages: source_provenance points to the canonical upstream and the source builds from source (not a prebuilt release binary) where the required toolchain is available.
  • For version bumps: I've verified the new sha256 against the upstream archive.

Notes for reviewers

Summary by CodeRabbit

  • New Features

    • Added rsync 3.4.4 and xxHash 0.8.3 packages.
    • Packages include verified upstream sources, executables, libraries, headers, documentation, and metadata where applicable.
    • Added support for using the latest available versions of these tools in supported environments.
  • Build Improvements

    • Added reproducible, parallel builds with staged installation.
    • Improved build reliability through stricter error handling and validated source archives.
    • Ensured consistent installation of binaries and development files.

@coderabbitai

coderabbitai Bot commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: fa288641-4189-4f13-9baf-36246a9bbc77

📥 Commits

Reviewing files that changed from the base of the PR and between b1a1b1b and 29ac230.

📒 Files selected for processing (4)
  • packages/rsync/build.ncl
  • packages/rsync/build.sh
  • packages/xxhash/build.ncl
  • packages/xxhash/build.sh
🚧 Files skipped from review as they are similar to previous changes (4)
  • packages/rsync/build.sh
  • packages/xxhash/build.sh
  • packages/rsync/build.ncl
  • packages/xxhash/build.ncl

📝 Walkthrough

Walkthrough

This change adds reproducible package definitions and build scripts for rsync 3.4.4 and xxHash 0.8.3. Both packages verify sources, declare dependencies and outputs, record provenance, and install into staged output directories.

Changes

Rsync package

Layer / File(s) Summary
Rsync package definition and build pipeline
packages/rsync/build.ncl, packages/rsync/build.sh
The package retrieves and verifies rsync 3.4.4, declares dependencies and binary/man-page outputs, records GitHub provenance, applies reproducible build flags, configures the source, and performs a parallel staged install.

xxHash package

Layer / File(s) Summary
xxHash package definition and build pipeline
packages/xxhash/build.ncl, packages/xxhash/build.sh
The package retrieves and verifies xxHash 0.8.3, declares dependencies and binary/library/header/pkg-config/man-page outputs, records GitHub provenance, applies reproducible build flags, and performs a parallel staged install.

Estimated code review effort: 3 (Moderate) | ~20 minutes

Suggested reviewers: twitchyliquid64

🚥 Pre-merge checks | ✅ 5
✅ Passed checks (5 passed)
Check name Status Explanation
Description Check ✅ Passed Check skipped - CodeRabbit’s high-level summary is enabled.
Title check ✅ Passed The title clearly and concisely identifies the primary change: adding the rsync package.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 4

🧹 Nitpick comments (2)
packages/rsync/build.ncl (1)

5-11: 📐 Maintainability & Code Quality | 🔵 Trivial | ⚡ Quick win

Alphabetize the lowercase import bindings.

Order these bindings as base, gcc, glibc, make, openssl, toolchain, and xxhash.

As per coding guidelines, lowercase imported identifiers must be alphabetized.

Proposed change
 let base = import "../base/build.ncl" in
 let gcc = import "../gcc/build.ncl" in
+let glibc = import "../glibc/build.ncl" in
 let make = import "../make/build.ncl" in
-let toolchain = import "../toolchain/build.ncl" in
-let glibc = import "../glibc/build.ncl" in
-let xxhash = import "../xxhash/build.ncl" in
 let openssl = import "../openssl/build.ncl" in
+let toolchain = import "../toolchain/build.ncl" in
+let xxhash = import "../xxhash/build.ncl" in
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/rsync/build.ncl` around lines 5 - 11, Reorder the import bindings in
the rsync build definition alphabetically by their lowercase identifiers: base,
gcc, glibc, make, openssl, toolchain, and xxhash.

Source: Coding guidelines

packages/xxhash/build.sh (1)

1-2: 🩺 Stability & Availability | 🔵 Trivial | ⚡ Quick win

Use the POSIX shell convention for package builds.

The repository convention is #!/bin/sh with set -e or set -eu. This script uses /bin/bash and pipefail, but it has no Bash-only syntax. The package specification does not declare Bash as a build dependency. Use the POSIX form and retain the unset-variable guard.

Proposed fix
-#!/bin/bash
-set -euo pipefail
+#!/bin/sh
+set -eu
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/xxhash/build.sh` around lines 1 - 2, Update the build script’s
shebang to /bin/sh and replace the Bash-specific option combination with the
POSIX-compatible set -eu form, preserving both exit-on-error and unset-variable
protection.

Sources: Coding guidelines, Learnings

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@packages/rsync/build.sh`:
- Around line 11-15: Update the configure.sh patching sed rule to delete the
complete here-document range beginning with the cat >>$CONFIG_STATUS <<_ACEOF
marker and ending at the closing _ACEOF line. Replace the current single-line
N-based matching so configured blocks containing content are removed as well.

In `@packages/xxhash/build.sh`:
- Around line 9-11: Update the make invocation in the build script to pass
ARFLAGS=rcsD explicitly, ensuring libxxhash.a retains its symbol index while
using deterministic archive timestamps; remove or override the ineffective
exported ARFLAGS setting as needed.
- Line 11: Update the staging command in build.sh to validate that OUTPUT_DIR is
non-empty before invoking make, then quote the OUTPUT_DIR expansion and the
nproc job-count substitution so empty, whitespace-containing, or glob-containing
paths cannot alter the install destination.
- Around line 5-8: Update the build environment assignments in the xxhash build
script to preserve the toolchain-selected CC rather than forcing gcc, and append
the existing reproducibility options to the current CFLAGS and LDFLAGS values so
target and sysroot flags remain intact; keep CXXFLAGS derived from the resulting
CFLAGS, following the pattern used by the stress-ng build script.

---

Nitpick comments:
In `@packages/rsync/build.ncl`:
- Around line 5-11: Reorder the import bindings in the rsync build definition
alphabetically by their lowercase identifiers: base, gcc, glibc, make, openssl,
toolchain, and xxhash.

In `@packages/xxhash/build.sh`:
- Around line 1-2: Update the build script’s shebang to /bin/sh and replace the
Bash-specific option combination with the POSIX-compatible set -eu form,
preserving both exit-on-error and unset-variable protection.
🪄 Autofix

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: 3ff8f883-c7c9-401a-8dc8-fe05f0769913

📥 Commits

Reviewing files that changed from the base of the PR and between 88a1113 and 7933f4f.

📒 Files selected for processing (4)
  • packages/rsync/build.ncl
  • packages/rsync/build.sh
  • packages/xxhash/build.ncl
  • packages/xxhash/build.sh

Comment thread packages/rsync/build.sh
Comment thread packages/xxhash/build.sh
Comment thread packages/xxhash/build.sh
Comment on lines +9 to +11
export ARFLAGS=Drc

make -j$(nproc) DESTDIR=$OUTPUT_DIR PREFIX=/usr install

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/sh
set -eu
curl -fsSL 'https://raw.githubusercontent.com/Cyan4973/xxHash/v0.8.3/Makefile' |
  grep -n -A3 '^libxxhash\.a:'

Repository: gominimal/pkgs

Length of output: 276


🏁 Script executed:

#!/bin/sh
set -eu
printf '--- packages/xxhash/build.sh ---\n'
cat -n packages/xxhash/build.sh
printf '\n--- make documentation for ARFLAGS override ---\n'
make --version 2>/dev/null | head -n 1 || true
make --help 2>/dev/null | sed -n '/override/,+3p' || true
printf '\n--- Make behavior probe with Makefile from raw v0.8.3 ---\n'
tmp="$(mktemp -d)"
cd "$tmp"
printf 'AR = echo-ar\nlibxxhash.a: ARFLAGS = rcs\n\t$(AR) $(ARFLAGS) $@\n\n' > Makefile
export ARFLAGS=Drc
printf '-- with explicit ARFLAGS on make command line --\n'
make -f Makefile ARFLAGS=rcsD
printf '-- without explicit ARFLAGS on make command line --\n'
make -f Makefile

Repository: gominimal/pkgs

Length of output: 243


🏁 Script executed:

#!/bin/sh
set -eu
printf '%s\n' '--- packages/xxhash/build.sh ---'
cat -n packages/xxhash/build.sh
printf '%s\n' ''
printf '%s\n' '--- make documentation for override/directives ---'
make --version 2>/dev/null | head -n 1 || true
make --help 2>/dev/null | sed -n '/override/,+4p' || true
printf '%s\n' ''
printf '%s\n' '--- Make behavior probe with Makefile from raw v0.8.3 ---'
tmp="$(mktemp -d)"
printf '%s\n' 'AR = echo-ar' > "$tmp/Makefile"
printf '%s\n' 'libxxhash.a: ARFLAGS = rcs' >> "$tmp/Makefile"
printf '%s\n' '	$(AR) $(ARFLAGS) $@' >> "$tmp/Makefile"
printf '%s\n' '' >> "$tmp/Makefile"
printf '%s\n' '-- exported ARFLAGS only --'
ARFLAGS=Drc make -f "$tmp/Makefile"
printf '%s\n' '-- explicit ARFLAGS passed to make command line --'
make -f "$tmp/Makefile" ARFLAGS=rcsD
printf '%s\n' '-- patch the target --'
sed -i 's/^libxxhash\.a: ARFLAGS = rcs/libxxhash.a: ARFLAGS = rcsD/' "$tmp/Makefile"
ARFLAGS=Drc make -f "$tmp/Makefile"

Repository: gominimal/pkgs

Length of output: 715


🏁 Script executed:

#!/bin/sh
set -eu
printf '%s\n' '--- upstream targets around archive and install ---'
curl -fsSL 'https://raw.githubusercontent.com/Cyan4973/xxHash/v0.8.3/Makefile' | sed -n '135,185p'
printf '%s\n' ''
printf '%s\n' '--- deterministic archive behavior for GNU ar flags ---'
python3 - <<'PY'
flags = "rcsD"
print("libxxhash.a target ARFLAGS rcs assignment will replace exported ARFLAGS=Drc in GNU make")
print("rcsD preserves the index and adds the --deterministic flag for GNU ar")
print("Drc only would override rcs and replace the current order with deterministic+create+replace, dropping index")
PY

Repository: gominimal/pkgs

Length of output: 1834


Preserve the static archive index while enforcing deterministic archives.

The xxHash v0.8.3 libxxhash.a target assigns ARFLAGS = rcs, so the exported ARFLAGS=Drc is replaced and the archive index is dropped. Pass ARFLAGS=rcsD on the make command line, or patch the archive target, so libxxhash.a keeps its symbol index and uses a deterministic archive.

Proposed fix
-export ARFLAGS=Drc
+export ARFLAGS=rcsD

-make -j$(nproc) DESTDIR=$OUTPUT_DIR PREFIX=/usr install
+make -j"$(nproc)" ARFLAGS="$ARFLAGS" DESTDIR="$OUTPUT_DIR" PREFIX=/usr install
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
export ARFLAGS=Drc
make -j$(nproc) DESTDIR=$OUTPUT_DIR PREFIX=/usr install
export ARFLAGS=rcsD
make -j"$(nproc)" ARFLAGS="$ARFLAGS" DESTDIR="$OUTPUT_DIR" PREFIX=/usr install
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/xxhash/build.sh` around lines 9 - 11, Update the make invocation in
the build script to pass ARFLAGS=rcsD explicitly, ensuring libxxhash.a retains
its symbol index while using deterministic archive timestamps; remove or
override the ineffective exported ARFLAGS setting as needed.

Source: Coding guidelines

Comment thread packages/xxhash/build.sh
export LDFLAGS="-Wl,--build-id=none"
export ARFLAGS=Drc

make -j$(nproc) DESTDIR=$OUTPUT_DIR PREFIX=/usr install

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🗄️ Data Integrity & Integration | 🟠 Major | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "Repository files matching build.sh:"
git ls-files 'packages/*/build.sh' | sed -n '1,80p'

echo
echo "packages/xxhash/build.sh:"
if [ -f packages/xxhash/build.sh ]; then
  cat -n packages/xxhash/build.sh
else
  echo "missing packages/xxhash/build.sh"
fi

echo
echo "Build script occurrences of OUTPUT_DIR / DESTDIR:"
rg -n 'OUTPUT_DIR|DESTDIR|PREFIX|make -j|nproc' packages/*/build.sh packages/xxhash/build.sh || true

Repository: gominimal/pkgs

Length of output: 50370


🌐 Web query:

xxHash v0.8.3 Makefile DESTDIR install install_bin install_lib install_inc install_man

💡 Result:

In the xxHash v0.8.3 Makefile, the DESTDIR variable is supported and acts as a standard prefix for installation paths, enabling staged installations (e.g., for package building) [1][2]. The project provides modular install targets, which allow users to selectively install components [3]. The primary install target invokes these individual targets sequentially [4][5]. Key installation targets include: - install_libxxhash.a: Installs the static library (libxxhash.a) to the LIBDIR [4][1]. - install_libxxhash: Installs the shared library (libxxhash.so or equivalent) and its symbolic links to the LIBDIR [4][1]. - install_libxxhash.includes: Installs the header files (xxhash.h, xxh3.h, etc.) to the INCLUDEDIR [4][1]. - install_xxhsum: Installs the xxhsum CLI utility and creates symbolic links for associated commands (xxh32sum, xxh64sum, xxh128sum, xxh3sum) in the BINDIR [4][1]. - install_man: Installs the man pages to the MANDIR [4][1]. - install_libxxhash.pc: Installs the pkg-config file to the PKGCONFIGDIR [4][5]. These targets rely on directory variables such as BINDIR, LIBDIR, INCLUDEDIR, and MANDIR, which default to standard locations (e.g., /usr/local/bin) but can be overridden [1]. Directories are created as needed during the install process using the MAKE_DIR variable [4][6]. To install the entire suite, you can run: make install To install specific components, you can call their respective targets directly, for example: make install_xxhsum DESTDIR=/tmp/staging

Citations:


🏁 Script executed:

#!/bin/bash
set -euo pipefail

python3 - <<'PY'
import subprocess
import tempfile

def exec_sh(script, env=None):
    if env is None:
        env = {"PATH": subprocess.os.environ.get("PATH", "/usr/bin:/bin"), "HOME": subprocess.os.path.expanduser("~")}
    p = subprocess.Popen(['sh', '-e'], stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE, env=env, text=True)
    stdout, stderr = p.communicate(script, timeout=10)
    return p.returncode, stdout.splitlines(), stderr.splitlines()

cases = [
    ("unset", {}),
    ("empty", {"OUTPUT_DIR": ""}),
    ("space", {"OUTPUT_DIR": "/tmp/staging space"}),
    ("glob", {"OUTPUT_DIR": "/tmp/staging-[a-z]"}),
]

for name, env in cases:
    # Minimal shell script that mirrors the script options and the make command argument construction.
    # It uses printf -v so the exact unquoted substitution can be inspected without starting make.
    script = """\
set -euo pipefail
export CC=gcc
export CFLAGS="-O3 -pipe -ffile-prefix-map=$(pwd)=/builddir -gno-record-gcc-switches"
export CXXFLAGS="$CFLAGS"
export LDFLAGS="-Wl,--build-id=none"
export ARFLAGS=Drc
printf -v cmd 'make -j%%s DESTDIR=%s PREFIX=/usr install' "$(nproc)" "%s"
printf '%s\n' "$cmd"
exit 0
"""
    code, stdout, stderr = exec_sh(script, env)
    print(f"\nCASE: {name}")
    if code != 0:
        print("exit", code)
        for line in stderr:
            print(line)
    else:
        print("\n".join(stdout))

print("\nBash shellcheck behavior for double-quote glob expansion would be read-only, but no shellcheck availability check needed.")
PY

Repository: gominimal/pkgs

Length of output: 642


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "Check bash printf -v unquoted substitution around spaces/globs:"
bash -c '
set -euo pipefail
prefix=/usr
dest=""
printf -v cmd "make -j%s DESTDIR=%s PREFIX=/usr install" "$(nproc)" "$dest"
printf "cmd=%s\n" "$cmd"
if [ "$dest" = "" ]; then
  printf "empty case: DESTDIR becomes empty\n"
fi
'
bash -c '
set -euo pipefail
prefix=/usr
dest="/tmp/staging space"
printf -v cmd "make -j%s DESTDIR=%s PREFIX=/usr install" "$(nproc)" "$dest"
printf "cmd=%s\n" "$cmd"
if printf "%s" "$cmd" | grep -qF "DESTDIR=/tmp/staging space"; then
  printf "space case: quoted expansion preserves space\n"
fi
'

Repository: gominimal/pkgs

Length of output: 473


Validate and quote $OUTPUT_DIR before staging.

set -euo pipefail does not reject an empty OUTPUT_DIR; DESTDIR=PREFIX=/usr then leaves DESTDIR unset and installs under PREFIX=/usr. Unquoted expansion also breaks paths containing spaces or glob characters. Fail closed and quote both $OUTPUT_DIR and $(nproc).

Proposed fix
+: "${OUTPUT_DIR:?OUTPUT_DIR must be non-empty}"
-make -j$(nproc) DESTDIR=$OUTPUT_DIR PREFIX=/usr install
+make -j"$(nproc)" DESTDIR="$OUTPUT_DIR" PREFIX=/usr install
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
make -j$(nproc) DESTDIR=$OUTPUT_DIR PREFIX=/usr install
: "${OUTPUT_DIR:?OUTPUT_DIR must be non-empty}"
make -j"$(nproc)" DESTDIR="$OUTPUT_DIR" PREFIX=/usr install
🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@packages/xxhash/build.sh` at line 11, Update the staging command in build.sh
to validate that OUTPUT_DIR is non-empty before invoking make, then quote the
OUTPUT_DIR expansion and the nproc job-count substitution so empty,
whitespace-containing, or glob-containing paths cannot alter the install
destination.

Source: Coding guidelines

Comment thread packages/xxhash/build.ncl Outdated
Comment thread packages/xxhash/build.ncl Outdated
Comment thread packages/rsync/build.ncl Outdated
@twitchyliquid64

Copy link
Copy Markdown
Member

/build

@twitchyliquid64

twitchyliquid64 commented Aug 5, 2026

Copy link
Copy Markdown
Member

[package: rsync] enumerate bins amd64/linux

  • when theres only a few binaries, they should be enumerated explicitly as their own output. Found: rsync-ssl,rsync

[package: rsync] missing runtime_deps amd64/linux

  • executable dependency 'libacl.so.1' not in runtime deps, needed by usr/bin/rsync
  • executable dependency 'libcrypto.so.3' not in runtime deps, needed by usr/bin/rsync
  • interpreter 'usr/bin/env' not in runtime deps, needed by script usr/bin/rsync-ssl (output bins)

[package: xxhash] enumerate bins amd64/linux

  • when theres only a few binaries, they should be enumerated explicitly as their own output. Found: xxh64sum,xxh128sum,xxh32sum,xxh3sum,xxhsum

@twitchyliquid64

Copy link
Copy Markdown
Member

/build

@twitchyliquid64

Copy link
Copy Markdown
Member
[package: xxhash]
enumerate bins
arm64/linux
when theres only a few binaries, they should be enumerated explicitly as their own output. Found: xxhsum,xxh3sum,xxh64sum,xxh32sum,xxh128sum

@coderabbitai

coderabbitai Bot commented Aug 5, 2026

Copy link
Copy Markdown
Contributor

Note

GitHub couldn't provide a complete incremental comparison for this pull request, so CodeRabbit is performing a full review instead. This review may take a little longer.

@lrishi

lrishi commented Aug 5, 2026

Copy link
Copy Markdown
Contributor Author

@twitchyliquid64 how are you getting to these errors? my min check doesn't reveal these. I suppose there is something to build them in place?

@twitchyliquid64

Copy link
Copy Markdown
Member

min check should show them as long as youve built them first. If youre on linux:

  1. mip package build
  2. mip check --fix <packages>

If you are in a minimal session which is a checkout of pkgs with your changes, there should be equivalent min check min package build commands. It does need to a be a session which is a checkout of pkgs tho, not a subdirectory which is a checkout of pkgs.

@twitchyliquid64

twitchyliquid64 commented Aug 5, 2026

Copy link
Copy Markdown
Member
xxx@dsktp:~/pkgs$ git remote add irishi https://github.com/lrishi/gominimal-pkgs.git
xxx@dsktp:~/pkgs$ git fetch irishi && git checkout irishi/add_rsync
<snip>

HEAD is now at 29ac230 Enumerate bins in xxhash
xxx@dsktp:~/pkgs$ mip package build rsync xxhash
2026-08-05T16:19:29.752366Z  INFO op::specs: Building package: xxhash
2026-08-05T16:19:32.153830Z  INFO op::specs: Building package: rsync
2026-08-05T16:19:40.979630Z  INFO mip::cmd_pkg: Build completed successfully!
2026-08-05T16:19:40.979644Z  INFO mip::cmd_pkg: Target packages:
2026-08-05T16:19:40.979700Z  INFO mip::cmd_pkg:   rsync -> /home/xxx/.cache/minimal/built/98/a182d5b9a6625000fd5984d8e5d0fa884b07b9100ca8ba1a9246b8f11bb2ee (built in 8.7s)
2026-08-05T16:19:40.979739Z  INFO mip::cmd_pkg:   xxhash -> /home/xxx/.cache/minimal/built/3e/8afc9e114ac9152e2278582aa7264f10dc9a9ac6272299dd19ce63fce5c8a1 (built in 1.2s)
xxx@dsktp:~/pkgs$ mip check xxhash rsync
package: xxhash
spec name matches dir...Pass
spec name valid...Pass
cycle breaker naming...Pass
output naming...Pass
enumerate bins...Pass
output types valid...Pass
missing runtime_deps...Pass
build scripts are executable...Pass
build script disallowed-patterns...Pass
standalone tests...Pass
source urls valid...Pass
parse...Pass
import line...Pass
imports...Pass
fmt...Pass


package: rsync
spec name matches dir...Pass
spec name valid...Pass
cycle breaker naming...Pass
output naming...Pass
enumerate bins...Pass
output types valid...Pass
missing runtime_deps...Pass
build scripts are executable...Pass
build script disallowed-patterns...Pass
standalone tests...Pass
source urls valid...Pass
parse...Pass
import line...Pass
imports...Pass
fmt...Pass


xxx@dsktp:~/pkgs$

@twitchyliquid64

Copy link
Copy Markdown
Member

/build

@twitchyliquid64
twitchyliquid64 added this pull request to the merge queue Aug 6, 2026
Merged via the queue into gominimal:main with commit 50b81db Aug 6, 2026
10 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants