[2026-03-26 05:18:45,033][ INFO][PID:3931495] Marking build as starting [2026-03-26 05:18:45,077][ INFO][PID:3931495] Checking for cancel request [2026-03-26 05:18:45,078][ INFO][PID:3931495] VM allocation process starts [2026-03-26 05:18:45,088][ INFO][PID:3931495] Trying to allocate VM: ResallocHost, ticket_id=2034046, requested_tags=['copr_builder', 'arch_x86_64'] [2026-03-26 05:18:48,120][ INFO][PID:3931495] Allocated host ResallocHost, ticket_id=2034046, hostname=18.206.219.240, name=aws_x86_64_normalreserved_prod_04274524_20260326_051718, requested_tags=['copr_builder', 'arch_x86_64'] [2026-03-26 05:18:48,121][ INFO][PID:3931495] Allocating ssh connection to builder [2026-03-26 05:18:48,121][ INFO][PID:3931495] Checking that builder machine is OK [2026-03-26 05:18:48,451][ INFO][PID:3931495] Running remote command: copr-builder-ready srpm-builds [2026-03-26 05:18:48,667][ INFO][PID:3931495] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-03-26 05:18:48,667][ INFO][PID:3931495] Filling build.info file with builder info [2026-03-26 05:18:48,714][ INFO][PID:3931495] Checking for cancel request [2026-03-26 05:18:48,715][ INFO][PID:3931495] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "networkmanager", "project_name": "NetworkManager-libreswan-next", "project_dirname": "NetworkManager-libreswan-next", "submitter": null, "ended_on": null, "started_on": 1774502328.715672, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10262687", "build_id": 10262687, "package_name": "NetworkManager-libreswan", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/bin/bash\\n# Enable command tracing (set -x) and immediate exit on error (set -e)\\nset -xe \\n\\n# --- Configuration ---\\nREPO_URL=\\\"https://gitlab.gnome.org/GNOME/NetworkManager-libreswan.git\\\"\\nSPEC_URL=\\\"https://src.fedoraproject.org/rpms/NetworkManager-libreswan/raw/main/f/NetworkManager-libreswan.spec\\\"\\nSPEC_FILE=\\\"NetworkManager-libreswan.spec\\\"\\n\\n# --- Workspace Setup ---\\necho \\\"--- STEP: Setting up build workspace ---\\\"\\n# We must use the current directory (/workdir) provided by COPR.\\n# DO NOT use mktemp or trap.\\nWORK_DIR=$(pwd) \\necho \\\"INFO: Working directory is: $WORK_DIR\\\"\\n\\n# --- 1. Clone Repository ---\\necho \\\"--- STEP: Cloning repository and changing directory ---\\\"\\n# Clone into a subdirectory within /workdir\\nREPO_CLONE_PATH=\\\"$WORK_DIR/repo\\\"\\ngit clone $REPO_URL \\\"$REPO_CLONE_PATH\\\"\\ncd \\\"$REPO_CLONE_PATH\\\"\\n\\n# --- 2. Get Custom Versioning Info ---\\necho \\\"--- STEP: Calculating custom versioning ---\\\"\\n# Base version (e.g., 1.2.28)\\nGIT_DESCRIBE=$(git describe --tags --long 2>/dev/null || echo \\\"0.0.0-0-g$(git rev-parse --short HEAD)\\\")\\nVERSION=$(echo \\\"$GIT_DESCRIBE\\\" | sed -r 's/([0-9]+\\\\.[0-9]+\\\\.[0-9]+).*/\\\\1/')\\n# Commit count (e.g., 763)\\nCOMMIT_COUNT=$(git rev-list --count HEAD)\\n# Short commit ID (e.g., dd28708)\\nSHORT_COMMIT=$(git rev-parse --short HEAD)\\n\\n# Define the custom Release format: .copr.\\nRELEASE_FORMAT=\\\"$COMMIT_COUNT.copr.$SHORT_COMMIT\\\"\\nRELEASE_NAME=\\\"NetworkManager-libreswan-$VERSION\\\"\\necho \\\"Calculated Version: $VERSION, Release: $RELEASE_FORMAT, Tarball: $RELEASE_NAME.tar.gz\\\"\\n\\n# --- 3. Create Source Tarball (Output to /workdir) ---\\necho \\\"--- STEP: Creating source tarball in /workdir ---\\\"\\n# Output tarball directly to the parent directory (/workdir)\\ngit archive --format=tar.gz --prefix=$RELEASE_NAME/ HEAD -o \\\"../$RELEASE_NAME.tar.gz\\\"\\n\\n# --- 4. Download Spec File (Output to /workdir) ---\\necho \\\"--- STEP: Downloading spec file to /workdir ---\\\"\\n# Output spec file directly to the parent directory (/workdir)\\ncurl -sSL \\\"$SPEC_URL\\\" -o \\\"../$SPEC_FILE\\\"\\n\\n# --- 5. Patch Spec File (in /workdir) ---\\necho \\\"--- STEP: Patching spec file in /workdir ---\\\"\\n# Define the path to the spec file, which is now in the parent dir\\nSPEC_PATH_TARGET=\\\"../$SPEC_FILE\\\" \\n\\n# Change the expected source extension from .tar.xz to .tar.gz\\nsed -i 's/\\\\.tar\\\\.xz/\\\\.tar\\\\.gz/g' \\\"$SPEC_PATH_TARGET\\\"\\n\\n# Update Source0 to match the exact tarball name we created\\nsed -i \\\"s,^Source0:.*,Source0: $RELEASE_NAME.tar.gz,\\\" \\\"$SPEC_PATH_TARGET\\\"\\n\\n# Patch Version and Release fields\\nsed -i \\\"s/^Version:.*/Version: $VERSION/\\\" \\\"$SPEC_PATH_TARGET\\\"\\nsed -i \\\"s/^Release:.*/Release: $RELEASE_FORMAT%{?dist}/\\\" \\\"$SPEC_PATH_TARGET\\\"\\n\\n# Add autogen.sh to %prep section to generate ./configure\\nsed -i '/^%autosetup -p1/a ./autogen.sh' \\\"$SPEC_PATH_TARGET\\\"\\n\\n# Add missing BuildRequires for the autogen.sh script\\n# We add them after a known, existing BuildRequires (like pkgconfig)\\nsed -i '/BuildRequires: pkgconfig/a BuildRequires: libtool\\\\nBuildRequires: autoconf\\\\nBuildRequires: automake\\\\nBuildRequires: gettext-devel' \\\"$SPEC_PATH_TARGET\\\"\\n\\necho \\\"INFO: Spec file patched.\\\"\\n\\n# --- 6. Go back to /workdir and list files ---\\ncd ..\\necho \\\"--- STEP: Listing final files in /workdir ---\\\"\\nls -l\\n# Mock should now find the spec file and the tar.gz file here.\\n\\necho \\\"--- Custom build script completed. ---\\\"\\n\", \"chroot\": \"fedora-44-x86_64\", \"builddeps\": \"git-core rpm-build curl which sed make tar\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmptild41l9\", \"hook_data\": true}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "networkmanager/NetworkManager-libreswan-next--8e04a451-3044-4b5d-aa4c-29f4f3d55464", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "destdir": "/var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/networkmanager/NetworkManager-libreswan-next", "result_dir": "10262687", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10262687, "mockchain_macros": { "copr_username": "networkmanager", "copr_projectname": "NetworkManager-libreswan-next", "vendor": "Fedora Project COPR (networkmanager/NetworkManager-libreswan-next)" } } ] } [2026-03-26 05:18:48,763][ INFO][PID:3931495] Sending fedora-messaging bus message in build.start [2026-03-26 05:18:49,316][ INFO][PID:3931495] Sending fedora-messaging bus message in chroot.start [2026-03-26 05:18:49,342][ INFO][PID:3931495] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10262687 --detached [2026-03-26 05:18:49,694][ INFO][PID:3931495] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '18.206.219.240' (ED25519) to the list of known hosts. [2026-03-26 05:18:49,695][ INFO][PID:3931495] Downloading the builder-live.log file, attempt 1 [2026-03-26 05:18:49,696][ INFO][PID:3931495] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@18.206.219.240 copr-rpmbuild-log [2026-03-26 05:18:54,706][ INFO][PID:3931495] Periodic builder liveness probe: alive [2026-03-26 05:18:54,707][ INFO][PID:3931495] Checking for cancel request [2026-03-26 05:18:59,709][ INFO][PID:3931495] Checking for cancel request [2026-03-26 05:19:04,710][ INFO][PID:3931495] Checking for cancel request [2026-03-26 05:19:09,711][ INFO][PID:3931495] Checking for cancel request [2026-03-26 05:19:14,712][ INFO][PID:3931495] Checking for cancel request [2026-03-26 05:19:19,713][ INFO][PID:3931495] Checking for cancel request [2026-03-26 05:19:24,714][ INFO][PID:3931495] Checking for cancel request [2026-03-26 05:19:25,158][ INFO][PID:3931495] Downloading results from builder [2026-03-26 05:19:25,159][ INFO][PID:3931495] rsyncing of mockbuilder@18.206.219.240:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/10262687 started [2026-03-26 05:19:25,160][ INFO][PID:3931495] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@18.206.219.240:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/10262687/ &> /var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/10262687/build-10262687.rsync.log [2026-03-26 05:19:25,473][ INFO][PID:3931495] rsyncing finished. [2026-03-26 05:19:25,474][ INFO][PID:3931495] Releasing VM back to pool [2026-03-26 05:19:25,482][ INFO][PID:3931495] Searching for 'success' file in resultdir [2026-03-26 05:19:25,483][ INFO][PID:3931495] Getting build details [2026-03-26 05:19:25,483][ INFO][PID:3931495] Retrieving SRPM info from /var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/10262687 [2026-03-26 05:19:25,484][ INFO][PID:3931495] SRPM URL: https://download.copr.fedorainfracloud.org/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/10262687/NetworkManager-libreswan-1.2.30-814.copr.ae51544.src.rpm [2026-03-26 05:19:25,484][ INFO][PID:3931495] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/10262687/NetworkManager-libreswan-1.2.30-814.copr.ae51544.src.rpm', 'pkg_name': 'NetworkManager-libreswan', 'pkg_version': '1.2.30-814.copr.ae51544'} [2026-03-26 05:19:25,485][ INFO][PID:3931495] Finished build: id=10262687 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next chroot=srpm-builds [2026-03-26 05:19:25,486][ INFO][PID:3931495] Worker succeeded build, took 36.77124524116516 [2026-03-26 05:19:25,487][ INFO][PID:3931495] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "networkmanager", "project_name": "NetworkManager-libreswan-next", "project_dirname": "NetworkManager-libreswan-next", "submitter": null, "ended_on": 1774502365.4869173, "started_on": 1774502328.715672, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10262687", "build_id": 10262687, "package_name": "NetworkManager-libreswan", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/bin/bash\\n# Enable command tracing (set -x) and immediate exit on error (set -e)\\nset -xe \\n\\n# --- Configuration ---\\nREPO_URL=\\\"https://gitlab.gnome.org/GNOME/NetworkManager-libreswan.git\\\"\\nSPEC_URL=\\\"https://src.fedoraproject.org/rpms/NetworkManager-libreswan/raw/main/f/NetworkManager-libreswan.spec\\\"\\nSPEC_FILE=\\\"NetworkManager-libreswan.spec\\\"\\n\\n# --- Workspace Setup ---\\necho \\\"--- STEP: Setting up build workspace ---\\\"\\n# We must use the current directory (/workdir) provided by COPR.\\n# DO NOT use mktemp or trap.\\nWORK_DIR=$(pwd) \\necho \\\"INFO: Working directory is: $WORK_DIR\\\"\\n\\n# --- 1. Clone Repository ---\\necho \\\"--- STEP: Cloning repository and changing directory ---\\\"\\n# Clone into a subdirectory within /workdir\\nREPO_CLONE_PATH=\\\"$WORK_DIR/repo\\\"\\ngit clone $REPO_URL \\\"$REPO_CLONE_PATH\\\"\\ncd \\\"$REPO_CLONE_PATH\\\"\\n\\n# --- 2. Get Custom Versioning Info ---\\necho \\\"--- STEP: Calculating custom versioning ---\\\"\\n# Base version (e.g., 1.2.28)\\nGIT_DESCRIBE=$(git describe --tags --long 2>/dev/null || echo \\\"0.0.0-0-g$(git rev-parse --short HEAD)\\\")\\nVERSION=$(echo \\\"$GIT_DESCRIBE\\\" | sed -r 's/([0-9]+\\\\.[0-9]+\\\\.[0-9]+).*/\\\\1/')\\n# Commit count (e.g., 763)\\nCOMMIT_COUNT=$(git rev-list --count HEAD)\\n# Short commit ID (e.g., dd28708)\\nSHORT_COMMIT=$(git rev-parse --short HEAD)\\n\\n# Define the custom Release format: .copr.\\nRELEASE_FORMAT=\\\"$COMMIT_COUNT.copr.$SHORT_COMMIT\\\"\\nRELEASE_NAME=\\\"NetworkManager-libreswan-$VERSION\\\"\\necho \\\"Calculated Version: $VERSION, Release: $RELEASE_FORMAT, Tarball: $RELEASE_NAME.tar.gz\\\"\\n\\n# --- 3. Create Source Tarball (Output to /workdir) ---\\necho \\\"--- STEP: Creating source tarball in /workdir ---\\\"\\n# Output tarball directly to the parent directory (/workdir)\\ngit archive --format=tar.gz --prefix=$RELEASE_NAME/ HEAD -o \\\"../$RELEASE_NAME.tar.gz\\\"\\n\\n# --- 4. Download Spec File (Output to /workdir) ---\\necho \\\"--- STEP: Downloading spec file to /workdir ---\\\"\\n# Output spec file directly to the parent directory (/workdir)\\ncurl -sSL \\\"$SPEC_URL\\\" -o \\\"../$SPEC_FILE\\\"\\n\\n# --- 5. Patch Spec File (in /workdir) ---\\necho \\\"--- STEP: Patching spec file in /workdir ---\\\"\\n# Define the path to the spec file, which is now in the parent dir\\nSPEC_PATH_TARGET=\\\"../$SPEC_FILE\\\" \\n\\n# Change the expected source extension from .tar.xz to .tar.gz\\nsed -i 's/\\\\.tar\\\\.xz/\\\\.tar\\\\.gz/g' \\\"$SPEC_PATH_TARGET\\\"\\n\\n# Update Source0 to match the exact tarball name we created\\nsed -i \\\"s,^Source0:.*,Source0: $RELEASE_NAME.tar.gz,\\\" \\\"$SPEC_PATH_TARGET\\\"\\n\\n# Patch Version and Release fields\\nsed -i \\\"s/^Version:.*/Version: $VERSION/\\\" \\\"$SPEC_PATH_TARGET\\\"\\nsed -i \\\"s/^Release:.*/Release: $RELEASE_FORMAT%{?dist}/\\\" \\\"$SPEC_PATH_TARGET\\\"\\n\\n# Add autogen.sh to %prep section to generate ./configure\\nsed -i '/^%autosetup -p1/a ./autogen.sh' \\\"$SPEC_PATH_TARGET\\\"\\n\\n# Add missing BuildRequires for the autogen.sh script\\n# We add them after a known, existing BuildRequires (like pkgconfig)\\nsed -i '/BuildRequires: pkgconfig/a BuildRequires: libtool\\\\nBuildRequires: autoconf\\\\nBuildRequires: automake\\\\nBuildRequires: gettext-devel' \\\"$SPEC_PATH_TARGET\\\"\\n\\necho \\\"INFO: Spec file patched.\\\"\\n\\n# --- 6. Go back to /workdir and list files ---\\ncd ..\\necho \\\"--- STEP: Listing final files in /workdir ---\\\"\\nls -l\\n# Mock should now find the spec file and the tar.gz file here.\\n\\necho \\\"--- Custom build script completed. ---\\\"\\n\", \"chroot\": \"fedora-44-x86_64\", \"builddeps\": \"git-core rpm-build curl which sed make tar\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmptild41l9\", \"hook_data\": true}", "pkg_name": "NetworkManager-libreswan", "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": "https://download.copr.fedorainfracloud.org/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/10262687/NetworkManager-libreswan-1.2.30-814.copr.ae51544.src.rpm", "uses_devel_repo": null, "sandbox": "networkmanager/NetworkManager-libreswan-next--8e04a451-3044-4b5d-aa4c-29f4f3d55464", "results": { "name": "NetworkManager-libreswan", "epoch": null, "version": "1.2.30", "release": "814.copr.ae51544", "exclusivearch": [], "excludearch": [] }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "destdir": "/var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/networkmanager/NetworkManager-libreswan-next", "result_dir": "10262687", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "1.2.30-814.copr.ae51544", "id": 10262687, "mockchain_macros": { "copr_username": "networkmanager", "copr_projectname": "NetworkManager-libreswan-next", "vendor": "Fedora Project COPR (networkmanager/NetworkManager-libreswan-next)" } } ] } [2026-03-26 05:19:25,554][ INFO][PID:3931495] Sending fedora-messaging bus message in build.end [2026-03-26 05:19:25,581][ INFO][PID:3931495] Compressing /var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/10262687/builder-live.log by gzip [2026-03-26 05:19:25,583][ INFO][PID:3931495] Running command 'gzip /var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/10262687/builder-live.log' as PID 3935721 [2026-03-26 05:19:25,588][ INFO][PID:3931495] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/10262687/builder-live.log) [2026-03-26 05:19:25,589][ INFO][PID:3931495] Compressing /var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/10262687/backend.log by gzip [2026-03-26 05:19:25,590][ INFO][PID:3931495] Running command 'gzip /var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/10262687/backend.log' as PID 3935723