public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/hyprland-split-monitor-workspaces/
@ 2024-01-02 11:40 Gonçalo Negrier Duarte
  0 siblings, 0 replies; 4+ messages in thread
From: Gonçalo Negrier Duarte @ 2024-01-02 11:40 UTC (permalink / raw
  To: gentoo-commits

commit:     03093741cbe0a7a9e86bdecde62f1d458d331db4
Author:     Gonçalo Negrier Duarte <gonegrier.duarte <AT> gmail <DOT> com>
AuthorDate: Tue Jan  2 10:35:51 2024 +0000
Commit:     Gonçalo Negrier Duarte <gonegrier.duarte <AT> gmail <DOT> com>
CommitDate: Tue Jan  2 11:28:43 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=03093741

gui-apps/hyprland-split-monitor-workspaces: new package, add 0.31.0, 0.32.3, 9999
* add me @MrRoy as proxy mantainers
* @MrRoy if you don't like the changes you can reverted

Signed-off-by: Gonçalo Negrier Duarte <gonegrier.duarte <AT> gmail.com>

 .../hyprland-split-monitor-workspaces/Manifest     |  2 +
 ...hyprland-split-monitor-workspaces-0.31.0.ebuild | 49 ++++++++++++++++++++++
 ...hyprland-split-monitor-workspaces-0.32.3.ebuild | 49 ++++++++++++++++++++++
 .../hyprland-split-monitor-workspaces-9999.ebuild  | 49 ++++++++++++++++++++++
 .../hyprland-split-monitor-workspaces/metadata.xml | 18 ++++++++
 5 files changed, 167 insertions(+)

diff --git a/gui-apps/hyprland-split-monitor-workspaces/Manifest b/gui-apps/hyprland-split-monitor-workspaces/Manifest
new file mode 100644
index 0000000000..e64220a7c9
--- /dev/null
+++ b/gui-apps/hyprland-split-monitor-workspaces/Manifest
@@ -0,0 +1,2 @@
+DIST hyprland-split-monitor-workspaces-0.31.0.gh.tar.gz 7757 BLAKE2B 69d63bbf37c46b507a5983d6bf9bfc98f66c19c69e5543ba217c05b2c2feca88443968351bd27a2473ef7f297e866a88bc0f2047f78840dc7515c32942b803dc SHA512 8ecec6895456b5b84a8f9c887fe54da0e5b23ca7eae22eacfb353115b361260437a398823bb8e973fa45e1676dc4c2755efd18820ebfd7a265571f9b4dd2dfda
+DIST hyprland-split-monitor-workspaces-0.32.3.gh.tar.gz 7757 BLAKE2B 69d63bbf37c46b507a5983d6bf9bfc98f66c19c69e5543ba217c05b2c2feca88443968351bd27a2473ef7f297e866a88bc0f2047f78840dc7515c32942b803dc SHA512 8ecec6895456b5b84a8f9c887fe54da0e5b23ca7eae22eacfb353115b361260437a398823bb8e973fa45e1676dc4c2755efd18820ebfd7a265571f9b4dd2dfda

diff --git a/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-0.31.0.ebuild b/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-0.31.0.ebuild
new file mode 100644
index 0000000000..9329340270
--- /dev/null
+++ b/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-0.31.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+M_PN="split-monitor-workspaces"
+
+inherit meson
+
+if [[ ${PV} == 9999 ]]; then
+	EGIT_REPO_URI="https://github.com/Duckonaut/${M_PN}.git"
+	inherit git-r3
+else
+	COMMIT=2b1abdbf9e9de9ee660540167c8f51903fa3d959
+	SRC_URI="https://github.com/Duckonaut/${M_PN}/archive/${COMMIT}.tar.gz \
+		-> ${P}.gh.tar.gz
+	"
+	KEYWORDS="~amd64"
+	S="${WORKDIR}/${M_PN}-${COMMIT}"
+fi
+
+DESCRIPTION="A small plugin to provide awesome/dwm-like behavior with workspaces"
+HOMEPAGE="https://github.com/Duckonaut/split-monitor-workspaces"
+
+LICENSE="BSD"
+SLOT="0"
+
+RDEPEND="gui-wm/hyprland"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	~gui-wm/hyprland-${PV}
+	x11-libs/libdrm
+	x11-libs/pixman
+	x11-libs/xcb-util-wm
+"
+
+src_compile() {
+	emake -C "${S}" split-monitor-workspaces.so
+}
+
+src_install() {
+	insinto "/usr/share/hyprland/plugins"
+	doins "${S}/split-monitor-workspaces.so"
+}
+
+pkg_postinst() {
+	einfo "Plugins are installed in /usr/share/hyprland/plugins"
+	einfo "To load them, refer to the official documentation"
+	einfo "https://wiki.hyprland.org/Plugins/Using-Plugins/"
+}

diff --git a/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-0.32.3.ebuild b/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-0.32.3.ebuild
new file mode 100644
index 0000000000..9329340270
--- /dev/null
+++ b/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-0.32.3.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+M_PN="split-monitor-workspaces"
+
+inherit meson
+
+if [[ ${PV} == 9999 ]]; then
+	EGIT_REPO_URI="https://github.com/Duckonaut/${M_PN}.git"
+	inherit git-r3
+else
+	COMMIT=2b1abdbf9e9de9ee660540167c8f51903fa3d959
+	SRC_URI="https://github.com/Duckonaut/${M_PN}/archive/${COMMIT}.tar.gz \
+		-> ${P}.gh.tar.gz
+	"
+	KEYWORDS="~amd64"
+	S="${WORKDIR}/${M_PN}-${COMMIT}"
+fi
+
+DESCRIPTION="A small plugin to provide awesome/dwm-like behavior with workspaces"
+HOMEPAGE="https://github.com/Duckonaut/split-monitor-workspaces"
+
+LICENSE="BSD"
+SLOT="0"
+
+RDEPEND="gui-wm/hyprland"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	~gui-wm/hyprland-${PV}
+	x11-libs/libdrm
+	x11-libs/pixman
+	x11-libs/xcb-util-wm
+"
+
+src_compile() {
+	emake -C "${S}" split-monitor-workspaces.so
+}
+
+src_install() {
+	insinto "/usr/share/hyprland/plugins"
+	doins "${S}/split-monitor-workspaces.so"
+}
+
+pkg_postinst() {
+	einfo "Plugins are installed in /usr/share/hyprland/plugins"
+	einfo "To load them, refer to the official documentation"
+	einfo "https://wiki.hyprland.org/Plugins/Using-Plugins/"
+}

diff --git a/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-9999.ebuild b/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-9999.ebuild
new file mode 100644
index 0000000000..9329340270
--- /dev/null
+++ b/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-9999.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+M_PN="split-monitor-workspaces"
+
+inherit meson
+
+if [[ ${PV} == 9999 ]]; then
+	EGIT_REPO_URI="https://github.com/Duckonaut/${M_PN}.git"
+	inherit git-r3
+else
+	COMMIT=2b1abdbf9e9de9ee660540167c8f51903fa3d959
+	SRC_URI="https://github.com/Duckonaut/${M_PN}/archive/${COMMIT}.tar.gz \
+		-> ${P}.gh.tar.gz
+	"
+	KEYWORDS="~amd64"
+	S="${WORKDIR}/${M_PN}-${COMMIT}"
+fi
+
+DESCRIPTION="A small plugin to provide awesome/dwm-like behavior with workspaces"
+HOMEPAGE="https://github.com/Duckonaut/split-monitor-workspaces"
+
+LICENSE="BSD"
+SLOT="0"
+
+RDEPEND="gui-wm/hyprland"
+DEPEND="${RDEPEND}"
+BDEPEND="
+	~gui-wm/hyprland-${PV}
+	x11-libs/libdrm
+	x11-libs/pixman
+	x11-libs/xcb-util-wm
+"
+
+src_compile() {
+	emake -C "${S}" split-monitor-workspaces.so
+}
+
+src_install() {
+	insinto "/usr/share/hyprland/plugins"
+	doins "${S}/split-monitor-workspaces.so"
+}
+
+pkg_postinst() {
+	einfo "Plugins are installed in /usr/share/hyprland/plugins"
+	einfo "To load them, refer to the official documentation"
+	einfo "https://wiki.hyprland.org/Plugins/Using-Plugins/"
+}

diff --git a/gui-apps/hyprland-split-monitor-workspaces/metadata.xml b/gui-apps/hyprland-split-monitor-workspaces/metadata.xml
new file mode 100644
index 0000000000..b05c0f896a
--- /dev/null
+++ b/gui-apps/hyprland-split-monitor-workspaces/metadata.xml
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<maintainer type="person">
+		<name>Julien Roy</name>
+		<email>julien@jroy.ca</email>
+	</maintainer>
+	<maintainer type="person">
+		<name>Gonçalo Negrier Duarte</name>
+		<email>gonegrier.duarte@gmail.com</email>
+	</maintainer>
+	<upstream>
+		<bugs-to>https://github.com/Duckonaut/split-monitor-workspaces/issues</bugs-to>
+		<changelog>https://github.com/hyprwm/hyprland-plugins/releases</changelog>
+		<remote-id type="github">Duckonaut/split-monitor-workspaces</remote-id>
+		<remote-id type="github">hypr/Hyprland</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/hyprland-split-monitor-workspaces/
@ 2024-01-03 17:24 Julien Roy
  0 siblings, 0 replies; 4+ messages in thread
From: Julien Roy @ 2024-01-03 17:24 UTC (permalink / raw
  To: gentoo-commits

commit:     18a86216bb99643323982583da68f4b95b4ad277
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Wed Jan  3 17:23:55 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Wed Jan  3 17:23:55 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=18a86216

gui-apps/hyprland-split-monitor-workspaces: drop 0.31.0

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 .../hyprland-split-monitor-workspaces/Manifest     |  1 -
 ...hyprland-split-monitor-workspaces-0.31.0.ebuild | 49 ----------------------
 2 files changed, 50 deletions(-)

diff --git a/gui-apps/hyprland-split-monitor-workspaces/Manifest b/gui-apps/hyprland-split-monitor-workspaces/Manifest
index e64220a7c9..14f732de3d 100644
--- a/gui-apps/hyprland-split-monitor-workspaces/Manifest
+++ b/gui-apps/hyprland-split-monitor-workspaces/Manifest
@@ -1,2 +1 @@
-DIST hyprland-split-monitor-workspaces-0.31.0.gh.tar.gz 7757 BLAKE2B 69d63bbf37c46b507a5983d6bf9bfc98f66c19c69e5543ba217c05b2c2feca88443968351bd27a2473ef7f297e866a88bc0f2047f78840dc7515c32942b803dc SHA512 8ecec6895456b5b84a8f9c887fe54da0e5b23ca7eae22eacfb353115b361260437a398823bb8e973fa45e1676dc4c2755efd18820ebfd7a265571f9b4dd2dfda
 DIST hyprland-split-monitor-workspaces-0.32.3.gh.tar.gz 7757 BLAKE2B 69d63bbf37c46b507a5983d6bf9bfc98f66c19c69e5543ba217c05b2c2feca88443968351bd27a2473ef7f297e866a88bc0f2047f78840dc7515c32942b803dc SHA512 8ecec6895456b5b84a8f9c887fe54da0e5b23ca7eae22eacfb353115b361260437a398823bb8e973fa45e1676dc4c2755efd18820ebfd7a265571f9b4dd2dfda

diff --git a/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-0.31.0.ebuild b/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-0.31.0.ebuild
deleted file mode 100644
index 9329340270..0000000000
--- a/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-0.31.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-M_PN="split-monitor-workspaces"
-
-inherit meson
-
-if [[ ${PV} == 9999 ]]; then
-	EGIT_REPO_URI="https://github.com/Duckonaut/${M_PN}.git"
-	inherit git-r3
-else
-	COMMIT=2b1abdbf9e9de9ee660540167c8f51903fa3d959
-	SRC_URI="https://github.com/Duckonaut/${M_PN}/archive/${COMMIT}.tar.gz \
-		-> ${P}.gh.tar.gz
-	"
-	KEYWORDS="~amd64"
-	S="${WORKDIR}/${M_PN}-${COMMIT}"
-fi
-
-DESCRIPTION="A small plugin to provide awesome/dwm-like behavior with workspaces"
-HOMEPAGE="https://github.com/Duckonaut/split-monitor-workspaces"
-
-LICENSE="BSD"
-SLOT="0"
-
-RDEPEND="gui-wm/hyprland"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	~gui-wm/hyprland-${PV}
-	x11-libs/libdrm
-	x11-libs/pixman
-	x11-libs/xcb-util-wm
-"
-
-src_compile() {
-	emake -C "${S}" split-monitor-workspaces.so
-}
-
-src_install() {
-	insinto "/usr/share/hyprland/plugins"
-	doins "${S}/split-monitor-workspaces.so"
-}
-
-pkg_postinst() {
-	einfo "Plugins are installed in /usr/share/hyprland/plugins"
-	einfo "To load them, refer to the official documentation"
-	einfo "https://wiki.hyprland.org/Plugins/Using-Plugins/"
-}


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

* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/hyprland-split-monitor-workspaces/
@ 2024-01-14 11:36 Joe Kappus
  0 siblings, 0 replies; 4+ messages in thread
From: Joe Kappus @ 2024-01-14 11:36 UTC (permalink / raw
  To: gentoo-commits

commit:     77919f00a4025e63db923ca2ea29a479e270460f
Author:     Joe Kappus <joe <AT> wt <DOT> gd>
AuthorDate: Sun Jan 14 11:36:07 2024 +0000
Commit:     Joe Kappus <joe <AT> wt <DOT> gd>
CommitDate: Sun Jan 14 11:36:07 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=77919f00

gui-apps/hyprland-split-monitor-workspaces: update upstream metadata

Signed-off-by: Joe Kappus <joe <AT> wt.gd>

 gui-apps/hyprland-split-monitor-workspaces/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/hyprland-split-monitor-workspaces/metadata.xml b/gui-apps/hyprland-split-monitor-workspaces/metadata.xml
index b05c0f896a..378848881c 100644
--- a/gui-apps/hyprland-split-monitor-workspaces/metadata.xml
+++ b/gui-apps/hyprland-split-monitor-workspaces/metadata.xml
@@ -13,6 +13,6 @@
 		<bugs-to>https://github.com/Duckonaut/split-monitor-workspaces/issues</bugs-to>
 		<changelog>https://github.com/hyprwm/hyprland-plugins/releases</changelog>
 		<remote-id type="github">Duckonaut/split-monitor-workspaces</remote-id>
-		<remote-id type="github">hypr/Hyprland</remote-id>
+		<remote-id type="github">hyprwm/Hyprland</remote-id>
 	</upstream>
 </pkgmetadata>


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

* [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/hyprland-split-monitor-workspaces/
@ 2024-02-23  1:30 Julien Roy
  0 siblings, 0 replies; 4+ messages in thread
From: Julien Roy @ 2024-02-23  1:30 UTC (permalink / raw
  To: gentoo-commits

commit:     f44e0345591e764efc705863151c9c8f362d184a
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Fri Feb 23 01:29:00 2024 +0000
Commit:     Julien Roy <julien <AT> jroy <DOT> ca>
CommitDate: Fri Feb 23 01:29:47 2024 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f44e0345

gui-apps/hyprland-split-monitor-workspaces: treeclean

Closes: https://bugs.gentoo.org/show_bug.cgi?id=921340

Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 .../hyprland-split-monitor-workspaces/Manifest     |  1 -
 ...hyprland-split-monitor-workspaces-0.32.3.ebuild | 49 ----------------------
 .../hyprland-split-monitor-workspaces-9999.ebuild  | 49 ----------------------
 .../hyprland-split-monitor-workspaces/metadata.xml | 18 --------
 4 files changed, 117 deletions(-)

diff --git a/gui-apps/hyprland-split-monitor-workspaces/Manifest b/gui-apps/hyprland-split-monitor-workspaces/Manifest
deleted file mode 100644
index 14f732de3d..0000000000
--- a/gui-apps/hyprland-split-monitor-workspaces/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST hyprland-split-monitor-workspaces-0.32.3.gh.tar.gz 7757 BLAKE2B 69d63bbf37c46b507a5983d6bf9bfc98f66c19c69e5543ba217c05b2c2feca88443968351bd27a2473ef7f297e866a88bc0f2047f78840dc7515c32942b803dc SHA512 8ecec6895456b5b84a8f9c887fe54da0e5b23ca7eae22eacfb353115b361260437a398823bb8e973fa45e1676dc4c2755efd18820ebfd7a265571f9b4dd2dfda

diff --git a/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-0.32.3.ebuild b/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-0.32.3.ebuild
deleted file mode 100644
index 9329340270..0000000000
--- a/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-0.32.3.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-M_PN="split-monitor-workspaces"
-
-inherit meson
-
-if [[ ${PV} == 9999 ]]; then
-	EGIT_REPO_URI="https://github.com/Duckonaut/${M_PN}.git"
-	inherit git-r3
-else
-	COMMIT=2b1abdbf9e9de9ee660540167c8f51903fa3d959
-	SRC_URI="https://github.com/Duckonaut/${M_PN}/archive/${COMMIT}.tar.gz \
-		-> ${P}.gh.tar.gz
-	"
-	KEYWORDS="~amd64"
-	S="${WORKDIR}/${M_PN}-${COMMIT}"
-fi
-
-DESCRIPTION="A small plugin to provide awesome/dwm-like behavior with workspaces"
-HOMEPAGE="https://github.com/Duckonaut/split-monitor-workspaces"
-
-LICENSE="BSD"
-SLOT="0"
-
-RDEPEND="gui-wm/hyprland"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	~gui-wm/hyprland-${PV}
-	x11-libs/libdrm
-	x11-libs/pixman
-	x11-libs/xcb-util-wm
-"
-
-src_compile() {
-	emake -C "${S}" split-monitor-workspaces.so
-}
-
-src_install() {
-	insinto "/usr/share/hyprland/plugins"
-	doins "${S}/split-monitor-workspaces.so"
-}
-
-pkg_postinst() {
-	einfo "Plugins are installed in /usr/share/hyprland/plugins"
-	einfo "To load them, refer to the official documentation"
-	einfo "https://wiki.hyprland.org/Plugins/Using-Plugins/"
-}

diff --git a/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-9999.ebuild b/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-9999.ebuild
deleted file mode 100644
index 9329340270..0000000000
--- a/gui-apps/hyprland-split-monitor-workspaces/hyprland-split-monitor-workspaces-9999.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-M_PN="split-monitor-workspaces"
-
-inherit meson
-
-if [[ ${PV} == 9999 ]]; then
-	EGIT_REPO_URI="https://github.com/Duckonaut/${M_PN}.git"
-	inherit git-r3
-else
-	COMMIT=2b1abdbf9e9de9ee660540167c8f51903fa3d959
-	SRC_URI="https://github.com/Duckonaut/${M_PN}/archive/${COMMIT}.tar.gz \
-		-> ${P}.gh.tar.gz
-	"
-	KEYWORDS="~amd64"
-	S="${WORKDIR}/${M_PN}-${COMMIT}"
-fi
-
-DESCRIPTION="A small plugin to provide awesome/dwm-like behavior with workspaces"
-HOMEPAGE="https://github.com/Duckonaut/split-monitor-workspaces"
-
-LICENSE="BSD"
-SLOT="0"
-
-RDEPEND="gui-wm/hyprland"
-DEPEND="${RDEPEND}"
-BDEPEND="
-	~gui-wm/hyprland-${PV}
-	x11-libs/libdrm
-	x11-libs/pixman
-	x11-libs/xcb-util-wm
-"
-
-src_compile() {
-	emake -C "${S}" split-monitor-workspaces.so
-}
-
-src_install() {
-	insinto "/usr/share/hyprland/plugins"
-	doins "${S}/split-monitor-workspaces.so"
-}
-
-pkg_postinst() {
-	einfo "Plugins are installed in /usr/share/hyprland/plugins"
-	einfo "To load them, refer to the official documentation"
-	einfo "https://wiki.hyprland.org/Plugins/Using-Plugins/"
-}

diff --git a/gui-apps/hyprland-split-monitor-workspaces/metadata.xml b/gui-apps/hyprland-split-monitor-workspaces/metadata.xml
deleted file mode 100644
index 378848881c..0000000000
--- a/gui-apps/hyprland-split-monitor-workspaces/metadata.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="person">
-		<name>Julien Roy</name>
-		<email>julien@jroy.ca</email>
-	</maintainer>
-	<maintainer type="person">
-		<name>Gonçalo Negrier Duarte</name>
-		<email>gonegrier.duarte@gmail.com</email>
-	</maintainer>
-	<upstream>
-		<bugs-to>https://github.com/Duckonaut/split-monitor-workspaces/issues</bugs-to>
-		<changelog>https://github.com/hyprwm/hyprland-plugins/releases</changelog>
-		<remote-id type="github">Duckonaut/split-monitor-workspaces</remote-id>
-		<remote-id type="github">hyprwm/Hyprland</remote-id>
-	</upstream>
-</pkgmetadata>


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

end of thread, other threads:[~2024-02-23  1:30 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-14 11:36 [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/hyprland-split-monitor-workspaces/ Joe Kappus
  -- strict thread matches above, loose matches on Subject: below --
2024-02-23  1:30 Julien Roy
2024-01-03 17:24 Julien Roy
2024-01-02 11:40 Gonçalo Negrier Duarte

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