public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/ipfs-cluster/
@ 2022-05-28  3:17 Tony Olagbaiye
  0 siblings, 0 replies; 8+ messages in thread
From: Tony Olagbaiye @ 2022-05-28  3:17 UTC (permalink / raw
  To: gentoo-commits

commit:     0774406b5b1c651a9822a7f6d5a63df5402193a7
Author:     Tony Olagbaiye <bqv <AT> fron <DOT> io>
AuthorDate: Sat May 28 03:15:34 2022 +0000
Commit:     Tony Olagbaiye <gentoo <AT> fron <DOT> io>
CommitDate: Sat May 28 03:15:43 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0774406b

net-p2p/ipfs-cluster: new package, add 1.0.1

Signed-off-by: Tony Olagbaiye <bqv <AT> fron.io>

 net-p2p/ipfs-cluster/Manifest                  |  2 +
 net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild | 60 ++++++++++++++++++++++++++
 net-p2p/ipfs-cluster/metadata.xml              | 12 ++++++
 3 files changed, 74 insertions(+)

diff --git a/net-p2p/ipfs-cluster/Manifest b/net-p2p/ipfs-cluster/Manifest
new file mode 100644
index 000000000..47881fdd6
--- /dev/null
+++ b/net-p2p/ipfs-cluster/Manifest
@@ -0,0 +1,2 @@
+DIST ipfs-cluster-1.0.1-vendor.tar.xz 5799076 BLAKE2B 27b31d562d20b3693b959dba0e675c76dcd2643fd7d9321cb6284ce565e530dcf097fa0e6e45e9724cd583e1ca9e44573abae73ab68a6c83a66617c17636e159 SHA512 a1b70f5a8b5adfc34ba9cc04f38aae6083458170c15d34d2b677b0a83294f37968d568263db5c9bc73bcebc837da64a1ad46aace09799334182a1f6f51898b43
+DIST ipfs-cluster-1.0.1.tar.gz 463547 BLAKE2B 34d38dbff73626151c2da668e6f4fea983c98742b992132e19c3acd5281d218e3bd70f52d72489d8c89b0554dbf1e807c261b5259ce1f05b7825791701bf87fe SHA512 40a55f8c6f84a6f6c2772eb590dc993c4f18b5d2a001e55abb50b961f376182b3f9e4fa4a48a426b9fc87e9183ae5d6b244e47e5435fadc29a5cbbb8d237ad88

diff --git a/net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild b/net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild
new file mode 100644
index 000000000..dba391621
--- /dev/null
+++ b/net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit bash-completion-r1 go-module systemd
+
+DESCRIPTION="Pinset orchestration for IPFS"
+HOMEPAGE="https://ipfscluster.io/"
+SRC_URI="https://github.com/ipfs/ipfs-cluster/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI+=" https://ipfs.infura.io/ipfs/QmUGftdXbN815P1GvurGRBa5fYFiGfTDAdBXToadzYAqw3/${P}-vendor.tar.xz"
+
+LICENSE="Apache-2.0 MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	net-p2p/go-ipfs
+"
+
+DOCS=( CHANGELOG.md CONTRIBUTING.md README.md )
+
+src_compile() {
+	default
+
+	pushd cmd/ipfs-cluster-ctl
+	ego build
+	mv ipfs-cluster-ctl $OLDPWD
+	popd
+
+	pushd cmd/ipfs-cluster-follow
+	ego build
+	mv ipfs-cluster-follow $OLDPWD
+	popd
+
+	pushd cmd/ipfs-cluster-service
+	ego build
+	mv ipfs-cluster-service $OLDPWD
+	popd
+}
+
+src_test() {
+	go test ./cmd/ipfs-cluster-ctl/... ./cmd/ipfs-cluster-follow/... ./cmd/ipfs-cluster-service/... || die
+}
+
+src_install() {
+	dobin ipfs-cluster-ctl
+	dobin ipfs-cluster-follow
+	dobin ipfs-cluster-service
+	einstalldocs
+
+	#systemd_dounit "${FILESDIR}/ipfs-cluster-service.service"
+	#systemd_newunit "${FILESDIR}/ipfs-cluster-service.service" "ipfs-cluster-service@.service"
+
+	#newinitd "${FILESDIR}/ipfs-cluster-service.init" ipfs
+	#newconfd "${FILESDIR}/ipfs-cluster-service.confd" ipfs
+
+	keepdir /var/log/ipfs-cluster
+	fowners -R ipfs:ipfs /var/log/ipfs-cluster
+}

diff --git a/net-p2p/ipfs-cluster/metadata.xml b/net-p2p/ipfs-cluster/metadata.xml
new file mode 100644
index 000000000..60be2616e
--- /dev/null
+++ b/net-p2p/ipfs-cluster/metadata.xml
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person" proxied="yes">
+		<email>davidroman96@gmail.com</email>
+		<name>David Roman</name>
+	</maintainer>
+	<maintainer type="person" proxied="yes">
+		<email>hurikhan77+bgo@gmail.com</email>
+		<name>Kai Krakow</name>
+	</maintainer>
+</pkgmetadata>


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/ipfs-cluster/
@ 2022-05-28  3:19 Tony Olagbaiye
  0 siblings, 0 replies; 8+ messages in thread
From: Tony Olagbaiye @ 2022-05-28  3:19 UTC (permalink / raw
  To: gentoo-commits

commit:     7fa4ac412aede788f48122984fd6bceb037e990a
Author:     Tony Olagbaiye <bqv <AT> fron <DOT> io>
AuthorDate: Sat May 28 03:19:12 2022 +0000
Commit:     Tony Olagbaiye <gentoo <AT> fron <DOT> io>
CommitDate: Sat May 28 03:19:12 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7fa4ac41

net-p2p/ipfs-cluster: cleanup src_compile

Signed-off-by: Tony Olagbaiye <bqv <AT> fron.io>

 net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild b/net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild
index dba391621..455b766b7 100644
--- a/net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild
+++ b/net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild
@@ -21,8 +21,6 @@ RDEPEND="
 DOCS=( CHANGELOG.md CONTRIBUTING.md README.md )
 
 src_compile() {
-	default
-
 	pushd cmd/ipfs-cluster-ctl
 	ego build
 	mv ipfs-cluster-ctl $OLDPWD


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/ipfs-cluster/
@ 2022-06-05 21:16 Alessandro Barbieri
  0 siblings, 0 replies; 8+ messages in thread
From: Alessandro Barbieri @ 2022-06-05 21:16 UTC (permalink / raw
  To: gentoo-commits

commit:     42387b14fdb47e31d655ca6f086326cbcc0f8517
Author:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
AuthorDate: Sun Jun  5 21:09:38 2022 +0000
Commit:     Alessandro Barbieri <lssndrbarbieri <AT> gmail <DOT> com>
CommitDate: Sun Jun  5 21:09:38 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=42387b14

net-p2p/ipfs-cluster: remove proxied from metadata

Signed-off-by: Alessandro Barbieri <lssndrbarbieri <AT> gmail.com>

 net-p2p/ipfs-cluster/metadata.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-p2p/ipfs-cluster/metadata.xml b/net-p2p/ipfs-cluster/metadata.xml
index 60be2616e..1529fd336 100644
--- a/net-p2p/ipfs-cluster/metadata.xml
+++ b/net-p2p/ipfs-cluster/metadata.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person" proxied="yes">
+	<maintainer type="person">
 		<email>davidroman96@gmail.com</email>
 		<name>David Roman</name>
 	</maintainer>
-	<maintainer type="person" proxied="yes">
+	<maintainer type="person">
 		<email>hurikhan77+bgo@gmail.com</email>
 		<name>Kai Krakow</name>
 	</maintainer>


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/ipfs-cluster/
  2022-07-03 12:19 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
@ 2022-07-03 12:19 ` Andrew Ammerlaan
  0 siblings, 0 replies; 8+ messages in thread
From: Andrew Ammerlaan @ 2022-07-03 12:19 UTC (permalink / raw
  To: gentoo-commits

commit:     e9d733062759b6e53d7b99df73571b9521a8348b
Author:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Sun Jul  3 12:19:21 2022 +0000
Commit:     Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Sun Jul  3 12:19:21 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e9d73306

net-p2p/ipfs-cluster: drop unused eclass

Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>

 net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild b/net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild
index 7e0c64e89..3d9b5ff25 100644
--- a/net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild
+++ b/net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit bash-completion-r1 go-module systemd
+inherit go-module systemd
 
 DESCRIPTION="Pinset orchestration for IPFS"
 HOMEPAGE="https://ipfscluster.io/"


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/ipfs-cluster/
@ 2022-08-26 13:31 Tony Olagbaiye
  0 siblings, 0 replies; 8+ messages in thread
From: Tony Olagbaiye @ 2022-08-26 13:31 UTC (permalink / raw
  To: gentoo-commits

commit:     25939d21a0e6b09631fc59ad2118c06ea9801e80
Author:     Tony Olagbaiye <bqv <AT> fron <DOT> io>
AuthorDate: Fri Aug 26 13:31:08 2022 +0000
Commit:     Tony Olagbaiye <gentoo <AT> fron <DOT> io>
CommitDate: Fri Aug 26 13:31:27 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=25939d21

net-p2p/ipfs-cluster: add 1.0.2

Signed-off-by: Tony Olagbaiye <bqv <AT> fron.io>

 net-p2p/ipfs-cluster/Manifest                  |  2 +
 net-p2p/ipfs-cluster/ipfs-cluster-1.0.2.ebuild | 63 ++++++++++++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/net-p2p/ipfs-cluster/Manifest b/net-p2p/ipfs-cluster/Manifest
index 47881fdd6..a469f8837 100644
--- a/net-p2p/ipfs-cluster/Manifest
+++ b/net-p2p/ipfs-cluster/Manifest
@@ -1,2 +1,4 @@
 DIST ipfs-cluster-1.0.1-vendor.tar.xz 5799076 BLAKE2B 27b31d562d20b3693b959dba0e675c76dcd2643fd7d9321cb6284ce565e530dcf097fa0e6e45e9724cd583e1ca9e44573abae73ab68a6c83a66617c17636e159 SHA512 a1b70f5a8b5adfc34ba9cc04f38aae6083458170c15d34d2b677b0a83294f37968d568263db5c9bc73bcebc837da64a1ad46aace09799334182a1f6f51898b43
 DIST ipfs-cluster-1.0.1.tar.gz 463547 BLAKE2B 34d38dbff73626151c2da668e6f4fea983c98742b992132e19c3acd5281d218e3bd70f52d72489d8c89b0554dbf1e807c261b5259ce1f05b7825791701bf87fe SHA512 40a55f8c6f84a6f6c2772eb590dc993c4f18b5d2a001e55abb50b961f376182b3f9e4fa4a48a426b9fc87e9183ae5d6b244e47e5435fadc29a5cbbb8d237ad88
+DIST ipfs-cluster-1.0.2-vendor.tar.xz 5599580 BLAKE2B f2b8503b8f550dfd8f0ee2c0ca0b9384e68f86fbd2b4a75934a404623e224d66217a922424142e6c040e20f701fb55aec994441ddafdaed5bb7d267f9aff52d4 SHA512 488dc8479069f0f525ab88ac8f34aa300ced9ee26d2fff728e8b73aeb37261f899b2cfd2185265142be3b0cc7ecaaf7374c9f93fc4832bd931aead1924a506b5
+DIST ipfs-cluster-1.0.2.tar.gz 471909 BLAKE2B cc44ae20df697704d1e0daf7a912773f1be4275f0ab48cfa6760e1d8ea153fbe1c859b56d4fd81fc1dae182424ec0b33511de06556efc7edf05d9adbbc78df4b SHA512 7cc6f9547f8953719d0576db20a1a1d0157b78462e9a999d9dd62accfac1886625800313ce31b6dd7e63c32b1b5324d87ac29fb02177ce25b51d818afb77b3a3

diff --git a/net-p2p/ipfs-cluster/ipfs-cluster-1.0.2.ebuild b/net-p2p/ipfs-cluster/ipfs-cluster-1.0.2.ebuild
new file mode 100644
index 000000000..9433e6436
--- /dev/null
+++ b/net-p2p/ipfs-cluster/ipfs-cluster-1.0.2.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module systemd
+
+DESCRIPTION="Pinset orchestration for IPFS"
+HOMEPAGE="https://ipfscluster.io/"
+SRC_URI="https://github.com/ipfs/ipfs-cluster/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI+=" https://ipfs.infura.io/ipfs/QmSTbDLMCFKKKXmEBFgGMZDYV9EfngKsFnws8PZoKhAk38/${P}-vendor.tar.xz"
+
+LICENSE="Apache-2.0 MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+	net-p2p/kubo
+"
+
+DOCS=( CHANGELOG.md CONTRIBUTING.md README.md )
+
+src_compile() {
+	pushd cmd/ipfs-cluster-ctl
+	ego build
+	mv ipfs-cluster-ctl $OLDPWD
+	popd
+
+	pushd cmd/ipfs-cluster-follow
+	ego build
+	mv ipfs-cluster-follow $OLDPWD
+	popd
+
+	pushd cmd/ipfs-cluster-service
+	ego build
+	mv ipfs-cluster-service $OLDPWD
+	popd
+}
+
+src_test() {
+	go test ./cmd/ipfs-cluster-ctl/... ./cmd/ipfs-cluster-follow/... ./cmd/ipfs-cluster-service/... || die
+}
+
+src_install() {
+	dobin ipfs-cluster-ctl
+	dobin ipfs-cluster-follow
+	dobin ipfs-cluster-service
+	einstalldocs
+
+	systemd_dounit "${FILESDIR}/ipfs-cluster.service"
+	systemd_newunit "${FILESDIR}/ipfs-cluster.service" "ipfs-cluster@.service"
+
+	newinitd "${FILESDIR}/ipfs-cluster.init" ipfs-cluster
+	newconfd /dev/null ipfs-cluster
+
+	keepdir /var/log/ipfs-cluster
+	fowners -R ipfs:ipfs /var/log/ipfs-cluster
+}
+
+pkg_postinst() {
+	elog 'To be able to use the ipfs-cluster service you will need to setup the configuration'
+	elog '(eg: su -s /bin/sh -c "ipfs-cluster init" ipfs)'
+}


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/ipfs-cluster/
@ 2022-12-21 23:30 David Roman
  0 siblings, 0 replies; 8+ messages in thread
From: David Roman @ 2022-12-21 23:30 UTC (permalink / raw
  To: gentoo-commits

commit:     fb22627017f11595f34a6d39f571b755bf5ea22f
Author:     David Roman <davidroman96 <AT> gmail <DOT> com>
AuthorDate: Wed Dec 21 23:28:29 2022 +0000
Commit:     David Roman <davidroman96 <AT> gmail <DOT> com>
CommitDate: Wed Dec 21 23:28:50 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fb226270

net-p2p/ipfs-cluster: drop myself as a maintainer

In fact I was never the maintainer of this package.
My email was put in metadata.xml without any notice
or consent.

Signed-off-by: David Roman <davidroman96 <AT> gmail.com>

 net-p2p/ipfs-cluster/metadata.xml | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/net-p2p/ipfs-cluster/metadata.xml b/net-p2p/ipfs-cluster/metadata.xml
index 1529fd336..2b291d014 100644
--- a/net-p2p/ipfs-cluster/metadata.xml
+++ b/net-p2p/ipfs-cluster/metadata.xml
@@ -1,10 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>davidroman96@gmail.com</email>
-		<name>David Roman</name>
-	</maintainer>
 	<maintainer type="person">
 		<email>hurikhan77+bgo@gmail.com</email>
 		<name>Kai Krakow</name>


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/ipfs-cluster/
@ 2022-12-22  5:22 Viorel Munteanu
  0 siblings, 0 replies; 8+ messages in thread
From: Viorel Munteanu @ 2022-12-22  5:22 UTC (permalink / raw
  To: gentoo-commits

commit:     df04641065cd6b04719770bb0990bbb2e11d0e55
Author:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 22 05:18:10 2022 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Thu Dec 22 05:21:33 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=df046410

net-p2p/ipfs-cluster: drop to maintainer-needed

The information was wrong.  None of the 2 listed maintainers had any
commits for this package.

Signed-off-by: Viorel Munteanu <ceamac <AT> gentoo.org>

 net-p2p/ipfs-cluster/metadata.xml | 5 +----
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/net-p2p/ipfs-cluster/metadata.xml b/net-p2p/ipfs-cluster/metadata.xml
index 2b291d014..115e9d64a 100644
--- a/net-p2p/ipfs-cluster/metadata.xml
+++ b/net-p2p/ipfs-cluster/metadata.xml
@@ -1,8 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<maintainer type="person">
-		<email>hurikhan77+bgo@gmail.com</email>
-		<name>Kai Krakow</name>
-	</maintainer>
+	<!-- maintainer-needed -->
 </pkgmetadata>


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/ipfs-cluster/
@ 2024-01-07  5:09 Takuya Wakazono
  0 siblings, 0 replies; 8+ messages in thread
From: Takuya Wakazono @ 2024-01-07  5:09 UTC (permalink / raw
  To: gentoo-commits

commit:     c1bd549588003cd59e28ce571954cf93d7da0d26
Author:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
AuthorDate: Sun Jan  7 05:07:35 2024 +0000
Commit:     Takuya Wakazono <pastalian46 <AT> gmail <DOT> com>
CommitDate: Sun Jan  7 05:07:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c1bd5495

net-p2p/ipfs-cluster: drop x86 keyword

net-p2p/kubo is masked in x86

Signed-off-by: Takuya Wakazono <pastalian46 <AT> gmail.com>

 net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild | 4 ++--
 net-p2p/ipfs-cluster/ipfs-cluster-1.0.2.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild b/net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild
index b4efd1a92a..e47bc80287 100644
--- a/net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild
+++ b/net-p2p/ipfs-cluster/ipfs-cluster-1.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ SRC_URI+=" https://ipfs.infura.io/ipfs/QmUGftdXbN815P1GvurGRBa5fYFiGfTDAdBXToadz
 
 LICENSE="Apache-2.0 MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64"
 
 RDEPEND="
 	net-p2p/kubo

diff --git a/net-p2p/ipfs-cluster/ipfs-cluster-1.0.2.ebuild b/net-p2p/ipfs-cluster/ipfs-cluster-1.0.2.ebuild
index 9433e64360..7e6cf2bc09 100644
--- a/net-p2p/ipfs-cluster/ipfs-cluster-1.0.2.ebuild
+++ b/net-p2p/ipfs-cluster/ipfs-cluster-1.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ SRC_URI+=" https://ipfs.infura.io/ipfs/QmSTbDLMCFKKKXmEBFgGMZDYV9EfngKsFnws8PZoK
 
 LICENSE="Apache-2.0 MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64"
 
 RDEPEND="
 	net-p2p/kubo


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2024-01-07  5:09 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-26 13:31 [gentoo-commits] repo/proj/guru:dev commit in: net-p2p/ipfs-cluster/ Tony Olagbaiye
  -- strict thread matches above, loose matches on Subject: below --
2024-01-07  5:09 Takuya Wakazono
2022-12-22  5:22 Viorel Munteanu
2022-12-21 23:30 David Roman
2022-07-03 12:19 [gentoo-commits] repo/proj/guru:master " Andrew Ammerlaan
2022-07-03 12:19 ` [gentoo-commits] repo/proj/guru:dev " Andrew Ammerlaan
2022-06-05 21:16 Alessandro Barbieri
2022-05-28  3:19 Tony Olagbaiye
2022-05-28  3:17 Tony Olagbaiye

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox