public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-04-10 22:24 James Le Cuirot
  0 siblings, 0 replies; 21+ messages in thread
From: James Le Cuirot @ 2024-04-10 22:24 UTC (permalink / raw
  To: gentoo-commits

commit:     4126d48d920db90afcdb6c8091a13e79d61b24d3
Author:     Gonçalo Negrier Duarte <gonegrier.duarte <AT> gmail <DOT> com>
AuthorDate: Tue Apr  2 19:06:19 2024 +0000
Commit:     James Le Cuirot <chewi <AT> gentoo <DOT> org>
CommitDate: Wed Apr 10 22:23:52 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4126d48d

gui-libs/libdecor: new package, add 0.2.2, 9999

Closes: https://bugs.gentoo.org/927186
Signed-off-by: Gonçalo Negrier Duarte <gonegrier.duarte <AT> gmail.com>
Signed-off-by: James Le Cuirot <chewi <AT> gentoo.org>

 gui-libs/libdecor/Manifest              |  1 +
 gui-libs/libdecor/libdecor-0.2.2.ebuild | 54 +++++++++++++++++++++++++++++++++
 gui-libs/libdecor/libdecor-9999.ebuild  | 54 +++++++++++++++++++++++++++++++++
 gui-libs/libdecor/metadata.xml          | 24 +++++++++++++++
 4 files changed, 133 insertions(+)

diff --git a/gui-libs/libdecor/Manifest b/gui-libs/libdecor/Manifest
new file mode 100644
index 000000000000..cb5c2e5a09bb
--- /dev/null
+++ b/gui-libs/libdecor/Manifest
@@ -0,0 +1 @@
+DIST libdecor-0.2.2.tar.bz2 45375 BLAKE2B 86e78ce5017b0babc627b5f9ce75b7e2cca38929e3c382828e0453329efed707e2c010fb51522b7b5077a616d54cf2f9af70d5b3d68d2b2aa1d6d36b7a834b8d SHA512 f9761a8c59dc85dd92c871f73192ab05eb56ea34e85a38b5a7222822173f9fd71b5bfb5cffe2782e8c0a6275100e32b6761143cb1469dbcc6988d046a09f1b9a

diff --git a/gui-libs/libdecor/libdecor-0.2.2.ebuild b/gui-libs/libdecor/libdecor-0.2.2.ebuild
new file mode 100644
index 000000000000..2d21ad63368e
--- /dev/null
+++ b/gui-libs/libdecor/libdecor-0.2.2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="A client-side decorations library for Wayland clients"
+HOMEPAGE="https://gitlab.freedesktop.org/libdecor/libdecor"
+if [[ ${PV} == "9999" ]]; then
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/libdecor/libdecor.git"
+	inherit git-r3
+else
+	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
+	KEYWORDS="~amd64"
+fi
+LICENSE="MIT"
+SLOT="0"
+IUSE="+dbus +gtk examples"
+
+RDEPEND="
+	>=dev-libs/wayland-1.18
+	x11-libs/pango
+	x11-libs/cairo
+	dbus? ( sys-apps/dbus )
+	gtk? ( x11-libs/gtk+:3 )
+	examples? (
+		media-libs/libglvnd
+		x11-libs/libxkbcommon
+	)
+"
+
+DEPEND="
+	${RDEPEND}
+	>=dev-libs/wayland-protocols-1.15
+"
+
+BDEPEND="
+	dev-util/wayland-scanner
+	virtual/pkgconfig
+"
+
+src_configure() {
+	local emesonargs=(
+		# Avoid auto-magic, built-in feature of meson
+		-Dauto_features=disabled
+		$(meson_feature gtk)
+		$(meson_feature dbus)
+		$(meson_use examples demo)
+		-Dinstall_demo=true
+	)
+
+	meson_src_configure
+}

diff --git a/gui-libs/libdecor/libdecor-9999.ebuild b/gui-libs/libdecor/libdecor-9999.ebuild
new file mode 100644
index 000000000000..2d21ad63368e
--- /dev/null
+++ b/gui-libs/libdecor/libdecor-9999.ebuild
@@ -0,0 +1,54 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="A client-side decorations library for Wayland clients"
+HOMEPAGE="https://gitlab.freedesktop.org/libdecor/libdecor"
+if [[ ${PV} == "9999" ]]; then
+	EGIT_REPO_URI="https://gitlab.freedesktop.org/libdecor/libdecor.git"
+	inherit git-r3
+else
+	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
+	KEYWORDS="~amd64"
+fi
+LICENSE="MIT"
+SLOT="0"
+IUSE="+dbus +gtk examples"
+
+RDEPEND="
+	>=dev-libs/wayland-1.18
+	x11-libs/pango
+	x11-libs/cairo
+	dbus? ( sys-apps/dbus )
+	gtk? ( x11-libs/gtk+:3 )
+	examples? (
+		media-libs/libglvnd
+		x11-libs/libxkbcommon
+	)
+"
+
+DEPEND="
+	${RDEPEND}
+	>=dev-libs/wayland-protocols-1.15
+"
+
+BDEPEND="
+	dev-util/wayland-scanner
+	virtual/pkgconfig
+"
+
+src_configure() {
+	local emesonargs=(
+		# Avoid auto-magic, built-in feature of meson
+		-Dauto_features=disabled
+		$(meson_feature gtk)
+		$(meson_feature dbus)
+		$(meson_use examples demo)
+		-Dinstall_demo=true
+	)
+
+	meson_src_configure
+}

diff --git a/gui-libs/libdecor/metadata.xml b/gui-libs/libdecor/metadata.xml
new file mode 100644
index 000000000000..9f8ba6301a8d
--- /dev/null
+++ b/gui-libs/libdecor/metadata.xml
@@ -0,0 +1,24 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<use>
+		<flag name="dbus">Enable dbus to query current cursor theme</flag>
+		<flag name="gtk">Build GTK plugin</flag>
+		<flag name="examples">Build and install examples</flag>
+	</use>
+	<maintainer type="person">
+		<email>chewi@gentoo.org</email>
+		<name>James Le Cuirot</name>
+	</maintainer>
+	<maintainer type="project">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Gentoo Proxy Maintainers</name>
+	</maintainer>
+	<maintainer type="person">
+		<email>gonegrier.duarte@gmail.com</email>
+		<name>Gonçalo Negrier Duarte</name>
+	</maintainer>
+	<upstream>
+		<remote-id type="freedesktop-gitlab">libdecor/libdecor</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-04-18 17:58 Matt Turner
  0 siblings, 0 replies; 21+ messages in thread
From: Matt Turner @ 2024-04-18 17:58 UTC (permalink / raw
  To: gentoo-commits

commit:     ee10f04c52f6035be1f878cc99cf20633ca7d588
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 18 17:03:58 2024 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu Apr 18 17:58:09 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee10f04c

gui-libs/libdecor: Add multilib support

Needed by x11-apps/mesa-progs.

Bug: https://bugs.gentoo.org/894156
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 .../{libdecor-0.2.2.ebuild => libdecor-0.2.2-r1.ebuild}  | 16 ++++++++--------
 gui-libs/libdecor/libdecor-9999.ebuild                   | 16 ++++++++--------
 2 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
similarity index 75%
rename from gui-libs/libdecor/libdecor-0.2.2.ebuild
rename to gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index 2d21ad63368e..c868676829a1 100644
--- a/gui-libs/libdecor/libdecor-0.2.2.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit meson
+inherit meson-multilib
 
 DESCRIPTION="A client-side decorations library for Wayland clients"
 HOMEPAGE="https://gitlab.freedesktop.org/libdecor/libdecor"
@@ -19,11 +19,11 @@ SLOT="0"
 IUSE="+dbus +gtk examples"
 
 RDEPEND="
-	>=dev-libs/wayland-1.18
-	x11-libs/pango
-	x11-libs/cairo
-	dbus? ( sys-apps/dbus )
-	gtk? ( x11-libs/gtk+:3 )
+	>=dev-libs/wayland-1.18[${MULTILIB_USEDEP}]
+	x11-libs/pango[${MULTILIB_USEDEP}]
+	x11-libs/cairo[${MULTILIB_USEDEP}]
+	dbus? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
+	gtk? ( x11-libs/gtk+:3[${MULTILIB_USEDEP}] )
 	examples? (
 		media-libs/libglvnd
 		x11-libs/libxkbcommon
@@ -40,13 +40,13 @@ BDEPEND="
 	virtual/pkgconfig
 "
 
-src_configure() {
+multilib_src_configure() {
 	local emesonargs=(
 		# Avoid auto-magic, built-in feature of meson
 		-Dauto_features=disabled
 		$(meson_feature gtk)
 		$(meson_feature dbus)
-		$(meson_use examples demo)
+		$(meson_native_use_bool examples demo)
 		-Dinstall_demo=true
 	)
 

diff --git a/gui-libs/libdecor/libdecor-9999.ebuild b/gui-libs/libdecor/libdecor-9999.ebuild
index 2d21ad63368e..c868676829a1 100644
--- a/gui-libs/libdecor/libdecor-9999.ebuild
+++ b/gui-libs/libdecor/libdecor-9999.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit meson
+inherit meson-multilib
 
 DESCRIPTION="A client-side decorations library for Wayland clients"
 HOMEPAGE="https://gitlab.freedesktop.org/libdecor/libdecor"
@@ -19,11 +19,11 @@ SLOT="0"
 IUSE="+dbus +gtk examples"
 
 RDEPEND="
-	>=dev-libs/wayland-1.18
-	x11-libs/pango
-	x11-libs/cairo
-	dbus? ( sys-apps/dbus )
-	gtk? ( x11-libs/gtk+:3 )
+	>=dev-libs/wayland-1.18[${MULTILIB_USEDEP}]
+	x11-libs/pango[${MULTILIB_USEDEP}]
+	x11-libs/cairo[${MULTILIB_USEDEP}]
+	dbus? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
+	gtk? ( x11-libs/gtk+:3[${MULTILIB_USEDEP}] )
 	examples? (
 		media-libs/libglvnd
 		x11-libs/libxkbcommon
@@ -40,13 +40,13 @@ BDEPEND="
 	virtual/pkgconfig
 "
 
-src_configure() {
+multilib_src_configure() {
 	local emesonargs=(
 		# Avoid auto-magic, built-in feature of meson
 		-Dauto_features=disabled
 		$(meson_feature gtk)
 		$(meson_feature dbus)
-		$(meson_use examples demo)
+		$(meson_native_use_bool examples demo)
 		-Dinstall_demo=true
 	)
 


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-04-18 22:54 Sam James
  0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2024-04-18 22:54 UTC (permalink / raw
  To: gentoo-commits

commit:     b32c9c5b45d778e5247077e74ba25362f1af1120
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 18 22:53:37 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 18 22:53:37 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b32c9c5b

gui-libs/libdecor: Keyword 0.2.2-r1 ppc64, #930206

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index f8d6e6ca63ba..c55dc75545e6 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="~amd64 ~arm"
+	KEYWORDS="~amd64 ~arm ~ppc64"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-04-18 22:54 Sam James
  0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2024-04-18 22:54 UTC (permalink / raw
  To: gentoo-commits

commit:     f7bd2b4153dc282030f64c23821d5e692536af46
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 18 22:53:35 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 18 22:53:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7bd2b41

gui-libs/libdecor: Keyword 0.2.2-r1 arm, #930206

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index c868676829a1..f8d6e6ca63ba 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="~amd64"
+	KEYWORDS="~amd64 ~arm"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-04-18 22:54 Sam James
  0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2024-04-18 22:54 UTC (permalink / raw
  To: gentoo-commits

commit:     fb5c36334fb4dcb815086ede56e0aa7887875a14
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 18 22:53:41 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 18 22:53:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb5c3633

gui-libs/libdecor: Keyword 0.2.2-r1 sparc, #930206

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index 59e687908b32..679f41e2459f 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~sparc"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-04-18 22:54 Sam James
  0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2024-04-18 22:54 UTC (permalink / raw
  To: gentoo-commits

commit:     fd80388df54450d50cd87a24d9f8d5c032c73654
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 18 22:53:39 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 18 22:53:39 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd80388d

gui-libs/libdecor: Keyword 0.2.2-r1 arm64, #930206

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index c55dc75545e6..59e687908b32 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="~amd64 ~arm ~ppc64"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-04-18 22:54 Sam James
  0 siblings, 0 replies; 21+ messages in thread
From: Sam James @ 2024-04-18 22:54 UTC (permalink / raw
  To: gentoo-commits

commit:     679545793e11b1127cb4b26b008d2f7e49283199
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 18 22:53:43 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 18 22:53:43 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67954579

gui-libs/libdecor: Keyword 0.2.2-r1 ppc, #930206

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index 679f41e2459f..e9639bda523d 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~sparc"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-04-18 23:26 Yixun Lan
  0 siblings, 0 replies; 21+ messages in thread
From: Yixun Lan @ 2024-04-18 23:26 UTC (permalink / raw
  To: gentoo-commits

commit:     eff4821f0393b4dc6492a5824ecdfa3e788ddf07
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 18 22:03:48 2024 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Apr 18 23:25:33 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eff4821f

gui-libs/libdecor: Keyword 0.2.2-r1 riscv, #930206

Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index e9639bda523d..976986b30b9f 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-04-25 15:44 Arthur Zamarin
  0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2024-04-25 15:44 UTC (permalink / raw
  To: gentoo-commits

commit:     efcc1d978ff87c5350e332c1a8af5eb5b87c32dd
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Apr 25 15:44:02 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Apr 25 15:44:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efcc1d97

gui-libs/libdecor: Keyword 0.2.2-r1 ia64, #930206

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index 976986b30b9f..fcdb6a1af90f 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-05-04  7:17 Arthur Zamarin
  0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2024-05-04  7:17 UTC (permalink / raw
  To: gentoo-commits

commit:     37c0b65369ca035f74b020ef43bbe1b34b3af5a4
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat May  4 07:16:54 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat May  4 07:16:54 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37c0b653

gui-libs/libdecor: Keyword 0.2.2-r1 x86, #931005

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index fcdb6a1af90f..3c5783229e53 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-05-19 23:10 Ionen Wolkens
  0 siblings, 0 replies; 21+ messages in thread
From: Ionen Wolkens @ 2024-05-19 23:10 UTC (permalink / raw
  To: gentoo-commits

commit:     0c6dd2ea99565a008ff83dbd3bb2b183d58be174
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Sun May 19 20:53:19 2024 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Sun May 19 23:08:59 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c6dd2ea

gui-libs/libdecor: Keyword 0.2.2-r1 loong, #930206

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index 3c5783229e53..0c131441172f 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-05-22 18:12 Arthur Zamarin
  0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2024-05-22 18:12 UTC (permalink / raw
  To: gentoo-commits

commit:     245c89e5a224dd4007d077af6d613db3663afa1b
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 18:12:41 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed May 22 18:12:41 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=245c89e5

gui-libs/libdecor: Stabilize 0.2.2-r1 arm64, #932502

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index d683d2b71ed0..e35513121294 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="amd64 arm ~arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86"
+	KEYWORDS="amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-05-22 18:12 Arthur Zamarin
  0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2024-05-22 18:12 UTC (permalink / raw
  To: gentoo-commits

commit:     8c94d9e44de33786cb872fe744b5b83eb157671e
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 18:12:35 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed May 22 18:12:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c94d9e4

gui-libs/libdecor: Stabilize 0.2.2-r1 ppc64, #932502

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index 0c131441172f..281223f1668d 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+	KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-05-22 18:12 Arthur Zamarin
  0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2024-05-22 18:12 UTC (permalink / raw
  To: gentoo-commits

commit:     7cb40a8452c41e65e7c49a58462613f7442d3f9a
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 18:12:37 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed May 22 18:12:37 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cb40a84

gui-libs/libdecor: Stabilize 0.2.2-r1 arm, #932502

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index 4ef65bc0ea6f..376396dedc6b 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86"
+	KEYWORDS="amd64 arm ~arm64 ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-05-22 18:12 Arthur Zamarin
  0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2024-05-22 18:12 UTC (permalink / raw
  To: gentoo-commits

commit:     c4dd38dd5e9abacd3f81d1f595d3ed63dbf06339
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 18:12:36 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed May 22 18:12:36 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4dd38dd

gui-libs/libdecor: Stabilize 0.2.2-r1 amd64, #932502

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index 281223f1668d..4ef65bc0ea6f 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86"
+	KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-05-22 18:12 Arthur Zamarin
  0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2024-05-22 18:12 UTC (permalink / raw
  To: gentoo-commits

commit:     aaf2932ad1427aa2fb06ce94886ea8137c8b3245
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 18:12:39 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed May 22 18:12:39 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaf2932a

gui-libs/libdecor: Stabilize 0.2.2-r1 ppc, #932502

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index 376396dedc6b..ba8af70f491a 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="amd64 arm ~arm64 ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86"
+	KEYWORDS="amd64 arm ~arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc ~x86"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-05-22 18:12 Arthur Zamarin
  0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2024-05-22 18:12 UTC (permalink / raw
  To: gentoo-commits

commit:     ec4868afcabb51f7a76d918aed649554dbef3400
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed May 22 18:12:40 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed May 22 18:12:40 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec4868af

gui-libs/libdecor: Stabilize 0.2.2-r1 x86, #932502

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index ba8af70f491a..d683d2b71ed0 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="amd64 arm ~arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc ~x86"
+	KEYWORDS="amd64 arm ~arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-05-25 12:39 WANG Xuerui
  0 siblings, 0 replies; 21+ messages in thread
From: WANG Xuerui @ 2024-05-25 12:39 UTC (permalink / raw
  To: gentoo-commits

commit:     af07d5030b5fb32ea14c0dd4d2107654b5979fe6
Author:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
AuthorDate: Sat May 25 11:44:05 2024 +0000
Commit:     WANG Xuerui <xen0n <AT> gentoo <DOT> org>
CommitDate: Sat May 25 12:12:54 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af07d503

gui-libs/libdecor: forward ~loong

Signed-off-by: WANG Xuerui <xen0n <AT> gentoo.org>

 gui-libs/libdecor/libdecor-9999.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-9999.ebuild b/gui-libs/libdecor/libdecor-9999.ebuild
index c868676829a1..3b5fbd9c2c4a 100644
--- a/gui-libs/libdecor/libdecor-9999.ebuild
+++ b/gui-libs/libdecor/libdecor-9999.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="~amd64"
+	KEYWORDS="~amd64 ~loong"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-05-25 17:31 Arthur Zamarin
  0 siblings, 0 replies; 21+ messages in thread
From: Arthur Zamarin @ 2024-05-25 17:31 UTC (permalink / raw
  To: gentoo-commits

commit:     a457bdafcc9caad9b13c0332b2f083892147a0da
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat May 25 17:31:47 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat May 25 17:31:47 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a457bdaf

gui-libs/libdecor: Stabilize 0.2.2-r1 sparc, #932502

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index e35513121294..5834833f910d 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86"
+	KEYWORDS="amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv sparc x86"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-06-06 14:03 Ionen Wolkens
  0 siblings, 0 replies; 21+ messages in thread
From: Ionen Wolkens @ 2024-06-06 14:03 UTC (permalink / raw
  To: gentoo-commits

commit:     9e788ced0b5c2968909990ad1504a29ab202f2a9
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Tue Jun  4 18:24:36 2024 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Thu Jun  6 14:03:04 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e788ced

gui-libs/libdecor: Keyword 0.2.2-r1 mips, #930206

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index 5834833f910d..728bd1af93f1 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv sparc x86"
+	KEYWORDS="amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86"
 fi
 LICENSE="MIT"
 SLOT="0"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/
@ 2024-06-06 14:03 Ionen Wolkens
  0 siblings, 0 replies; 21+ messages in thread
From: Ionen Wolkens @ 2024-06-06 14:03 UTC (permalink / raw
  To: gentoo-commits

commit:     620336abadccf5818c9227bff961b9c71d61631b
Author:     Matoro Mahri <matoro_gentoo <AT> matoro <DOT> tk>
AuthorDate: Wed Jun  5 04:06:47 2024 +0000
Commit:     Ionen Wolkens <ionen <AT> gentoo <DOT> org>
CommitDate: Thu Jun  6 14:03:05 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=620336ab

gui-libs/libdecor: Keyword 0.2.2-r1 alpha, #930206

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

 gui-libs/libdecor/libdecor-0.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
index 728bd1af93f1..aad629bb7681 100644
--- a/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
+++ b/gui-libs/libdecor/libdecor-0.2.2-r1.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == "9999" ]]; then
 	inherit git-r3
 else
 	SRC_URI="https://gitlab.freedesktop.org/libdecor/libdecor/-/archive/${PV}/${P}.tar.bz2"
-	KEYWORDS="amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86"
+	KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86"
 fi
 LICENSE="MIT"
 SLOT="0"


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

end of thread, other threads:[~2024-06-06 14:03 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-25 17:31 [gentoo-commits] repo/gentoo:master commit in: gui-libs/libdecor/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-06-06 14:03 Ionen Wolkens
2024-06-06 14:03 Ionen Wolkens
2024-05-25 12:39 WANG Xuerui
2024-05-22 18:12 Arthur Zamarin
2024-05-22 18:12 Arthur Zamarin
2024-05-22 18:12 Arthur Zamarin
2024-05-22 18:12 Arthur Zamarin
2024-05-22 18:12 Arthur Zamarin
2024-05-22 18:12 Arthur Zamarin
2024-05-19 23:10 Ionen Wolkens
2024-05-04  7:17 Arthur Zamarin
2024-04-25 15:44 Arthur Zamarin
2024-04-18 23:26 Yixun Lan
2024-04-18 22:54 Sam James
2024-04-18 22:54 Sam James
2024-04-18 22:54 Sam James
2024-04-18 22:54 Sam James
2024-04-18 22:54 Sam James
2024-04-18 17:58 Matt Turner
2024-04-10 22:24 James Le Cuirot

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