public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2020-05-18 21:38 Aaron Bauman
  0 siblings, 0 replies; 26+ messages in thread
From: Aaron Bauman @ 2020-05-18 21:38 UTC (permalink / raw
  To: gentoo-commits

commit:     c6bbd5cfd19942ce6027b04ed10d9345ddfbc432
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Mon May 18 11:51:29 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon May 18 21:37:25 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6bbd5cf

gui-apps/kanshi: autorandr for wayland clients

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

kanshi allows you to define output profiles that
are automatically enabled and disabled on hotplug.
For instance, this can be used to turn a laptop's
internal screen off when docked.

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

 gui-apps/kanshi/Manifest            |  1 +
 gui-apps/kanshi/kanshi-1.1.0.ebuild | 43 +++++++++++++++++++++++++++++++++++++
 gui-apps/kanshi/kanshi-9999.ebuild  | 43 +++++++++++++++++++++++++++++++++++++
 gui-apps/kanshi/metadata.xml        | 13 +++++++++++
 4 files changed, 100 insertions(+)

diff --git a/gui-apps/kanshi/Manifest b/gui-apps/kanshi/Manifest
new file mode 100644
index 00000000000..8c019657616
--- /dev/null
+++ b/gui-apps/kanshi/Manifest
@@ -0,0 +1 @@
+DIST kanshi-1.1.0.tar.gz 15884 BLAKE2B 1085e9d8f3ff53f78cb248941269713fd7ea38c60ad0e9816acb902f171b6f945af521a3835fc9db479620e6031483f6dbab5cfc507872dcabdfbcf9d6711269 SHA512 6582bae7b73ad13cad83e4d537c7c870699a72bf6993becaafa47a3dd70439a3c626ffff4874c8f737b32b62ad7512772c2c3bf54ac2cb74879213bd40b8d7a1

diff --git a/gui-apps/kanshi/kanshi-1.1.0.ebuild b/gui-apps/kanshi/kanshi-1.1.0.ebuild
new file mode 100644
index 00000000000..221a5f5f59e
--- /dev/null
+++ b/gui-apps/kanshi/kanshi-1.1.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="dynamic display configuration (autorandr for wayland)"
+HOMEPAGE="https://github.com/emersion/kanshi"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/emersion/kanshi"
+else
+	SRC_URI="https://github.com/emersion/kanshi/releases/download/v${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+man"
+
+RDEPEND="
+	dev-libs/wayland
+"
+BDEPEND="
+	${RDEPEND}
+	virtual/pkgconfig
+	dev-libs/wayland-protocols
+"
+
+if [[ ${PV} == 9999 ]]; then
+	BDEPEND+="man? ( ~app-text/scdoc-9999 )"
+else
+	BDEPEND+="man? ( >=app-text/scdoc-1.9.3 )"
+fi
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature man man-pages)
+	)
+	meson_src_configure
+}

diff --git a/gui-apps/kanshi/kanshi-9999.ebuild b/gui-apps/kanshi/kanshi-9999.ebuild
new file mode 100644
index 00000000000..221a5f5f59e
--- /dev/null
+++ b/gui-apps/kanshi/kanshi-9999.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit meson
+
+DESCRIPTION="dynamic display configuration (autorandr for wayland)"
+HOMEPAGE="https://github.com/emersion/kanshi"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/emersion/kanshi"
+else
+	SRC_URI="https://github.com/emersion/kanshi/releases/download/v${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+man"
+
+RDEPEND="
+	dev-libs/wayland
+"
+BDEPEND="
+	${RDEPEND}
+	virtual/pkgconfig
+	dev-libs/wayland-protocols
+"
+
+if [[ ${PV} == 9999 ]]; then
+	BDEPEND+="man? ( ~app-text/scdoc-9999 )"
+else
+	BDEPEND+="man? ( >=app-text/scdoc-1.9.3 )"
+fi
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature man man-pages)
+	)
+	meson_src_configure
+}

diff --git a/gui-apps/kanshi/metadata.xml b/gui-apps/kanshi/metadata.xml
new file mode 100644
index 00000000000..21d7750ccd0
--- /dev/null
+++ b/gui-apps/kanshi/metadata.xml
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+    <longdescription>
+        kanshi allows you to define output profiles that
+        are automatically enabled and disabled on hotplug.
+        For instance, this can be used to turn a laptop's
+        internal screen off when docked.
+    </longdescription>
+    <use>
+        <flag name="man">build and install man pages</flag>
+    </use>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2020-05-18 21:38 Aaron Bauman
  0 siblings, 0 replies; 26+ messages in thread
From: Aaron Bauman @ 2020-05-18 21:38 UTC (permalink / raw
  To: gentoo-commits

commit:     ccc81c68a4aedf46895f7693c81ac2cc28fd8f33
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Mon May 18 21:37:04 2020 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Mon May 18 21:37:26 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccc81c68

gui-apps/kanshi: update metadata

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

 gui-apps/kanshi/metadata.xml | 27 ++++++++++++++++++---------
 1 file changed, 18 insertions(+), 9 deletions(-)

diff --git a/gui-apps/kanshi/metadata.xml b/gui-apps/kanshi/metadata.xml
index 21d7750ccd0..170a33a029b 100644
--- a/gui-apps/kanshi/metadata.xml
+++ b/gui-apps/kanshi/metadata.xml
@@ -1,13 +1,22 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-    <longdescription>
-        kanshi allows you to define output profiles that
-        are automatically enabled and disabled on hotplug.
-        For instance, this can be used to turn a laptop's
-        internal screen off when docked.
-    </longdescription>
-    <use>
-        <flag name="man">build and install man pages</flag>
-    </use>
+	<maintainer type="person">
+		<email>bman@gentoo.org</email>
+		<name>Aaron Bauman</name>
+	</maintainer>
+	<maintainer type="person">
+		<email>gentoo@aisha.cc</email>
+		<name>Aisha Tammy</name>
+		<description>Proxy-maintainer, assign bugs</description>
+	</maintainer>
+	<longdescription>
+		kanshi allows you to define output profiles that are
+		automatically enabled and disabled on hotplug.
+		For instance, this can be used to turn a laptop's
+		internal screen off when docked.
+	</longdescription>
+	<use>
+		<flag name="man">build and install man pages</flag>
+	</use>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2020-12-28  2:16 Jonas Stein
  0 siblings, 0 replies; 26+ messages in thread
From: Jonas Stein @ 2020-12-28  2:16 UTC (permalink / raw
  To: gentoo-commits

commit:     fef29425cb8d1026895610f925452b9b532d2689
Author:     Jonas Stein <jstein <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 28 02:15:17 2020 +0000
Commit:     Jonas Stein <jstein <AT> gentoo <DOT> org>
CommitDate: Mon Dec 28 02:15:17 2020 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fef29425

gui-apps/kanshi: metadata QA Fix

remove obsolete description

Package-Manager: Portage-3.0.12, Repoman-3.0.2
Signed-off-by: Jonas Stein <jstein <AT> gentoo.org>

 gui-apps/kanshi/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/gui-apps/kanshi/metadata.xml b/gui-apps/kanshi/metadata.xml
index 170a33a029b..969b897e31a 100644
--- a/gui-apps/kanshi/metadata.xml
+++ b/gui-apps/kanshi/metadata.xml
@@ -8,7 +8,6 @@
 	<maintainer type="person">
 		<email>gentoo@aisha.cc</email>
 		<name>Aisha Tammy</name>
-		<description>Proxy-maintainer, assign bugs</description>
 	</maintainer>
 	<longdescription>
 		kanshi allows you to define output profiles that are


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2021-02-07  1:41 Aaron Bauman
  0 siblings, 0 replies; 26+ messages in thread
From: Aaron Bauman @ 2021-02-07  1:41 UTC (permalink / raw
  To: gentoo-commits

commit:     75a2c2f6e42a50e705fcdb5d630207e68237be05
Author:     Aaron Bauman <bman <AT> gentoo <DOT> org>
AuthorDate: Sun Feb  7 01:40:49 2021 +0000
Commit:     Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Sun Feb  7 01:40:49 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75a2c2f6

gui-apps/kanshi: disable Werror during compilation

Closes: https://bugs.gentoo.org/750710
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>

 gui-apps/kanshi/kanshi-1.1.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gui-apps/kanshi/kanshi-1.1.0.ebuild b/gui-apps/kanshi/kanshi-1.1.0.ebuild
index 221a5f5f59e..f24c1c7c59d 100644
--- a/gui-apps/kanshi/kanshi-1.1.0.ebuild
+++ b/gui-apps/kanshi/kanshi-1.1.0.ebuild
@@ -38,6 +38,7 @@ fi
 src_configure() {
 	local emesonargs=(
 		$(meson_feature man man-pages)
+		"-Dwerror=false"
 	)
 	meson_src_configure
 }


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2022-05-17  5:59 Sam James
  0 siblings, 0 replies; 26+ messages in thread
From: Sam James @ 2022-05-17  5:59 UTC (permalink / raw
  To: gentoo-commits

commit:     219272981bd837cf678104b1c1891a27c18df7ad
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Tue May 17 05:53:25 2022 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Tue May 17 05:53:25 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21927298

gui-apps/kanshi: [QA] drop implicit -Dwerror=false for meson ebuilds

Since f7408ada0c4655827e7bea46c57d7af1b9004433, it's

always set for Meson builds, so we don't need to

repeat it in ebuilds.

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

 gui-apps/kanshi/kanshi-1.1.0.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/gui-apps/kanshi/kanshi-1.1.0.ebuild b/gui-apps/kanshi/kanshi-1.1.0.ebuild
index f24c1c7c59d7..521c47e33cb0 100644
--- a/gui-apps/kanshi/kanshi-1.1.0.ebuild
+++ b/gui-apps/kanshi/kanshi-1.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -38,7 +38,6 @@ fi
 src_configure() {
 	local emesonargs=(
 		$(meson_feature man man-pages)
-		"-Dwerror=false"
 	)
 	meson_src_configure
 }


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2022-08-14 19:24 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2022-08-14 19:24 UTC (permalink / raw
  To: gentoo-commits

commit:     0dee944166f59622a62b21b590f7ba7f3b0a5247
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 14 19:15:40 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Aug 14 19:24:44 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dee9441

gui-apps/kanshi: add myself as a maintainer

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

 gui-apps/kanshi/metadata.xml | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/gui-apps/kanshi/metadata.xml b/gui-apps/kanshi/metadata.xml
index 816f56a2ce28..07455be83b4b 100644
--- a/gui-apps/kanshi/metadata.xml
+++ b/gui-apps/kanshi/metadata.xml
@@ -1,7 +1,10 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	<maintainer type="person">
+		<email>arthurzam@gentoo.org</email>
+		<name>Arthur Zamarin</name>
+	</maintainer>
 	<longdescription>
 		kanshi allows you to define output profiles that are
 		automatically enabled and disabled on hotplug.


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2022-08-14 19:24 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2022-08-14 19:24 UTC (permalink / raw
  To: gentoo-commits

commit:     d14b9b2c6eabc23889374fdab97a2ab789bdd0cf
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sun Aug 14 19:17:00 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sun Aug 14 19:24:44 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d14b9b2c

gui-apps/kanshi: add sourcehut upstream metadata

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

 gui-apps/kanshi/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/gui-apps/kanshi/metadata.xml b/gui-apps/kanshi/metadata.xml
index 07455be83b4b..4f0a430bb47f 100644
--- a/gui-apps/kanshi/metadata.xml
+++ b/gui-apps/kanshi/metadata.xml
@@ -11,4 +11,7 @@
 		For instance, this can be used to turn a laptop's
 		internal screen off when docked.
 	</longdescription>
+	<upstream>
+		<remote-id type="sourcehut">~emersion/kanshi</remote-id>
+	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2022-08-16 17:42 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2022-08-16 17:42 UTC (permalink / raw
  To: gentoo-commits

commit:     3e825229b96fefc9e2ab1dac5b9bb1182b241811
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 16 17:41:17 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 16 17:41:17 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e825229

gui-apps/kanshi: sync live ebuild

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

 gui-apps/kanshi/kanshi-9999.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/gui-apps/kanshi/kanshi-9999.ebuild b/gui-apps/kanshi/kanshi-9999.ebuild
index 221a5f5f59ed..b415cae3b1ac 100644
--- a/gui-apps/kanshi/kanshi-9999.ebuild
+++ b/gui-apps/kanshi/kanshi-9999.ebuild
@@ -1,12 +1,12 @@
-# Copyright 2020 Gentoo Authors
+# Copyright 2020-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit meson
 
 DESCRIPTION="dynamic display configuration (autorandr for wayland)"
-HOMEPAGE="https://github.com/emersion/kanshi"
+HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
 
 if [[ ${PV} == 9999 ]]; then
 	inherit git-r3


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2022-08-16 17:42 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2022-08-16 17:42 UTC (permalink / raw
  To: gentoo-commits

commit:     eac5837327952a75500e8c2bdfee37cc83c5dd64
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Aug 16 17:40:42 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Aug 16 17:40:42 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eac58373

gui-apps/kanshi: add 1.2.0, EAPI=8

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

 gui-apps/kanshi/Manifest            |  1 +
 gui-apps/kanshi/kanshi-1.2.0.ebuild | 43 +++++++++++++++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/gui-apps/kanshi/Manifest b/gui-apps/kanshi/Manifest
index 8c0196576167..4675187feaa2 100644
--- a/gui-apps/kanshi/Manifest
+++ b/gui-apps/kanshi/Manifest
@@ -1 +1,2 @@
 DIST kanshi-1.1.0.tar.gz 15884 BLAKE2B 1085e9d8f3ff53f78cb248941269713fd7ea38c60ad0e9816acb902f171b6f945af521a3835fc9db479620e6031483f6dbab5cfc507872dcabdfbcf9d6711269 SHA512 6582bae7b73ad13cad83e4d537c7c870699a72bf6993becaafa47a3dd70439a3c626ffff4874c8f737b32b62ad7512772c2c3bf54ac2cb74879213bd40b8d7a1
+DIST kanshi-1.2.0.tar.gz 16501 BLAKE2B a527b62a5aa39c7b0ee28c5a7b30827c525d07c9b85b7256392e641448e84bd6eff51d9b0a8d7f9df149efb6a49019412ec756b517ade6b72615a09a95f35c52 SHA512 d863547f0fcc2289d52220d913a7092af1c164ef0cd118288a1731983d06d1821e03f2defec9b43275b40fee23da25135e2bea39293b9de0ec8a32775369dac0

diff --git a/gui-apps/kanshi/kanshi-1.2.0.ebuild b/gui-apps/kanshi/kanshi-1.2.0.ebuild
new file mode 100644
index 000000000000..b415cae3b1ac
--- /dev/null
+++ b/gui-apps/kanshi/kanshi-1.2.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="dynamic display configuration (autorandr for wayland)"
+HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
+
+if [[ ${PV} == 9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/emersion/kanshi"
+else
+	SRC_URI="https://github.com/emersion/kanshi/releases/download/v${PV}/${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+man"
+
+RDEPEND="
+	dev-libs/wayland
+"
+BDEPEND="
+	${RDEPEND}
+	virtual/pkgconfig
+	dev-libs/wayland-protocols
+"
+
+if [[ ${PV} == 9999 ]]; then
+	BDEPEND+="man? ( ~app-text/scdoc-9999 )"
+else
+	BDEPEND+="man? ( >=app-text/scdoc-1.9.3 )"
+fi
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature man man-pages)
+	)
+	meson_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2022-08-24 19:36 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2022-08-24 19:36 UTC (permalink / raw
  To: gentoo-commits

commit:     0c04c913ffe1acb6f1ef89dbb485f96913e28701
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 24 19:06:15 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 24 19:36:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c04c913

gui-apps/kanshi: add 1.3.0

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

 gui-apps/kanshi/Manifest            |  1 +
 gui-apps/kanshi/kanshi-1.3.0.ebuild | 38 +++++++++++++++++++++++++++++++++++++
 gui-apps/kanshi/metadata.xml        |  3 +++
 3 files changed, 42 insertions(+)

diff --git a/gui-apps/kanshi/Manifest b/gui-apps/kanshi/Manifest
index 4675187feaa2..ab7ffb6f2e93 100644
--- a/gui-apps/kanshi/Manifest
+++ b/gui-apps/kanshi/Manifest
@@ -1,2 +1,3 @@
 DIST kanshi-1.1.0.tar.gz 15884 BLAKE2B 1085e9d8f3ff53f78cb248941269713fd7ea38c60ad0e9816acb902f171b6f945af521a3835fc9db479620e6031483f6dbab5cfc507872dcabdfbcf9d6711269 SHA512 6582bae7b73ad13cad83e4d537c7c870699a72bf6993becaafa47a3dd70439a3c626ffff4874c8f737b32b62ad7512772c2c3bf54ac2cb74879213bd40b8d7a1
 DIST kanshi-1.2.0.tar.gz 16501 BLAKE2B a527b62a5aa39c7b0ee28c5a7b30827c525d07c9b85b7256392e641448e84bd6eff51d9b0a8d7f9df149efb6a49019412ec756b517ade6b72615a09a95f35c52 SHA512 d863547f0fcc2289d52220d913a7092af1c164ef0cd118288a1731983d06d1821e03f2defec9b43275b40fee23da25135e2bea39293b9de0ec8a32775369dac0
+DIST kanshi-1.3.0.tar.gz 20721 BLAKE2B 56ba2241f21c41c5ba0e33c25ed0fb32ce471ac1c5f8dd030f93cb27e142319d1643143e78d4b375f855af1af5a078168e589ef74c82aaf738cef95618c122ab SHA512 f89164b1c4440d1cb29dfd70aab0721607dd63ea144ace9a2ff30cf89e662d404044bb30a5bc6c5544e8988db498eba3cd80100424ca76d31cc35b60e38036d9

diff --git a/gui-apps/kanshi/kanshi-1.3.0.ebuild b/gui-apps/kanshi/kanshi-1.3.0.ebuild
new file mode 100644
index 000000000000..2f3236686822
--- /dev/null
+++ b/gui-apps/kanshi/kanshi-1.3.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="dynamic display configuration (autorandr for wayland)"
+HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
+SRC_URI="
+	https://git.sr.ht/~emersion/kanshi/archive/v${PV}.tar.gz
+		-> ${P}.tar.gz
+"
+S=${WORKDIR}/${PN}-v${PV}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="+man varlink"
+
+RDEPEND="
+	dev-libs/wayland
+	varlink? ( dev-libs/libvarlink )
+"
+BDEPEND="
+	${RDEPEND}
+	virtual/pkgconfig
+	dev-libs/wayland-protocols
+	man? ( >=app-text/scdoc-1.9.3 )
+"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature man man-pages)
+		$(meson_feature varlink ipc)
+	)
+	meson_src_configure
+}

diff --git a/gui-apps/kanshi/metadata.xml b/gui-apps/kanshi/metadata.xml
index 4f0a430bb47f..93487eff2ff1 100644
--- a/gui-apps/kanshi/metadata.xml
+++ b/gui-apps/kanshi/metadata.xml
@@ -5,6 +5,9 @@
 		<email>arthurzam@gentoo.org</email>
 		<name>Arthur Zamarin</name>
 	</maintainer>
+	<use>
+		<flag name="varlink">Enable remote control with varlink</flag>
+	</use>
 	<longdescription>
 		kanshi allows you to define output profiles that are
 		automatically enabled and disabled on hotplug.


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2022-08-24 19:36 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2022-08-24 19:36 UTC (permalink / raw
  To: gentoo-commits

commit:     54d526d78c9afd9fbeaa8fcb554cea48404a7ca4
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 24 19:07:14 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 24 19:36:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54d526d7

gui-apps/kanshi: drop 1.1.0

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

 gui-apps/kanshi/Manifest            |  1 -
 gui-apps/kanshi/kanshi-1.1.0.ebuild | 43 -------------------------------------
 2 files changed, 44 deletions(-)

diff --git a/gui-apps/kanshi/Manifest b/gui-apps/kanshi/Manifest
index ab7ffb6f2e93..177e6bf48d9d 100644
--- a/gui-apps/kanshi/Manifest
+++ b/gui-apps/kanshi/Manifest
@@ -1,3 +1,2 @@
-DIST kanshi-1.1.0.tar.gz 15884 BLAKE2B 1085e9d8f3ff53f78cb248941269713fd7ea38c60ad0e9816acb902f171b6f945af521a3835fc9db479620e6031483f6dbab5cfc507872dcabdfbcf9d6711269 SHA512 6582bae7b73ad13cad83e4d537c7c870699a72bf6993becaafa47a3dd70439a3c626ffff4874c8f737b32b62ad7512772c2c3bf54ac2cb74879213bd40b8d7a1
 DIST kanshi-1.2.0.tar.gz 16501 BLAKE2B a527b62a5aa39c7b0ee28c5a7b30827c525d07c9b85b7256392e641448e84bd6eff51d9b0a8d7f9df149efb6a49019412ec756b517ade6b72615a09a95f35c52 SHA512 d863547f0fcc2289d52220d913a7092af1c164ef0cd118288a1731983d06d1821e03f2defec9b43275b40fee23da25135e2bea39293b9de0ec8a32775369dac0
 DIST kanshi-1.3.0.tar.gz 20721 BLAKE2B 56ba2241f21c41c5ba0e33c25ed0fb32ce471ac1c5f8dd030f93cb27e142319d1643143e78d4b375f855af1af5a078168e589ef74c82aaf738cef95618c122ab SHA512 f89164b1c4440d1cb29dfd70aab0721607dd63ea144ace9a2ff30cf89e662d404044bb30a5bc6c5544e8988db498eba3cd80100424ca76d31cc35b60e38036d9

diff --git a/gui-apps/kanshi/kanshi-1.1.0.ebuild b/gui-apps/kanshi/kanshi-1.1.0.ebuild
deleted file mode 100644
index 521c47e33cb0..000000000000
--- a/gui-apps/kanshi/kanshi-1.1.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson
-
-DESCRIPTION="dynamic display configuration (autorandr for wayland)"
-HOMEPAGE="https://github.com/emersion/kanshi"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/emersion/kanshi"
-else
-	SRC_URI="https://github.com/emersion/kanshi/releases/download/v${PV}/${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+man"
-
-RDEPEND="
-	dev-libs/wayland
-"
-BDEPEND="
-	${RDEPEND}
-	virtual/pkgconfig
-	dev-libs/wayland-protocols
-"
-
-if [[ ${PV} == 9999 ]]; then
-	BDEPEND+="man? ( ~app-text/scdoc-9999 )"
-else
-	BDEPEND+="man? ( >=app-text/scdoc-1.9.3 )"
-fi
-
-src_configure() {
-	local emesonargs=(
-		$(meson_feature man man-pages)
-	)
-	meson_src_configure
-}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2022-08-24 19:36 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2022-08-24 19:36 UTC (permalink / raw
  To: gentoo-commits

commit:     a33551d32261cb63dd5197e75af0c0bc2ec727b0
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Wed Aug 24 19:06:53 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Wed Aug 24 19:36:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a33551d3

gui-apps/kanshi: remove live ebuild

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

 gui-apps/kanshi/kanshi-9999.ebuild | 43 --------------------------------------
 1 file changed, 43 deletions(-)

diff --git a/gui-apps/kanshi/kanshi-9999.ebuild b/gui-apps/kanshi/kanshi-9999.ebuild
deleted file mode 100644
index b415cae3b1ac..000000000000
--- a/gui-apps/kanshi/kanshi-9999.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="dynamic display configuration (autorandr for wayland)"
-HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/emersion/kanshi"
-else
-	SRC_URI="https://github.com/emersion/kanshi/releases/download/v${PV}/${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+man"
-
-RDEPEND="
-	dev-libs/wayland
-"
-BDEPEND="
-	${RDEPEND}
-	virtual/pkgconfig
-	dev-libs/wayland-protocols
-"
-
-if [[ ${PV} == 9999 ]]; then
-	BDEPEND+="man? ( ~app-text/scdoc-9999 )"
-else
-	BDEPEND+="man? ( >=app-text/scdoc-1.9.3 )"
-fi
-
-src_configure() {
-	local emesonargs=(
-		$(meson_feature man man-pages)
-	)
-	meson_src_configure
-}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2022-10-17 18:42 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2022-10-17 18:42 UTC (permalink / raw
  To: gentoo-commits

commit:     d45df8f3e4d97078e6f9a2ddbe0d9eb37addc7cb
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Oct 17 17:39:05 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Oct 17 18:42:16 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d45df8f3

gui-apps/kanshi: drop 1.2.0

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

 gui-apps/kanshi/Manifest            |  1 -
 gui-apps/kanshi/kanshi-1.2.0.ebuild | 43 -------------------------------------
 2 files changed, 44 deletions(-)

diff --git a/gui-apps/kanshi/Manifest b/gui-apps/kanshi/Manifest
index 177e6bf48d9d..f20c66d2b975 100644
--- a/gui-apps/kanshi/Manifest
+++ b/gui-apps/kanshi/Manifest
@@ -1,2 +1 @@
-DIST kanshi-1.2.0.tar.gz 16501 BLAKE2B a527b62a5aa39c7b0ee28c5a7b30827c525d07c9b85b7256392e641448e84bd6eff51d9b0a8d7f9df149efb6a49019412ec756b517ade6b72615a09a95f35c52 SHA512 d863547f0fcc2289d52220d913a7092af1c164ef0cd118288a1731983d06d1821e03f2defec9b43275b40fee23da25135e2bea39293b9de0ec8a32775369dac0
 DIST kanshi-1.3.0.tar.gz 20721 BLAKE2B 56ba2241f21c41c5ba0e33c25ed0fb32ce471ac1c5f8dd030f93cb27e142319d1643143e78d4b375f855af1af5a078168e589ef74c82aaf738cef95618c122ab SHA512 f89164b1c4440d1cb29dfd70aab0721607dd63ea144ace9a2ff30cf89e662d404044bb30a5bc6c5544e8988db498eba3cd80100424ca76d31cc35b60e38036d9

diff --git a/gui-apps/kanshi/kanshi-1.2.0.ebuild b/gui-apps/kanshi/kanshi-1.2.0.ebuild
deleted file mode 100644
index b415cae3b1ac..000000000000
--- a/gui-apps/kanshi/kanshi-1.2.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="dynamic display configuration (autorandr for wayland)"
-HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
-
-if [[ ${PV} == 9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/emersion/kanshi"
-else
-	SRC_URI="https://github.com/emersion/kanshi/releases/download/v${PV}/${P}.tar.gz"
-	KEYWORDS="~amd64 ~arm64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+man"
-
-RDEPEND="
-	dev-libs/wayland
-"
-BDEPEND="
-	${RDEPEND}
-	virtual/pkgconfig
-	dev-libs/wayland-protocols
-"
-
-if [[ ${PV} == 9999 ]]; then
-	BDEPEND+="man? ( ~app-text/scdoc-9999 )"
-else
-	BDEPEND+="man? ( >=app-text/scdoc-1.9.3 )"
-fi
-
-src_configure() {
-	local emesonargs=(
-		$(meson_feature man man-pages)
-	)
-	meson_src_configure
-}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2022-12-16 14:07 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2022-12-16 14:07 UTC (permalink / raw
  To: gentoo-commits

commit:     4edf40f7c0c92aab27966449e656bff35d257366
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 16 13:57:09 2022 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 16 14:07:48 2022 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4edf40f7

gui-apps/kanshi: add 1.3.1

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

 gui-apps/kanshi/Manifest            |  1 +
 gui-apps/kanshi/kanshi-1.3.1.ebuild | 38 +++++++++++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/gui-apps/kanshi/Manifest b/gui-apps/kanshi/Manifest
index f20c66d2b975..7a8503a271d6 100644
--- a/gui-apps/kanshi/Manifest
+++ b/gui-apps/kanshi/Manifest
@@ -1 +1,2 @@
 DIST kanshi-1.3.0.tar.gz 20721 BLAKE2B 56ba2241f21c41c5ba0e33c25ed0fb32ce471ac1c5f8dd030f93cb27e142319d1643143e78d4b375f855af1af5a078168e589ef74c82aaf738cef95618c122ab SHA512 f89164b1c4440d1cb29dfd70aab0721607dd63ea144ace9a2ff30cf89e662d404044bb30a5bc6c5544e8988db498eba3cd80100424ca76d31cc35b60e38036d9
+DIST kanshi-1.3.1.tar.gz 20991 BLAKE2B 9ecad147d2ace82ea4a2e8fccbc1a2a81bdca534f4ae952a1bbc4303c4ff0e6cf6de5dd617e1ee79abd23bb094358b3336bc031748525f628b912e53e5a04db8 SHA512 21580c6d950c33ce80a3d39e71ae8352c23c96d89827b79f4a294ccade87026c1ce294a5f9aa9b58e06f7930a3885ab9a54400b7289dfbee18a2a1a53a55709b

diff --git a/gui-apps/kanshi/kanshi-1.3.1.ebuild b/gui-apps/kanshi/kanshi-1.3.1.ebuild
new file mode 100644
index 000000000000..2f3236686822
--- /dev/null
+++ b/gui-apps/kanshi/kanshi-1.3.1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="dynamic display configuration (autorandr for wayland)"
+HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
+SRC_URI="
+	https://git.sr.ht/~emersion/kanshi/archive/v${PV}.tar.gz
+		-> ${P}.tar.gz
+"
+S=${WORKDIR}/${PN}-v${PV}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="+man varlink"
+
+RDEPEND="
+	dev-libs/wayland
+	varlink? ( dev-libs/libvarlink )
+"
+BDEPEND="
+	${RDEPEND}
+	virtual/pkgconfig
+	dev-libs/wayland-protocols
+	man? ( >=app-text/scdoc-1.9.3 )
+"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature man man-pages)
+		$(meson_feature varlink ipc)
+	)
+	meson_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2023-07-01 14:30 Arsen Arsenović
  0 siblings, 0 replies; 26+ messages in thread
From: Arsen Arsenović @ 2023-07-01 14:30 UTC (permalink / raw
  To: gentoo-commits

commit:     a32588f6a57038504ced1c7423f6590bca499a83
Author:     Arsen Arsenović <arsen <AT> gentoo <DOT> org>
AuthorDate: Sat Jul  1 14:26:32 2023 +0000
Commit:     Arsen Arsenović <arsen <AT> gentoo <DOT> org>
CommitDate: Sat Jul  1 14:26:57 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a32588f6

gui-apps/kanshi: add 1.4.0

Signed-off-by: Arsen Arsenović <arsen <AT> gentoo.org>

 gui-apps/kanshi/Manifest            |  1 +
 gui-apps/kanshi/kanshi-1.4.0.ebuild | 38 +++++++++++++++++++++++++++++++++++++
 2 files changed, 39 insertions(+)

diff --git a/gui-apps/kanshi/Manifest b/gui-apps/kanshi/Manifest
index 7a8503a271d6..7433451c5b1f 100644
--- a/gui-apps/kanshi/Manifest
+++ b/gui-apps/kanshi/Manifest
@@ -1,2 +1,3 @@
 DIST kanshi-1.3.0.tar.gz 20721 BLAKE2B 56ba2241f21c41c5ba0e33c25ed0fb32ce471ac1c5f8dd030f93cb27e142319d1643143e78d4b375f855af1af5a078168e589ef74c82aaf738cef95618c122ab SHA512 f89164b1c4440d1cb29dfd70aab0721607dd63ea144ace9a2ff30cf89e662d404044bb30a5bc6c5544e8988db498eba3cd80100424ca76d31cc35b60e38036d9
 DIST kanshi-1.3.1.tar.gz 20991 BLAKE2B 9ecad147d2ace82ea4a2e8fccbc1a2a81bdca534f4ae952a1bbc4303c4ff0e6cf6de5dd617e1ee79abd23bb094358b3336bc031748525f628b912e53e5a04db8 SHA512 21580c6d950c33ce80a3d39e71ae8352c23c96d89827b79f4a294ccade87026c1ce294a5f9aa9b58e06f7930a3885ab9a54400b7289dfbee18a2a1a53a55709b
+DIST kanshi-1.4.0.tar.gz 22207 BLAKE2B 9d3d1172c77e77049cfa16a279cf77daaeaf8276a76228a3a5f0c141db4a27c2023e2398fc1591747116d4691c48caa323a6d96e2f2b8379e956478dabaff6fc SHA512 bf894865268f706487379b97e7de0df44c2e69aaa1feaca3f4e68f966382f0663ade6a770457803e274ec3afa9fa5661f7509c344a2f71a2b4cd7289277664a2

diff --git a/gui-apps/kanshi/kanshi-1.4.0.ebuild b/gui-apps/kanshi/kanshi-1.4.0.ebuild
new file mode 100644
index 000000000000..187f88c803bb
--- /dev/null
+++ b/gui-apps/kanshi/kanshi-1.4.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="dynamic display configuration (autorandr for wayland)"
+HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
+SRC_URI="
+	https://git.sr.ht/~emersion/kanshi/archive/v${PV}.tar.gz
+		-> ${P}.tar.gz
+"
+S=${WORKDIR}/${PN}-v${PV}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="+man varlink"
+
+RDEPEND="
+	dev-libs/wayland
+	varlink? ( dev-libs/libvarlink )
+"
+BDEPEND="
+	${RDEPEND}
+	virtual/pkgconfig
+	dev-libs/wayland-protocols
+	man? ( >=app-text/scdoc-1.9.3 )
+"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature man man-pages)
+		$(meson_feature varlink ipc)
+	)
+	meson_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2023-07-03 12:04 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2023-07-03 12:04 UTC (permalink / raw
  To: gentoo-commits

commit:     b4a0423f4b003ae44d382e49d6d16968a77ea64e
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  3 12:03:59 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Jul  3 12:03:59 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4a0423f

gui-apps/kanshi: drop 1.3.0

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

 gui-apps/kanshi/Manifest            |  1 -
 gui-apps/kanshi/kanshi-1.3.0.ebuild | 39 -------------------------------------
 2 files changed, 40 deletions(-)

diff --git a/gui-apps/kanshi/Manifest b/gui-apps/kanshi/Manifest
index 7433451c5b1f..cdbda7eeb1d3 100644
--- a/gui-apps/kanshi/Manifest
+++ b/gui-apps/kanshi/Manifest
@@ -1,3 +1,2 @@
-DIST kanshi-1.3.0.tar.gz 20721 BLAKE2B 56ba2241f21c41c5ba0e33c25ed0fb32ce471ac1c5f8dd030f93cb27e142319d1643143e78d4b375f855af1af5a078168e589ef74c82aaf738cef95618c122ab SHA512 f89164b1c4440d1cb29dfd70aab0721607dd63ea144ace9a2ff30cf89e662d404044bb30a5bc6c5544e8988db498eba3cd80100424ca76d31cc35b60e38036d9
 DIST kanshi-1.3.1.tar.gz 20991 BLAKE2B 9ecad147d2ace82ea4a2e8fccbc1a2a81bdca534f4ae952a1bbc4303c4ff0e6cf6de5dd617e1ee79abd23bb094358b3336bc031748525f628b912e53e5a04db8 SHA512 21580c6d950c33ce80a3d39e71ae8352c23c96d89827b79f4a294ccade87026c1ce294a5f9aa9b58e06f7930a3885ab9a54400b7289dfbee18a2a1a53a55709b
 DIST kanshi-1.4.0.tar.gz 22207 BLAKE2B 9d3d1172c77e77049cfa16a279cf77daaeaf8276a76228a3a5f0c141db4a27c2023e2398fc1591747116d4691c48caa323a6d96e2f2b8379e956478dabaff6fc SHA512 bf894865268f706487379b97e7de0df44c2e69aaa1feaca3f4e68f966382f0663ade6a770457803e274ec3afa9fa5661f7509c344a2f71a2b4cd7289277664a2

diff --git a/gui-apps/kanshi/kanshi-1.3.0.ebuild b/gui-apps/kanshi/kanshi-1.3.0.ebuild
deleted file mode 100644
index a3441df26d64..000000000000
--- a/gui-apps/kanshi/kanshi-1.3.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="dynamic display configuration (autorandr for wayland)"
-HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
-SRC_URI="
-	https://git.sr.ht/~emersion/kanshi/archive/v${PV}.tar.gz
-		-> ${P}.tar.gz
-"
-S=${WORKDIR}/${PN}-v${PV}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="+man varlink"
-
-RDEPEND="
-	dev-libs/wayland
-	varlink? ( dev-libs/libvarlink )
-"
-BDEPEND="
-	${RDEPEND}
-	virtual/pkgconfig
-	dev-libs/wayland-protocols
-	dev-util/wayland-scanner
-	man? ( >=app-text/scdoc-1.9.3 )
-"
-
-src_configure() {
-	local emesonargs=(
-		$(meson_feature man man-pages)
-		$(meson_feature varlink ipc)
-	)
-	meson_src_configure
-}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2023-07-03 12:04 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2023-07-03 12:04 UTC (permalink / raw
  To: gentoo-commits

commit:     3c00eeb89319c0c810c93be9504c8de7c702a7fd
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Mon Jul  3 12:03:44 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Mon Jul  3 12:03:44 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c00eeb8

gui-apps/kanshi: add missing bdep on dev-util/wayland-scanner

Closes: https://bugs.gentoo.org/909441
Signed-off-by: Arthur Zamarin <arthurzam <AT> gentoo.org>

 gui-apps/kanshi/kanshi-1.3.0.ebuild | 3 ++-
 gui-apps/kanshi/kanshi-1.3.1.ebuild | 3 ++-
 gui-apps/kanshi/kanshi-1.4.0.ebuild | 1 +
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/gui-apps/kanshi/kanshi-1.3.0.ebuild b/gui-apps/kanshi/kanshi-1.3.0.ebuild
index 2f3236686822..a3441df26d64 100644
--- a/gui-apps/kanshi/kanshi-1.3.0.ebuild
+++ b/gui-apps/kanshi/kanshi-1.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020-2022 Gentoo Authors
+# Copyright 2020-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -26,6 +26,7 @@ BDEPEND="
 	${RDEPEND}
 	virtual/pkgconfig
 	dev-libs/wayland-protocols
+	dev-util/wayland-scanner
 	man? ( >=app-text/scdoc-1.9.3 )
 "
 

diff --git a/gui-apps/kanshi/kanshi-1.3.1.ebuild b/gui-apps/kanshi/kanshi-1.3.1.ebuild
index 2f3236686822..a3441df26d64 100644
--- a/gui-apps/kanshi/kanshi-1.3.1.ebuild
+++ b/gui-apps/kanshi/kanshi-1.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020-2022 Gentoo Authors
+# Copyright 2020-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -26,6 +26,7 @@ BDEPEND="
 	${RDEPEND}
 	virtual/pkgconfig
 	dev-libs/wayland-protocols
+	dev-util/wayland-scanner
 	man? ( >=app-text/scdoc-1.9.3 )
 "
 

diff --git a/gui-apps/kanshi/kanshi-1.4.0.ebuild b/gui-apps/kanshi/kanshi-1.4.0.ebuild
index 187f88c803bb..a3441df26d64 100644
--- a/gui-apps/kanshi/kanshi-1.4.0.ebuild
+++ b/gui-apps/kanshi/kanshi-1.4.0.ebuild
@@ -26,6 +26,7 @@ BDEPEND="
 	${RDEPEND}
 	virtual/pkgconfig
 	dev-libs/wayland-protocols
+	dev-util/wayland-scanner
 	man? ( >=app-text/scdoc-1.9.3 )
 "
 


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2023-12-05  7:53 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2023-12-05  7:53 UTC (permalink / raw
  To: gentoo-commits

commit:     8ab604b3e1322afc5deadf062c79e40a6348b6fd
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Tue Dec  5 07:49:24 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Tue Dec  5 07:49:24 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ab604b3

gui-apps/kanshi: drop 1.3.1

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

 gui-apps/kanshi/Manifest            |  1 -
 gui-apps/kanshi/kanshi-1.3.1.ebuild | 39 -------------------------------------
 2 files changed, 40 deletions(-)

diff --git a/gui-apps/kanshi/Manifest b/gui-apps/kanshi/Manifest
index cdbda7eeb1d3..6a0272f947a2 100644
--- a/gui-apps/kanshi/Manifest
+++ b/gui-apps/kanshi/Manifest
@@ -1,2 +1 @@
-DIST kanshi-1.3.1.tar.gz 20991 BLAKE2B 9ecad147d2ace82ea4a2e8fccbc1a2a81bdca534f4ae952a1bbc4303c4ff0e6cf6de5dd617e1ee79abd23bb094358b3336bc031748525f628b912e53e5a04db8 SHA512 21580c6d950c33ce80a3d39e71ae8352c23c96d89827b79f4a294ccade87026c1ce294a5f9aa9b58e06f7930a3885ab9a54400b7289dfbee18a2a1a53a55709b
 DIST kanshi-1.4.0.tar.gz 22207 BLAKE2B 9d3d1172c77e77049cfa16a279cf77daaeaf8276a76228a3a5f0c141db4a27c2023e2398fc1591747116d4691c48caa323a6d96e2f2b8379e956478dabaff6fc SHA512 bf894865268f706487379b97e7de0df44c2e69aaa1feaca3f4e68f966382f0663ade6a770457803e274ec3afa9fa5661f7509c344a2f71a2b4cd7289277664a2

diff --git a/gui-apps/kanshi/kanshi-1.3.1.ebuild b/gui-apps/kanshi/kanshi-1.3.1.ebuild
deleted file mode 100644
index a3441df26d64..000000000000
--- a/gui-apps/kanshi/kanshi-1.3.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="dynamic display configuration (autorandr for wayland)"
-HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
-SRC_URI="
-	https://git.sr.ht/~emersion/kanshi/archive/v${PV}.tar.gz
-		-> ${P}.tar.gz
-"
-S=${WORKDIR}/${PN}-v${PV}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="+man varlink"
-
-RDEPEND="
-	dev-libs/wayland
-	varlink? ( dev-libs/libvarlink )
-"
-BDEPEND="
-	${RDEPEND}
-	virtual/pkgconfig
-	dev-libs/wayland-protocols
-	dev-util/wayland-scanner
-	man? ( >=app-text/scdoc-1.9.3 )
-"
-
-src_configure() {
-	local emesonargs=(
-		$(meson_feature man man-pages)
-		$(meson_feature varlink ipc)
-	)
-	meson_src_configure
-}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2023-12-29 17:08 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2023-12-29 17:08 UTC (permalink / raw
  To: gentoo-commits

commit:     34a0f053e0c9e90c5adf2aa1a4896207479a81d7
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Dec 29 16:50:44 2023 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Dec 29 17:07:51 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34a0f053

gui-apps/kanshi: add 1.5.0

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

 gui-apps/kanshi/Manifest            |  1 +
 gui-apps/kanshi/kanshi-1.5.0.ebuild | 39 +++++++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/gui-apps/kanshi/Manifest b/gui-apps/kanshi/Manifest
index 6a0272f947a2..648cbaa47c5e 100644
--- a/gui-apps/kanshi/Manifest
+++ b/gui-apps/kanshi/Manifest
@@ -1 +1,2 @@
 DIST kanshi-1.4.0.tar.gz 22207 BLAKE2B 9d3d1172c77e77049cfa16a279cf77daaeaf8276a76228a3a5f0c141db4a27c2023e2398fc1591747116d4691c48caa323a6d96e2f2b8379e956478dabaff6fc SHA512 bf894865268f706487379b97e7de0df44c2e69aaa1feaca3f4e68f966382f0663ade6a770457803e274ec3afa9fa5661f7509c344a2f71a2b4cd7289277664a2
+DIST kanshi-1.5.0.tar.gz 22330 BLAKE2B 6cccc0a178f2434073ab1438688e678be9abba427d042bfc2325c9b88fc71c183b2ea6d058fdcc3caaab32f9d140263b7daccc1dc812778bdb04f0b4762375be SHA512 a3bb11644382727bd52ff26942ca031246ca4ac006c02b5c6dcd0c21948f7cb8ad3cfc6141c51637ee9150069711b59cc0bdd9bb7bde9583fe9c11b02bb89088

diff --git a/gui-apps/kanshi/kanshi-1.5.0.ebuild b/gui-apps/kanshi/kanshi-1.5.0.ebuild
new file mode 100644
index 000000000000..a3441df26d64
--- /dev/null
+++ b/gui-apps/kanshi/kanshi-1.5.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="dynamic display configuration (autorandr for wayland)"
+HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
+SRC_URI="
+	https://git.sr.ht/~emersion/kanshi/archive/v${PV}.tar.gz
+		-> ${P}.tar.gz
+"
+S=${WORKDIR}/${PN}-v${PV}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="+man varlink"
+
+RDEPEND="
+	dev-libs/wayland
+	varlink? ( dev-libs/libvarlink )
+"
+BDEPEND="
+	${RDEPEND}
+	virtual/pkgconfig
+	dev-libs/wayland-protocols
+	dev-util/wayland-scanner
+	man? ( >=app-text/scdoc-1.9.3 )
+"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature man man-pages)
+		$(meson_feature varlink ipc)
+	)
+	meson_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2024-02-08 17:30 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2024-02-08 17:30 UTC (permalink / raw
  To: gentoo-commits

commit:     4bfd9e8296b1e5b5983c86983ce898644728502a
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Thu Feb  8 17:29:46 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Thu Feb  8 17:29:46 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bfd9e82

gui-apps/kanshi: add 1.5.1

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

 gui-apps/kanshi/Manifest            |  1 +
 gui-apps/kanshi/kanshi-1.5.1.ebuild | 39 +++++++++++++++++++++++++++++++++++++
 2 files changed, 40 insertions(+)

diff --git a/gui-apps/kanshi/Manifest b/gui-apps/kanshi/Manifest
index 648cbaa47c5e..2fd5fe450d6a 100644
--- a/gui-apps/kanshi/Manifest
+++ b/gui-apps/kanshi/Manifest
@@ -1,2 +1,3 @@
 DIST kanshi-1.4.0.tar.gz 22207 BLAKE2B 9d3d1172c77e77049cfa16a279cf77daaeaf8276a76228a3a5f0c141db4a27c2023e2398fc1591747116d4691c48caa323a6d96e2f2b8379e956478dabaff6fc SHA512 bf894865268f706487379b97e7de0df44c2e69aaa1feaca3f4e68f966382f0663ade6a770457803e274ec3afa9fa5661f7509c344a2f71a2b4cd7289277664a2
 DIST kanshi-1.5.0.tar.gz 22330 BLAKE2B 6cccc0a178f2434073ab1438688e678be9abba427d042bfc2325c9b88fc71c183b2ea6d058fdcc3caaab32f9d140263b7daccc1dc812778bdb04f0b4762375be SHA512 a3bb11644382727bd52ff26942ca031246ca4ac006c02b5c6dcd0c21948f7cb8ad3cfc6141c51637ee9150069711b59cc0bdd9bb7bde9583fe9c11b02bb89088
+DIST kanshi-1.5.1.tar.gz 22492 BLAKE2B d177951d7d37c2ac65d63ebdb5e0ac823857cf7b8f316e3adb0abcef6bd3ff6b44fff27b05f739e443d451c431fb2abccc96764000d887a46eb8dd3117d57f92 SHA512 0fe5fa584febe29b80eb8e896cc87734de83a7a5021e027bb864a9da9b8b333db3584f83885c2870907f4a1ec5ef8bb386356a037b7560643c4badec811bb1aa

diff --git a/gui-apps/kanshi/kanshi-1.5.1.ebuild b/gui-apps/kanshi/kanshi-1.5.1.ebuild
new file mode 100644
index 000000000000..eeb05caa0637
--- /dev/null
+++ b/gui-apps/kanshi/kanshi-1.5.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2020-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="dynamic display configuration (autorandr for wayland)"
+HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
+SRC_URI="
+	https://git.sr.ht/~emersion/kanshi/archive/v${PV}.tar.gz
+		-> ${P}.tar.gz
+"
+S=${WORKDIR}/${PN}-v${PV}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="+man varlink"
+
+RDEPEND="
+	dev-libs/wayland
+	varlink? ( dev-libs/libvarlink )
+"
+BDEPEND="
+	${RDEPEND}
+	virtual/pkgconfig
+	dev-libs/wayland-protocols
+	dev-util/wayland-scanner
+	man? ( >=app-text/scdoc-1.9.3 )
+"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature man man-pages)
+		$(meson_feature varlink ipc)
+	)
+	meson_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2024-03-08 11:24 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2024-03-08 11:24 UTC (permalink / raw
  To: gentoo-commits

commit:     cdbfe36d31488231a2e47db566a3bf72dd02ef8f
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  8 11:23:12 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar  8 11:24:08 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdbfe36d

gui-apps/kanshi: add 1.6.0

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

 gui-apps/kanshi/Manifest            |  1 +
 gui-apps/kanshi/kanshi-1.6.0.ebuild | 40 +++++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/gui-apps/kanshi/Manifest b/gui-apps/kanshi/Manifest
index 2fd5fe450d6a..76ffdd74feaa 100644
--- a/gui-apps/kanshi/Manifest
+++ b/gui-apps/kanshi/Manifest
@@ -1,3 +1,4 @@
 DIST kanshi-1.4.0.tar.gz 22207 BLAKE2B 9d3d1172c77e77049cfa16a279cf77daaeaf8276a76228a3a5f0c141db4a27c2023e2398fc1591747116d4691c48caa323a6d96e2f2b8379e956478dabaff6fc SHA512 bf894865268f706487379b97e7de0df44c2e69aaa1feaca3f4e68f966382f0663ade6a770457803e274ec3afa9fa5661f7509c344a2f71a2b4cd7289277664a2
 DIST kanshi-1.5.0.tar.gz 22330 BLAKE2B 6cccc0a178f2434073ab1438688e678be9abba427d042bfc2325c9b88fc71c183b2ea6d058fdcc3caaab32f9d140263b7daccc1dc812778bdb04f0b4762375be SHA512 a3bb11644382727bd52ff26942ca031246ca4ac006c02b5c6dcd0c21948f7cb8ad3cfc6141c51637ee9150069711b59cc0bdd9bb7bde9583fe9c11b02bb89088
 DIST kanshi-1.5.1.tar.gz 22492 BLAKE2B d177951d7d37c2ac65d63ebdb5e0ac823857cf7b8f316e3adb0abcef6bd3ff6b44fff27b05f739e443d451c431fb2abccc96764000d887a46eb8dd3117d57f92 SHA512 0fe5fa584febe29b80eb8e896cc87734de83a7a5021e027bb864a9da9b8b333db3584f83885c2870907f4a1ec5ef8bb386356a037b7560643c4badec811bb1aa
+DIST kanshi-1.6.0.tar.gz 22107 BLAKE2B 6e18525f6efdbf201326fd228f926bddc7fe67363decd07bd473b3d235a5324831461b07e0ff86c877b702194284c740fa2a4547d8907738dd480e41d3d1aebf SHA512 0202cf7e9e4f1c9bb456b8e5452fe5a7d4a7f8f37ee6a3809d165238b95c71b6f278ece7dc2b323e2788e41248fc3e4752aaac6728810faccd34fdeb147e6143

diff --git a/gui-apps/kanshi/kanshi-1.6.0.ebuild b/gui-apps/kanshi/kanshi-1.6.0.ebuild
new file mode 100644
index 000000000000..c7144643955d
--- /dev/null
+++ b/gui-apps/kanshi/kanshi-1.6.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2020-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="dynamic display configuration (autorandr for wayland)"
+HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
+SRC_URI="
+	https://git.sr.ht/~emersion/kanshi/archive/v${PV}.tar.gz
+		-> ${P}.tar.gz
+"
+S=${WORKDIR}/${PN}-v${PV}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+man varlink"
+
+RDEPEND="
+	dev-libs/libscfg
+	dev-libs/wayland
+	varlink? ( dev-libs/libvarlink )
+"
+BDEPEND="
+	${RDEPEND}
+	virtual/pkgconfig
+	dev-libs/wayland-protocols
+	dev-util/wayland-scanner
+	man? ( >=app-text/scdoc-1.9.3 )
+"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature man man-pages)
+		$(meson_feature varlink ipc)
+	)
+	meson_src_configure
+}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2024-03-08 11:33 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2024-03-08 11:33 UTC (permalink / raw
  To: gentoo-commits

commit:     859ff215ecc4a9ccf0396707c8ad0bc409e7ed4e
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  8 11:30:21 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar  8 11:30:21 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=859ff215

gui-apps/kanshi: drop 1.4.0, 1.5.0

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

 gui-apps/kanshi/Manifest            |  2 --
 gui-apps/kanshi/kanshi-1.4.0.ebuild | 39 -------------------------------------
 gui-apps/kanshi/kanshi-1.5.0.ebuild | 39 -------------------------------------
 3 files changed, 80 deletions(-)

diff --git a/gui-apps/kanshi/Manifest b/gui-apps/kanshi/Manifest
index 76ffdd74feaa..14a2eb69015d 100644
--- a/gui-apps/kanshi/Manifest
+++ b/gui-apps/kanshi/Manifest
@@ -1,4 +1,2 @@
-DIST kanshi-1.4.0.tar.gz 22207 BLAKE2B 9d3d1172c77e77049cfa16a279cf77daaeaf8276a76228a3a5f0c141db4a27c2023e2398fc1591747116d4691c48caa323a6d96e2f2b8379e956478dabaff6fc SHA512 bf894865268f706487379b97e7de0df44c2e69aaa1feaca3f4e68f966382f0663ade6a770457803e274ec3afa9fa5661f7509c344a2f71a2b4cd7289277664a2
-DIST kanshi-1.5.0.tar.gz 22330 BLAKE2B 6cccc0a178f2434073ab1438688e678be9abba427d042bfc2325c9b88fc71c183b2ea6d058fdcc3caaab32f9d140263b7daccc1dc812778bdb04f0b4762375be SHA512 a3bb11644382727bd52ff26942ca031246ca4ac006c02b5c6dcd0c21948f7cb8ad3cfc6141c51637ee9150069711b59cc0bdd9bb7bde9583fe9c11b02bb89088
 DIST kanshi-1.5.1.tar.gz 22492 BLAKE2B d177951d7d37c2ac65d63ebdb5e0ac823857cf7b8f316e3adb0abcef6bd3ff6b44fff27b05f739e443d451c431fb2abccc96764000d887a46eb8dd3117d57f92 SHA512 0fe5fa584febe29b80eb8e896cc87734de83a7a5021e027bb864a9da9b8b333db3584f83885c2870907f4a1ec5ef8bb386356a037b7560643c4badec811bb1aa
 DIST kanshi-1.6.0.tar.gz 22107 BLAKE2B 6e18525f6efdbf201326fd228f926bddc7fe67363decd07bd473b3d235a5324831461b07e0ff86c877b702194284c740fa2a4547d8907738dd480e41d3d1aebf SHA512 0202cf7e9e4f1c9bb456b8e5452fe5a7d4a7f8f37ee6a3809d165238b95c71b6f278ece7dc2b323e2788e41248fc3e4752aaac6728810faccd34fdeb147e6143

diff --git a/gui-apps/kanshi/kanshi-1.4.0.ebuild b/gui-apps/kanshi/kanshi-1.4.0.ebuild
deleted file mode 100644
index a3441df26d64..000000000000
--- a/gui-apps/kanshi/kanshi-1.4.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="dynamic display configuration (autorandr for wayland)"
-HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
-SRC_URI="
-	https://git.sr.ht/~emersion/kanshi/archive/v${PV}.tar.gz
-		-> ${P}.tar.gz
-"
-S=${WORKDIR}/${PN}-v${PV}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="+man varlink"
-
-RDEPEND="
-	dev-libs/wayland
-	varlink? ( dev-libs/libvarlink )
-"
-BDEPEND="
-	${RDEPEND}
-	virtual/pkgconfig
-	dev-libs/wayland-protocols
-	dev-util/wayland-scanner
-	man? ( >=app-text/scdoc-1.9.3 )
-"
-
-src_configure() {
-	local emesonargs=(
-		$(meson_feature man man-pages)
-		$(meson_feature varlink ipc)
-	)
-	meson_src_configure
-}

diff --git a/gui-apps/kanshi/kanshi-1.5.0.ebuild b/gui-apps/kanshi/kanshi-1.5.0.ebuild
deleted file mode 100644
index a3441df26d64..000000000000
--- a/gui-apps/kanshi/kanshi-1.5.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="dynamic display configuration (autorandr for wayland)"
-HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
-SRC_URI="
-	https://git.sr.ht/~emersion/kanshi/archive/v${PV}.tar.gz
-		-> ${P}.tar.gz
-"
-S=${WORKDIR}/${PN}-v${PV}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="+man varlink"
-
-RDEPEND="
-	dev-libs/wayland
-	varlink? ( dev-libs/libvarlink )
-"
-BDEPEND="
-	${RDEPEND}
-	virtual/pkgconfig
-	dev-libs/wayland-protocols
-	dev-util/wayland-scanner
-	man? ( >=app-text/scdoc-1.9.3 )
-"
-
-src_configure() {
-	local emesonargs=(
-		$(meson_feature man man-pages)
-		$(meson_feature varlink ipc)
-	)
-	meson_src_configure
-}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2024-03-08 12:09 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2024-03-08 12:09 UTC (permalink / raw
  To: gentoo-commits

commit:     52cf7093c8990555497c3815119a527240428a6e
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  8 12:09:49 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar  8 12:09:49 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52cf7093

gui-apps/kanshi: Keyword 1.6.0 x86, #926484

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

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

diff --git a/gui-apps/kanshi/kanshi-1.6.0.ebuild b/gui-apps/kanshi/kanshi-1.6.0.ebuild
index c7144643955d..2c732c7daf8a 100644
--- a/gui-apps/kanshi/kanshi-1.6.0.ebuild
+++ b/gui-apps/kanshi/kanshi-1.6.0.ebuild
@@ -15,7 +15,7 @@ S=${WORKDIR}/${PN}-v${PV}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE="+man varlink"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2024-03-08 12:10 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2024-03-08 12:10 UTC (permalink / raw
  To: gentoo-commits

commit:     379eb717129b7e81ff40ed9924403930084d0dbd
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Fri Mar  8 12:10:28 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Fri Mar  8 12:10:28 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=379eb717

gui-apps/kanshi: Keyword 1.6.0 arm64, #926484

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

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

diff --git a/gui-apps/kanshi/kanshi-1.6.0.ebuild b/gui-apps/kanshi/kanshi-1.6.0.ebuild
index 2c732c7daf8a..14e7f07ebbf4 100644
--- a/gui-apps/kanshi/kanshi-1.6.0.ebuild
+++ b/gui-apps/kanshi/kanshi-1.6.0.ebuild
@@ -15,7 +15,7 @@ S=${WORKDIR}/${PN}-v${PV}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="+man varlink"
 
 RDEPEND="


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2024-03-30 11:08 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2024-03-30 11:08 UTC (permalink / raw
  To: gentoo-commits

commit:     714bd91e9f6351da3115bdaf92d38efce64cb79b
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 30 11:00:44 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Mar 30 11:00:44 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=714bd91e

gui-apps/kanshi: drop 1.5.1

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

 gui-apps/kanshi/Manifest            |  1 -
 gui-apps/kanshi/kanshi-1.5.1.ebuild | 39 -------------------------------------
 2 files changed, 40 deletions(-)

diff --git a/gui-apps/kanshi/Manifest b/gui-apps/kanshi/Manifest
index 14a2eb69015d..26ef5f05fb17 100644
--- a/gui-apps/kanshi/Manifest
+++ b/gui-apps/kanshi/Manifest
@@ -1,2 +1 @@
-DIST kanshi-1.5.1.tar.gz 22492 BLAKE2B d177951d7d37c2ac65d63ebdb5e0ac823857cf7b8f316e3adb0abcef6bd3ff6b44fff27b05f739e443d451c431fb2abccc96764000d887a46eb8dd3117d57f92 SHA512 0fe5fa584febe29b80eb8e896cc87734de83a7a5021e027bb864a9da9b8b333db3584f83885c2870907f4a1ec5ef8bb386356a037b7560643c4badec811bb1aa
 DIST kanshi-1.6.0.tar.gz 22107 BLAKE2B 6e18525f6efdbf201326fd228f926bddc7fe67363decd07bd473b3d235a5324831461b07e0ff86c877b702194284c740fa2a4547d8907738dd480e41d3d1aebf SHA512 0202cf7e9e4f1c9bb456b8e5452fe5a7d4a7f8f37ee6a3809d165238b95c71b6f278ece7dc2b323e2788e41248fc3e4752aaac6728810faccd34fdeb147e6143

diff --git a/gui-apps/kanshi/kanshi-1.5.1.ebuild b/gui-apps/kanshi/kanshi-1.5.1.ebuild
deleted file mode 100644
index eeb05caa0637..000000000000
--- a/gui-apps/kanshi/kanshi-1.5.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2020-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="dynamic display configuration (autorandr for wayland)"
-HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
-SRC_URI="
-	https://git.sr.ht/~emersion/kanshi/archive/v${PV}.tar.gz
-		-> ${P}.tar.gz
-"
-S=${WORKDIR}/${PN}-v${PV}
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="+man varlink"
-
-RDEPEND="
-	dev-libs/wayland
-	varlink? ( dev-libs/libvarlink )
-"
-BDEPEND="
-	${RDEPEND}
-	virtual/pkgconfig
-	dev-libs/wayland-protocols
-	dev-util/wayland-scanner
-	man? ( >=app-text/scdoc-1.9.3 )
-"
-
-src_configure() {
-	local emesonargs=(
-		$(meson_feature man man-pages)
-		$(meson_feature varlink ipc)
-	)
-	meson_src_configure
-}


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

* [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/
@ 2024-06-08 11:12 Arthur Zamarin
  0 siblings, 0 replies; 26+ messages in thread
From: Arthur Zamarin @ 2024-06-08 11:12 UTC (permalink / raw
  To: gentoo-commits

commit:     37a64bdcacf7a711cbb8e0bfe5a92389c848a51b
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jun  8 11:10:24 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jun  8 11:10:24 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37a64bdc

gui-apps/kanshi: add 1.7.0

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

 gui-apps/kanshi/Manifest            |  1 +
 gui-apps/kanshi/kanshi-1.7.0.ebuild | 40 +++++++++++++++++++++++++++++++++++++
 2 files changed, 41 insertions(+)

diff --git a/gui-apps/kanshi/Manifest b/gui-apps/kanshi/Manifest
index 26ef5f05fb17..f79580edf209 100644
--- a/gui-apps/kanshi/Manifest
+++ b/gui-apps/kanshi/Manifest
@@ -1 +1,2 @@
 DIST kanshi-1.6.0.tar.gz 22107 BLAKE2B 6e18525f6efdbf201326fd228f926bddc7fe67363decd07bd473b3d235a5324831461b07e0ff86c877b702194284c740fa2a4547d8907738dd480e41d3d1aebf SHA512 0202cf7e9e4f1c9bb456b8e5452fe5a7d4a7f8f37ee6a3809d165238b95c71b6f278ece7dc2b323e2788e41248fc3e4752aaac6728810faccd34fdeb147e6143
+DIST kanshi-1.7.0.tar.gz 23073 BLAKE2B f742d36ea425eda35231c060b24485282932574ee61919934305d6234c92c66b69e1d5813f9402cc328ff7a046fae71061c8b8363f0290152982f218897cbeb3 SHA512 69ba65e7f4f034ce6c18c297723fa27920fba28ac0772b3214edc5dd61474735950cc5001f97ba33af15316dadff9a2c8282e6ced1ae1b4ccb837c4227dd73ac

diff --git a/gui-apps/kanshi/kanshi-1.7.0.ebuild b/gui-apps/kanshi/kanshi-1.7.0.ebuild
new file mode 100644
index 000000000000..14e7f07ebbf4
--- /dev/null
+++ b/gui-apps/kanshi/kanshi-1.7.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2020-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="dynamic display configuration (autorandr for wayland)"
+HOMEPAGE="https://wayland.emersion.fr/kanshi/ https://sr.ht/~emersion/kanshi/"
+SRC_URI="
+	https://git.sr.ht/~emersion/kanshi/archive/v${PV}.tar.gz
+		-> ${P}.tar.gz
+"
+S=${WORKDIR}/${PN}-v${PV}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="+man varlink"
+
+RDEPEND="
+	dev-libs/libscfg
+	dev-libs/wayland
+	varlink? ( dev-libs/libvarlink )
+"
+BDEPEND="
+	${RDEPEND}
+	virtual/pkgconfig
+	dev-libs/wayland-protocols
+	dev-util/wayland-scanner
+	man? ( >=app-text/scdoc-1.9.3 )
+"
+
+src_configure() {
+	local emesonargs=(
+		$(meson_feature man man-pages)
+		$(meson_feature varlink ipc)
+	)
+	meson_src_configure
+}


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

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

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-08-16 17:42 [gentoo-commits] repo/gentoo:master commit in: gui-apps/kanshi/ Arthur Zamarin
  -- strict thread matches above, loose matches on Subject: below --
2024-06-08 11:12 Arthur Zamarin
2024-03-30 11:08 Arthur Zamarin
2024-03-08 12:10 Arthur Zamarin
2024-03-08 12:09 Arthur Zamarin
2024-03-08 11:33 Arthur Zamarin
2024-03-08 11:24 Arthur Zamarin
2024-02-08 17:30 Arthur Zamarin
2023-12-29 17:08 Arthur Zamarin
2023-12-05  7:53 Arthur Zamarin
2023-07-03 12:04 Arthur Zamarin
2023-07-03 12:04 Arthur Zamarin
2023-07-01 14:30 Arsen Arsenović
2022-12-16 14:07 Arthur Zamarin
2022-10-17 18:42 Arthur Zamarin
2022-08-24 19:36 Arthur Zamarin
2022-08-24 19:36 Arthur Zamarin
2022-08-24 19:36 Arthur Zamarin
2022-08-16 17:42 Arthur Zamarin
2022-08-14 19:24 Arthur Zamarin
2022-08-14 19:24 Arthur Zamarin
2022-05-17  5:59 Sam James
2021-02-07  1:41 Aaron Bauman
2020-12-28  2:16 Jonas Stein
2020-05-18 21:38 Aaron Bauman
2020-05-18 21:38 Aaron Bauman

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