mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-12-19 08:29:37 +00:00
Signed-off-by: David Roman <droman@ifae.es> Part-of: https://github.com/gentoo/gentoo/pull/43751 Closes: https://github.com/gentoo/gentoo/pull/43751 Signed-off-by: Sam James <sam@gentoo.org>
96 lines
3 KiB
Bash
96 lines
3 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit go-module shell-completion systemd
|
|
|
|
# Upstreams has a directory for each migration, for example fs-repo-15-to-16,
|
|
# each directory is a program by itself. When an upstream tag is created,
|
|
# they use they the name of the last migration program + version, for example
|
|
# fs-repo-15-to-16/v1.0.1. Accordingly, we have a variable for the name and
|
|
# another for the version. Even though the tag uses the name of the last migration,
|
|
# the repository contains source code for all migrations, not only the tagged one.
|
|
FS_MIG_V="1.0.1"
|
|
FS_MIG_N="fs-repo-15-to-16"
|
|
MY_FS_MIG="${FS_MIG_N}-v${FS_MIG_V}"
|
|
FS_MIG_DIR="fs-repo-migrations-${MY_FS_MIG}"
|
|
|
|
DESCRIPTION="Main implementation of IPFS"
|
|
HOMEPAGE="https://ipfs.tech https://github.com/ipfs/kubo/"
|
|
SRC_URI="https://github.com/ipfs/${PN}/releases/download/v${PV}/kubo-source.tar.gz -> ${P}.tar.gz"
|
|
SRC_URI+=" https://github.com/ipfs/fs-repo-migrations/archive/refs/tags/${FS_MIG_N}/v${FS_MIG_V}.tar.gz -> ${P}-${MY_FS_MIG}.tar.gz"
|
|
SRC_URI+=" https://gentoo.kropotkin.rocks/go-pkgs/${MY_FS_MIG}-vendor.tar.xz -> ${P}-${MY_FS_MIG}-vendor.tar.xz"
|
|
|
|
S="${WORKDIR}"
|
|
|
|
LICENSE="Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND="
|
|
acct-group/ipfs
|
|
acct-user/ipfs
|
|
sys-fs/fuse:0
|
|
"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
DOCS=( CHANGELOG.md CONTRIBUTING.md README.md docs/ )
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
sed -i '/fs-repo-1[0-9]-to-*/d' "${FS_MIG_DIR}/ignored-migrations" || die
|
|
}
|
|
|
|
src_compile() {
|
|
local mygoargs
|
|
mygoargs=(
|
|
-tags release
|
|
)
|
|
|
|
ego build "${mygoargs[@]}" -o ipfs ./cmd/ipfs
|
|
ego build "${mygoargs[@]}" -o ipfswatch ./cmd/ipfswatch
|
|
|
|
IPFS_PATH="" ./ipfs commands completion bash > ipfs-completion.bash || die
|
|
IPFS_PATH="" ./ipfs commands completion fish > ipfs-completion.fish || die
|
|
IPFS_PATH="" ./ipfs commands completion zsh > ipfs-completion.zsh || die
|
|
|
|
cd "${FS_MIG_DIR}" || die
|
|
emake
|
|
}
|
|
|
|
src_test() {
|
|
ego test ./cmd/ipfs/... ./cmd/ipfswatch/...
|
|
}
|
|
|
|
src_install() {
|
|
dobin ipfs
|
|
dobin ipfswatch
|
|
newbashcomp ipfs-completion.bash ipfs
|
|
newfishcomp ipfs-completion.fish ipfs.fish
|
|
newzshcomp ipfs-completion.zsh _ipfs
|
|
einstalldocs
|
|
|
|
systemd_dounit "${FILESDIR}/ipfs.service"
|
|
systemd_newunit "${FILESDIR}/ipfs-at.service" "ipfs@.service"
|
|
|
|
newinitd "${FILESDIR}/ipfs.init" ipfs
|
|
newconfd "${FILESDIR}/ipfs.confd" ipfs
|
|
|
|
keepdir /var/log/ipfs
|
|
fowners -R ipfs:ipfs /var/log/ipfs
|
|
|
|
find "${FS_MIG_DIR}" -executable -type f -name "fs-repo-*" -exec dobin {} \; || die
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog 'To be able to use the ipfs service you will need to create the ipfs repository'
|
|
elog '(eg: su -s /bin/sh -c "ipfs init -e" ipfs)'
|
|
elog 'or change IPFS_PATH of /etc/conf.d/ipfs with another with proper permissions.'
|
|
|
|
# See https://bugs.gentoo.org/838238
|
|
ewarn 'In case kubo CPU usage is too high run the next workaround'
|
|
ewarn 'su -s /bin/sh -c "ipfs config profile apply lowpower" ipfs'
|
|
ewarn 'Be aware that this will make your node less visible to other peers'
|
|
}
|