From: "Sam James" <sam@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/go-ethereum/
Date: Sun, 13 Jul 2025 08:29:47 +0000 (UTC) [thread overview]
Message-ID: <1752395233.803524a3d58b77e674693fe7e3ecf1a5e1baf928.sam@gentoo> (raw)
commit: 803524a3d58b77e674693fe7e3ecf1a5e1baf928
Author: Sam Wilson <sam <AT> binarycake <DOT> ca>
AuthorDate: Mon Jun 30 14:23:18 2025 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jul 13 08:27:13 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=803524a3
net-p2p/go-ethereum: add 1.16.1
This release:
- Introduces a new archive node mode with better hard drive
requirements;
- Re-implements state snapshot for compatibility with path-based state
storage;
- Increases the block gas limit to 45M;
- Supports era1 history files;
- Improves shutdown speed;
- Fixes beacon-chain lightclient (`blsync`) in Pectra and beyond;
- Adds some preparations for the upcoming Fusaka fork; and
- Improves various RPC and networking items.
For a longer summary, see:
https://github.com/ethereum/go-ethereum/releases/tag/v1.16.0
https://github.com/ethereum/go-ethereum/releases/tag/v1.16.1
Signed-off-by: Sam Wilson <sam <AT> binarycake.ca>
Part-of: https://github.com/gentoo/gentoo/pull/42811
Closes: https://github.com/gentoo/gentoo/pull/42811
Signed-off-by: Sam James <sam <AT> gentoo.org>
net-p2p/go-ethereum/Manifest | 1 +
net-p2p/go-ethereum/go-ethereum-1.16.1.ebuild | 51 +++++++++++++++++++++++++++
2 files changed, 52 insertions(+)
diff --git a/net-p2p/go-ethereum/Manifest b/net-p2p/go-ethereum/Manifest
index 399f3776ef6e..1a5f968e50b6 100644
--- a/net-p2p/go-ethereum/Manifest
+++ b/net-p2p/go-ethereum/Manifest
@@ -1,2 +1,3 @@
DIST go-ethereum-1.15.10.tar.xz 197362452 BLAKE2B 581542ccec9f2492ee0487500e078f079c97f03dd5473cea3acec2bd73079db141787828eb2dd9402fd47cb7749756c0e5b735f16e5d5c29ce0ca27df0c1571e SHA512 86030ac8a715ad8b9ef5d5c116992a6dcac2b99687154cd23bd0ed7bf307034de1e6758d7bcb6bf54342ecc9d720a1e182660b057f3a75d67ef392d1186a6fd1
DIST go-ethereum-1.15.11.tar.xz 197747232 BLAKE2B 7aae6724d18d5b1f04a9f4508123a2d871aa178f5be2bdf5a80c6b32c7e0d95c67f7ebb3b162856cb209cdda69d6b60c1ce736ff73c9ed26fd36f6ff15f89a33 SHA512 47ca2cd2ab3438bc81997f2b6e97bfca0b98a20073ebcdb759c941b998f4d5eb9612f332b08ef016ca5543dcb6c5b29feb92aaec111b608e98a947c6068eeff1
+DIST go-ethereum-1.16.1.tar.xz 201606352 BLAKE2B d72c6b22d4a1a55617bd1fa8f85f8623f086eec3efe87d40a35e307c066a376f3de9a2ae20d06c9fc3caa01310dbfb5af53413a9c825bd8add18f49300963317 SHA512 20b1f5afc0df9100104debfe23f352908f1116650433efbe74a6452c130a9a3e6c12f64de3f32de8eac62f007bce96db50fb67309db66f6c92242b87c5c387b1
diff --git a/net-p2p/go-ethereum/go-ethereum-1.16.1.ebuild b/net-p2p/go-ethereum/go-ethereum-1.16.1.ebuild
new file mode 100644
index 000000000000..183f31e8777c
--- /dev/null
+++ b/net-p2p/go-ethereum/go-ethereum-1.16.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2025 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-env go-module
+
+LONG_VERSION="${PV}+build505+oracular"
+DESCRIPTION="Official golang implementation of the Ethereum protocol"
+HOMEPAGE="https://github.com/ethereum/go-ethereum"
+SRC_URI="https://ppa.launchpadcontent.net/ethereum/ethereum/ubuntu/pool/main/e/ethereum/ethereum_${LONG_VERSION}.tar.xz -> ${P}.tar.xz"
+# Above PPA is listed as an official source here:
+# https://geth.ethereum.org/docs/getting-started/installing-geth#ubuntu-via-ppas
+S="${WORKDIR}/ethereum-${LONG_VERSION}"
+
+LICENSE="GPL-3+ LGPL-3+ MIT || ( BSD GPL-2 ) BSD-2 LGPL-2.1+ Apache-2.0 ISC MIT MPL-2.0 Unlicense"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="devtools"
+
+# Does all kinds of wonky stuff like connecting to Docker daemon, network activity, ...
+RESTRICT+=" test"
+
+src_unpack() {
+ default
+ mv "${S}/.mod" "${WORKDIR}/go-mod" || die
+}
+
+src_compile() {
+ go-env_set_compile_environment
+ emake $(usex devtools all geth)
+}
+
+src_install() {
+ einstalldocs
+
+ dobin build/bin/geth
+
+ # TODO: replace with wildcard
+ if use devtools; then
+ dobin build/bin/abidump
+ dobin build/bin/abigen
+ dobin build/bin/blsync
+ dobin build/bin/clef
+ dobin build/bin/devp2p
+ dobin build/bin/era
+ dobin build/bin/ethkey
+ dobin build/bin/evm
+ dobin build/bin/rlpdump
+ fi
+}
next reply other threads:[~2025-07-13 8:29 UTC|newest]
Thread overview: 53+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-07-13 8:29 Sam James [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-10-03 0:41 [gentoo-commits] repo/gentoo:master commit in: net-p2p/go-ethereum/ Sam James
2025-05-23 4:59 Sam James
2025-05-01 5:33 Sam James
2025-05-01 5:33 Sam James
2025-04-29 19:45 Sam James
2025-03-23 9:59 John Helmert III
2025-02-14 5:21 Sam James
2025-02-14 5:21 Sam James
2024-12-01 11:45 Sam James
2024-10-25 11:36 Joonas Niilola
2024-08-29 12:21 Joonas Niilola
2024-07-30 16:10 Joonas Niilola
2024-07-30 16:10 Joonas Niilola
2024-07-30 16:10 Joonas Niilola
2024-07-30 16:10 Joonas Niilola
2024-07-30 16:10 Joonas Niilola
2024-06-12 2:28 Sam James
2024-02-27 23:21 Sam James
2024-02-27 23:21 Sam James
2024-02-27 23:00 Sam James
2022-06-10 6:39 Sam James
2022-05-15 2:54 Sam James
2022-05-15 2:54 Sam James
2021-12-24 4:02 Sam James
2021-12-24 4:02 Sam James
2021-09-21 7:03 Joonas Niilola
2021-05-07 14:39 Sam James
2021-05-07 14:38 Sam James
2021-04-25 20:07 Sam James
2021-04-06 21:17 Sam James
2021-03-20 8:25 Joonas Niilola
2021-03-08 10:20 Sam James
2021-03-05 23:42 Sam James
2021-03-05 17:58 Sam James
2021-03-05 17:58 Sam James
2020-06-13 19:32 William Hubbs
2020-06-13 19:32 William Hubbs
2018-09-18 9:37 Michał Górny
2018-09-18 9:37 Michał Górny
2018-03-27 18:32 Michał Górny
2018-03-27 18:32 Michał Górny
2018-03-27 18:32 Michał Górny
2017-12-24 21:21 Zac Medico
2017-12-20 19:47 Craig Andrews
2017-12-20 19:47 Craig Andrews
2017-01-03 23:07 Patrice Clement
2016-11-20 19:24 David Seifert
2016-10-15 16:36 David Seifert
2016-10-12 7:38 David Seifert
2016-10-11 7:50 David Seifert
2016-10-06 22:04 David Seifert
2016-10-06 21:56 David Seifert
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1752395233.803524a3d58b77e674693fe7e3ecf1a5e1baf928.sam@gentoo \
--to=sam@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox