Package Details: flashrom-git 1.5.0.17.ged84669d-1

Git Clone URL: https://aur.archlinux.org/flashrom-git.git (read-only, click to copy)
Package Base: flashrom-git
Description: A utility to detect, read, erase, or write BIOS chips (DIP, PLCC, SPI)
Upstream URL: https://github.com/flashrom/flashrom
Licenses: GPL-2.0-only
Conflicts: flashrom
Provides: flashrom
Submitter: Manouchehri
Maintainer: bitfehler
Last Packager: bitfehler
Votes: 24
Popularity: 0.000017
First Submitted: 2017-08-24 00:04 (UTC)
Last Updated: 2025-02-10 13:34 (UTC)

Dependencies (11)

Required by (2)

Sources (1)

Latest Comments

« First ‹ Previous 1 2 3 Next › Last »

bitfehler commented on 2023-03-13 11:04 (UTC)

Added python-sphinx as build dep, thanks for the heads up

anatolik commented on 2023-03-10 01:59 (UTC)

Please add python-sphinx as a build dependency

Forty-Bot commented on 2023-03-08 22:55 (UTC)

This now depends on python-sphinx at build time.

bitfehler commented on 2022-05-16 17:21 (UTC)

Thanks for letting me know, fixed in latest version!

kasugano commented on 2022-05-15 20:40 (UTC)

New dependency needed: "cmocka"

bitfehler commented on 2022-04-04 19:33 (UTC)

Thanks, @belzebub40k! Fixed accordingly.

belzebub40k commented on 2022-04-04 16:12 (UTC)

When trying to build the package it prints the following error message.

$ makepkg -si
==> Making package: flashrom-git v1.2.r564.gdda19339-1 (Mo 04 Apr 2022 18:02:49 CEST)
==> Checking runtime dependencies...
==> Checking buildtime dependencies...
==> Retrieving sources...
  -> Cloning flashrom git repo...
Cloning into bare repository '/space1/Downloads/flashrom-git/flashrom'...
fatal: remote error:
  The unauthenticated git protocol on port 9418 is no longer supported.
Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information.
==> ERROR: Failure while downloading flashrom git repo
    Aborting...

This can easily be fixed by changing the source url from git:// to git+https://

bitfehler commented on 2021-12-14 13:51 (UTC)

The PKGBUILD still works, but does not build/install the shared library which is needed to use fwupd flashrom plugin. The regular Arch package is using meson now, which will just do the right thing (I suspect the regular Makefile might be unmaintained). I used this for build/package:

build() {
        cd "${srcdir}/${_gitname}"
        arch-meson ../build
        ninja -v -C ../build
}

package() {
        cd "${srcdir}"
        DESTDIR="${pkgdir}" ninja -C build install
}

Of course meson should then be added to build_deps also.

encounter commented on 2018-09-06 19:50 (UTC)

Patch removed, since it was applied upstream.

ilikenwf commented on 2018-09-06 16:15 (UTC)

Patch I suggested before @encounter no longer applies cleanly and isn't required. Thanks!