Gentoo Archives: gentoo-commits

From: William Hubbs <williamh@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-p2p/kubo/
Date: Sat, 06 Aug 2022 21:59:12
Message-Id: 1659823143.f6285602311da331b5e4431a306cd28701ff82d8.williamh@gentoo
1 commit: f6285602311da331b5e4431a306cd28701ff82d8
2 Author: William Hubbs <williamh <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 6 21:58:38 2022 +0000
4 Commit: William Hubbs <williamh <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 6 21:59:03 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6285602
7
8 net-p2p/kubo: add 0.14.0
9
10 Closes: https://bugs.gentoo.org/863485
11 Signed-off-by: William Hubbs <williamh <AT> gentoo.org>
12
13 net-p2p/kubo/Manifest | 2 ++
14 net-p2p/kubo/kubo-0.14.0.ebuild | 69 +++++++++++++++++++++++++++++++++++++++++
15 2 files changed, 71 insertions(+)
16
17 diff --git a/net-p2p/kubo/Manifest b/net-p2p/kubo/Manifest
18 index 09ae8432b7a0..967a7462e020 100644
19 --- a/net-p2p/kubo/Manifest
20 +++ b/net-p2p/kubo/Manifest
21 @@ -1 +1,3 @@
22 DIST kubo-0.13.1.tar.gz 13474891 BLAKE2B 2e6e056e27a8783c9d04ea5d8c41d86e45250f5ba95c57737aaf52d36d453be31baab21767008596710d7eb84f471460c32de70faf1764740ea551a5aa4bd38e SHA512 3257d49df61bb31d4054934506ea543df2d9ed1f57b9b6aeef001bb77fe9fdce646fec96ded72b7f9f99e3bc687da77997b1295ebb5a40e20e4df0413e15bfd7
23 +DIST kubo-0.14.0-deps.tar.xz 169389828 BLAKE2B 9b664286885ad16eba2697bfbd87286fc35edb034beb0b80bcfa307af507013964f83783b0036d35d1e132f0a2a549e96f50f527cb3812cfe1417b36f7c416ed SHA512 cabb3c48bfc5d38996c5635b62b4a8dc49ca497cbe011e51c33086f18882fa74bc613644a4289639a7278dad634c66351c650c8ae041c9fca7f9f2c914644dd2
24 +DIST kubo-0.14.0.tar.gz 2224560 BLAKE2B d03f2ae98833f07a55cb8d929e3433ee35ad53345c31c80963ff4a183cbfa2ebf803607e0123b08304022673c1aa05013698d2cd3b97b4ecae84f4c4c5b69ab4 SHA512 ecba5d3669d50c382bff1b4d0197f5d8f67f36bb6e995d1db5791413bcf813ea8bf22fd3ea00368c0cf33cfc45621ea2f258acb52bda2b42ee2e1a7392195c10
25
26 diff --git a/net-p2p/kubo/kubo-0.14.0.ebuild b/net-p2p/kubo/kubo-0.14.0.ebuild
27 new file mode 100644
28 index 000000000000..d0a469ae9fd2
29 --- /dev/null
30 +++ b/net-p2p/kubo/kubo-0.14.0.ebuild
31 @@ -0,0 +1,69 @@
32 +# Copyright 1999-2022 Gentoo Authors
33 +# Distributed under the terms of the GNU General Public License v2
34 +
35 +EAPI=8
36 +
37 +inherit bash-completion-r1 go-module systemd
38 +
39 +DESCRIPTION="Main implementation of IPFS"
40 +HOMEPAGE="https://ipfs.io/"
41 +SRC_URI="https://github.com/ipfs/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
42 +SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz"
43 +
44 +LICENSE="Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~x86"
47 +
48 +COMMON_DEPEND="
49 + acct-group/ipfs
50 + acct-user/ipfs
51 + sys-fs/fuse:0
52 +"
53 +DEPEND="${COMMON_DEPEND}"
54 +RDEPEND="${COMMON_DEPEND}"
55 +BDEPEND="<dev-lang/go-1.19"
56 +
57 +DOCS=( CHANGELOG.md CONTRIBUTING.md README.md docs/ )
58 +
59 +src_compile() {
60 + local mygoargs
61 + mygoargs=(
62 + -tags release
63 + )
64 +
65 + ego build "${mygoargs[@]}" -o ipfs ./cmd/ipfs
66 + ego build "${mygoargs[@]}" -o ipfswatch ./cmd/ipfswatch
67 +
68 + IPFS_PATH="" ./ipfs commands completion bash > ipfs-completion.bash || die
69 +}
70 +
71 +src_test() {
72 + ego test ./cmd/ipfs/... ./cmd/ipfswatch/...
73 +}
74 +
75 +src_install() {
76 + dobin ipfs
77 + dobin ipfswatch
78 + newbashcomp ipfs-completion.bash ipfs
79 + einstalldocs
80 +
81 + systemd_dounit "${FILESDIR}/ipfs.service"
82 + systemd_newunit "${FILESDIR}/ipfs-at.service" "ipfs@.service"
83 +
84 + newinitd "${FILESDIR}/ipfs.init" ipfs
85 + newconfd "${FILESDIR}/ipfs.confd" ipfs
86 +
87 + keepdir /var/log/ipfs
88 + fowners -R ipfs:ipfs /var/log/ipfs
89 +}
90 +
91 +pkg_postinst() {
92 + elog 'To be able to use the ipfs service you will need to create the ipfs repository'
93 + elog '(eg: su -s /bin/sh -c "ipfs init -e" ipfs)'
94 + elog 'or change IPFS_PATH of /etc/conf.d/ipfs with another with proper permissions.'
95 +
96 + # See https://bugs.gentoo.org/838238
97 + ewarn 'In case kubo CPU usage is too high run the next workaround'
98 + ewarn 'su -s /bin/sh -c "ipfs config profile apply lowpower" ipfs'
99 + ewarn 'Be aware that this will make your node less visible to other peers'
100 +}