public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2020-05-17 15:55 Aaron Bauman
  0 siblings, 0 replies; 23+ messages in thread
From: Aaron Bauman @ 2020-05-17 15:55 UTC (permalink / raw
  To: gentoo-commits

commit:     db22c91f34e8b965361f79457dedb6945647e3dc
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Fri May 15 10:30:25 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun May 17 15:54:35 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db22c91f

gui-libs/wf-config: configuration manager for wayfire

Closes: https://bugs.gentoo.org/713882

allows to parse wayfire configuration files and
reloads them on the fly

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 gui-libs/wf-config/Manifest               |  1 +
 gui-libs/wf-config/metadata.xml           | 18 ++++++++++++
 gui-libs/wf-config/wf-config-0.4.0.ebuild | 46 +++++++++++++++++++++++++++++++
 gui-libs/wf-config/wf-config-9999.ebuild  | 46 +++++++++++++++++++++++++++++++
 4 files changed, 111 insertions(+)

diff --git a/gui-libs/wf-config/Manifest b/gui-libs/wf-config/Manifest
new file mode 100644
index 00000000000..d96518e9b6b
--- /dev/null
+++ b/gui-libs/wf-config/Manifest
@@ -0,0 +1 @@
+DIST wf-config-0.4.0.tar.xz 64108 BLAKE2B 83999dd246e6b7a6c54bbbcdf7abf08767b31bd29e75cd41d9844c4b98c66fbe787b7d87ec433e2c5e860e476f4f621116aac16c7f3f56903ee1689c5d1bc6c9 SHA512 30358ada695012b9f4be835f2b2d032e0d8d52c3e9d49d39ae975c74bc0cac188341e507124a088d8cdb3d62c77645a7d435262d15a6cc604b4738861362a299

diff --git a/gui-libs/wf-config/metadata.xml b/gui-libs/wf-config/metadata.xml
new file mode 100644
index 00000000000..cf54d732b43
--- /dev/null
+++ b/gui-libs/wf-config/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+    <longdescription>
+        Library for creating and parsing the configuration
+        file for the WayfireWM while also allowing you to
+        make changes in the configuration and reload them on
+        the fly.
+    </longdescription>
+    <maintainer type="person">
+        <email>gentoo@aisha.cc</email>
+        <name>Aisha Tammy</name>
+    </maintainer>
+    <maintainer type="project">
+        <email>proxy-maint@gentoo.org</email>
+        <name>Proxy Maintainers</name>
+    </maintainer>
+</pkgmetadata>

diff --git a/gui-libs/wf-config/wf-config-0.4.0.ebuild b/gui-libs/wf-config/wf-config-0.4.0.ebuild
new file mode 100644
index 00000000000..328ec180742
--- /dev/null
+++ b/gui-libs/wf-config/wf-config-0.4.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="library for managing wayfire configuration files"
+HOMEPAGE="https://github.com/WayfireWM/wf-config"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
+else
+	SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="debug"
+
+DEPEND="
+	dev-libs/libevdev
+	dev-libs/libxml2
+	gui-libs/wlroots
+	media-libs/glm
+"
+
+RDEPEND="${DEPEND}"
+
+BDEPEND="
+	${DEPEND}
+	dev-libs/wayland-protocols
+	virtual/pkgconfig
+"
+
+src_compile () {
+	local emesonargs=""
+	if use debug; then
+		emesonargs+=(
+			"-Db_sanitize=address,undefined"
+		)
+	fi
+	meson_src_compile
+}

diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-9999.ebuild
new file mode 100644
index 00000000000..328ec180742
--- /dev/null
+++ b/gui-libs/wf-config/wf-config-9999.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="library for managing wayfire configuration files"
+HOMEPAGE="https://github.com/WayfireWM/wf-config"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
+else
+	SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="debug"
+
+DEPEND="
+	dev-libs/libevdev
+	dev-libs/libxml2
+	gui-libs/wlroots
+	media-libs/glm
+"
+
+RDEPEND="${DEPEND}"
+
+BDEPEND="
+	${DEPEND}
+	dev-libs/wayland-protocols
+	virtual/pkgconfig
+"
+
+src_compile () {
+	local emesonargs=""
+	if use debug; then
+		emesonargs+=(
+			"-Db_sanitize=address,undefined"
+		)
+	fi
+	meson_src_compile
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2020-06-07  0:12 Aaron Bauman
  0 siblings, 0 replies; 23+ messages in thread
From: Aaron Bauman @ 2020-06-07  0:12 UTC (permalink / raw
  To: gentoo-commits

commit:     7646a493e2cc3c12c6154539bb18aa2784291209
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sat Jun  6 20:01:34 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun Jun  7 00:12:14 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7646a493

gui-libs/wf-config: remove debug symbols

Closes: https://bugs.gentoo.org/727342

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 ...wf-config-0.4.0.ebuild => wf-config-0.4.0-r1.ebuild} | 17 +++--------------
 gui-libs/wf-config/wf-config-9999.ebuild                | 15 ++-------------
 2 files changed, 5 insertions(+), 27 deletions(-)

diff --git a/gui-libs/wf-config/wf-config-0.4.0.ebuild b/gui-libs/wf-config/wf-config-0.4.0-r1.ebuild
similarity index 61%
rename from gui-libs/wf-config/wf-config-0.4.0.ebuild
rename to gui-libs/wf-config/wf-config-0.4.0-r1.ebuild
index b52ae6b08e2..d415dd76e3d 100644
--- a/gui-libs/wf-config/wf-config-0.4.0.ebuild
+++ b/gui-libs/wf-config/wf-config-0.4.0-r1.ebuild
@@ -10,21 +10,20 @@ HOMEPAGE="https://github.com/WayfireWM/wf-config"
 
 if [[ ${PV} == 9999 ]]; then
 	inherit git-r3
-	EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
+	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
 else
-	SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/${PV}/${P}.tar.xz"
+	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/${PV}/${P}.tar.xz"
 	KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 
 LICENSE="MIT"
 SLOT="0"
-IUSE="debug"
 
 DEPEND="
 	dev-libs/libevdev
 	dev-libs/libxml2
+	~gui-libs/wlroots-0.10.1
 	media-libs/glm
-	<=gui-libs/wlroots-0.10.1
 "
 
 RDEPEND="${DEPEND}"
@@ -34,13 +33,3 @@ BDEPEND="
 	dev-libs/wayland-protocols
 	virtual/pkgconfig
 "
-
-src_configure () {
-	local emesonargs=""
-	if use debug; then
-		emesonargs+=(
-			"-Db_sanitize=address,undefined"
-		)
-	fi
-	meson_src_configure
-}

diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-9999.ebuild
index 3efe9aa8cc6..93cc2eacb2c 100644
--- a/gui-libs/wf-config/wf-config-9999.ebuild
+++ b/gui-libs/wf-config/wf-config-9999.ebuild
@@ -10,15 +10,14 @@ HOMEPAGE="https://github.com/WayfireWM/wf-config"
 
 if [[ ${PV} == 9999 ]]; then
 	inherit git-r3
-	EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
+	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
 else
-	SRC_URI="https://github.com/WayfireWM/${PN}/releases/download/${PV}/${P}.tar.xz"
+	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/${PV}/${P}.tar.xz"
 	KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 
 LICENSE="MIT"
 SLOT="0"
-IUSE="debug"
 
 DEPEND="
 	dev-libs/libevdev
@@ -34,13 +33,3 @@ BDEPEND="
 	dev-libs/wayland-protocols
 	virtual/pkgconfig
 "
-
-src_configure () {
-	local emesonargs=""
-	if use debug; then
-		emesonargs+=(
-			"-Db_sanitize=address,undefined"
-		)
-	fi
-	meson_src_configure
-}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2020-06-21 18:40 Andreas Sturmlechner
  0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2020-06-21 18:40 UTC (permalink / raw
  To: gentoo-commits

commit:     ebc011513d6c93440be3bfb146a1590d9027d038
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sun Jun 21 14:54:39 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Jun 21 18:39:50 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebc01151

gui-libs/wf-config: version bump to 0.4.1

fixes compiling with gcc-10.1.0

Closes: https://bugs.gentoo.org/728872
Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/16364
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 gui-libs/wf-config/Manifest               |  1 +
 gui-libs/wf-config/wf-config-0.4.1.ebuild | 35 +++++++++++++++++++++++++++++++
 2 files changed, 36 insertions(+)

diff --git a/gui-libs/wf-config/Manifest b/gui-libs/wf-config/Manifest
index d96518e9b6b..2ec7992bfdd 100644
--- a/gui-libs/wf-config/Manifest
+++ b/gui-libs/wf-config/Manifest
@@ -1 +1,2 @@
 DIST wf-config-0.4.0.tar.xz 64108 BLAKE2B 83999dd246e6b7a6c54bbbcdf7abf08767b31bd29e75cd41d9844c4b98c66fbe787b7d87ec433e2c5e860e476f4f621116aac16c7f3f56903ee1689c5d1bc6c9 SHA512 30358ada695012b9f4be835f2b2d032e0d8d52c3e9d49d39ae975c74bc0cac188341e507124a088d8cdb3d62c77645a7d435262d15a6cc604b4738861362a299
+DIST wf-config-0.4.1.tar.xz 64752 BLAKE2B ed873ee15b860690a3ac2d8623c0af933f2892c24ff6c9a10ec090bf8e7b2787970b71869c07d5e8281417ed59a4881cf3117ecb085a6d7a1eeb8fdac7375245 SHA512 99d11dfc04e80645cc29491c9ef913015a6ad6f49f351b041b277ecc2e24f9b47fc96a22ce031e51b577fe4b31df07c448d2fafb715e8fe5118e677ccbf9abe8

diff --git a/gui-libs/wf-config/wf-config-0.4.1.ebuild b/gui-libs/wf-config/wf-config-0.4.1.ebuild
new file mode 100644
index 00000000000..d415dd76e3d
--- /dev/null
+++ b/gui-libs/wf-config/wf-config-0.4.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2019-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="library for managing wayfire configuration files"
+HOMEPAGE="https://github.com/WayfireWM/wf-config"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
+else
+	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+DEPEND="
+	dev-libs/libevdev
+	dev-libs/libxml2
+	~gui-libs/wlroots-0.10.1
+	media-libs/glm
+"
+
+RDEPEND="${DEPEND}"
+
+BDEPEND="
+	${DEPEND}
+	dev-libs/wayland-protocols
+	virtual/pkgconfig
+"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2020-06-21 18:40 Andreas Sturmlechner
  0 siblings, 0 replies; 23+ messages in thread
From: Andreas Sturmlechner @ 2020-06-21 18:40 UTC (permalink / raw
  To: gentoo-commits

commit:     98f158cbff3eb6dba48cb65200a1025d9bf0f3aa
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sun Jun 21 14:59:58 2020 +0000
Commit:     Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Sun Jun 21 18:39:51 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98f158cb

gui-libs/wf-config: remove old version

Package-Manager: Portage-2.3.101, Repoman-2.3.22
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>

 gui-libs/wf-config/Manifest                  |  1 -
 gui-libs/wf-config/wf-config-0.4.0-r1.ebuild | 35 ----------------------------
 2 files changed, 36 deletions(-)

diff --git a/gui-libs/wf-config/Manifest b/gui-libs/wf-config/Manifest
index 2ec7992bfdd..b482e024a88 100644
--- a/gui-libs/wf-config/Manifest
+++ b/gui-libs/wf-config/Manifest
@@ -1,2 +1 @@
-DIST wf-config-0.4.0.tar.xz 64108 BLAKE2B 83999dd246e6b7a6c54bbbcdf7abf08767b31bd29e75cd41d9844c4b98c66fbe787b7d87ec433e2c5e860e476f4f621116aac16c7f3f56903ee1689c5d1bc6c9 SHA512 30358ada695012b9f4be835f2b2d032e0d8d52c3e9d49d39ae975c74bc0cac188341e507124a088d8cdb3d62c77645a7d435262d15a6cc604b4738861362a299
 DIST wf-config-0.4.1.tar.xz 64752 BLAKE2B ed873ee15b860690a3ac2d8623c0af933f2892c24ff6c9a10ec090bf8e7b2787970b71869c07d5e8281417ed59a4881cf3117ecb085a6d7a1eeb8fdac7375245 SHA512 99d11dfc04e80645cc29491c9ef913015a6ad6f49f351b041b277ecc2e24f9b47fc96a22ce031e51b577fe4b31df07c448d2fafb715e8fe5118e677ccbf9abe8

diff --git a/gui-libs/wf-config/wf-config-0.4.0-r1.ebuild b/gui-libs/wf-config/wf-config-0.4.0-r1.ebuild
deleted file mode 100644
index d415dd76e3d..00000000000
--- a/gui-libs/wf-config/wf-config-0.4.0-r1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="library for managing wayfire configuration files"
-HOMEPAGE="https://github.com/WayfireWM/wf-config"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
-else
-	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-DEPEND="
-	dev-libs/libevdev
-	dev-libs/libxml2
-	~gui-libs/wlroots-0.10.1
-	media-libs/glm
-"
-
-RDEPEND="${DEPEND}"
-
-BDEPEND="
-	${DEPEND}
-	dev-libs/wayland-protocols
-	virtual/pkgconfig
-"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2020-08-17  1:36 Aaron Bauman
  0 siblings, 0 replies; 23+ messages in thread
From: Aaron Bauman @ 2020-08-17  1:36 UTC (permalink / raw
  To: gentoo-commits

commit:     8ca2ea74ba9d96c0ed62a498c3d3d605db395438
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Aug  4 16:59:35 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Aug 17 01:36:06 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ca2ea74

gui-libs/wf-config: update to 0.5.0

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 gui-libs/wf-config/Manifest                                          | 1 +
 gui-libs/wf-config/{wf-config-9999.ebuild => wf-config-0.5.0.ebuild} | 3 +--
 gui-libs/wf-config/wf-config-9999.ebuild                             | 3 +--
 3 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/gui-libs/wf-config/Manifest b/gui-libs/wf-config/Manifest
index b482e024a88..f736b124b39 100644
--- a/gui-libs/wf-config/Manifest
+++ b/gui-libs/wf-config/Manifest
@@ -1 +1,2 @@
 DIST wf-config-0.4.1.tar.xz 64752 BLAKE2B ed873ee15b860690a3ac2d8623c0af933f2892c24ff6c9a10ec090bf8e7b2787970b71869c07d5e8281417ed59a4881cf3117ecb085a6d7a1eeb8fdac7375245 SHA512 99d11dfc04e80645cc29491c9ef913015a6ad6f49f351b041b277ecc2e24f9b47fc96a22ce031e51b577fe4b31df07c448d2fafb715e8fe5118e677ccbf9abe8
+DIST wf-config-0.5.0.tar.xz 64760 BLAKE2B c1939035820794828b356371c51dbd55a73a569e3a9dcf801b4aedf61c3c0131e47040a1b05e2a8cd30ecbb57f160f702b735437dfb49051a8a6a63d95201204 SHA512 b365884195cb7fc64a1ca1d74a2d12b56e1ef0f4dd49d298a9379455f2917f2c644de2b12f5068304ca404b112490e38fbfe3111aac31d301f02f23429df87c7

diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-0.5.0.ebuild
similarity index 94%
copy from gui-libs/wf-config/wf-config-9999.ebuild
copy to gui-libs/wf-config/wf-config-0.5.0.ebuild
index 93cc2eacb2c..b100b1d861f 100644
--- a/gui-libs/wf-config/wf-config-9999.ebuild
+++ b/gui-libs/wf-config/wf-config-0.5.0.ebuild
@@ -22,14 +22,13 @@ SLOT="0"
 DEPEND="
 	dev-libs/libevdev
 	dev-libs/libxml2
-	~gui-libs/wlroots-9999
+	>=gui-libs/wlroots-0.11.0
 	media-libs/glm
 "
 
 RDEPEND="${DEPEND}"
 
 BDEPEND="
-	${DEPEND}
 	dev-libs/wayland-protocols
 	virtual/pkgconfig
 "

diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-9999.ebuild
index 93cc2eacb2c..b100b1d861f 100644
--- a/gui-libs/wf-config/wf-config-9999.ebuild
+++ b/gui-libs/wf-config/wf-config-9999.ebuild
@@ -22,14 +22,13 @@ SLOT="0"
 DEPEND="
 	dev-libs/libevdev
 	dev-libs/libxml2
-	~gui-libs/wlroots-9999
+	>=gui-libs/wlroots-0.11.0
 	media-libs/glm
 "
 
 RDEPEND="${DEPEND}"
 
 BDEPEND="
-	${DEPEND}
 	dev-libs/wayland-protocols
 	virtual/pkgconfig
 "


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2020-11-09 16:38 Aaron Bauman
  0 siblings, 0 replies; 23+ messages in thread
From: Aaron Bauman @ 2020-11-09 16:38 UTC (permalink / raw
  To: gentoo-commits

commit:     f533699732c63d9f6ffae54706da257fdc413a81
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Mon Nov  9 16:37:10 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Nov  9 16:37:10 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5336997

gui-libs/wf-config: drop old

* Drop old at request of maintainer

Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 gui-libs/wf-config/Manifest               |  1 -
 gui-libs/wf-config/wf-config-0.4.1.ebuild | 35 -------------------------------
 2 files changed, 36 deletions(-)

diff --git a/gui-libs/wf-config/Manifest b/gui-libs/wf-config/Manifest
index f736b124b39..16290450f81 100644
--- a/gui-libs/wf-config/Manifest
+++ b/gui-libs/wf-config/Manifest
@@ -1,2 +1 @@
-DIST wf-config-0.4.1.tar.xz 64752 BLAKE2B ed873ee15b860690a3ac2d8623c0af933f2892c24ff6c9a10ec090bf8e7b2787970b71869c07d5e8281417ed59a4881cf3117ecb085a6d7a1eeb8fdac7375245 SHA512 99d11dfc04e80645cc29491c9ef913015a6ad6f49f351b041b277ecc2e24f9b47fc96a22ce031e51b577fe4b31df07c448d2fafb715e8fe5118e677ccbf9abe8
 DIST wf-config-0.5.0.tar.xz 64760 BLAKE2B c1939035820794828b356371c51dbd55a73a569e3a9dcf801b4aedf61c3c0131e47040a1b05e2a8cd30ecbb57f160f702b735437dfb49051a8a6a63d95201204 SHA512 b365884195cb7fc64a1ca1d74a2d12b56e1ef0f4dd49d298a9379455f2917f2c644de2b12f5068304ca404b112490e38fbfe3111aac31d301f02f23429df87c7

diff --git a/gui-libs/wf-config/wf-config-0.4.1.ebuild b/gui-libs/wf-config/wf-config-0.4.1.ebuild
deleted file mode 100644
index d415dd76e3d..00000000000
--- a/gui-libs/wf-config/wf-config-0.4.1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="library for managing wayfire configuration files"
-HOMEPAGE="https://github.com/WayfireWM/wf-config"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
-else
-	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-DEPEND="
-	dev-libs/libevdev
-	dev-libs/libxml2
-	~gui-libs/wlroots-0.10.1
-	media-libs/glm
-"
-
-RDEPEND="${DEPEND}"
-
-BDEPEND="
-	${DEPEND}
-	dev-libs/wayland-protocols
-	virtual/pkgconfig
-"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2020-11-13 21:04 Aaron Bauman
  0 siblings, 0 replies; 23+ messages in thread
From: Aaron Bauman @ 2020-11-13 21:04 UTC (permalink / raw
  To: gentoo-commits

commit:     671d556dc886ff65e17f05abe23f7b1e27b3854a
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Nov 10 15:32:27 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri Nov 13 21:04:12 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=671d556d

gui-libs/wf-config: version bump to 0.6.0

Package-Manager: Portage-3.0.8, Repoman-3.0.2
RepoMan-Options: --force
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 gui-libs/wf-config/Manifest                                          | 1 +
 gui-libs/wf-config/{wf-config-9999.ebuild => wf-config-0.6.0.ebuild} | 2 +-
 gui-libs/wf-config/wf-config-9999.ebuild                             | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/gui-libs/wf-config/Manifest b/gui-libs/wf-config/Manifest
index 16290450f81..56c8d4c22df 100644
--- a/gui-libs/wf-config/Manifest
+++ b/gui-libs/wf-config/Manifest
@@ -1 +1,2 @@
 DIST wf-config-0.5.0.tar.xz 64760 BLAKE2B c1939035820794828b356371c51dbd55a73a569e3a9dcf801b4aedf61c3c0131e47040a1b05e2a8cd30ecbb57f160f702b735437dfb49051a8a6a63d95201204 SHA512 b365884195cb7fc64a1ca1d74a2d12b56e1ef0f4dd49d298a9379455f2917f2c644de2b12f5068304ca404b112490e38fbfe3111aac31d301f02f23429df87c7
+DIST wf-config-0.6.0.tar.xz 65360 BLAKE2B 130a8752e311863642d68c44ef6696bb4b6795775d538f79b26130d611035ecc399757b1fdad0d8984fb79ea66d14aad2b8fe14fea5a42e6acf4de69132ba121 SHA512 f6c954fe0aee47074cab4c50bdafba82fe01f502eac3154da3ff94cf69b235ed7f7af10ad56a17dbca44b0b472c6b87e0513eae12a86d64cf10fdfc365242403

diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-0.6.0.ebuild
similarity index 95%
copy from gui-libs/wf-config/wf-config-9999.ebuild
copy to gui-libs/wf-config/wf-config-0.6.0.ebuild
index b100b1d861f..fdcbe17d4da 100644
--- a/gui-libs/wf-config/wf-config-9999.ebuild
+++ b/gui-libs/wf-config/wf-config-0.6.0.ebuild
@@ -22,7 +22,7 @@ SLOT="0"
 DEPEND="
 	dev-libs/libevdev
 	dev-libs/libxml2
-	>=gui-libs/wlroots-0.11.0
+	>=gui-libs/wlroots-0.12.0
 	media-libs/glm
 "
 

diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-9999.ebuild
index b100b1d861f..fdcbe17d4da 100644
--- a/gui-libs/wf-config/wf-config-9999.ebuild
+++ b/gui-libs/wf-config/wf-config-9999.ebuild
@@ -22,7 +22,7 @@ SLOT="0"
 DEPEND="
 	dev-libs/libevdev
 	dev-libs/libxml2
-	>=gui-libs/wlroots-0.11.0
+	>=gui-libs/wlroots-0.12.0
 	media-libs/glm
 "
 


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2020-11-18 16:25 Sam James
  0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2020-11-18 16:25 UTC (permalink / raw
  To: gentoo-commits

commit:     4ad9fbfb6dea4d37c7c16bb6dbd5234e3c400e27
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 18 16:25:10 2020 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed Nov 18 16:25:10 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ad9fbfb

gui-libs/wf-config: Stabilize 0.5.0 amd64, #752024

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

 gui-libs/wf-config/wf-config-0.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/wf-config/wf-config-0.5.0.ebuild b/gui-libs/wf-config/wf-config-0.5.0.ebuild
index b100b1d861f..f931c5c75f9 100644
--- a/gui-libs/wf-config/wf-config-0.5.0.ebuild
+++ b/gui-libs/wf-config/wf-config-0.5.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
 else
 	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="amd64 ~arm64 ~x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2021-02-10 13:36 Joonas Niilola
  0 siblings, 0 replies; 23+ messages in thread
From: Joonas Niilola @ 2021-02-10 13:36 UTC (permalink / raw
  To: gentoo-commits

commit:     b50c7fb9b7b172cb3c31c0edb0577272400b27cd
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sat Jan 30 03:05:36 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 13:35:59 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b50c7fb9

gui-libs/wf-config: version bump to 0.7.0

Package-Manager: Portage-3.0.14, Repoman-3.0.2
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 gui-libs/wf-config/Manifest                                          | 1 +
 gui-libs/wf-config/{wf-config-9999.ebuild => wf-config-0.7.0.ebuild} | 4 ++--
 gui-libs/wf-config/wf-config-9999.ebuild                             | 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/gui-libs/wf-config/Manifest b/gui-libs/wf-config/Manifest
index 56c8d4c22df..692518a937e 100644
--- a/gui-libs/wf-config/Manifest
+++ b/gui-libs/wf-config/Manifest
@@ -1,2 +1,3 @@
 DIST wf-config-0.5.0.tar.xz 64760 BLAKE2B c1939035820794828b356371c51dbd55a73a569e3a9dcf801b4aedf61c3c0131e47040a1b05e2a8cd30ecbb57f160f702b735437dfb49051a8a6a63d95201204 SHA512 b365884195cb7fc64a1ca1d74a2d12b56e1ef0f4dd49d298a9379455f2917f2c644de2b12f5068304ca404b112490e38fbfe3111aac31d301f02f23429df87c7
 DIST wf-config-0.6.0.tar.xz 65360 BLAKE2B 130a8752e311863642d68c44ef6696bb4b6795775d538f79b26130d611035ecc399757b1fdad0d8984fb79ea66d14aad2b8fe14fea5a42e6acf4de69132ba121 SHA512 f6c954fe0aee47074cab4c50bdafba82fe01f502eac3154da3ff94cf69b235ed7f7af10ad56a17dbca44b0b472c6b87e0513eae12a86d64cf10fdfc365242403
+DIST wf-config-0.7.0.tar.xz 73332 BLAKE2B 709a9358e564538b9db8536a5e24f2e7843498830e643ed005801624de9f71ad2661824de75f5b57541ece99d525a4689048c990df5ddc3fdcee6fc83c03e490 SHA512 ddad687b180e786060839cafe5623a0897ade061e6ad057dbe579d51595fbf2dc45674df3fb35070520dc51d7e02d4c9158d9cf8d4619ac49334014f6701f06d

diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-0.7.0.ebuild
similarity index 91%
copy from gui-libs/wf-config/wf-config-9999.ebuild
copy to gui-libs/wf-config/wf-config-0.7.0.ebuild
index fdcbe17d4da..26f5dea6385 100644
--- a/gui-libs/wf-config/wf-config-9999.ebuild
+++ b/gui-libs/wf-config/wf-config-0.7.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ if [[ ${PV} == 9999 ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
 else
-	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/${PV}/${P}.tar.xz"
+	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/v${PV}/${P}.tar.xz"
 	KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 

diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-9999.ebuild
index fdcbe17d4da..26f5dea6385 100644
--- a/gui-libs/wf-config/wf-config-9999.ebuild
+++ b/gui-libs/wf-config/wf-config-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2020 Gentoo Authors
+# Copyright 2019-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ if [[ ${PV} == 9999 ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
 else
-	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/${PV}/${P}.tar.xz"
+	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/v${PV}/${P}.tar.xz"
 	KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2021-06-18  6:27 Agostino Sarubbo
  0 siblings, 0 replies; 23+ messages in thread
From: Agostino Sarubbo @ 2021-06-18  6:27 UTC (permalink / raw
  To: gentoo-commits

commit:     852f1be7f8cee886d2425e140a6a61d963f061d6
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 18 06:26:22 2021 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jun 18 06:26:22 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=852f1be7

gui-libs/wf-config: amd64 stable wrt bug #771246

Package-Manager: Portage-3.0.18, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>

 gui-libs/wf-config/wf-config-0.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/wf-config/wf-config-0.7.1.ebuild b/gui-libs/wf-config/wf-config-0.7.1.ebuild
index 6b7ee7b7628..1df96261051 100644
--- a/gui-libs/wf-config/wf-config-0.7.1.ebuild
+++ b/gui-libs/wf-config/wf-config-0.7.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
 else
 	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="amd64 ~arm64 ~x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2021-09-06 21:08 Sam James
  0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2021-09-06 21:08 UTC (permalink / raw
  To: gentoo-commits

commit:     50ea127ddd7d5e4b71109880c9628db4934297f0
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  6 19:35:48 2021 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep  6 21:08:39 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50ea127d

gui-libs/wf-config: drop unnecessary dependency on gui-libs/wlroots

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

 .../wf-config/{wf-config-0.7.1.ebuild => wf-config-0.7.1-r1.ebuild}   | 4 ----
 gui-libs/wf-config/wf-config-9999.ebuild                              | 3 ---
 2 files changed, 7 deletions(-)

diff --git a/gui-libs/wf-config/wf-config-0.7.1.ebuild b/gui-libs/wf-config/wf-config-0.7.1-r1.ebuild
similarity index 91%
rename from gui-libs/wf-config/wf-config-0.7.1.ebuild
rename to gui-libs/wf-config/wf-config-0.7.1-r1.ebuild
index 1df96261051..086ba02a39a 100644
--- a/gui-libs/wf-config/wf-config-0.7.1.ebuild
+++ b/gui-libs/wf-config/wf-config-0.7.1-r1.ebuild
@@ -22,13 +22,9 @@ SLOT="0"
 DEPEND="
 	dev-libs/libevdev
 	dev-libs/libxml2
-	>=gui-libs/wlroots-0.13.0:=
-	<gui-libs/wlroots-0.14.0:=
 	media-libs/glm
 "
-
 RDEPEND="${DEPEND}"
-
 BDEPEND="
 	dev-libs/wayland-protocols
 	virtual/pkgconfig

diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-9999.ebuild
index 8f57443366f..4ef88e77cbb 100644
--- a/gui-libs/wf-config/wf-config-9999.ebuild
+++ b/gui-libs/wf-config/wf-config-9999.ebuild
@@ -22,12 +22,9 @@ SLOT="0"
 DEPEND="
 	dev-libs/libevdev
 	dev-libs/libxml2
-	~gui-libs/wlroots-9999:=
 	media-libs/glm
 "
-
 RDEPEND="${DEPEND}"
-
 BDEPEND="
 	dev-libs/wayland-protocols
 	virtual/pkgconfig


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2021-09-18 14:42 Yixun Lan
  0 siblings, 0 replies; 23+ messages in thread
From: Yixun Lan @ 2021-09-18 14:42 UTC (permalink / raw
  To: gentoo-commits

commit:     50ea7548333db87f9e3d3f7d47e087a69681e050
Author:     Stijn Tintel <stijn <AT> linux-ipv6 <DOT> be>
AuthorDate: Sat Sep 18 11:14:22 2021 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Sat Sep 18 14:39:22 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50ea7548

gui-libs/wf-config: keyword 0.7.1-r1 for ~riscv

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Stijn Tintel <stijn <AT> linux-ipv6.be>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 gui-libs/wf-config/wf-config-0.7.1-r1.ebuild | 2 +-
 gui-libs/wf-config/wf-config-9999.ebuild     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gui-libs/wf-config/wf-config-0.7.1-r1.ebuild b/gui-libs/wf-config/wf-config-0.7.1-r1.ebuild
index 086ba02a39a..c663a20684e 100644
--- a/gui-libs/wf-config/wf-config-0.7.1-r1.ebuild
+++ b/gui-libs/wf-config/wf-config-0.7.1-r1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
 else
 	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm64 ~x86"
+	KEYWORDS="amd64 ~arm64 ~riscv ~x86"
 fi
 
 LICENSE="MIT"

diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-9999.ebuild
index 4ef88e77cbb..7ceb2c95adb 100644
--- a/gui-libs/wf-config/wf-config-9999.ebuild
+++ b/gui-libs/wf-config/wf-config-9999.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
 else
 	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
 fi
 
 LICENSE="MIT"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2023-05-10 11:29 Sam James
  0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2023-05-10 11:29 UTC (permalink / raw
  To: gentoo-commits

commit:     b013435880cacc41af5199bce99d30ae3e1f9b28
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Wed May 10 11:15:15 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Wed May 10 11:29:41 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0134358

gui-libs/wf-config: fix automagic tests

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

 gui-libs/wf-config/wf-config-0.7.1-r1.ebuild | 13 ++++++++++++-
 gui-libs/wf-config/wf-config-9999.ebuild     | 13 ++++++++++++-
 2 files changed, 24 insertions(+), 2 deletions(-)

diff --git a/gui-libs/wf-config/wf-config-0.7.1-r1.ebuild b/gui-libs/wf-config/wf-config-0.7.1-r1.ebuild
index c663a20684e4..a223d4b9907c 100644
--- a/gui-libs/wf-config/wf-config-0.7.1-r1.ebuild
+++ b/gui-libs/wf-config/wf-config-0.7.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -18,6 +18,8 @@ fi
 
 LICENSE="MIT"
 SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
 
 DEPEND="
 	dev-libs/libevdev
@@ -28,4 +30,13 @@ RDEPEND="${DEPEND}"
 BDEPEND="
 	dev-libs/wayland-protocols
 	virtual/pkgconfig
+	test? ( dev-cpp/doctest )
 "
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature test tests)
+	)
+
+	meson_src_configure
+}

diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-9999.ebuild
index 7ceb2c95adb3..ae9b12db688b 100644
--- a/gui-libs/wf-config/wf-config-9999.ebuild
+++ b/gui-libs/wf-config/wf-config-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -18,6 +18,8 @@ fi
 
 LICENSE="MIT"
 SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
 
 DEPEND="
 	dev-libs/libevdev
@@ -28,4 +30,13 @@ RDEPEND="${DEPEND}"
 BDEPEND="
 	dev-libs/wayland-protocols
 	virtual/pkgconfig
+	test? ( dev-cpp/doctest )
 "
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature test tests)
+	)
+
+	meson_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2023-12-17 19:55 Arthur Zamarin
  0 siblings, 0 replies; 23+ messages in thread
From: Arthur Zamarin @ 2023-12-17 19:55 UTC (permalink / raw
  To: gentoo-commits

commit:     4dc2fe5bb19af441bac36e3cfb49aadebe579ee2
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Sat Nov 25 22:43:08 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Dec 17 19:55:17 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dc2fe5b

gui-libs/wf-config: add 0.8.0

Bug: https://bugs.gentoo.org/915795
Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 gui-libs/wf-config/Manifest                                         | 1 +
 .../wf-config/{wf-config-9999.ebuild => wf-config-0.8.0.ebuild}     | 6 ++++--
 gui-libs/wf-config/wf-config-9999.ebuild                            | 6 ++++--
 3 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/gui-libs/wf-config/Manifest b/gui-libs/wf-config/Manifest
index 15f9e410c096..1959ca230d3e 100644
--- a/gui-libs/wf-config/Manifest
+++ b/gui-libs/wf-config/Manifest
@@ -1 +1,2 @@
 DIST wf-config-0.7.1.tar.xz 39120 BLAKE2B b18048334df12b002391fe4a74529cb61df76a0678c9052f8ac91d777e8a48dae46b87680fb44630ebfb9a350dbac36b15bc81850341fa4cd6299c12f6fa057d SHA512 d535a09a3465a54a607df7b8764ee6818ab8b83536d68c85167b282b95a176636e4bf5cda6c0d1638c07721a1f4208203e9d41b83675038fb590a535314df719
+DIST wf-config-0.8.0.tar.xz 41200 BLAKE2B d56cd04c18c2cd8c0bac86493ad662244bde0e9cce1caf81d0fff34d9f2df2470c1aa8c95fead9e91dd5793d570b01dc6ef99b1986b8658b06ef93156a1526f8 SHA512 79cca2429a39ee81f853043698c57fc08025634926773253cff73fc564dcf203335b4b861d82b60a769bbab7b07be6a7e181c9ea29ad98ce930de20f9723893f

diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-0.8.0.ebuild
similarity index 87%
copy from gui-libs/wf-config/wf-config-9999.ebuild
copy to gui-libs/wf-config/wf-config-0.8.0.ebuild
index ae9b12db688b..4e970b7ae0aa 100644
--- a/gui-libs/wf-config/wf-config-9999.ebuild
+++ b/gui-libs/wf-config/wf-config-0.8.0.ebuild
@@ -1,7 +1,7 @@
 # Copyright 2019-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit meson
 
@@ -11,13 +11,14 @@ HOMEPAGE="https://github.com/WayfireWM/wf-config"
 if [[ ${PV} == 9999 ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
+	SLOT="0/9999"
 else
 	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/v${PV}/${P}.tar.xz"
 	KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+	SLOT="0/$(ver_cut 1-2)"
 fi
 
 LICENSE="MIT"
-SLOT="0"
 IUSE="test"
 RESTRICT="!test? ( test )"
 
@@ -36,6 +37,7 @@ BDEPEND="
 src_configure() {
 	local emesonargs=(
 		$(meson_feature test tests)
+		-Dlocale_test=false # requires de_DE locale to be installed
 	)
 
 	meson_src_configure

diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-9999.ebuild
index ae9b12db688b..4e970b7ae0aa 100644
--- a/gui-libs/wf-config/wf-config-9999.ebuild
+++ b/gui-libs/wf-config/wf-config-9999.ebuild
@@ -1,7 +1,7 @@
 # Copyright 2019-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit meson
 
@@ -11,13 +11,14 @@ HOMEPAGE="https://github.com/WayfireWM/wf-config"
 if [[ ${PV} == 9999 ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
+	SLOT="0/9999"
 else
 	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/v${PV}/${P}.tar.xz"
 	KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+	SLOT="0/$(ver_cut 1-2)"
 fi
 
 LICENSE="MIT"
-SLOT="0"
 IUSE="test"
 RESTRICT="!test? ( test )"
 
@@ -36,6 +37,7 @@ BDEPEND="
 src_configure() {
 	local emesonargs=(
 		$(meson_feature test tests)
+		-Dlocale_test=false # requires de_DE locale to be installed
 	)
 
 	meson_src_configure


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2024-01-19 13:58 Ben Kohler
  0 siblings, 0 replies; 23+ messages in thread
From: Ben Kohler @ 2024-01-19 13:58 UTC (permalink / raw
  To: gentoo-commits

commit:     7b1ae5bf3e573bfc0140694c3e6543f5806d7751
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 19 13:57:57 2024 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Fri Jan 19 13:57:57 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b1ae5bf

gui-libs/wf-config: copyright fix

Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 gui-libs/wf-config/wf-config-0.8.0.ebuild | 2 +-
 gui-libs/wf-config/wf-config-9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gui-libs/wf-config/wf-config-0.8.0.ebuild b/gui-libs/wf-config/wf-config-0.8.0.ebuild
index 1af2fe782930..7b926700d33b 100644
--- a/gui-libs/wf-config/wf-config-0.8.0.ebuild
+++ b/gui-libs/wf-config/wf-config-0.8.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2023 Gentoo Authors
+# Copyright 2019-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8

diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-9999.ebuild
index 4e970b7ae0aa..45a7d00fb05c 100644
--- a/gui-libs/wf-config/wf-config-9999.ebuild
+++ b/gui-libs/wf-config/wf-config-9999.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2019-2023 Gentoo Authors
+# Copyright 2019-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2024-01-21  5:04 Sam James
  0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2024-01-21  5:04 UTC (permalink / raw
  To: gentoo-commits

commit:     f26918f5f5b155a491109947ab90cae935f74166
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sun Jan 21 05:04:26 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sun Jan 21 05:04:26 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f26918f5

gui-libs/wf-config: Stabilize 0.8.0 amd64, #922537

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

 gui-libs/wf-config/wf-config-0.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/wf-config/wf-config-0.8.0.ebuild b/gui-libs/wf-config/wf-config-0.8.0.ebuild
index 7b926700d33b..18fc511a6c83 100644
--- a/gui-libs/wf-config/wf-config-0.8.0.ebuild
+++ b/gui-libs/wf-config/wf-config-0.8.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == 9999 ]]; then
 	SLOT="0/9999"
 else
 	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+	KEYWORDS="amd64 ~arm64 ~riscv ~x86"
 	SLOT="0/$(ver_cut 1-2)"
 fi
 


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2024-03-16 19:24 Arthur Zamarin
  0 siblings, 0 replies; 23+ messages in thread
From: Arthur Zamarin @ 2024-03-16 19:24 UTC (permalink / raw
  To: gentoo-commits

commit:     b028d744e65694a4f24440fcbf559bb0d3d98e65
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Thu Mar 14 11:35:56 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 16 19:18:10 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b028d744

gui-libs/wf-config: bump live subslot

Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

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

diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-9999.ebuild
index 45a7d00fb05c..d01859840af0 100644
--- a/gui-libs/wf-config/wf-config-9999.ebuild
+++ b/gui-libs/wf-config/wf-config-9999.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://github.com/WayfireWM/wf-config"
 if [[ ${PV} == 9999 ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
-	SLOT="0/9999"
+	SLOT="0/0.9"
 else
 	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/v${PV}/${P}.tar.xz"
 	KEYWORDS="~amd64 ~arm64 ~riscv ~x86"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2024-03-16 19:24 Arthur Zamarin
  0 siblings, 0 replies; 23+ messages in thread
From: Arthur Zamarin @ 2024-03-16 19:24 UTC (permalink / raw
  To: gentoo-commits

commit:     4652f3ad0abf7b039c765a2f98b107dd7005c0f0
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Thu Mar 14 11:49:05 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 16 19:18:10 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4652f3ad

gui-libs/wf-config: drop 0.7.1-r1

Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 gui-libs/wf-config/Manifest                  |  1 -
 gui-libs/wf-config/wf-config-0.7.1-r1.ebuild | 42 ----------------------------
 2 files changed, 43 deletions(-)

diff --git a/gui-libs/wf-config/Manifest b/gui-libs/wf-config/Manifest
index 1959ca230d3e..9dd8238bdd6b 100644
--- a/gui-libs/wf-config/Manifest
+++ b/gui-libs/wf-config/Manifest
@@ -1,2 +1 @@
-DIST wf-config-0.7.1.tar.xz 39120 BLAKE2B b18048334df12b002391fe4a74529cb61df76a0678c9052f8ac91d777e8a48dae46b87680fb44630ebfb9a350dbac36b15bc81850341fa4cd6299c12f6fa057d SHA512 d535a09a3465a54a607df7b8764ee6818ab8b83536d68c85167b282b95a176636e4bf5cda6c0d1638c07721a1f4208203e9d41b83675038fb590a535314df719
 DIST wf-config-0.8.0.tar.xz 41200 BLAKE2B d56cd04c18c2cd8c0bac86493ad662244bde0e9cce1caf81d0fff34d9f2df2470c1aa8c95fead9e91dd5793d570b01dc6ef99b1986b8658b06ef93156a1526f8 SHA512 79cca2429a39ee81f853043698c57fc08025634926773253cff73fc564dcf203335b4b861d82b60a769bbab7b07be6a7e181c9ea29ad98ce930de20f9723893f

diff --git a/gui-libs/wf-config/wf-config-0.7.1-r1.ebuild b/gui-libs/wf-config/wf-config-0.7.1-r1.ebuild
deleted file mode 100644
index a223d4b9907c..000000000000
--- a/gui-libs/wf-config/wf-config-0.7.1-r1.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 2019-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="library for managing wayfire configuration files"
-HOMEPAGE="https://github.com/WayfireWM/wf-config"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
-else
-	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm64 ~riscv ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-	dev-libs/libevdev
-	dev-libs/libxml2
-	media-libs/glm
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
-	dev-libs/wayland-protocols
-	virtual/pkgconfig
-	test? ( dev-cpp/doctest )
-"
-
-src_configure() {
-	local emesonargs=(
-		$(meson_feature test tests)
-	)
-
-	meson_src_configure
-}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2024-05-05 18:27 Viorel Munteanu
  0 siblings, 0 replies; 23+ messages in thread
From: Viorel Munteanu @ 2024-05-05 18:27 UTC (permalink / raw
  To: gentoo-commits

commit:     be659d5fdd7e6c6e05b666cc044c99a3f3c0bdbf
Author:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Sun May  5 18:10:12 2024 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sun May  5 18:27:29 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be659d5f

gui-libs/wf-config: add myself as a maintainer

Co-maintainers welcome.

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

 gui-libs/wf-config/metadata.xml | 23 +++++++++++++----------
 1 file changed, 13 insertions(+), 10 deletions(-)

diff --git a/gui-libs/wf-config/metadata.xml b/gui-libs/wf-config/metadata.xml
index c4c10f04c1a6..80284b387a44 100644
--- a/gui-libs/wf-config/metadata.xml
+++ b/gui-libs/wf-config/metadata.xml
@@ -1,14 +1,17 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-    <!-- maintainer-needed -->
-    <longdescription>
-        Library for creating and parsing the configuration
-        file for the WayfireWM while also allowing you to
-        make changes in the configuration and reload them on
-        the fly.
-    </longdescription>
-    <upstream>
-        <remote-id type="github">WayfireWM/wf-config</remote-id>
-    </upstream>
+	<maintainer type="person">
+		<email>ceamac@gentoo.org</email>
+		<name>Viorel Munteanu</name>
+	</maintainer>
+	<longdescription>
+		Library for creating and parsing the configuration
+		file for the WayfireWM while also allowing you to
+		make changes in the configuration and reload them on
+		the fly.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">WayfireWM/wf-config</remote-id>
+	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2024-08-24 17:06 Viorel Munteanu
  0 siblings, 0 replies; 23+ messages in thread
From: Viorel Munteanu @ 2024-08-24 17:06 UTC (permalink / raw
  To: gentoo-commits

commit:     549de1fb1268304a15ba9330cd3487cf3df05000
Author:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 24 16:36:23 2024 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat Aug 24 17:06:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=549de1fb

gui-libs/wf-config: add 0.9.0

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

 gui-libs/wf-config/Manifest               |  1 +
 gui-libs/wf-config/wf-config-0.9.0.ebuild | 44 +++++++++++++++++++++++++++++++
 2 files changed, 45 insertions(+)

diff --git a/gui-libs/wf-config/Manifest b/gui-libs/wf-config/Manifest
index 9dd8238bdd6b..46036984214c 100644
--- a/gui-libs/wf-config/Manifest
+++ b/gui-libs/wf-config/Manifest
@@ -1 +1,2 @@
 DIST wf-config-0.8.0.tar.xz 41200 BLAKE2B d56cd04c18c2cd8c0bac86493ad662244bde0e9cce1caf81d0fff34d9f2df2470c1aa8c95fead9e91dd5793d570b01dc6ef99b1986b8658b06ef93156a1526f8 SHA512 79cca2429a39ee81f853043698c57fc08025634926773253cff73fc564dcf203335b4b861d82b60a769bbab7b07be6a7e181c9ea29ad98ce930de20f9723893f
+DIST wf-config-0.9.0.tar.xz 42612 BLAKE2B 5f3b529f829f6fc6bdfe974633467707bba501eddca1a9d32f62c1d4ea6398e74ae9bc6f970de821e81fe7fbc4a26b77611587c637ab1961898084571b073ead SHA512 ac2ca69b7d96b9b145a4789f004705a2d7b323e6724e429a1e5a4544cd56828165a01f48a9863ceb92004c51c8f05729468f4a32c37545716f8d537d39e3236b

diff --git a/gui-libs/wf-config/wf-config-0.9.0.ebuild b/gui-libs/wf-config/wf-config-0.9.0.ebuild
new file mode 100644
index 000000000000..b90440cd81b9
--- /dev/null
+++ b/gui-libs/wf-config/wf-config-0.9.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2019-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="library for managing wayfire configuration files"
+HOMEPAGE="https://github.com/WayfireWM/wf-config"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
+	SLOT="0/0.10"
+else
+	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+	SLOT="0/$(ver_cut 1-2)"
+fi
+
+LICENSE="MIT"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+	dev-libs/libevdev
+	dev-libs/libxml2
+	media-libs/glm
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+	dev-libs/wayland-protocols
+	virtual/pkgconfig
+	test? ( dev-cpp/doctest )
+"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature test tests)
+		-Dlocale_test=false # requires de_DE locale to be installed
+	)
+
+	meson_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2024-08-24 17:06 Viorel Munteanu
  0 siblings, 0 replies; 23+ messages in thread
From: Viorel Munteanu @ 2024-08-24 17:06 UTC (permalink / raw
  To: gentoo-commits

commit:     c5a7d75dc2c4b3a243b63e92777a3d66a117a786
Author:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 24 16:51:20 2024 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat Aug 24 17:06:24 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5a7d75d

gui-libs/wf-config: sync live ebuild

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

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

diff --git a/gui-libs/wf-config/wf-config-9999.ebuild b/gui-libs/wf-config/wf-config-9999.ebuild
index d01859840af0..b90440cd81b9 100644
--- a/gui-libs/wf-config/wf-config-9999.ebuild
+++ b/gui-libs/wf-config/wf-config-9999.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://github.com/WayfireWM/wf-config"
 if [[ ${PV} == 9999 ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/WayfireWM/wf-config.git"
-	SLOT="0/0.9"
+	SLOT="0/0.10"
 else
 	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/v${PV}/${P}.tar.xz"
 	KEYWORDS="~amd64 ~arm64 ~riscv ~x86"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2024-10-24 10:23 Sam James
  0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2024-10-24 10:23 UTC (permalink / raw
  To: gentoo-commits

commit:     b999a4c9ca280871ee9c40736166db00841ea572
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 24 10:22:50 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Thu Oct 24 10:22:50 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b999a4c9

gui-libs/wf-config: Stabilize 0.9.0 amd64, #942047

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

 gui-libs/wf-config/wf-config-0.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/wf-config/wf-config-0.9.0.ebuild b/gui-libs/wf-config/wf-config-0.9.0.ebuild
index b90440cd81b9..802afab2caf8 100644
--- a/gui-libs/wf-config/wf-config-0.9.0.ebuild
+++ b/gui-libs/wf-config/wf-config-0.9.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == 9999 ]]; then
 	SLOT="0/0.10"
 else
 	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+	KEYWORDS="amd64 ~arm64 ~riscv ~x86"
 	SLOT="0/$(ver_cut 1-2)"
 fi
 


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/
@ 2024-10-25  5:46 Arthur Zamarin
  0 siblings, 0 replies; 23+ messages in thread
From: Arthur Zamarin @ 2024-10-25  5:46 UTC (permalink / raw
  To: gentoo-commits

commit:     2b2e77532e17a7f6efc9ee99287cd0df3937398f
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Oct 25 05:46:18 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Oct 25 05:46:18 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b2e7753

gui-libs/wf-config: Stabilize 0.9.0 arm64, #942065

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

 gui-libs/wf-config/wf-config-0.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/wf-config/wf-config-0.9.0.ebuild b/gui-libs/wf-config/wf-config-0.9.0.ebuild
index 802afab2caf8..7611f428a2a1 100644
--- a/gui-libs/wf-config/wf-config-0.9.0.ebuild
+++ b/gui-libs/wf-config/wf-config-0.9.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == 9999 ]]; then
 	SLOT="0/0.10"
 else
 	SRC_URI="https://github.com/WayfireWM/wf-config/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm64 ~riscv ~x86"
+	KEYWORDS="amd64 arm64 ~riscv ~x86"
 	SLOT="0/$(ver_cut 1-2)"
 fi
 


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

end of thread, other threads:[~2024-10-25  5:46 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-06-07  0:12 [gentoo-commits] repo/gentoo:master commit in: gui-libs/wf-config/ Aaron Bauman
  -- strict thread matches above, loose matches on Subject: below --
2024-10-25  5:46 Arthur Zamarin
2024-10-24 10:23 Sam James
2024-08-24 17:06 Viorel Munteanu
2024-08-24 17:06 Viorel Munteanu
2024-05-05 18:27 Viorel Munteanu
2024-03-16 19:24 Arthur Zamarin
2024-03-16 19:24 Arthur Zamarin
2024-01-21  5:04 Sam James
2024-01-19 13:58 Ben Kohler
2023-12-17 19:55 Arthur Zamarin
2023-05-10 11:29 Sam James
2021-09-18 14:42 Yixun Lan
2021-09-06 21:08 Sam James
2021-06-18  6:27 Agostino Sarubbo
2021-02-10 13:36 Joonas Niilola
2020-11-18 16:25 Sam James
2020-11-13 21:04 Aaron Bauman
2020-11-09 16:38 Aaron Bauman
2020-08-17  1:36 Aaron Bauman
2020-06-21 18:40 Andreas Sturmlechner
2020-06-21 18:40 Andreas Sturmlechner
2020-05-17 15:55 Aaron Bauman

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