commit: 0cef5e7caf7376d5f52f94831d875ab108794247 Author: Filip Kobierski <fkobi <AT> pm <DOT> me> AuthorDate: Thu Jun 5 12:49:12 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Jun 8 04:52:52 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cef5e7c
net-p2p/arti: drop 1.4.0 Signed-off-by: Filip Kobierski <fkobi <AT> pm.me> Part-of: https://github.com/gentoo/gentoo/pull/42460 Signed-off-by: Sam James <sam <AT> gentoo.org> net-p2p/arti/Manifest | 2 -- net-p2p/arti/arti-1.4.0.ebuild | 65 ------------------------------------------ 2 files changed, 67 deletions(-) diff --git a/net-p2p/arti/Manifest b/net-p2p/arti/Manifest index 2d9d793c71da..8ab51ec3af6f 100644 --- a/net-p2p/arti/Manifest +++ b/net-p2p/arti/Manifest @@ -1,4 +1,2 @@ -DIST arti-1.4.0-crates.tar.xz 46289900 BLAKE2B ffc4e97d50e3911068e44ce2a4cd6ab3781fa3538bd9f9001b3a2f16554e4c27a8f9c04cf9c61704ef2481313a97c6c525a4c27e695a4fba6bc4b8f7ba0abc13 SHA512 6cc288e0db9ff535c1b8ae77e7f1986c795ff68bd667b4984f134238f474b46473d8fbb8dfaaba6fdef5b05ea523a9dbe638655ff06ee856bafad5a10afc8a4d -DIST arti-1.4.0.tar.bz2 4262649 BLAKE2B 4c13615b25efabebe0f1df865b21a0f6a90b12414abd7d844a1291041e5fcdac1a660cde7926d95fc1742baba7b22c67fa1ac27040d0930e2bcdbe5be21db7af SHA512 957df539a1debf418806c6585c762c30413d31ef67c7c462a537083a20a230b803555d2ea5d680c9e263181cbf60839a203ed2d548baa456af1cc1c6a879c5d1 DIST arti-1.4.2-crates.tar.xz 48304592 BLAKE2B 79b996e60cd425d217aeab42c8e6fd23983fb475a6daed3db029af0c0c8da9681951d5504bd478b67a8905bea7284b3a66e34aa05415f2671353473bc82be473 SHA512 fc5bacd7d4a126bbe9c8132a33d5f590401878dce10db0a50d5dae1e46a3154913019b05a39ba961ae1175e431d0b85654d32f5ceb593e4540bbd12f47f0c785 DIST arti-1.4.2.tar.bz2 4309898 BLAKE2B e18a4850c5de529a61ea0615f84b9611c8fba304e4f9b8798a07659c89bb4d1425b443cc72e92ea5820a3af15ca32f5bc1e1df6d05a8e038d17c73fc7cd5580b SHA512 b402894c9402f83e68e1805ff1b99e684a5f946abd502313aac74dcbbc0812693dce74b2641507176f963cdafdcbf3ad919b1235e0f884b5f33106cce665579b diff --git a/net-p2p/arti/arti-1.4.0.ebuild b/net-p2p/arti/arti-1.4.0.ebuild deleted file mode 100644 index 7078ad6478fd..000000000000 --- a/net-p2p/arti/arti-1.4.0.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 2022-2025 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -CRATES="" -inherit cargo - -DESCRIPTION="An implementation of Tor, in Rust." -HOMEPAGE="https://gitlab.torproject.org/tpo/core/arti/" - -if [[ "${PV}" == *9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://gitlab.torproject.org/tpo/core/arti" -else - SRC_URI="https://gitlab.torproject.org/tpo/core/${PN}/-/archive/${PN}-v${PV}/${PN}-${PN}-v${PV}.tar.bz2 -> ${P}.tar.bz2" - SRC_URI+=" https://github.com/gentoo-crate-dist/arti/releases/download/${PN}-v${PV}/${P}-crates.tar.xz" - S="${WORKDIR}/${PN}-${PN}-v${PV}" - KEYWORDS="~amd64" -fi - -LICENSE="MIT Apache-2.0" -# Dependent crate licenses -LICENSE+=" - Apache-2.0 BSD Boost-1.0 CC0-1.0 ISC MIT MPL-2.0 Unicode-3.0 - Unlicense ZLIB -" -SLOT="0" - -DEPEND="app-arch/xz-utils - app-arch/zstd:= - dev-db/sqlite:3 - dev-libs/openssl:=" -RDEPEND="${DEPEND}" - -QA_FLAGS_IGNORED="usr/bin/arti" - -src_unpack() { - if [[ "${PV}" == *9999 ]]; then - git-r3_src_unpack - cargo_live_src_unpack - else - cargo_src_unpack - fi -} - -src_compile() { - export ZSTD_SYS_USE_PKG_CONFIG=1 - for crate in crates/*; do - pushd "${crate}" || die - cargo_src_compile - popd >/dev/null || die - done -} - -src_install() { - pushd crates/arti >/dev/null || die - - cargo_src_install - newdoc src/arti-example-config.toml arti.toml - - popd >/dev/null || die - - dodoc -r doc/* -}
