Warning: Permanently added '18.207.217.49' (ED25519) to the list of known hosts. You can reproduce this build on your computer by running: sudo dnf install copr-rpmbuild /usr/bin/copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10910946 Version: 1.9 PID: 9832 Logging PID: 9834 Task: {'appstream': False, 'background': True, 'build_id': 10910946, 'chroot': None, 'distributions_in_build': ['centos-stream-10', 'epel-10', 'fedora-43', 'fedora-44', 'fedora-45', 'fedora-rawhide'], 'distributions_in_project': ['centos-stream-10', 'epel-10', 'fedora-43', 'fedora-44', 'fedora-45', 'fedora-rawhide'], 'package_name': 'dms', 'project_dirname': 'dms-git', 'project_name': 'dms-git', 'project_owner': 'avengemedia', 'repos': [], 'sandbox': 'avengemedia/dms-git--https://api.github.com/users/bbedward', 'source_json': {'clone_url': 'https://github.com/AvengeMedia/DankMaterialShell.git', 'committish': '29341882968f34d7531e6e1411a6511d9719a527', 'spec': 'distro/fedora/dms-git.spec', 'srpm_build_method': 'rpkg', 'subdirectory': '', 'type': 'git'}, 'source_type': 8, 'submitter': 'https://api.github.com/users/bbedward', 'task_id': '10910946'} Running: git clone https://github.com/AvengeMedia/DankMaterialShell.git /var/lib/copr-rpmbuild/workspace/workdir-8a19e6rn/DankMaterialShell --depth 500 --no-single-branch --recursive cmd: ['git', 'clone', 'https://github.com/AvengeMedia/DankMaterialShell.git', '/var/lib/copr-rpmbuild/workspace/workdir-8a19e6rn/DankMaterialShell', '--depth', '500', '--no-single-branch', '--recursive'] cwd: . rc: 0 stdout: Submodule path 'dank-qml-common': checked out '162825e8388b12e41ae9715bc62661a7e55dd294' stderr: Cloning into '/var/lib/copr-rpmbuild/workspace/workdir-8a19e6rn/DankMaterialShell'... Submodule 'dank-qml-common' (https://github.com/AvengeMedia/dank-qml-common.git) registered for path 'dank-qml-common' Cloning into '/var/lib/copr-rpmbuild/workspace/workdir-8a19e6rn/DankMaterialShell/dank-qml-common'... Running: git checkout 29341882968f34d7531e6e1411a6511d9719a527 -- cmd: ['git', 'checkout', '29341882968f34d7531e6e1411a6511d9719a527', '--'] cwd: /var/lib/copr-rpmbuild/workspace/workdir-8a19e6rn/DankMaterialShell rc: 0 stdout: stderr: Note: switching to '29341882968f34d7531e6e1411a6511d9719a527'. You are in 'detached HEAD' state. You can look around, make experimental changes and commit them, and you can discard any commits you make in this state without impacting any branches by switching back to a branch. If you want to create a new branch to retain commits you create, you may do so (now or later) by using -c with the switch command. Example: git switch -c Or undo this operation with: git switch - Turn off this advice by setting config variable advice.detachedHead to false HEAD is now at 29341882 fix(suncalc): parenthesise the sunrise-equation denominator (up to 24 min error at high latitude) (#3192) Generated rpkg config: [rpkg] preprocess_spec = True [git] anon_clone_url = https://github.com/%(repo_path)s [lookaside] download_url = https://${git_props:remote_netloc}/repo/pkgs/%(repo_path)s/%(filename)s/%(hashtype)s/%(hash)s/%(filename)s Writing config into /var/lib/copr-rpmbuild/workspace/workdir-8a19e6rn/.config/rpkg.conf Running: rpkg srpm --outdir /var/lib/copr-rpmbuild/results --spec /var/lib/copr-rpmbuild/workspace/workdir-8a19e6rn/DankMaterialShell/distro/fedora/dms-git.spec cmd: ['rpkg', 'srpm', '--outdir', '/var/lib/copr-rpmbuild/results', '--spec', '/var/lib/copr-rpmbuild/workspace/workdir-8a19e6rn/DankMaterialShell/distro/fedora/dms-git.spec'] cwd: /var/lib/copr-rpmbuild/workspace/workdir-8a19e6rn/DankMaterialShell rc: 0 stdout: Wrote: /var/lib/copr-rpmbuild/results/dms-git.spec Wrote: /var/lib/copr-rpmbuild/results/dms-0.0.git.4512.29341882-1.src.rpm RPM build warnings: stderr: git_repo_pack: archiving /var/lib/copr-rpmbuild/workspace/workdir-8a19e6rn/DankMaterialShell: commit 29341882968f34d7531e6e1411a6511d9719a527 (HEAD) Author: Marco Macrì <62335226+Mark2Mac@users.noreply.github.com> Date: Thu Aug 27 15:13:58 2026 +0200 fix(suncalc): parenthesise the sunrise-equation denominator (up to 24 min error at high latitude) (#3192) * fix(suncalc): parenthesise the sunrise-equation denominator `sunHourAngle` computed cos(z) / cos(lat) * cos(dec) - tan(lat) * tan(dec) but the sunrise equation is cos(H) = cos(z) / (cos(lat) * cos(dec)) - tan(lat) * tan(dec) In Go `a / b * c` is `(a / b) * c`, so `cos(dec)` multiplied where it should divide. The new test asserts a property rather than a formula: feeding the returned hour angle back through the definition of the zenith angle, cos(z) = sin(lat)*sin(dec) + cos(lat)*cos(dec)*cos(H) has to reproduce the zenith angle that was requested. It fails on the old expression and passes on the corrected one, over a grid of latitudes from the equator to the polar circle, declinations across a full year, and both zenith targets the callers use (elevTwilight -6, elevDaylight 3). Worst-case error before the fix, in clock time: Singapore lat 1.35 285 s Mexico City lat 19.43 312 s Cairo lat 30.04 354 s New York lat 40.71 439 s Trieste lat 45.69 512 s London lat 51.51 671 s Oslo lat 59.91 654 s Tromso lat 69.65 1443 s The error grows with latitude and with |declination|, and is largest at the civil twilight zenith — which is where the gamma ramp starts and ends. It also moves the boundary at which Acos leaves its domain, i.e. where the code decides midnight sun / polar night. Swept over 505062 (lat, dec, zenith) points, the classification differs at 961 of them (0.190%), all beyond 88 degrees of latitude. The existing suncalc tests keep passing: they assert sunrise and sunset to the hour, which is two orders of magnitude coarser than this error. * fix(suncalc): classify each solar threshold independently --------- Co-authored-by: Mark2Mac Co-authored-by: bbedward git_repo_pack: Wrote: /var/lib/copr-rpmbuild/results/DankMaterialShell-29341882.tar.gz git_pack: archiving /var/lib/copr-rpmbuild/workspace/workdir-8a19e6rn/DankMaterialShell/dank-qml-common: commit 162825e8388b12e41ae9715bc62661a7e55dd294 (HEAD, origin/master, origin/HEAD, master) Author: purian23 Date: Mon Aug 24 22:34:41 2026 -0400 feat(motion): spring-based physics for shell git_pack: Wrote: /var/lib/copr-rpmbuild/results/dank-qml-common.tar.gz warning: Downloading https://go.dev/dl/go1.26.5.linux-amd64.tar.gz to /var/lib/copr-rpmbuild/results/go1.26.5.linux-amd64.tar.gz warning: Downloading https://go.dev/dl/go1.26.5.linux-arm64.tar.gz to /var/lib/copr-rpmbuild/results/go1.26.5.linux-arm64.tar.gz warning: %source_date_epoch_from_changelog is set, but %changelog has no entries to take a date from Downloading https://go.dev/dl/go1.26.5.linux-amd64.tar.gz to /var/lib/copr-rpmbuild/results/go1.26.5.linux-amd64.tar.gz Downloading https://go.dev/dl/go1.26.5.linux-arm64.tar.gz to /var/lib/copr-rpmbuild/results/go1.26.5.linux-arm64.tar.gz %source_date_epoch_from_changelog is set, but %changelog has no entries to take a date from Output: ['dms-0.0.git.4512.29341882-1.src.rpm', 'dms-git.spec', 'dank-qml-common.tar.gz', 'DankMaterialShell-29341882.tar.gz', 'go1.26.5.linux-amd64.tar.gz', 'go1.26.5.linux-arm64.tar.gz'] Running SRPMResults tool Using distributions_in_build for this build. Extracting arch-specific tags for centos-stream-10 Extracting arch-specific tags for epel-10 Extracting arch-specific tags for fedora-43 Extracting arch-specific tags for fedora-44 Extracting arch-specific tags for fedora-45 Extracting arch-specific tags for fedora-rawhide Package info: { "architecture_specific_tags": { "centos-stream-10": {}, "epel-10": {}, "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {} }, "name": "dms", "epoch": 2, "version": "0.0.git.4512.29341882", "release": "1" } SRPMResults finished