Package Details: wimboot-bin 2.9.0-1

Git Clone URL: https://aur.archlinux.org/wimboot-bin.git (read-only, click to copy)
Package Base: wimboot-bin
Description: iPXE kernel to boot wim images from network for both UEFI and BIOS system
Upstream URL: https://github.com/ipxe/wimboot
Licenses: GPL-2.0-or-later
Conflicts: wimboot, wimboot-git
Provides: wimboot
Submitter: edward-p
Maintainer: edward-p
Last Packager: edward-p
Votes: 0
Popularity: 0.000000
First Submitted: 2023-01-06 08:44 (UTC)
Last Updated: 2026-03-28 07:45 (UTC)

Dependencies (1)

  • ipxe-gitAUR (optional) – iPXE network boot program

Required by (0)

Sources (2)

Latest Comments

edward-p commented on 2025-07-09 16:03 (UTC)

@dreieck

Applied. Thanks for the contribution.

dreieck commented on 2025-07-09 15:00 (UTC)

Ahoj,

your package downloads the source files without version information.

This leads to issues if download is done to a central, more permanent storage, e.g. when $SRCDEST is set in the /etc/makepkg.conf:

==> Validating source files with sha256sums...
    wimboot ... FAILED
    wimboot.i386 ... FAILED

(Files of older version still present.)

Please make the downloaded filenames version specific.

diff to the PKGBUILD which achieves this (and adds versioned provides entry, too):

--- PKGBUILD.orig   2025-07-09 16:57:39.200336295 +0200
+++ PKGBUILD    2025-07-09 16:58:38.287005418 +0200
@@ -10,3 +10,3 @@
 makedepends=()
-provides=(wimboot)
+provides=("wimboot=${pkgver}")
 conflicts=(wimboot wimboot-git)
@@ -15,4 +15,4 @@
 source=(
-  "wimboot::https://github.com/ipxe/wimboot/releases/download/v${pkgver}/wimboot"
-  "wimboot.i386::https://github.com/ipxe/wimboot/releases/download/v${pkgver}/wimboot.i386"
+  "wimboot-${pkgver}::https://github.com/ipxe/wimboot/releases/download/v${pkgver}/wimboot"
+  "wimboot.i386-${pkgver}::https://github.com/ipxe/wimboot/releases/download/v${pkgver}/wimboot.i386"
   )
@@ -23,4 +23,4 @@
    cd "$srcdir"
-   for a in wimboot wimboot.i386; do
-       install -Dm755 $a $pkgdir/usr/share/wimboot/$a
+   for _a in wimboot wimboot.i386; do
+       install -Dm755 "$_a-${pkgver}" "$pkgdir/usr/share/wimboot/$_a"
    done

Regards and thanks for maintaining!

dreieck commented on 2025-07-02 18:57 (UTC)

Please add wimboot to provides and conflicts arrays.

Regards and thanks for the package!