public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kronosnet/
@ 2020-10-21 12:59 Alexys Jacob
  0 siblings, 0 replies; 15+ messages in thread
From: Alexys Jacob @ 2020-10-21 12:59 UTC (permalink / raw
  To: gentoo-commits

commit:     3d396e796a9b307764e8d200ee0558b29a302213
Author:     Timo Rothenpieler <btbn <AT> btbn <DOT> de>
AuthorDate: Fri Jul 24 19:25:11 2020 +0000
Commit:     Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
CommitDate: Wed Oct 21 12:58:08 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d396e79

sys-cluster/kronosnet: add new corosync dependency

Closes: https://bugs.gentoo.org/596882
Signed-off-by: Timo Rothenpieler <btbn <AT> btbn.de>
Signed-off-by: Alexys Jacob <ultrabug <AT> gentoo.org>

 sys-cluster/kronosnet/Manifest              |  1 +
 sys-cluster/kronosnet/kronosnet-1.19.ebuild | 55 +++++++++++++++++++++++++++++
 sys-cluster/kronosnet/metadata.xml          | 16 +++++++++
 3 files changed, 72 insertions(+)

diff --git a/sys-cluster/kronosnet/Manifest b/sys-cluster/kronosnet/Manifest
new file mode 100644
index 00000000000..c5eb9725567
--- /dev/null
+++ b/sys-cluster/kronosnet/Manifest
@@ -0,0 +1 @@
+DIST kronosnet-1.19.tar.xz 461952 BLAKE2B ea6da6c760d73eb3d0b24827d019b479fe2d021f1eea8cb0e0497b390c04b64f99802159e61b1a8b26f38da542cbd52987504cb7c667a9b22ecb53b2fffdf20f SHA512 32b9d7254e9cf5768648aafe5cb019105e247edc1b8a427cc4e655ab4bd9d6a44614f67ba2ac4779f4d11d829d86e6fb8ceb27838dbb44bcefc351db76a41705

diff --git a/sys-cluster/kronosnet/kronosnet-1.19.ebuild b/sys-cluster/kronosnet/kronosnet-1.19.ebuild
new file mode 100644
index 00000000000..b3a36ea3cce
--- /dev/null
+++ b/sys-cluster/kronosnet/kronosnet-1.19.ebuild
@@ -0,0 +1,55 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Network abstraction layer designed for High Availability use cases"
+HOMEPAGE="https://kronosnet.org"
+SRC_URI="https://kronosnet.org/releases/${P}.tar.xz"
+
+LICENSE="LGPL-2.1"
+SLOT="0/1"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+IUSE="doc nss +openssl zstd lz4 lzo2"
+
+DEPEND=">=sys-cluster/libqb-2.0.0:=
+	dev-libs/libnl:3
+	sys-libs/zlib:=
+	app-arch/bzip2:=
+	app-arch/xz-utils
+	zstd? ( app-arch/zstd:= )
+	lzo2? ( dev-libs/lzo:2 )
+	lz4? ( app-arch/lz4:= )
+	nss? ( dev-libs/nss )
+	openssl? ( dev-libs/openssl:= )"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	doc? (
+		>=sys-cluster/libqb-2.0.0
+		app-doc/doxygen[dot]
+	)"
+
+src_prepare() {
+	default
+	eautoreconf
+}
+
+src_configure() {
+	econf_opts=(
+		$(use_enable doc man) \
+		--disable-static \
+		--enable-libnozzle \
+		--disable-libknet-sctp \
+		--enable-compress-zlib \
+		--enable-compress-bzip2 \
+		--enable-compress-lzma \
+		$(use_enable nss crypto-nss) \
+		$(use_enable openssl crypto-openssl) \
+		$(use_enable zstd compress-zstd) \
+		$(use_enable lz4 compress-lz4) \
+		$(use_enable lzo2 compress-lzo2)
+	)
+	econf "${econf_opts[@]}"
+}

diff --git a/sys-cluster/kronosnet/metadata.xml b/sys-cluster/kronosnet/metadata.xml
new file mode 100644
index 00000000000..3c1e39beaec
--- /dev/null
+++ b/sys-cluster/kronosnet/metadata.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="project">
+		<email>cluster@gentoo.org</email>
+		<name>Gentoo Cluster Project</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="github">kronosnet/kronosnet</remote-id>
+	</upstream>
+	<use>
+		<flag name="nss">Add support for tls via nss</flag>
+		<flag name="openssl">Add support for tls via openssl</flag>
+		<flag name="lzo2">Add support for lzo2 compression</flag>
+	</use>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kronosnet/
@ 2021-01-09  6:56 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2021-01-09  6:56 UTC (permalink / raw
  To: gentoo-commits

commit:     ebfba08715e199c9d317ca216f2fa9049e4d054a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jan  9 06:56:45 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jan  9 06:56:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebfba087

sys-cluster/kronosnet: Stabilize 1.19 ppc64, #658354

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-cluster/kronosnet/kronosnet-1.19.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-cluster/kronosnet/kronosnet-1.19.ebuild b/sys-cluster/kronosnet/kronosnet-1.19.ebuild
index b3a36ea3cce..797ca3381a9 100644
--- a/sys-cluster/kronosnet/kronosnet-1.19.ebuild
+++ b/sys-cluster/kronosnet/kronosnet-1.19.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="https://kronosnet.org/releases/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="0/1"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~x86"
 IUSE="doc nss +openssl zstd lz4 lzo2"
 
 DEPEND=">=sys-cluster/libqb-2.0.0:=


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

* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kronosnet/
@ 2021-01-10 21:58 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2021-01-10 21:58 UTC (permalink / raw
  To: gentoo-commits

commit:     9c9f47b70ff2f94b511f9f237632f154d692b959
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 10 21:57:47 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 10 21:57:47 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c9f47b7

sys-cluster/kronosnet: Stabilize 1.19 amd64, #658354

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-cluster/kronosnet/kronosnet-1.19.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kronosnet/kronosnet-1.19.ebuild b/sys-cluster/kronosnet/kronosnet-1.19.ebuild
index 797ca3381a9..d296376bea4 100644
--- a/sys-cluster/kronosnet/kronosnet-1.19.ebuild
+++ b/sys-cluster/kronosnet/kronosnet-1.19.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://kronosnet.org/releases/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="0/1"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~x86"
 IUSE="doc nss +openssl zstd lz4 lzo2"
 
 DEPEND=">=sys-cluster/libqb-2.0.0:=


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

* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kronosnet/
@ 2021-01-14 23:59 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2021-01-14 23:59 UTC (permalink / raw
  To: gentoo-commits

commit:     d1686996e07b3886af3e26f7c10d1d6e28eeb193
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Jan 14 23:58:52 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Jan 14 23:58:52 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1686996

sys-cluster/kronosnet: Stabilize 1.19 x86, #658354

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-cluster/kronosnet/kronosnet-1.19.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kronosnet/kronosnet-1.19.ebuild b/sys-cluster/kronosnet/kronosnet-1.19.ebuild
index d296376bea4..3c67b339a45 100644
--- a/sys-cluster/kronosnet/kronosnet-1.19.ebuild
+++ b/sys-cluster/kronosnet/kronosnet-1.19.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://kronosnet.org/releases/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="0/1"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 x86"
 IUSE="doc nss +openssl zstd lz4 lzo2"
 
 DEPEND=">=sys-cluster/libqb-2.0.0:=


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

* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kronosnet/
@ 2021-01-15 22:07 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2021-01-15 22:07 UTC (permalink / raw
  To: gentoo-commits

commit:     3893fd829053269a6138846a382415c5242b915a
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 15 22:07:11 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 15 22:07:11 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3893fd82

sys-cluster/kronosnet: Stabilize 1.19 ppc, #658354

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-cluster/kronosnet/kronosnet-1.19.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kronosnet/kronosnet-1.19.ebuild b/sys-cluster/kronosnet/kronosnet-1.19.ebuild
index 3c67b339a45..d29b53fe4fd 100644
--- a/sys-cluster/kronosnet/kronosnet-1.19.ebuild
+++ b/sys-cluster/kronosnet/kronosnet-1.19.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://kronosnet.org/releases/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="0/1"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 x86"
 IUSE="doc nss +openssl zstd lz4 lzo2"
 
 DEPEND=">=sys-cluster/libqb-2.0.0:=


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

* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kronosnet/
@ 2022-05-12 19:26 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2022-05-12 19:26 UTC (permalink / raw
  To: gentoo-commits

commit:     c5770d163a136f521cdfba187278aca2958514ba
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu May 12 19:25:45 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu May 12 19:26:11 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5770d16

sys-cluster/kronosnet: add 1.23

Closes: https://bugs.gentoo.org/805359
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-cluster/kronosnet/Manifest              |  1 +
 sys-cluster/kronosnet/kronosnet-1.23.ebuild | 53 +++++++++++++++++++++++++++++
 2 files changed, 54 insertions(+)

diff --git a/sys-cluster/kronosnet/Manifest b/sys-cluster/kronosnet/Manifest
index c5eb97255671..99424e262803 100644
--- a/sys-cluster/kronosnet/Manifest
+++ b/sys-cluster/kronosnet/Manifest
@@ -1 +1,2 @@
 DIST kronosnet-1.19.tar.xz 461952 BLAKE2B ea6da6c760d73eb3d0b24827d019b479fe2d021f1eea8cb0e0497b390c04b64f99802159e61b1a8b26f38da542cbd52987504cb7c667a9b22ecb53b2fffdf20f SHA512 32b9d7254e9cf5768648aafe5cb019105e247edc1b8a427cc4e655ab4bd9d6a44614f67ba2ac4779f4d11d829d86e6fb8ceb27838dbb44bcefc351db76a41705
+DIST kronosnet-1.23.tar.xz 474048 BLAKE2B 47dd0ddfd59dd25091cffd85950be962747a5f7a6ccecbcdc921f4079a937186a6c3e03f75d8df80bf43441d761420b7d2f9e6fc6dce57f9c61a7ee1c63a2d9c SHA512 b3905affe35e88bed7a4a9e483ad81f46f5514495dd537e14734788933e573c679b8f971f5fef6a023dee852de2bed8250adc34c84e0d70fe4d506dd1782e105

diff --git a/sys-cluster/kronosnet/kronosnet-1.23.ebuild b/sys-cluster/kronosnet/kronosnet-1.23.ebuild
new file mode 100644
index 000000000000..115a30239682
--- /dev/null
+++ b/sys-cluster/kronosnet/kronosnet-1.23.ebuild
@@ -0,0 +1,53 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Network abstraction layer designed for High Availability use cases"
+HOMEPAGE="https://kronosnet.org"
+SRC_URI="https://kronosnet.org/releases/${P}.tar.xz"
+
+LICENSE="LGPL-2.1"
+SLOT="0/1"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+IUSE="doc nss +openssl lz4 lzo2 test zstd"
+RESTRICT="!test? ( test )"
+
+DEPEND=">=sys-cluster/libqb-2.0.0:=
+	dev-libs/libnl:3
+	sys-libs/zlib:=
+	app-arch/bzip2:=
+	app-arch/xz-utils
+	zstd? ( app-arch/zstd:= )
+	lzo2? ( dev-libs/lzo:2 )
+	lz4? ( app-arch/lz4:= )
+	nss? ( dev-libs/nss )
+	openssl? ( dev-libs/openssl:= )"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	doc? (
+		>=sys-cluster/libqb-2.0.0
+		app-doc/doxygen[dot]
+	)"
+
+src_configure() {
+	local myeconfargs=(
+		$(use_enable doc man)
+
+		--enable-libnozzle
+		--disable-libknet-sctp
+		--enable-compress-zlib
+		--enable-compress-bzip2
+		--enable-compress-lzma
+
+		$(use_enable nss crypto-nss)
+		$(use_enable openssl crypto-openssl)
+		$(use_enable zstd compress-zstd)
+		$(use_enable lz4 compress-lz4)
+		$(use_enable lzo2 compress-lzo2)
+
+		$(use_enable test functional-tests)
+	)
+
+	econf "${myeconfargs[@]}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kronosnet/
@ 2023-06-03  1:20 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2023-06-03  1:20 UTC (permalink / raw
  To: gentoo-commits

commit:     dcdeb88be8722e256c394b2691d862cd3d660db6
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  3 01:20:28 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jun  3 01:20:28 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcdeb88b

sys-cluster/kronosnet: add 1.25

Bug: https://bugs.gentoo.org/907721
Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-cluster/kronosnet/Manifest              |  1 +
 sys-cluster/kronosnet/kronosnet-1.25.ebuild | 69 +++++++++++++++++++++++++++++
 2 files changed, 70 insertions(+)

diff --git a/sys-cluster/kronosnet/Manifest b/sys-cluster/kronosnet/Manifest
index 99424e262803..849ace865709 100644
--- a/sys-cluster/kronosnet/Manifest
+++ b/sys-cluster/kronosnet/Manifest
@@ -1,2 +1,3 @@
 DIST kronosnet-1.19.tar.xz 461952 BLAKE2B ea6da6c760d73eb3d0b24827d019b479fe2d021f1eea8cb0e0497b390c04b64f99802159e61b1a8b26f38da542cbd52987504cb7c667a9b22ecb53b2fffdf20f SHA512 32b9d7254e9cf5768648aafe5cb019105e247edc1b8a427cc4e655ab4bd9d6a44614f67ba2ac4779f4d11d829d86e6fb8ceb27838dbb44bcefc351db76a41705
 DIST kronosnet-1.23.tar.xz 474048 BLAKE2B 47dd0ddfd59dd25091cffd85950be962747a5f7a6ccecbcdc921f4079a937186a6c3e03f75d8df80bf43441d761420b7d2f9e6fc6dce57f9c61a7ee1c63a2d9c SHA512 b3905affe35e88bed7a4a9e483ad81f46f5514495dd537e14734788933e573c679b8f971f5fef6a023dee852de2bed8250adc34c84e0d70fe4d506dd1782e105
+DIST kronosnet-1.25.tar.xz 482292 BLAKE2B cf6b91f63d4f5193c9370f8bc07d3a76f9fa31c95117011a33800cf01b9e15c9f6bc879be3cfa08b0adc3f0008b4b804ed4597432846ea630f77af1a168add6d SHA512 03e0fd69e66ccefce778e02edfed253b201c325ca4d94e687f468395f0a05cbe48f658c6cb98e7eb2d067ee04c4d89a34ac8c213cce38698593a7ff5ba93416b

diff --git a/sys-cluster/kronosnet/kronosnet-1.25.ebuild b/sys-cluster/kronosnet/kronosnet-1.25.ebuild
new file mode 100644
index 000000000000..c10fbb4c506e
--- /dev/null
+++ b/sys-cluster/kronosnet/kronosnet-1.25.ebuild
@@ -0,0 +1,69 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Network abstraction layer designed for High Availability use cases"
+HOMEPAGE="https://kronosnet.org"
+SRC_URI="https://kronosnet.org/releases/${P}.tar.xz"
+
+LICENSE="LGPL-2.1"
+SLOT="0/1"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+IUSE="doc nss +openssl lz4 lzo2 test zstd"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+	>=sys-cluster/libqb-2.0.0:=
+	dev-libs/libnl:3
+	sys-libs/zlib:=
+	app-arch/bzip2:=
+	app-arch/xz-utils
+	zstd? ( app-arch/zstd:= )
+	lzo2? ( dev-libs/lzo:2 )
+	lz4? ( app-arch/lz4:= )
+	nss? ( dev-libs/nss )
+	openssl? ( dev-libs/openssl:= )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	doc? (
+		>=sys-cluster/libqb-2.0.0
+		app-doc/doxygen[dot]
+	)"
+
+PATCHES=(
+	"${FILESDIR}"/${PN}-1.19-no-Werror.patch
+	"${FILESDIR}"/${PN}-1.23-no-extra-fortify-source.patch
+)
+
+src_prepare() {
+	default
+
+	# For our patches
+	eautoreconf
+}
+
+src_configure() {
+	local myeconfargs=(
+		$(use_enable doc man)
+
+		--enable-libnozzle
+		--disable-libknet-sctp
+		--enable-compress-zlib
+		--enable-compress-bzip2
+		--enable-compress-lzma
+
+		$(use_enable nss crypto-nss)
+		$(use_enable openssl crypto-openssl)
+		$(use_enable zstd compress-zstd)
+		$(use_enable lz4 compress-lz4)
+		$(use_enable lzo2 compress-lzo2)
+
+		$(use_enable test functional-tests)
+	)
+
+	econf "${myeconfargs[@]}"
+}


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

* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kronosnet/
@ 2023-06-03  1:36 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2023-06-03  1:36 UTC (permalink / raw
  To: gentoo-commits

commit:     f49661a3be13368c64974494e6ebc16e27328562
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  3 01:36:05 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jun  3 01:36:05 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f49661a3

sys-cluster/kronosnet: Stabilize 1.19-r1 ppc64, #907726

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-cluster/kronosnet/kronosnet-1.19-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-cluster/kronosnet/kronosnet-1.19-r1.ebuild b/sys-cluster/kronosnet/kronosnet-1.19-r1.ebuild
index 6ca8e8f2a526..97f8a3e3fc59 100644
--- a/sys-cluster/kronosnet/kronosnet-1.19-r1.ebuild
+++ b/sys-cluster/kronosnet/kronosnet-1.19-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020-2022 Gentoo Authors
+# Copyright 2020-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="https://kronosnet.org/releases/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="0/1"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~x86"
 IUSE="doc nss +openssl zstd lz4 lzo2"
 
 DEPEND=">=sys-cluster/libqb-2.0.0:=


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

* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kronosnet/
@ 2023-06-03  1:57 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2023-06-03  1:57 UTC (permalink / raw
  To: gentoo-commits

commit:     6eb381d003d046c6035b9f00b7d4611caa6c09e8
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  3 01:57:03 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jun  3 01:57:03 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eb381d0

sys-cluster/kronosnet: Stabilize 1.19-r1 amd64, #907726

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-cluster/kronosnet/kronosnet-1.19-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kronosnet/kronosnet-1.19-r1.ebuild b/sys-cluster/kronosnet/kronosnet-1.19-r1.ebuild
index 97f8a3e3fc59..6b7bad4bf827 100644
--- a/sys-cluster/kronosnet/kronosnet-1.19-r1.ebuild
+++ b/sys-cluster/kronosnet/kronosnet-1.19-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://kronosnet.org/releases/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="0/1"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~x86"
 IUSE="doc nss +openssl zstd lz4 lzo2"
 
 DEPEND=">=sys-cluster/libqb-2.0.0:=


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

* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kronosnet/
@ 2023-06-03  1:57 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2023-06-03  1:57 UTC (permalink / raw
  To: gentoo-commits

commit:     362b73a218d189407a05e1b8a6d8ec053956bb3d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  3 01:57:04 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Jun  3 01:57:04 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=362b73a2

sys-cluster/kronosnet: Stabilize 1.19-r1 x86, #907726

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-cluster/kronosnet/kronosnet-1.19-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kronosnet/kronosnet-1.19-r1.ebuild b/sys-cluster/kronosnet/kronosnet-1.19-r1.ebuild
index 6b7bad4bf827..ee20263bfffc 100644
--- a/sys-cluster/kronosnet/kronosnet-1.19-r1.ebuild
+++ b/sys-cluster/kronosnet/kronosnet-1.19-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://kronosnet.org/releases/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="0/1"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 x86"
 IUSE="doc nss +openssl zstd lz4 lzo2"
 
 DEPEND=">=sys-cluster/libqb-2.0.0:=


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

* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kronosnet/
@ 2023-07-04 22:23 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2023-07-04 22:23 UTC (permalink / raw
  To: gentoo-commits

commit:     139f0210f741f5e949946503052669cd7fe3f9ec
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  4 22:23:11 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul  4 22:23:11 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=139f0210

sys-cluster/kronosnet: Stabilize 1.25 x86, #909653

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-cluster/kronosnet/kronosnet-1.25.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kronosnet/kronosnet-1.25.ebuild b/sys-cluster/kronosnet/kronosnet-1.25.ebuild
index c10fbb4c506e..9d1e5fecd337 100644
--- a/sys-cluster/kronosnet/kronosnet-1.25.ebuild
+++ b/sys-cluster/kronosnet/kronosnet-1.25.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://kronosnet.org/releases/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="0/1"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86"
 IUSE="doc nss +openssl lz4 lzo2 test zstd"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kronosnet/
@ 2023-07-04 22:23 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2023-07-04 22:23 UTC (permalink / raw
  To: gentoo-commits

commit:     fb1fe543edc4383ce46a65d9a530f6b14d3b218b
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  4 22:23:12 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul  4 22:23:12 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb1fe543

sys-cluster/kronosnet: Stabilize 1.25 amd64, #909653

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-cluster/kronosnet/kronosnet-1.25.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kronosnet/kronosnet-1.25.ebuild b/sys-cluster/kronosnet/kronosnet-1.25.ebuild
index 9d1e5fecd337..371abf76c697 100644
--- a/sys-cluster/kronosnet/kronosnet-1.25.ebuild
+++ b/sys-cluster/kronosnet/kronosnet-1.25.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://kronosnet.org/releases/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="0/1"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86"
 IUSE="doc nss +openssl lz4 lzo2 test zstd"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kronosnet/
@ 2023-07-04 22:42 Sam James
  0 siblings, 0 replies; 15+ messages in thread
From: Sam James @ 2023-07-04 22:42 UTC (permalink / raw
  To: gentoo-commits

commit:     bb793f53caa54e68dff22dd3798b7aec4200cbec
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue Jul  4 22:42:08 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue Jul  4 22:42:08 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb793f53

sys-cluster/kronosnet: Stabilize 1.25 ppc64, #909653

Signed-off-by: Sam James <sam <AT> gentoo.org>

 sys-cluster/kronosnet/kronosnet-1.25.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kronosnet/kronosnet-1.25.ebuild b/sys-cluster/kronosnet/kronosnet-1.25.ebuild
index 371abf76c697..a59148f4a4fa 100644
--- a/sys-cluster/kronosnet/kronosnet-1.25.ebuild
+++ b/sys-cluster/kronosnet/kronosnet-1.25.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://kronosnet.org/releases/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="0/1"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 x86"
 IUSE="doc nss +openssl lz4 lzo2 test zstd"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kronosnet/
@ 2024-01-12  8:30 Arthur Zamarin
  0 siblings, 0 replies; 15+ messages in thread
From: Arthur Zamarin @ 2024-01-12  8:30 UTC (permalink / raw
  To: gentoo-commits

commit:     8b04edadc33cec59520f1a2ccdd1f1f9723cffef
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 12 08:30:14 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Jan 12 08:30:14 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b04edad

sys-cluster/kronosnet: Keyword 1.25 sparc, #919424

Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 sys-cluster/kronosnet/kronosnet-1.25.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-cluster/kronosnet/kronosnet-1.25.ebuild b/sys-cluster/kronosnet/kronosnet-1.25.ebuild
index a59148f4a4fa..3f70fac91d92 100644
--- a/sys-cluster/kronosnet/kronosnet-1.25.ebuild
+++ b/sys-cluster/kronosnet/kronosnet-1.25.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020-2023 Gentoo Authors
+# Copyright 2020-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ SRC_URI="https://kronosnet.org/releases/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="0/1"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~sparc x86"
 IUSE="doc nss +openssl lz4 lzo2 test zstd"
 RESTRICT="!test? ( test )"
 


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

* [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kronosnet/
@ 2024-03-17  6:27 Ionen Wolkens
  0 siblings, 0 replies; 15+ messages in thread
From: Ionen Wolkens @ 2024-03-17  6:27 UTC (permalink / raw
  To: gentoo-commits

commit:     2abc1fcaa186ddd1f8021823993ca163473aec06
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Sat Mar 16 01:28:22 2024 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sun Mar 17 06:17:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2abc1fca

sys-cluster/kronosnet: Keyword 1.25 alpha, #927075

Signed-off-by: Matoro Mahri <matoro_gentoo <AT> matoro.tk>
Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org>

 sys-cluster/kronosnet/kronosnet-1.25.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kronosnet/kronosnet-1.25.ebuild b/sys-cluster/kronosnet/kronosnet-1.25.ebuild
index ee95c84cf62b..b3a49d76f99a 100644
--- a/sys-cluster/kronosnet/kronosnet-1.25.ebuild
+++ b/sys-cluster/kronosnet/kronosnet-1.25.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://kronosnet.org/releases/${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="0/1"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~sparc x86"
 IUSE="doc nss +openssl lz4 lzo2 test zstd"
 RESTRICT="!test? ( test )"
 


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

end of thread, other threads:[~2024-03-17  6:28 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-17  6:27 [gentoo-commits] repo/gentoo:master commit in: sys-cluster/kronosnet/ Ionen Wolkens
  -- strict thread matches above, loose matches on Subject: below --
2024-01-12  8:30 Arthur Zamarin
2023-07-04 22:42 Sam James
2023-07-04 22:23 Sam James
2023-07-04 22:23 Sam James
2023-06-03  1:57 Sam James
2023-06-03  1:57 Sam James
2023-06-03  1:36 Sam James
2023-06-03  1:20 Sam James
2022-05-12 19:26 Sam James
2021-01-15 22:07 Sam James
2021-01-14 23:59 Sam James
2021-01-10 21:58 Sam James
2021-01-09  6:56 Sam James
2020-10-21 12:59 Alexys Jacob

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