public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wcm/
@ 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:     3713d3b1fb431a194478075fb408aa9301e44018
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Fri May 15 15:55:19 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun May 17 15:54:36 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3713d3b1

gui-apps/wcm: wayfire config manager

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

configuration parser and generator, which allows
you to reload the config on the fly without
needing to restart wayfire

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-apps/wcm/Manifest         |  1 +
 gui-apps/wcm/metadata.xml     | 17 ++++++++++++++++
 gui-apps/wcm/wcm-0.4.0.ebuild | 46 +++++++++++++++++++++++++++++++++++++++++++
 gui-apps/wcm/wcm-9999.ebuild  | 46 +++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 110 insertions(+)

diff --git a/gui-apps/wcm/Manifest b/gui-apps/wcm/Manifest
new file mode 100644
index 00000000000..ec440af0389
--- /dev/null
+++ b/gui-apps/wcm/Manifest
@@ -0,0 +1 @@
+DIST wcm-0.4.0.tar.gz 263841 BLAKE2B 28cdf87c479cc7a4a5a40f17a1ec26688bae6a0cd5699b51ad7db2adca89946d7687ae345a7a82d71464df413c956aceeb3db8195c5b40da5f32043821883c49 SHA512 4136ceba90c054165b4b0e7a79d78af827d8b8ddb8b54820bda0c17bbaa28eb74981ce94d8c386b91257ca023a34f76f121a003229365afe72d65323f0a1d2cd

diff --git a/gui-apps/wcm/metadata.xml b/gui-apps/wcm/metadata.xml
new file mode 100644
index 00000000000..692d4fe3fd2
--- /dev/null
+++ b/gui-apps/wcm/metadata.xml
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+    <longdescription>
+        GUI front end to the wayfire config manager.
+        Allows to reload changes on the fly without
+        needing to restart wayfire.
+    </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-apps/wcm/wcm-0.4.0.ebuild b/gui-apps/wcm/wcm-0.4.0.ebuild
new file mode 100644
index 00000000000..8178a3b0d88
--- /dev/null
+++ b/gui-apps/wcm/wcm-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="Wayfire Config Manager"
+HOMEPAGE="https://github.com/WayfireWM/wcm"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
+else
+	SRC_URI="https://github.com/WayfireWM/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="debug"
+
+DEPEND="
+	dev-libs/libevdev
+	dev-libs/libxml2
+	dev-cpp/gtkmm:3.0[wayland]
+	~gui-wm/wayfire-${PV}[debug=]
+"
+
+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-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-9999.ebuild
new file mode 100644
index 00000000000..8178a3b0d88
--- /dev/null
+++ b/gui-apps/wcm/wcm-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="Wayfire Config Manager"
+HOMEPAGE="https://github.com/WayfireWM/wcm"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
+else
+	SRC_URI="https://github.com/WayfireWM/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="debug"
+
+DEPEND="
+	dev-libs/libevdev
+	dev-libs/libxml2
+	dev-cpp/gtkmm:3.0[wayland]
+	~gui-wm/wayfire-${PV}[debug=]
+"
+
+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-apps/wcm/
@ 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:     3219011cd3b0b1fa85974a1b5563efe260406adc
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sat Jun  6 20:02:58 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun Jun  7 00:12:15 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3219011c

gui-apps/wcm: remove debug symbols

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-apps/wcm/{wcm-0.4.0.ebuild => wcm-0.4.0-r1.ebuild} | 17 +++--------------
 gui-apps/wcm/wcm-9999.ebuild                           | 17 +++--------------
 2 files changed, 6 insertions(+), 28 deletions(-)

diff --git a/gui-apps/wcm/wcm-0.4.0.ebuild b/gui-apps/wcm/wcm-0.4.0-r1.ebuild
similarity index 59%
rename from gui-apps/wcm/wcm-0.4.0.ebuild
rename to gui-apps/wcm/wcm-0.4.0-r1.ebuild
index b59aeb83170..54d7e4cee82 100644
--- a/gui-apps/wcm/wcm-0.4.0.ebuild
+++ b/gui-apps/wcm/wcm-0.4.0-r1.ebuild
@@ -10,21 +10,20 @@ HOMEPAGE="https://github.com/WayfireWM/wcm"
 
 if [[ ${PV} == 9999 ]]; then
 	inherit git-r3
-	EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
+	EGIT_REPO_URI="https://github.com/WayfireWM/wcm.git"
 else
-	SRC_URI="https://github.com/WayfireWM/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	SRC_URI="https://github.com/WayfireWM/wcm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 	KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 
 LICENSE="MIT"
 SLOT="0"
-IUSE="debug"
 
 DEPEND="
 	dev-libs/libevdev
 	dev-libs/libxml2
 	dev-cpp/gtkmm:3.0[wayland]
-	~gui-wm/wayfire-${PV}[debug=]
+	~gui-wm/wayfire-${PV}
 "
 
 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-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-9999.ebuild
index b59aeb83170..54d7e4cee82 100644
--- a/gui-apps/wcm/wcm-9999.ebuild
+++ b/gui-apps/wcm/wcm-9999.ebuild
@@ -10,21 +10,20 @@ HOMEPAGE="https://github.com/WayfireWM/wcm"
 
 if [[ ${PV} == 9999 ]]; then
 	inherit git-r3
-	EGIT_REPO_URI="https://github.com/WayfireWM/${PN}.git"
+	EGIT_REPO_URI="https://github.com/WayfireWM/wcm.git"
 else
-	SRC_URI="https://github.com/WayfireWM/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	SRC_URI="https://github.com/WayfireWM/wcm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 	KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 
 LICENSE="MIT"
 SLOT="0"
-IUSE="debug"
 
 DEPEND="
 	dev-libs/libevdev
 	dev-libs/libxml2
 	dev-cpp/gtkmm:3.0[wayland]
-	~gui-wm/wayfire-${PV}[debug=]
+	~gui-wm/wayfire-${PV}
 "
 
 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
-}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wcm/
@ 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:     101961ecf903c3ed8abbf3c77ad5c87fc2cd2239
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Wed Aug  5 11:21:42 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Aug 17 01:36:07 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=101961ec

gui-apps/wcm: version bump to 0.5.0

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
Closes: https://github.com/gentoo/gentoo/pull/17014
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

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

diff --git a/gui-apps/wcm/Manifest b/gui-apps/wcm/Manifest
index ec440af0389..f44a1542cd9 100644
--- a/gui-apps/wcm/Manifest
+++ b/gui-apps/wcm/Manifest
@@ -1 +1,2 @@
 DIST wcm-0.4.0.tar.gz 263841 BLAKE2B 28cdf87c479cc7a4a5a40f17a1ec26688bae6a0cd5699b51ad7db2adca89946d7687ae345a7a82d71464df413c956aceeb3db8195c5b40da5f32043821883c49 SHA512 4136ceba90c054165b4b0e7a79d78af827d8b8ddb8b54820bda0c17bbaa28eb74981ce94d8c386b91257ca023a34f76f121a003229365afe72d65323f0a1d2cd
+DIST wcm-0.5.0.tar.gz 253120 BLAKE2B 44f6e36425ed070f086fcea6b3374b8fd2f1e3420176098699ec735cb74a1de0d6919ca71e62ca61116005ad26e50562e0a927dce7990d87eb7559511fb371e3 SHA512 c06e97fa3b22f33bb7f05efda380484377596cce83b7874d42b6f3795f275faee2fdd2f2a6a6f24ebbb7e339a0dd3e526a3d02a2e1d4c45b34f76d627896bc53

diff --git a/gui-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-0.5.0.ebuild
similarity index 94%
copy from gui-apps/wcm/wcm-9999.ebuild
copy to gui-apps/wcm/wcm-0.5.0.ebuild
index 54d7e4cee82..37577270278 100644
--- a/gui-apps/wcm/wcm-9999.ebuild
+++ b/gui-apps/wcm/wcm-0.5.0.ebuild
@@ -23,13 +23,12 @@ DEPEND="
 	dev-libs/libevdev
 	dev-libs/libxml2
 	dev-cpp/gtkmm:3.0[wayland]
-	~gui-wm/wayfire-${PV}
+	>=gui-wm/wayfire-${PV}
 "
 
 RDEPEND="${DEPEND}"
 
 BDEPEND="
-	${DEPEND}
 	dev-libs/wayland-protocols
 	virtual/pkgconfig
 "

diff --git a/gui-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-9999.ebuild
index 54d7e4cee82..37577270278 100644
--- a/gui-apps/wcm/wcm-9999.ebuild
+++ b/gui-apps/wcm/wcm-9999.ebuild
@@ -23,13 +23,12 @@ DEPEND="
 	dev-libs/libevdev
 	dev-libs/libxml2
 	dev-cpp/gtkmm:3.0[wayland]
-	~gui-wm/wayfire-${PV}
+	>=gui-wm/wayfire-${PV}
 "
 
 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-apps/wcm/
@ 2020-11-09 18:05 Aaron Bauman
  0 siblings, 0 replies; 23+ messages in thread
From: Aaron Bauman @ 2020-11-09 18:05 UTC (permalink / raw
  To: gentoo-commits

commit:     010c6e7453241c91500ef44442598dde76e19d0b
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Mon Nov  9 18:04:22 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon Nov  9 18:05:19 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=010c6e74

gui-apps/wcm: drop old 0.4.x

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

 gui-apps/wcm/Manifest            |  1 -
 gui-apps/wcm/wcm-0.4.0-r1.ebuild | 35 -----------------------------------
 2 files changed, 36 deletions(-)

diff --git a/gui-apps/wcm/Manifest b/gui-apps/wcm/Manifest
index f44a1542cd9..075cc71bb06 100644
--- a/gui-apps/wcm/Manifest
+++ b/gui-apps/wcm/Manifest
@@ -1,2 +1 @@
-DIST wcm-0.4.0.tar.gz 263841 BLAKE2B 28cdf87c479cc7a4a5a40f17a1ec26688bae6a0cd5699b51ad7db2adca89946d7687ae345a7a82d71464df413c956aceeb3db8195c5b40da5f32043821883c49 SHA512 4136ceba90c054165b4b0e7a79d78af827d8b8ddb8b54820bda0c17bbaa28eb74981ce94d8c386b91257ca023a34f76f121a003229365afe72d65323f0a1d2cd
 DIST wcm-0.5.0.tar.gz 253120 BLAKE2B 44f6e36425ed070f086fcea6b3374b8fd2f1e3420176098699ec735cb74a1de0d6919ca71e62ca61116005ad26e50562e0a927dce7990d87eb7559511fb371e3 SHA512 c06e97fa3b22f33bb7f05efda380484377596cce83b7874d42b6f3795f275faee2fdd2f2a6a6f24ebbb7e339a0dd3e526a3d02a2e1d4c45b34f76d627896bc53

diff --git a/gui-apps/wcm/wcm-0.4.0-r1.ebuild b/gui-apps/wcm/wcm-0.4.0-r1.ebuild
deleted file mode 100644
index 54d7e4cee82..00000000000
--- a/gui-apps/wcm/wcm-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="Wayfire Config Manager"
-HOMEPAGE="https://github.com/WayfireWM/wcm"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/WayfireWM/wcm.git"
-else
-	SRC_URI="https://github.com/WayfireWM/wcm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-DEPEND="
-	dev-libs/libevdev
-	dev-libs/libxml2
-	dev-cpp/gtkmm:3.0[wayland]
-	~gui-wm/wayfire-${PV}
-"
-
-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-apps/wcm/
@ 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:     f5e1da738cebd024391cde3f91f9126670ad59f7
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Tue Nov 10 20:35:03 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=f5e1da73

gui-apps/wcm: version bump to 0.6.0

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

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

diff --git a/gui-apps/wcm/Manifest b/gui-apps/wcm/Manifest
index 075cc71bb06..4e304edcad7 100644
--- a/gui-apps/wcm/Manifest
+++ b/gui-apps/wcm/Manifest
@@ -1 +1,2 @@
 DIST wcm-0.5.0.tar.gz 253120 BLAKE2B 44f6e36425ed070f086fcea6b3374b8fd2f1e3420176098699ec735cb74a1de0d6919ca71e62ca61116005ad26e50562e0a927dce7990d87eb7559511fb371e3 SHA512 c06e97fa3b22f33bb7f05efda380484377596cce83b7874d42b6f3795f275faee2fdd2f2a6a6f24ebbb7e339a0dd3e526a3d02a2e1d4c45b34f76d627896bc53
+DIST wcm-0.6.0.tar.gz 308100 BLAKE2B 22fd0867b7efee153375844bd9b06fa7978a488494bf48c5da10ecf59ab9ff1ee49fc31e82de294d2a5bf2af5339ccd367916f3e66c9e173379679622c5d9c93 SHA512 a0ce6541ea1416585d3102a07f8ccc73d53345cdab472a9f1a839af652ccaa3b7c4ef26dbe3c24d3ff4bfb5be9a1c61a7922170dafa9a66082c0de90ebcba3d9

diff --git a/gui-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-0.6.0.ebuild
similarity index 95%
copy from gui-apps/wcm/wcm-9999.ebuild
copy to gui-apps/wcm/wcm-0.6.0.ebuild
index 37577270278..66c8ce7b244 100644
--- a/gui-apps/wcm/wcm-9999.ebuild
+++ b/gui-apps/wcm/wcm-0.6.0.ebuild
@@ -23,7 +23,7 @@ DEPEND="
 	dev-libs/libevdev
 	dev-libs/libxml2
 	dev-cpp/gtkmm:3.0[wayland]
-	>=gui-wm/wayfire-${PV}
+	>=gui-wm/wayfire-${PV%.*}
 "
 
 RDEPEND="${DEPEND}"

diff --git a/gui-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-9999.ebuild
index 37577270278..66c8ce7b244 100644
--- a/gui-apps/wcm/wcm-9999.ebuild
+++ b/gui-apps/wcm/wcm-9999.ebuild
@@ -23,7 +23,7 @@ DEPEND="
 	dev-libs/libevdev
 	dev-libs/libxml2
 	dev-cpp/gtkmm:3.0[wayland]
-	>=gui-wm/wayfire-${PV}
+	>=gui-wm/wayfire-${PV%.*}
 "
 
 RDEPEND="${DEPEND}"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wcm/
@ 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:     20c9c3dd4187f2d1d39ccbdc1cb2fdc98cb082b0
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=20c9c3dd

gui-apps/wcm: Stabilize 0.5.0 amd64, #752024

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

 gui-apps/wcm/wcm-0.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/wcm/wcm-0.5.0.ebuild b/gui-apps/wcm/wcm-0.5.0.ebuild
index 37577270278..f1467516605 100644
--- a/gui-apps/wcm/wcm-0.5.0.ebuild
+++ b/gui-apps/wcm/wcm-0.5.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/WayfireWM/wcm.git"
 else
 	SRC_URI="https://github.com/WayfireWM/wcm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-	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-apps/wcm/
@ 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:     ab4f0a0d542ea2b306ba93fb8900733598534e32
Author:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
AuthorDate: Wed Feb 10 13:35:36 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 13:36:01 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab4f0a0d

gui-apps/wcm: inherit xdg for xdg_icon_cache_update()

Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 gui-apps/wcm/wcm-0.7.0.ebuild | 2 +-
 gui-apps/wcm/wcm-9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gui-apps/wcm/wcm-0.7.0.ebuild b/gui-apps/wcm/wcm-0.7.0.ebuild
index 317718d415c..9f49e9cfad0 100644
--- a/gui-apps/wcm/wcm-0.7.0.ebuild
+++ b/gui-apps/wcm/wcm-0.7.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit meson
+inherit meson xdg
 
 DESCRIPTION="Wayfire Config Manager"
 HOMEPAGE="https://github.com/WayfireWM/wcm"

diff --git a/gui-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-9999.ebuild
index 317718d415c..9f49e9cfad0 100644
--- a/gui-apps/wcm/wcm-9999.ebuild
+++ b/gui-apps/wcm/wcm-9999.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit meson
+inherit meson xdg
 
 DESCRIPTION="Wayfire Config Manager"
 HOMEPAGE="https://github.com/WayfireWM/wcm"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wcm/
@ 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:     8a08b52ef55980a0d32af1e25de840674d77d568
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sat Jan 30 03:12:04 2021 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Feb 10 13:36:00 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a08b52e

gui-apps/wcm: 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-apps/wcm/Manifest                              | 1 +
 gui-apps/wcm/{wcm-9999.ebuild => wcm-0.7.0.ebuild} | 4 ++--
 gui-apps/wcm/wcm-9999.ebuild                       | 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/gui-apps/wcm/Manifest b/gui-apps/wcm/Manifest
index 4e304edcad7..5c721250b30 100644
--- a/gui-apps/wcm/Manifest
+++ b/gui-apps/wcm/Manifest
@@ -1,2 +1,3 @@
 DIST wcm-0.5.0.tar.gz 253120 BLAKE2B 44f6e36425ed070f086fcea6b3374b8fd2f1e3420176098699ec735cb74a1de0d6919ca71e62ca61116005ad26e50562e0a927dce7990d87eb7559511fb371e3 SHA512 c06e97fa3b22f33bb7f05efda380484377596cce83b7874d42b6f3795f275faee2fdd2f2a6a6f24ebbb7e339a0dd3e526a3d02a2e1d4c45b34f76d627896bc53
 DIST wcm-0.6.0.tar.gz 308100 BLAKE2B 22fd0867b7efee153375844bd9b06fa7978a488494bf48c5da10ecf59ab9ff1ee49fc31e82de294d2a5bf2af5339ccd367916f3e66c9e173379679622c5d9c93 SHA512 a0ce6541ea1416585d3102a07f8ccc73d53345cdab472a9f1a839af652ccaa3b7c4ef26dbe3c24d3ff4bfb5be9a1c61a7922170dafa9a66082c0de90ebcba3d9
+DIST wcm-0.7.0.tar.xz 263952 BLAKE2B 6e8761b75d5e37e49a1ba1e9b2a045c7350fa28642d26f1f66b0513fdb4130495f43bcae137184bf5bd2f0f2a0d5a81891459819d692a84b66b96c7d1440ee7e SHA512 190d8befafac69c27d99d10113160a1806a9dbd83f740216dd38e9cbe3c2638817b3471c9f46b60642e91abe02fbb72458b61f07bda9cd5fc5dbc7cdf880c6bb

diff --git a/gui-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-0.7.0.ebuild
similarity index 81%
copy from gui-apps/wcm/wcm-9999.ebuild
copy to gui-apps/wcm/wcm-0.7.0.ebuild
index 66c8ce7b244..317718d415c 100644
--- a/gui-apps/wcm/wcm-9999.ebuild
+++ b/gui-apps/wcm/wcm-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/wcm.git"
 else
-	SRC_URI="https://github.com/WayfireWM/wcm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	SRC_URI="https://github.com/WayfireWM/wcm/releases/download/v${PV}/${P}.tar.xz"
 	KEYWORDS="~amd64 ~arm64 ~x86"
 fi
 

diff --git a/gui-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-9999.ebuild
index 66c8ce7b244..317718d415c 100644
--- a/gui-apps/wcm/wcm-9999.ebuild
+++ b/gui-apps/wcm/wcm-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/wcm.git"
 else
-	SRC_URI="https://github.com/WayfireWM/wcm/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+	SRC_URI="https://github.com/WayfireWM/wcm/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-apps/wcm/
@ 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:     deaffdd0a1ffa76607cbb087741a214cc67857fe
Author:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Jun 18 06:26:10 2021 +0000
Commit:     Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Jun 18 06:26:10 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deaffdd0

gui-apps/wcm: 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-apps/wcm/wcm-0.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/wcm/wcm-0.7.0.ebuild b/gui-apps/wcm/wcm-0.7.0.ebuild
index 9f49e9cfad0..eae55541a77 100644
--- a/gui-apps/wcm/wcm-0.7.0.ebuild
+++ b/gui-apps/wcm/wcm-0.7.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/WayfireWM/wcm.git"
 else
 	SRC_URI="https://github.com/WayfireWM/wcm/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-apps/wcm/
@ 2023-02-13  0:39 Sam James
  0 siblings, 0 replies; 23+ messages in thread
From: Sam James @ 2023-02-13  0:39 UTC (permalink / raw
  To: gentoo-commits

commit:     9078d818be3d527cb5b8a9e2da3a97775484f457
Author:     Aisha Tammy <aisha <AT> bsd <DOT> ac>
AuthorDate: Sun Feb 12 12:47:20 2023 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Feb 13 00:39:03 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9078d818

gui-apps/wcm: add 0.7.5

Closes: https://bugs.gentoo.org/884055
Signed-off-by: Aisha Tammy <aisha <AT> bsd.ac>
Signed-off-by: Sam James <sam <AT> gentoo.org>

 gui-apps/wcm/Manifest                              | 1 +
 gui-apps/wcm/{wcm-9999.ebuild => wcm-0.7.5.ebuild} | 4 ++--
 gui-apps/wcm/wcm-9999.ebuild                       | 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/gui-apps/wcm/Manifest b/gui-apps/wcm/Manifest
index ae75d377f434..b31d3ba2088e 100644
--- a/gui-apps/wcm/Manifest
+++ b/gui-apps/wcm/Manifest
@@ -1 +1,2 @@
 DIST wcm-0.7.0.tar.xz 263952 BLAKE2B 6e8761b75d5e37e49a1ba1e9b2a045c7350fa28642d26f1f66b0513fdb4130495f43bcae137184bf5bd2f0f2a0d5a81891459819d692a84b66b96c7d1440ee7e SHA512 190d8befafac69c27d99d10113160a1806a9dbd83f740216dd38e9cbe3c2638817b3471c9f46b60642e91abe02fbb72458b61f07bda9cd5fc5dbc7cdf880c6bb
+DIST wcm-0.7.5.tar.xz 394096 BLAKE2B cf0fe0d1c1e1fa2660a28a61cd9d52ac6fa3c9cceab43788b75f4359e1495dd2ddd767cb1f030afec4dadc2b7ef3c260ba83566a70a794dee8d3bb34427754fd SHA512 d41def6cd002405c5fe81502cd19fb958399d25709e35fd5ffdfb862d6c5011f75c9ddf9110b40519a570457870ed2290c92c96f29a3be7db1e7802e122ebbe2

diff --git a/gui-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-0.7.5.ebuild
similarity index 93%
copy from gui-apps/wcm/wcm-9999.ebuild
copy to gui-apps/wcm/wcm-0.7.5.ebuild
index 9f49e9cfad09..d91c7aa57b64 100644
--- a/gui-apps/wcm/wcm-9999.ebuild
+++ b/gui-apps/wcm/wcm-0.7.5.ebuild
@@ -1,7 +1,7 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit meson xdg
 

diff --git a/gui-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-9999.ebuild
index 9f49e9cfad09..d91c7aa57b64 100644
--- a/gui-apps/wcm/wcm-9999.ebuild
+++ b/gui-apps/wcm/wcm-9999.ebuild
@@ -1,7 +1,7 @@
-# Copyright 2019-2021 Gentoo Authors
+# Copyright 2019-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit meson xdg
 


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wcm/
@ 2023-04-05  3:50 Arthur Zamarin
  0 siblings, 0 replies; 23+ messages in thread
From: Arthur Zamarin @ 2023-04-05  3:50 UTC (permalink / raw
  To: gentoo-commits

commit:     031d6c9a0bb9fc1adb208618f4aff987ea5afe3e
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Apr  5 03:50:37 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Apr  5 03:50:37 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=031d6c9a

gui-apps/wcm: Stabilize 0.7.5 amd64, #903797

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

 gui-apps/wcm/wcm-0.7.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/wcm/wcm-0.7.5.ebuild b/gui-apps/wcm/wcm-0.7.5.ebuild
index d91c7aa57b64..148198d43d91 100644
--- a/gui-apps/wcm/wcm-0.7.5.ebuild
+++ b/gui-apps/wcm/wcm-0.7.5.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == 9999 ]]; then
 	EGIT_REPO_URI="https://github.com/WayfireWM/wcm.git"
 else
 	SRC_URI="https://github.com/WayfireWM/wcm/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-apps/wcm/
@ 2024-01-19 13:55 Ben Kohler
  0 siblings, 0 replies; 23+ messages in thread
From: Ben Kohler @ 2024-01-19 13:55 UTC (permalink / raw
  To: gentoo-commits

commit:     c38f925beb2ccae88e0053c1645413d985fa9578
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Thu Dec 21 07:21:18 2023 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Fri Jan 19 13:54:58 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c38f925b

gui-apps/wcm: update live ebuild

Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 gui-apps/wcm/wcm-9999.ebuild | 32 +++++++++++++++++++++++++-------
 1 file changed, 25 insertions(+), 7 deletions(-)

diff --git a/gui-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-9999.ebuild
index d91c7aa57b64..e1cf56f1e071 100644
--- a/gui-apps/wcm/wcm-9999.ebuild
+++ b/gui-apps/wcm/wcm-9999.ebuild
@@ -11,24 +11,42 @@ HOMEPAGE="https://github.com/WayfireWM/wcm"
 if [[ ${PV} == 9999 ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/WayfireWM/wcm.git"
+	SLOT="0/9999"
 else
 	SRC_URI="https://github.com/WayfireWM/wcm/releases/download/v${PV}/${P}.tar.xz"
 	KEYWORDS="~amd64 ~arm64 ~x86"
+	SLOT="0/$(ver_cut 1-2)"
 fi
 
 LICENSE="MIT"
-SLOT="0"
 
-DEPEND="
+RESTRIC="test" # no tests
+
+CDEPEND="
 	dev-libs/libevdev
 	dev-libs/libxml2
+	dev-libs/wayland
 	dev-cpp/gtkmm:3.0[wayland]
-	>=gui-wm/wayfire-${PV%.*}
+	gui-apps/wf-shell:${SLOT}
+	gui-libs/wf-config:${SLOT}
+	gui-wm/wayfire:${SLOT}
+	x11-libs/libxkbcommon
 "
-
-RDEPEND="${DEPEND}"
-
-BDEPEND="
+RDEPEND="${CDEPEND}"
+DEPEND="
+	${CDEPEND}
 	dev-libs/wayland-protocols
+"
+BDEPEND="
+	dev-util/wayland-scanner
 	virtual/pkgconfig
 "
+
+src_configure() {
+	local emesonargs=(
+		-Dwf_shell=enabled
+		-Denable_wdisplays=true
+	)
+
+	meson_src_configure
+}


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

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

commit:     345967eeb0087b6a8583e9518401658acff1dd30
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Thu Dec 21 07:20:51 2023 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Fri Jan 19 13:54:58 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=345967ee

gui-apps/wcm: add 0.8.0

Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 gui-apps/wcm/Manifest         |  1 +
 gui-apps/wcm/wcm-0.8.0.ebuild | 52 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 53 insertions(+)

diff --git a/gui-apps/wcm/Manifest b/gui-apps/wcm/Manifest
index b31d3ba2088e..c66c8c7ff66d 100644
--- a/gui-apps/wcm/Manifest
+++ b/gui-apps/wcm/Manifest
@@ -1,2 +1,3 @@
 DIST wcm-0.7.0.tar.xz 263952 BLAKE2B 6e8761b75d5e37e49a1ba1e9b2a045c7350fa28642d26f1f66b0513fdb4130495f43bcae137184bf5bd2f0f2a0d5a81891459819d692a84b66b96c7d1440ee7e SHA512 190d8befafac69c27d99d10113160a1806a9dbd83f740216dd38e9cbe3c2638817b3471c9f46b60642e91abe02fbb72458b61f07bda9cd5fc5dbc7cdf880c6bb
 DIST wcm-0.7.5.tar.xz 394096 BLAKE2B cf0fe0d1c1e1fa2660a28a61cd9d52ac6fa3c9cceab43788b75f4359e1495dd2ddd767cb1f030afec4dadc2b7ef3c260ba83566a70a794dee8d3bb34427754fd SHA512 d41def6cd002405c5fe81502cd19fb958399d25709e35fd5ffdfb862d6c5011f75c9ddf9110b40519a570457870ed2290c92c96f29a3be7db1e7802e122ebbe2
+DIST wcm-0.8.0.tar.xz 430960 BLAKE2B 4d845edc631bda6b3fbee181d64897b366f4e73af7fef0e912f0a5dc9c7db4dc731319b6c25ce3e2206cc05c908ee402e01ed914cba4ccc63b0d52b9980b7414 SHA512 43d863cfd44dc10874f6ac0c511cd07d84721c53955315fb6eed54ba5f6ac9ebcdcf19e515639deafb333d8e45d95ce8e5222ce1d3344fc7d72f09b018bf517e

diff --git a/gui-apps/wcm/wcm-0.8.0.ebuild b/gui-apps/wcm/wcm-0.8.0.ebuild
new file mode 100644
index 000000000000..e1cf56f1e071
--- /dev/null
+++ b/gui-apps/wcm/wcm-0.8.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 2019-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson xdg
+
+DESCRIPTION="Wayfire Config Manager"
+HOMEPAGE="https://github.com/WayfireWM/wcm"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/WayfireWM/wcm.git"
+	SLOT="0/9999"
+else
+	SRC_URI="https://github.com/WayfireWM/wcm/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+	SLOT="0/$(ver_cut 1-2)"
+fi
+
+LICENSE="MIT"
+
+RESTRIC="test" # no tests
+
+CDEPEND="
+	dev-libs/libevdev
+	dev-libs/libxml2
+	dev-libs/wayland
+	dev-cpp/gtkmm:3.0[wayland]
+	gui-apps/wf-shell:${SLOT}
+	gui-libs/wf-config:${SLOT}
+	gui-wm/wayfire:${SLOT}
+	x11-libs/libxkbcommon
+"
+RDEPEND="${CDEPEND}"
+DEPEND="
+	${CDEPEND}
+	dev-libs/wayland-protocols
+"
+BDEPEND="
+	dev-util/wayland-scanner
+	virtual/pkgconfig
+"
+
+src_configure() {
+	local emesonargs=(
+		-Dwf_shell=enabled
+		-Denable_wdisplays=true
+	)
+
+	meson_src_configure
+}


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

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

commit:     b5d7111d0d026af85c194916585e0ae6b4f3de1a
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Thu Dec 21 12:58:55 2023 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Fri Jan 19 13:54:59 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5d7111d

gui-apps/wcm: drop 0.7.0

Signed-off-by: Alfred Wingate <parona <AT> protonmail.com>
Signed-off-by: Ben Kohler <bkohler <AT> gentoo.org>

 gui-apps/wcm/Manifest         |  1 -
 gui-apps/wcm/wcm-0.7.0.ebuild | 34 ----------------------------------
 2 files changed, 35 deletions(-)

diff --git a/gui-apps/wcm/Manifest b/gui-apps/wcm/Manifest
index c66c8c7ff66d..835c3c6d5818 100644
--- a/gui-apps/wcm/Manifest
+++ b/gui-apps/wcm/Manifest
@@ -1,3 +1,2 @@
-DIST wcm-0.7.0.tar.xz 263952 BLAKE2B 6e8761b75d5e37e49a1ba1e9b2a045c7350fa28642d26f1f66b0513fdb4130495f43bcae137184bf5bd2f0f2a0d5a81891459819d692a84b66b96c7d1440ee7e SHA512 190d8befafac69c27d99d10113160a1806a9dbd83f740216dd38e9cbe3c2638817b3471c9f46b60642e91abe02fbb72458b61f07bda9cd5fc5dbc7cdf880c6bb
 DIST wcm-0.7.5.tar.xz 394096 BLAKE2B cf0fe0d1c1e1fa2660a28a61cd9d52ac6fa3c9cceab43788b75f4359e1495dd2ddd767cb1f030afec4dadc2b7ef3c260ba83566a70a794dee8d3bb34427754fd SHA512 d41def6cd002405c5fe81502cd19fb958399d25709e35fd5ffdfb862d6c5011f75c9ddf9110b40519a570457870ed2290c92c96f29a3be7db1e7802e122ebbe2
 DIST wcm-0.8.0.tar.xz 430960 BLAKE2B 4d845edc631bda6b3fbee181d64897b366f4e73af7fef0e912f0a5dc9c7db4dc731319b6c25ce3e2206cc05c908ee402e01ed914cba4ccc63b0d52b9980b7414 SHA512 43d863cfd44dc10874f6ac0c511cd07d84721c53955315fb6eed54ba5f6ac9ebcdcf19e515639deafb333d8e45d95ce8e5222ce1d3344fc7d72f09b018bf517e

diff --git a/gui-apps/wcm/wcm-0.7.0.ebuild b/gui-apps/wcm/wcm-0.7.0.ebuild
deleted file mode 100644
index eae55541a77d..000000000000
--- a/gui-apps/wcm/wcm-0.7.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2019-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson xdg
-
-DESCRIPTION="Wayfire Config Manager"
-HOMEPAGE="https://github.com/WayfireWM/wcm"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/WayfireWM/wcm.git"
-else
-	SRC_URI="https://github.com/WayfireWM/wcm/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-DEPEND="
-	dev-libs/libevdev
-	dev-libs/libxml2
-	dev-cpp/gtkmm:3.0[wayland]
-	>=gui-wm/wayfire-${PV%.*}
-"
-
-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-apps/wcm/
@ 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:     b3c55cbed5b24b6e4082cf17a83222c03755b241
Author:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 19 13:56:11 2024 +0000
Commit:     Ben Kohler <bkohler <AT> gentoo <DOT> org>
CommitDate: Fri Jan 19 13:56:11 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3c55cbe

gui-apps/wcm: copyright fix

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

 gui-apps/wcm/wcm-0.8.0.ebuild | 2 +-
 gui-apps/wcm/wcm-9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gui-apps/wcm/wcm-0.8.0.ebuild b/gui-apps/wcm/wcm-0.8.0.ebuild
index e1cf56f1e071..20dc340547dc 100644
--- a/gui-apps/wcm/wcm-0.8.0.ebuild
+++ b/gui-apps/wcm/wcm-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-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-9999.ebuild
index e1cf56f1e071..20dc340547dc 100644
--- a/gui-apps/wcm/wcm-9999.ebuild
+++ b/gui-apps/wcm/wcm-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-apps/wcm/
@ 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:     3b1d2fd2b3dbccea019570a2b99a03426df721b4
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=3b1d2fd2

gui-apps/wcm: Stabilize 0.8.0 amd64, #922537

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

 gui-apps/wcm/wcm-0.8.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/wcm/wcm-0.8.0.ebuild b/gui-apps/wcm/wcm-0.8.0.ebuild
index 20dc340547dc..009b513cbda0 100644
--- a/gui-apps/wcm/wcm-0.8.0.ebuild
+++ b/gui-apps/wcm/wcm-0.8.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == 9999 ]]; then
 	SLOT="0/9999"
 else
 	SRC_URI="https://github.com/WayfireWM/wcm/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="amd64 ~arm64 ~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-apps/wcm/
@ 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:     973b3b148edc278adfda1fa473a033a1f420f5a1
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Thu Mar 14 11:53:19 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 16 19:18:11 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=973b3b14

gui-apps/wcm: update live ebuild

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

 gui-apps/wcm/wcm-9999.ebuild | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/gui-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-9999.ebuild
index 20dc340547dc..17a78aa75ac6 100644
--- a/gui-apps/wcm/wcm-9999.ebuild
+++ b/gui-apps/wcm/wcm-9999.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://github.com/WayfireWM/wcm"
 if [[ ${PV} == 9999 ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/WayfireWM/wcm.git"
-	SLOT="0/9999"
+	SLOT="0/0.9"
 else
 	SRC_URI="https://github.com/WayfireWM/wcm/releases/download/v${PV}/${P}.tar.xz"
 	KEYWORDS="~amd64 ~arm64 ~x86"
@@ -27,9 +27,9 @@ CDEPEND="
 	dev-libs/libxml2
 	dev-libs/wayland
 	dev-cpp/gtkmm:3.0[wayland]
-	gui-apps/wf-shell:${SLOT}
-	gui-libs/wf-config:${SLOT}
-	gui-wm/wayfire:${SLOT}
+	gui-apps/wf-shell
+	>=gui-libs/wf-config-0.6.0
+	gui-wm/wayfire
 	x11-libs/libxkbcommon
 "
 RDEPEND="${CDEPEND}"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wcm/
@ 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:     4432f49d20c562877f92bddef6f60121517792cf
Author:     Alfred Wingate <parona <AT> protonmail <DOT> com>
AuthorDate: Thu Mar 14 11:51:59 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 16 19:18:11 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4432f49d

gui-apps/wcm: drop 0.7.5

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

 gui-apps/wcm/Manifest         |  1 -
 gui-apps/wcm/wcm-0.7.5.ebuild | 34 ----------------------------------
 2 files changed, 35 deletions(-)

diff --git a/gui-apps/wcm/Manifest b/gui-apps/wcm/Manifest
index 835c3c6d5818..d76c7232f96b 100644
--- a/gui-apps/wcm/Manifest
+++ b/gui-apps/wcm/Manifest
@@ -1,2 +1 @@
-DIST wcm-0.7.5.tar.xz 394096 BLAKE2B cf0fe0d1c1e1fa2660a28a61cd9d52ac6fa3c9cceab43788b75f4359e1495dd2ddd767cb1f030afec4dadc2b7ef3c260ba83566a70a794dee8d3bb34427754fd SHA512 d41def6cd002405c5fe81502cd19fb958399d25709e35fd5ffdfb862d6c5011f75c9ddf9110b40519a570457870ed2290c92c96f29a3be7db1e7802e122ebbe2
 DIST wcm-0.8.0.tar.xz 430960 BLAKE2B 4d845edc631bda6b3fbee181d64897b366f4e73af7fef0e912f0a5dc9c7db4dc731319b6c25ce3e2206cc05c908ee402e01ed914cba4ccc63b0d52b9980b7414 SHA512 43d863cfd44dc10874f6ac0c511cd07d84721c53955315fb6eed54ba5f6ac9ebcdcf19e515639deafb333d8e45d95ce8e5222ce1d3344fc7d72f09b018bf517e

diff --git a/gui-apps/wcm/wcm-0.7.5.ebuild b/gui-apps/wcm/wcm-0.7.5.ebuild
deleted file mode 100644
index 148198d43d91..000000000000
--- a/gui-apps/wcm/wcm-0.7.5.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 2019-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson xdg
-
-DESCRIPTION="Wayfire Config Manager"
-HOMEPAGE="https://github.com/WayfireWM/wcm"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/WayfireWM/wcm.git"
-else
-	SRC_URI="https://github.com/WayfireWM/wcm/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-DEPEND="
-	dev-libs/libevdev
-	dev-libs/libxml2
-	dev-cpp/gtkmm:3.0[wayland]
-	>=gui-wm/wayfire-${PV%.*}
-"
-
-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-apps/wcm/
@ 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:     3c3bb1eec0699737ac3ae8778ccb937ba06d6d78
Author:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Sun May  5 18:13:23 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=3c3bb1ee

gui-apps/wcm: fix typo

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

 gui-apps/wcm/wcm-0.8.0.ebuild | 4 ++--
 gui-apps/wcm/wcm-9999.ebuild  | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/gui-apps/wcm/wcm-0.8.0.ebuild b/gui-apps/wcm/wcm-0.8.0.ebuild
index 009b513cbda0..355d019aabd3 100644
--- a/gui-apps/wcm/wcm-0.8.0.ebuild
+++ b/gui-apps/wcm/wcm-0.8.0.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://github.com/WayfireWM/wcm"
 if [[ ${PV} == 9999 ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/WayfireWM/wcm.git"
-	SLOT="0/9999"
+	SLOT="0/0.9"
 else
 	SRC_URI="https://github.com/WayfireWM/wcm/releases/download/v${PV}/${P}.tar.xz"
 	KEYWORDS="amd64 ~arm64 ~x86"
@@ -20,7 +20,7 @@ fi
 
 LICENSE="MIT"
 
-RESTRIC="test" # no tests
+RESTRICT="test" # no tests
 
 CDEPEND="
 	dev-libs/libevdev

diff --git a/gui-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-9999.ebuild
index 17a78aa75ac6..e25a807c30df 100644
--- a/gui-apps/wcm/wcm-9999.ebuild
+++ b/gui-apps/wcm/wcm-9999.ebuild
@@ -20,7 +20,7 @@ fi
 
 LICENSE="MIT"
 
-RESTRIC="test" # no tests
+RESTRICT="test" # no tests
 
 CDEPEND="
 	dev-libs/libevdev


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wcm/
@ 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:     683ad744ced3db2e02c272a8868b49614c7d971d
Author:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Sun May  5 18:13:11 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=683ad744

gui-apps/wcm: add myself as a maintainer

Co-maintainers welcome.

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

 gui-apps/wcm/metadata.xml | 21 ++++++++++++---------
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/gui-apps/wcm/metadata.xml b/gui-apps/wcm/metadata.xml
index 4aa1e1a30a9c..d70e09238f6b 100644
--- a/gui-apps/wcm/metadata.xml
+++ b/gui-apps/wcm/metadata.xml
@@ -1,13 +1,16 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-    <!-- maintainer-needed -->
-    <longdescription>
-        GUI front end to the wayfire config manager.
-        Allows to reload changes on the fly without
-        needing to restart wayfire.
-    </longdescription>
-    <upstream>
-        <remote-id type="github">WayfireWM/wcm</remote-id>
-    </upstream>
+	<maintainer type="person">
+		<email>ceamac@gentoo.org</email>
+		<name>Viorel Munteanu</name>
+	</maintainer>
+	<longdescription>
+		GUI front end to the wayfire config manager.
+		Allows to reload changes on the fly without
+		needing to restart wayfire.
+	</longdescription>
+	<upstream>
+		<remote-id type="github">WayfireWM/wcm</remote-id>
+	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wcm/
@ 2024-05-23 16:10 Matt Turner
  0 siblings, 0 replies; 23+ messages in thread
From: Matt Turner @ 2024-05-23 16:10 UTC (permalink / raw
  To: gentoo-commits

commit:     dc44ac769dee6a7df4e6fcca206bb2075bddb006
Author:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Thu May 23 16:04:15 2024 +0000
Commit:     Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Thu May 23 16:09:58 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc44ac76

gui-apps/wcm: Drop x86 keyword

Commit e312ad721e81 ("gui-wm/wayfire: add 0.8.1") dropped x86 keywords
from the new version.

Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>

 gui-apps/wcm/wcm-0.8.0.ebuild | 2 +-
 gui-apps/wcm/wcm-9999.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/gui-apps/wcm/wcm-0.8.0.ebuild b/gui-apps/wcm/wcm-0.8.0.ebuild
index 355d019aabd3..81b41754343f 100644
--- a/gui-apps/wcm/wcm-0.8.0.ebuild
+++ b/gui-apps/wcm/wcm-0.8.0.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == 9999 ]]; then
 	SLOT="0/0.9"
 else
 	SRC_URI="https://github.com/WayfireWM/wcm/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="amd64 ~arm64 ~x86"
+	KEYWORDS="amd64 ~arm64"
 	SLOT="0/$(ver_cut 1-2)"
 fi
 

diff --git a/gui-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-9999.ebuild
index e25a807c30df..d08911344293 100644
--- a/gui-apps/wcm/wcm-9999.ebuild
+++ b/gui-apps/wcm/wcm-9999.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} == 9999 ]]; then
 	SLOT="0/0.9"
 else
 	SRC_URI="https://github.com/WayfireWM/wcm/releases/download/v${PV}/${P}.tar.xz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
+	KEYWORDS="~amd64 ~arm64"
 	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-apps/wcm/
@ 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:     21484102e1d8130330031311dfdf753fd0901801
Author:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 24 16:37:11 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=21484102

gui-apps/wcm: add 0.9.0

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

 gui-apps/wcm/Manifest         |  1 +
 gui-apps/wcm/wcm-0.9.0.ebuild | 64 +++++++++++++++++++++++++++++++++++++++++++
 2 files changed, 65 insertions(+)

diff --git a/gui-apps/wcm/Manifest b/gui-apps/wcm/Manifest
index d76c7232f96b..4f71bfdfe177 100644
--- a/gui-apps/wcm/Manifest
+++ b/gui-apps/wcm/Manifest
@@ -1 +1,2 @@
 DIST wcm-0.8.0.tar.xz 430960 BLAKE2B 4d845edc631bda6b3fbee181d64897b366f4e73af7fef0e912f0a5dc9c7db4dc731319b6c25ce3e2206cc05c908ee402e01ed914cba4ccc63b0d52b9980b7414 SHA512 43d863cfd44dc10874f6ac0c511cd07d84721c53955315fb6eed54ba5f6ac9ebcdcf19e515639deafb333d8e45d95ce8e5222ce1d3344fc7d72f09b018bf517e
+DIST wcm-0.9.0.tar.xz 434076 BLAKE2B 7f068dda1c256d930db57d8cd299652416c5a2357742e1cc3adddab98b143ff33219dcde7c94f951d456d8a4047ce606fd95ddf1a9b4b33f8e1de8997b67aeb5 SHA512 f6c240c38adcf6c464df2ba07f2cbaeecabaf16fcf6c92fa064e30989d9d9476422e2d58bbdc14c0b2232839b517ee2938cc795200e3cb1549c170c87df8050c

diff --git a/gui-apps/wcm/wcm-0.9.0.ebuild b/gui-apps/wcm/wcm-0.9.0.ebuild
new file mode 100644
index 000000000000..a2161dc88469
--- /dev/null
+++ b/gui-apps/wcm/wcm-0.9.0.ebuild
@@ -0,0 +1,64 @@
+# Copyright 2019-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson xdg
+
+DESCRIPTION="Wayfire Config Manager"
+HOMEPAGE="https://github.com/WayfireWM/wcm"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/WayfireWM/wcm.git"
+	SLOT="0/0.10"
+else
+	SRC_URI="https://github.com/WayfireWM/wcm/releases/download/v${PV}/${P}.tar.xz"
+	KEYWORDS="~amd64 ~arm64"
+	SLOT="0/$(ver_cut 1-2)"
+fi
+
+LICENSE="MIT"
+
+RESTRICT="test" # no tests
+
+COMMON_DEPEND="
+	dev-cpp/glibmm:2
+	dev-cpp/gtkmm:3.0[wayland]
+	dev-libs/glib:2
+	dev-libs/libevdev
+	dev-libs/libsigc++:2
+	dev-libs/libxml2
+	dev-libs/wayland
+	gui-apps/wf-shell:${SLOT}
+	gui-libs/wf-config:${SLOT}
+	gui-wm/wayfire:${SLOT}
+	media-libs/libepoxy
+	x11-libs/cairo
+	x11-libs/gtk+:3
+	x11-libs/libxkbcommon
+"
+RDEPEND="${COMMON_DEPEND}"
+DEPEND="
+	${COMMON_DEPEND}
+	dev-libs/wayland-protocols
+"
+BDEPEND="
+	dev-util/wayland-scanner
+	virtual/pkgconfig
+"
+
+src_prepare() {
+	default
+
+	sed 's/DestkopSettings/DesktopSettings/' -i wayfire-config-manager.desktop
+}
+
+src_configure() {
+	local emesonargs=(
+		-Dwf_shell=enabled
+		-Denable_wdisplays=true
+	)
+
+	meson_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/wcm/
@ 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:     2ca8e6db7d6b31e91bf76cd0df36cea2c11229da
Author:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 24 16:53:24 2024 +0000
Commit:     Viorel Munteanu <ceamac <AT> gentoo <DOT> org>
CommitDate: Sat Aug 24 17:06:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ca8e6db

gui-apps/wcm: sync live ebuild

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

 gui-apps/wcm/wcm-9999.ebuild | 28 ++++++++++++++++++++--------
 1 file changed, 20 insertions(+), 8 deletions(-)

diff --git a/gui-apps/wcm/wcm-9999.ebuild b/gui-apps/wcm/wcm-9999.ebuild
index d08911344293..a2161dc88469 100644
--- a/gui-apps/wcm/wcm-9999.ebuild
+++ b/gui-apps/wcm/wcm-9999.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://github.com/WayfireWM/wcm"
 if [[ ${PV} == 9999 ]]; then
 	inherit git-r3
 	EGIT_REPO_URI="https://github.com/WayfireWM/wcm.git"
-	SLOT="0/0.9"
+	SLOT="0/0.10"
 else
 	SRC_URI="https://github.com/WayfireWM/wcm/releases/download/v${PV}/${P}.tar.xz"
 	KEYWORDS="~amd64 ~arm64"
@@ -22,19 +22,25 @@ LICENSE="MIT"
 
 RESTRICT="test" # no tests
 
-CDEPEND="
+COMMON_DEPEND="
+	dev-cpp/glibmm:2
+	dev-cpp/gtkmm:3.0[wayland]
+	dev-libs/glib:2
 	dev-libs/libevdev
+	dev-libs/libsigc++:2
 	dev-libs/libxml2
 	dev-libs/wayland
-	dev-cpp/gtkmm:3.0[wayland]
-	gui-apps/wf-shell
-	>=gui-libs/wf-config-0.6.0
-	gui-wm/wayfire
+	gui-apps/wf-shell:${SLOT}
+	gui-libs/wf-config:${SLOT}
+	gui-wm/wayfire:${SLOT}
+	media-libs/libepoxy
+	x11-libs/cairo
+	x11-libs/gtk+:3
 	x11-libs/libxkbcommon
 "
-RDEPEND="${CDEPEND}"
+RDEPEND="${COMMON_DEPEND}"
 DEPEND="
-	${CDEPEND}
+	${COMMON_DEPEND}
 	dev-libs/wayland-protocols
 "
 BDEPEND="
@@ -42,6 +48,12 @@ BDEPEND="
 	virtual/pkgconfig
 "
 
+src_prepare() {
+	default
+
+	sed 's/DestkopSettings/DesktopSettings/' -i wayfire-config-manager.desktop
+}
+
 src_configure() {
 	local emesonargs=(
 		-Dwf_shell=enabled


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

end of thread, other threads:[~2024-08-24 17:06 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-19 13:55 [gentoo-commits] repo/gentoo:master commit in: gui-apps/wcm/ Ben Kohler
  -- strict thread matches above, loose matches on Subject: below --
2024-08-24 17:06 Viorel Munteanu
2024-08-24 17:06 Viorel Munteanu
2024-05-23 16:10 Matt Turner
2024-05-05 18:27 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
2024-01-19 13:55 Ben Kohler
2024-01-19 13:55 Ben Kohler
2023-04-05  3:50 Arthur Zamarin
2023-02-13  0:39 Sam James
2021-06-18  6:27 Agostino Sarubbo
2021-02-10 13:36 Joonas Niilola
2021-02-10 13:36 Joonas Niilola
2020-11-18 16:25 Sam James
2020-11-13 21:04 Aaron Bauman
2020-11-09 18:05 Aaron Bauman
2020-08-17  1:36 Aaron Bauman
2020-06-07  0:12 Aaron Bauman
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