Package Details: reth v1.9.2-2

Git Clone URL: https://aur.archlinux.org/reth.git (read-only, click to copy)
Package Base: reth
Description: A fast implementation of the Ethereum protocol in Rust
Upstream URL: https://github.com/paradigmxyz/reth
Keywords: blockchain ethereum
Licenses: MIT, Apache
Provides: reth
Submitter: onbjerg
Maintainer: onbjerg (Kewl, miki)
Last Packager: onbjerg
Votes: 3
Popularity: 0.77
First Submitted: 2023-07-06 10:34 (UTC)
Last Updated: 2025-11-12 13:57 (UTC)

Dependencies (3)

Required by (0)

Sources (1)

Latest Comments

1 2 Next › Last »

Kewl commented on 2025-11-06 11:12 (UTC)

Thanks

miki commented on 2025-11-06 07:30 (UTC)

Thank you very much.

onbjerg commented on 2025-11-06 03:06 (UTC)

I've updated to 1.9.0. I also added you as a maintainer.

miki commented on 2025-11-05 15:04 (UTC)

This is now outdated by 3 versions. I submitted an orphaning request.

mansuetus commented on 2025-11-03 09:47 (UTC) (edited on 2025-11-03 10:30 (UTC) by mansuetus)

Since git package breaks to have v1.8.3 (and I'm to dumb to fix it), I built 1.8.3 with those changes

File .SRCINFO

-       pkgver = v1.8.2
+       pkgver = v1.8.3
(...)
-       source = git+https://github.com/paradigmxyz/reth.git#tag=v1.8.2
-       sha512sums = SKIP
+       source = https://github.com/paradigmxyz/reth/archive/refs/tags/v1.8.3.tar.gz
+       b2sums = 180269610b7859774992c8d2d39744a4432838bfc7e55e11d0b90fb30a43c729afb2676acd4c75568ff865de59125ef6de0bef2299489b9a1452012fef0d870e

File PKGBUILD

-pkgver=v1.8.2
-_tag=v1.8.2
+pkgver=v1.8.3
+_tag=v1.8.3
(...)
-source=("git+https://github.com/paradigmxyz/reth.git#tag=${_tag}")
-sha512sums=('SKIP')
+source=("https://github.com/paradigmxyz/reth/archive/refs/tags/${_tag}.tar.gz")
+b2sums=('180269610b7859774992c8d2d39744a4432838bfc7e55e11d0b90fb30a43c729afb2676acd4c75568ff865de59125ef6de0bef2299489b9a1452012fef0d870e')

EDIT : You ALSO need to change :

-       cd ${pkgname}
+       cd ${pkgname}-1.8.3

Kewl commented on 2025-11-02 10:45 (UTC)

There are some important fixes in the new release, please update

Kewl commented on 2025-10-29 22:02 (UTC)

@onbjerg would you accept co-maintenance?

Kewl commented on 2025-06-27 19:26 (UTC)

Awesome, thanks @onbjerg it builds fine now.

onbjerg commented on 2025-06-27 12:08 (UTC)

I made the suggested update and updated to 1.5.0

Kewl commented on 2025-06-11 18:49 (UTC) (edited on 2025-06-15 09:54 (UTC) by Kewl)

If you agree on the below you could implement something like this in build() (not package() indeed)

build() {
    cd ${pkgname}
    export RUSTUP_TOOLCHAIN=stable
    export CARGO_TARGET_DIR=target
    export CFLAGS="${CFLAGS//-flto=auto/}"
    echo $CFLAGS

    cargo build --bin reth --frozen --profile maxperf --features jemalloc,asm-keccak
}