public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] repo/gentoo:master commit in: gui-libs/hyprutils/
@ 2024-06-25  8:18 Yixun Lan
  0 siblings, 0 replies; 13+ messages in thread
From: Yixun Lan @ 2024-06-25  8:18 UTC (permalink / raw
  To: gentoo-commits

commit:     8ce7603ca7f47ea0d3aaa529caa843831b08426d
Author:     Xiangzhe xz-dev <xiangzhedev <AT> gmail <DOT> com>
AuthorDate: Mon Jun 24 15:19:22 2024 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Tue Jun 25 08:18:23 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ce7603c

gui-libs/hyprutils: new package, add 0.1.4, 9999

Signed-off-by: Xiangzhe xz-dev <xiangzhedev <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 gui-libs/hyprutils/Manifest               |  1 +
 gui-libs/hyprutils/hyprutils-0.1.4.ebuild | 26 ++++++++++++++++++++++++++
 gui-libs/hyprutils/hyprutils-9999.ebuild  | 26 ++++++++++++++++++++++++++
 gui-libs/hyprutils/metadata.xml           | 10 ++++++++++
 4 files changed, 63 insertions(+)

diff --git a/gui-libs/hyprutils/Manifest b/gui-libs/hyprutils/Manifest
new file mode 100644
index 000000000000..38f20547e0b5
--- /dev/null
+++ b/gui-libs/hyprutils/Manifest
@@ -0,0 +1 @@
+DIST hyprutils-0.1.4.gh.tar.gz 16561 BLAKE2B 90c435f892015791a88870613235204e39e0e41cbeea00a8f21d7f0c84dd2cbe733604da9830334e4f21a0d57d21aa770cc69dc5a34c9324e673d1c86e732606 SHA512 78b1ad188579b7ba9fb32f08aa3da6e96ec18544a1802d144cee9f64f473b6ee41a4cb3fba971524cfbf448e6cbe0aa32c36f53e8d50cbdf926126a9a44da8b6

diff --git a/gui-libs/hyprutils/hyprutils-0.1.4.ebuild b/gui-libs/hyprutils/hyprutils-0.1.4.ebuild
new file mode 100644
index 000000000000..d7a92f59830e
--- /dev/null
+++ b/gui-libs/hyprutils/hyprutils-0.1.4.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Hyprland utilities library used across the ecosystem"
+HOMEPAGE="https://github.com/hyprwm/hyprutils"
+
+if [[ "${PV}" = *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/hyprwm/${PN^}.git"
+else
+	SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+	S="${WORKDIR}/${PN}-${PV}"
+
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+
+# Disable tests since as per upstream, tests require a theme to be installed
+# See also https://github.com/hyprwm/hyprcursor/commit/94361fd8a75178b92c4bb24dcd8c7fac8423acf3
+RESTRICT="test"

diff --git a/gui-libs/hyprutils/hyprutils-9999.ebuild b/gui-libs/hyprutils/hyprutils-9999.ebuild
new file mode 100644
index 000000000000..d7a92f59830e
--- /dev/null
+++ b/gui-libs/hyprutils/hyprutils-9999.ebuild
@@ -0,0 +1,26 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Hyprland utilities library used across the ecosystem"
+HOMEPAGE="https://github.com/hyprwm/hyprutils"
+
+if [[ "${PV}" = *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/hyprwm/${PN^}.git"
+else
+	SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+	S="${WORKDIR}/${PN}-${PV}"
+
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+
+# Disable tests since as per upstream, tests require a theme to be installed
+# See also https://github.com/hyprwm/hyprcursor/commit/94361fd8a75178b92c4bb24dcd8c7fac8423acf3
+RESTRICT="test"

diff --git a/gui-libs/hyprutils/metadata.xml b/gui-libs/hyprutils/metadata.xml
new file mode 100644
index 000000000000..bbf6d06daf66
--- /dev/null
+++ b/gui-libs/hyprutils/metadata.xml
@@ -0,0 +1,10 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+	<!-- maintainer-needed -->
+	<upstream>
+		<changelog>https://github.com/hyprwm/hyprutils/releases</changelog>
+		<bugs-to>https://github.com/hyprwm/hyprutils/issues</bugs-to>
+		<remote-id type="github">hyprwm/hyprutils</remote-id>
+	</upstream>
+</pkgmetadata>


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/hyprutils/
@ 2024-06-28 10:45 Yixun Lan
  0 siblings, 0 replies; 13+ messages in thread
From: Yixun Lan @ 2024-06-28 10:45 UTC (permalink / raw
  To: gentoo-commits

commit:     3792f9ee33f9246648303b0e2832a37b2f3913c3
Author:     Xiangzhe xz-dev <xiangzhedev <AT> gmail <DOT> com>
AuthorDate: Wed Jun 26 15:17:38 2024 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Fri Jun 28 10:45:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3792f9ee

gui-libs/hyprutils: add missing dep

Closes: https://bugs.gentoo.org/934933
Signed-off-by: Xiangzhe xz-dev <xiangzhedev <AT> gmail.com>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 .../hyprutils/{hyprutils-0.1.4.ebuild => hyprutils-0.1.4-r1.ebuild}  | 5 +++++
 gui-libs/hyprutils/hyprutils-9999.ebuild                             | 5 +++++
 2 files changed, 10 insertions(+)

diff --git a/gui-libs/hyprutils/hyprutils-0.1.4.ebuild b/gui-libs/hyprutils/hyprutils-0.1.4-r1.ebuild
similarity index 93%
rename from gui-libs/hyprutils/hyprutils-0.1.4.ebuild
rename to gui-libs/hyprutils/hyprutils-0.1.4-r1.ebuild
index d7a92f59830e..436c6061893f 100644
--- a/gui-libs/hyprutils/hyprutils-0.1.4.ebuild
+++ b/gui-libs/hyprutils/hyprutils-0.1.4-r1.ebuild
@@ -21,6 +21,11 @@ fi
 LICENSE="BSD"
 SLOT="0"
 
+DEPEND="
+	x11-libs/pixman
+"
+RDEPEND="${DEPEND}"
+
 # Disable tests since as per upstream, tests require a theme to be installed
 # See also https://github.com/hyprwm/hyprcursor/commit/94361fd8a75178b92c4bb24dcd8c7fac8423acf3
 RESTRICT="test"

diff --git a/gui-libs/hyprutils/hyprutils-9999.ebuild b/gui-libs/hyprutils/hyprutils-9999.ebuild
index d7a92f59830e..436c6061893f 100644
--- a/gui-libs/hyprutils/hyprutils-9999.ebuild
+++ b/gui-libs/hyprutils/hyprutils-9999.ebuild
@@ -21,6 +21,11 @@ fi
 LICENSE="BSD"
 SLOT="0"
 
+DEPEND="
+	x11-libs/pixman
+"
+RDEPEND="${DEPEND}"
+
 # Disable tests since as per upstream, tests require a theme to be installed
 # See also https://github.com/hyprwm/hyprcursor/commit/94361fd8a75178b92c4bb24dcd8c7fac8423acf3
 RESTRICT="test"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/hyprutils/
@ 2024-07-01 22:40 Yixun Lan
  0 siblings, 0 replies; 13+ messages in thread
From: Yixun Lan @ 2024-07-01 22:40 UTC (permalink / raw
  To: gentoo-commits

commit:     ba3d5106d4f5d0e14cd9fbd391ff7a0e459c66cc
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sun Jun 30 15:29:57 2024 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Mon Jul  1 22:38:28 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba3d5106

gui-libs/hyprutils: add myself as a maintainer

Signed-off-by: Julien Roy <julien <AT> jroy.ca>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 gui-libs/hyprutils/metadata.xml | 9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/gui-libs/hyprutils/metadata.xml b/gui-libs/hyprutils/metadata.xml
index bbf6d06daf66..b6ad30dc164e 100644
--- a/gui-libs/hyprutils/metadata.xml
+++ b/gui-libs/hyprutils/metadata.xml
@@ -1,7 +1,14 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
 <pkgmetadata>
-	<!-- maintainer-needed -->
+	<maintainer type="person" proxied="yes">
+		<email>julien@jroy.ca</email>
+		<name>Julien Roy</name>
+	</maintainer>
+	<maintainer type="project" proxied="proxy">
+		<email>proxy-maint@gentoo.org</email>
+		<name>Proxy Maintainers</name>
+	</maintainer>
 	<upstream>
 		<changelog>https://github.com/hyprwm/hyprutils/releases</changelog>
 		<bugs-to>https://github.com/hyprwm/hyprutils/issues</bugs-to>


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/hyprutils/
@ 2024-07-01 22:40 Yixun Lan
  0 siblings, 0 replies; 13+ messages in thread
From: Yixun Lan @ 2024-07-01 22:40 UTC (permalink / raw
  To: gentoo-commits

commit:     284b6a57ac59b6799216b444b7f392f1b1853a7d
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sun Jun 30 15:34:59 2024 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Mon Jul  1 22:38:32 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=284b6a57

gui-libs/hyprutils: enable tests

Signed-off-by: Julien Roy <julien <AT> jroy.ca>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 gui-libs/hyprutils/hyprutils-9999.ebuild | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/gui-libs/hyprutils/hyprutils-9999.ebuild b/gui-libs/hyprutils/hyprutils-9999.ebuild
index 436c6061893f..55586fbd00b4 100644
--- a/gui-libs/hyprutils/hyprutils-9999.ebuild
+++ b/gui-libs/hyprutils/hyprutils-9999.ebuild
@@ -25,7 +25,3 @@ DEPEND="
 	x11-libs/pixman
 "
 RDEPEND="${DEPEND}"
-
-# Disable tests since as per upstream, tests require a theme to be installed
-# See also https://github.com/hyprwm/hyprcursor/commit/94361fd8a75178b92c4bb24dcd8c7fac8423acf3
-RESTRICT="test"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/hyprutils/
@ 2024-07-01 22:40 Yixun Lan
  0 siblings, 0 replies; 13+ messages in thread
From: Yixun Lan @ 2024-07-01 22:40 UTC (permalink / raw
  To: gentoo-commits

commit:     5e98e5134cea4def17ecc6b548d62000743c1a03
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Sun Jun 30 15:38:15 2024 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Mon Jul  1 22:38:35 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e98e513

gui-libs/hyprutils: add 0.1.5

Signed-off-by: Julien Roy <julien <AT> jroy.ca>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 gui-libs/hyprutils/Manifest               |  1 +
 gui-libs/hyprutils/hyprutils-0.1.5.ebuild | 27 +++++++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/gui-libs/hyprutils/Manifest b/gui-libs/hyprutils/Manifest
index 38f20547e0b5..16b405fa3b95 100644
--- a/gui-libs/hyprutils/Manifest
+++ b/gui-libs/hyprutils/Manifest
@@ -1 +1,2 @@
 DIST hyprutils-0.1.4.gh.tar.gz 16561 BLAKE2B 90c435f892015791a88870613235204e39e0e41cbeea00a8f21d7f0c84dd2cbe733604da9830334e4f21a0d57d21aa770cc69dc5a34c9324e673d1c86e732606 SHA512 78b1ad188579b7ba9fb32f08aa3da6e96ec18544a1802d144cee9f64f473b6ee41a4cb3fba971524cfbf448e6cbe0aa32c36f53e8d50cbdf926126a9a44da8b6
+DIST hyprutils-0.1.5.gh.tar.gz 17974 BLAKE2B 2992cbc27c908c6ec86210fdd89969d77031d1b146b5607bffbf9fa457e24bee2edbdc52c64972ffc56df98799ffd77eba800892b0c126b1340aec7b03d03775 SHA512 c7ca50507871aacdb9054a308d03bfd666df817f1020a6c8df00cd88d3368ffcda629eb5b3952a4fece4b191f8cf739d8f837b3baf59bc8582c310063b60037a

diff --git a/gui-libs/hyprutils/hyprutils-0.1.5.ebuild b/gui-libs/hyprutils/hyprutils-0.1.5.ebuild
new file mode 100644
index 000000000000..55586fbd00b4
--- /dev/null
+++ b/gui-libs/hyprutils/hyprutils-0.1.5.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Hyprland utilities library used across the ecosystem"
+HOMEPAGE="https://github.com/hyprwm/hyprutils"
+
+if [[ "${PV}" = *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/hyprwm/${PN^}.git"
+else
+	SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+	S="${WORKDIR}/${PN}-${PV}"
+
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+
+DEPEND="
+	x11-libs/pixman
+"
+RDEPEND="${DEPEND}"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/hyprutils/
@ 2024-07-25  0:06 Yixun Lan
  0 siblings, 0 replies; 13+ messages in thread
From: Yixun Lan @ 2024-07-25  0:06 UTC (permalink / raw
  To: gentoo-commits

commit:     1937353f68d84b3a0567888b55bd995e3ec6ff27
Author:     John M. Harris Jr. <johnmh <AT> johnmh <DOT> me>
AuthorDate: Wed Jul 24 02:14:57 2024 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Jul 25 00:01:02 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1937353f

gui-libs/hyprutils: add 0.2.0

Signed-off-by: John M. Harris Jr. <johnmh <AT> johnmh.me>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 gui-libs/hyprutils/Manifest               |  1 +
 gui-libs/hyprutils/hyprutils-0.2.0.ebuild | 27 +++++++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/gui-libs/hyprutils/Manifest b/gui-libs/hyprutils/Manifest
index 16b405fa3b95..977241e40464 100644
--- a/gui-libs/hyprutils/Manifest
+++ b/gui-libs/hyprutils/Manifest
@@ -1,2 +1,3 @@
 DIST hyprutils-0.1.4.gh.tar.gz 16561 BLAKE2B 90c435f892015791a88870613235204e39e0e41cbeea00a8f21d7f0c84dd2cbe733604da9830334e4f21a0d57d21aa770cc69dc5a34c9324e673d1c86e732606 SHA512 78b1ad188579b7ba9fb32f08aa3da6e96ec18544a1802d144cee9f64f473b6ee41a4cb3fba971524cfbf448e6cbe0aa32c36f53e8d50cbdf926126a9a44da8b6
 DIST hyprutils-0.1.5.gh.tar.gz 17974 BLAKE2B 2992cbc27c908c6ec86210fdd89969d77031d1b146b5607bffbf9fa457e24bee2edbdc52c64972ffc56df98799ffd77eba800892b0c126b1340aec7b03d03775 SHA512 c7ca50507871aacdb9054a308d03bfd666df817f1020a6c8df00cd88d3368ffcda629eb5b3952a4fece4b191f8cf739d8f837b3baf59bc8582c310063b60037a
+DIST hyprutils-0.2.0.gh.tar.gz 19268 BLAKE2B 84afffb7f74f9882c4744963e9979c3035d5dbdc7ba914aee17f0a8968a0e218152830414c37cc760c1d43d580d0a04ca272bbaf04260222c757e3dfb544d299 SHA512 1e78e7c46a028169d65203b00436a62c6822c7a78eb8e1803ae1f681237e73e5b24d68957c64ee8bba47067c05ce3c32f74df951136aa2cfeb2dff9524286052

diff --git a/gui-libs/hyprutils/hyprutils-0.2.0.ebuild b/gui-libs/hyprutils/hyprutils-0.2.0.ebuild
new file mode 100644
index 000000000000..55586fbd00b4
--- /dev/null
+++ b/gui-libs/hyprutils/hyprutils-0.2.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Hyprland utilities library used across the ecosystem"
+HOMEPAGE="https://github.com/hyprwm/hyprutils"
+
+if [[ "${PV}" = *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/hyprwm/${PN^}.git"
+else
+	SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+	S="${WORKDIR}/${PN}-${PV}"
+
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+
+DEPEND="
+	x11-libs/pixman
+"
+RDEPEND="${DEPEND}"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/hyprutils/
@ 2024-07-27 17:16 Arthur Zamarin
  0 siblings, 0 replies; 13+ messages in thread
From: Arthur Zamarin @ 2024-07-27 17:16 UTC (permalink / raw
  To: gentoo-commits

commit:     4beb174f2900b2621527e546ee8f89bb59e1f6da
Author:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 27 17:16:22 2024 +0000
Commit:     Arthur Zamarin <arthurzam <AT> gentoo <DOT> org>
CommitDate: Sat Jul 27 17:16:22 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4beb174f

gui-libs/hyprutils: Stabilize 0.1.5 amd64, #936647

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

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

diff --git a/gui-libs/hyprutils/hyprutils-0.1.5.ebuild b/gui-libs/hyprutils/hyprutils-0.1.5.ebuild
index 55586fbd00b4..7d91fac34698 100644
--- a/gui-libs/hyprutils/hyprutils-0.1.5.ebuild
+++ b/gui-libs/hyprutils/hyprutils-0.1.5.ebuild
@@ -15,7 +15,7 @@ else
 	SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}/v${PV}.tar.gz -> ${P}.gh.tar.gz"
 	S="${WORKDIR}/${PN}-${PV}"
 
-	KEYWORDS="~amd64"
+	KEYWORDS="amd64"
 fi
 
 LICENSE="BSD"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/hyprutils/
@ 2024-08-09  3:18 Yixun Lan
  0 siblings, 0 replies; 13+ messages in thread
From: Yixun Lan @ 2024-08-09  3:18 UTC (permalink / raw
  To: gentoo-commits

commit:     13c5f1717be279fc3d5b69d9c1b20446f3469235
Author:     John M. Harris Jr. <johnmh <AT> johnmh <DOT> me>
AuthorDate: Mon Aug  5 03:16:49 2024 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Fri Aug  9 03:17:40 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13c5f171

gui-libs/hyprutils: drop 0.1.4-r1

Signed-off-by: John M. Harris Jr. <johnmh <AT> johnmh.me>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 gui-libs/hyprutils/Manifest                  |  1 -
 gui-libs/hyprutils/hyprutils-0.1.4-r1.ebuild | 31 ----------------------------
 2 files changed, 32 deletions(-)

diff --git a/gui-libs/hyprutils/Manifest b/gui-libs/hyprutils/Manifest
index 8068388280d6..8f5ced60a11f 100644
--- a/gui-libs/hyprutils/Manifest
+++ b/gui-libs/hyprutils/Manifest
@@ -1,4 +1,3 @@
-DIST hyprutils-0.1.4.gh.tar.gz 16561 BLAKE2B 90c435f892015791a88870613235204e39e0e41cbeea00a8f21d7f0c84dd2cbe733604da9830334e4f21a0d57d21aa770cc69dc5a34c9324e673d1c86e732606 SHA512 78b1ad188579b7ba9fb32f08aa3da6e96ec18544a1802d144cee9f64f473b6ee41a4cb3fba971524cfbf448e6cbe0aa32c36f53e8d50cbdf926126a9a44da8b6
 DIST hyprutils-0.1.5.gh.tar.gz 17974 BLAKE2B 2992cbc27c908c6ec86210fdd89969d77031d1b146b5607bffbf9fa457e24bee2edbdc52c64972ffc56df98799ffd77eba800892b0c126b1340aec7b03d03775 SHA512 c7ca50507871aacdb9054a308d03bfd666df817f1020a6c8df00cd88d3368ffcda629eb5b3952a4fece4b191f8cf739d8f837b3baf59bc8582c310063b60037a
 DIST hyprutils-0.2.0.gh.tar.gz 19268 BLAKE2B 84afffb7f74f9882c4744963e9979c3035d5dbdc7ba914aee17f0a8968a0e218152830414c37cc760c1d43d580d0a04ca272bbaf04260222c757e3dfb544d299 SHA512 1e78e7c46a028169d65203b00436a62c6822c7a78eb8e1803ae1f681237e73e5b24d68957c64ee8bba47067c05ce3c32f74df951136aa2cfeb2dff9524286052
 DIST hyprutils-0.2.1.gh.tar.gz 19941 BLAKE2B 3d38745450aff38ef28809b22646789003c8f964e6a39083c4353ded62820fe8b447da97b1de37f6a8c9c891de929c0f7c866a1c3962048d0f3267d6e851bb86 SHA512 168b7cf204d9b6b56df3404da52956e38ab56a55a441cf71c531efdad3112724c8df1deda2ea7fadb8ac9b2243dc9933612d4c23cd361d3dc5123485a5a5976a

diff --git a/gui-libs/hyprutils/hyprutils-0.1.4-r1.ebuild b/gui-libs/hyprutils/hyprutils-0.1.4-r1.ebuild
deleted file mode 100644
index 436c6061893f..000000000000
--- a/gui-libs/hyprutils/hyprutils-0.1.4-r1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Hyprland utilities library used across the ecosystem"
-HOMEPAGE="https://github.com/hyprwm/hyprutils"
-
-if [[ "${PV}" = *9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/hyprwm/${PN^}.git"
-else
-	SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}/v${PV}.tar.gz -> ${P}.gh.tar.gz"
-	S="${WORKDIR}/${PN}-${PV}"
-
-	KEYWORDS="~amd64"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-
-DEPEND="
-	x11-libs/pixman
-"
-RDEPEND="${DEPEND}"
-
-# Disable tests since as per upstream, tests require a theme to be installed
-# See also https://github.com/hyprwm/hyprcursor/commit/94361fd8a75178b92c4bb24dcd8c7fac8423acf3
-RESTRICT="test"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/hyprutils/
@ 2024-08-09  3:18 Yixun Lan
  0 siblings, 0 replies; 13+ messages in thread
From: Yixun Lan @ 2024-08-09  3:18 UTC (permalink / raw
  To: gentoo-commits

commit:     cb7b17ca9999831b84204c7c71191f22ff5f6d82
Author:     John M. Harris Jr. <johnmh <AT> johnmh <DOT> me>
AuthorDate: Mon Aug  5 03:16:23 2024 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Fri Aug  9 03:17:36 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb7b17ca

gui-libs/hyprutils: add 0.2.1

Signed-off-by: John M. Harris Jr. <johnmh <AT> johnmh.me>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 gui-libs/hyprutils/Manifest               |  1 +
 gui-libs/hyprutils/hyprutils-0.2.1.ebuild | 27 +++++++++++++++++++++++++++
 gui-libs/hyprutils/metadata.xml           |  4 ++++
 3 files changed, 32 insertions(+)

diff --git a/gui-libs/hyprutils/Manifest b/gui-libs/hyprutils/Manifest
index 977241e40464..8068388280d6 100644
--- a/gui-libs/hyprutils/Manifest
+++ b/gui-libs/hyprutils/Manifest
@@ -1,3 +1,4 @@
 DIST hyprutils-0.1.4.gh.tar.gz 16561 BLAKE2B 90c435f892015791a88870613235204e39e0e41cbeea00a8f21d7f0c84dd2cbe733604da9830334e4f21a0d57d21aa770cc69dc5a34c9324e673d1c86e732606 SHA512 78b1ad188579b7ba9fb32f08aa3da6e96ec18544a1802d144cee9f64f473b6ee41a4cb3fba971524cfbf448e6cbe0aa32c36f53e8d50cbdf926126a9a44da8b6
 DIST hyprutils-0.1.5.gh.tar.gz 17974 BLAKE2B 2992cbc27c908c6ec86210fdd89969d77031d1b146b5607bffbf9fa457e24bee2edbdc52c64972ffc56df98799ffd77eba800892b0c126b1340aec7b03d03775 SHA512 c7ca50507871aacdb9054a308d03bfd666df817f1020a6c8df00cd88d3368ffcda629eb5b3952a4fece4b191f8cf739d8f837b3baf59bc8582c310063b60037a
 DIST hyprutils-0.2.0.gh.tar.gz 19268 BLAKE2B 84afffb7f74f9882c4744963e9979c3035d5dbdc7ba914aee17f0a8968a0e218152830414c37cc760c1d43d580d0a04ca272bbaf04260222c757e3dfb544d299 SHA512 1e78e7c46a028169d65203b00436a62c6822c7a78eb8e1803ae1f681237e73e5b24d68957c64ee8bba47067c05ce3c32f74df951136aa2cfeb2dff9524286052
+DIST hyprutils-0.2.1.gh.tar.gz 19941 BLAKE2B 3d38745450aff38ef28809b22646789003c8f964e6a39083c4353ded62820fe8b447da97b1de37f6a8c9c891de929c0f7c866a1c3962048d0f3267d6e851bb86 SHA512 168b7cf204d9b6b56df3404da52956e38ab56a55a441cf71c531efdad3112724c8df1deda2ea7fadb8ac9b2243dc9933612d4c23cd361d3dc5123485a5a5976a

diff --git a/gui-libs/hyprutils/hyprutils-0.2.1.ebuild b/gui-libs/hyprutils/hyprutils-0.2.1.ebuild
new file mode 100644
index 000000000000..55586fbd00b4
--- /dev/null
+++ b/gui-libs/hyprutils/hyprutils-0.2.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Hyprland utilities library used across the ecosystem"
+HOMEPAGE="https://github.com/hyprwm/hyprutils"
+
+if [[ "${PV}" = *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/hyprwm/${PN^}.git"
+else
+	SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+	S="${WORKDIR}/${PN}-${PV}"
+
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+
+DEPEND="
+	x11-libs/pixman
+"
+RDEPEND="${DEPEND}"

diff --git a/gui-libs/hyprutils/metadata.xml b/gui-libs/hyprutils/metadata.xml
index b6ad30dc164e..13d9560f78ad 100644
--- a/gui-libs/hyprutils/metadata.xml
+++ b/gui-libs/hyprutils/metadata.xml
@@ -5,6 +5,10 @@
 		<email>julien@jroy.ca</email>
 		<name>Julien Roy</name>
 	</maintainer>
+	<maintainer type="person" proxied="yes">
+		<email>johnmh@johnmh.me</email>
+		<name>John M. Harris, Jr.</name>
+	</maintainer>
 	<maintainer type="project" proxied="proxy">
 		<email>proxy-maint@gentoo.org</email>
 		<name>Proxy Maintainers</name>


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/hyprutils/
@ 2024-09-02  4:37 Sam James
  0 siblings, 0 replies; 13+ messages in thread
From: Sam James @ 2024-09-02  4:37 UTC (permalink / raw
  To: gentoo-commits

commit:     29c3cbe13ca2f407c19476f01a845abfee7ce93d
Author:     Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Mon Sep  2 04:37:16 2024 +0000
Commit:     Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Mon Sep  2 04:37:16 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29c3cbe1

gui-libs/hyprutils: Stabilize 0.2.0 amd64, #938889

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

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

diff --git a/gui-libs/hyprutils/hyprutils-0.2.0.ebuild b/gui-libs/hyprutils/hyprutils-0.2.0.ebuild
index 55586fbd00b4..7d91fac34698 100644
--- a/gui-libs/hyprutils/hyprutils-0.2.0.ebuild
+++ b/gui-libs/hyprutils/hyprutils-0.2.0.ebuild
@@ -15,7 +15,7 @@ else
 	SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}/v${PV}.tar.gz -> ${P}.gh.tar.gz"
 	S="${WORKDIR}/${PN}-${PV}"
 
-	KEYWORDS="~amd64"
+	KEYWORDS="amd64"
 fi
 
 LICENSE="BSD"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/hyprutils/
@ 2024-09-10 15:46 Jakov Smolić
  0 siblings, 0 replies; 13+ messages in thread
From: Jakov Smolić @ 2024-09-10 15:46 UTC (permalink / raw
  To: gentoo-commits

commit:     d331c1d24fc648b080aec0677e735cea4b700603
Author:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
AuthorDate: Tue Sep 10 15:46:27 2024 +0000
Commit:     Jakov Smolić <jsmolic <AT> gentoo <DOT> org>
CommitDate: Tue Sep 10 15:46:27 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d331c1d2

gui-libs/hyprutils: Stabilize 0.2.1 amd64, #939407

Signed-off-by: Jakov Smolić <jsmolic <AT> gentoo.org>

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

diff --git a/gui-libs/hyprutils/hyprutils-0.2.1.ebuild b/gui-libs/hyprutils/hyprutils-0.2.1.ebuild
index 55586fbd00b4..7d91fac34698 100644
--- a/gui-libs/hyprutils/hyprutils-0.2.1.ebuild
+++ b/gui-libs/hyprutils/hyprutils-0.2.1.ebuild
@@ -15,7 +15,7 @@ else
 	SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}/v${PV}.tar.gz -> ${P}.gh.tar.gz"
 	S="${WORKDIR}/${PN}-${PV}"
 
-	KEYWORDS="~amd64"
+	KEYWORDS="amd64"
 fi
 
 LICENSE="BSD"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/hyprutils/
@ 2024-09-11  2:34 Yixun Lan
  0 siblings, 0 replies; 13+ messages in thread
From: Yixun Lan @ 2024-09-11  2:34 UTC (permalink / raw
  To: gentoo-commits

commit:     fc1e672989ffef33c56631836d863cd863dfcbbd
Author:     John M. Harris Jr. <johnmh <AT> johnmh <DOT> me>
AuthorDate: Tue Sep 10 06:45:14 2024 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Wed Sep 11 02:05:25 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc1e6729

gui-libs/hyprutils: drop 0.1.5, 0.2.0

Signed-off-by: John M. Harris Jr. <johnmh <AT> johnmh.me>
Signed-off-by: Yixun Lan <dlan <AT> gentoo.org>

 gui-libs/hyprutils/Manifest               |  2 --
 gui-libs/hyprutils/hyprutils-0.1.5.ebuild | 27 ---------------------------
 gui-libs/hyprutils/hyprutils-0.2.0.ebuild | 27 ---------------------------
 3 files changed, 56 deletions(-)

diff --git a/gui-libs/hyprutils/Manifest b/gui-libs/hyprutils/Manifest
index 8f5ced60a11f..a6efa76999c8 100644
--- a/gui-libs/hyprutils/Manifest
+++ b/gui-libs/hyprutils/Manifest
@@ -1,3 +1 @@
-DIST hyprutils-0.1.5.gh.tar.gz 17974 BLAKE2B 2992cbc27c908c6ec86210fdd89969d77031d1b146b5607bffbf9fa457e24bee2edbdc52c64972ffc56df98799ffd77eba800892b0c126b1340aec7b03d03775 SHA512 c7ca50507871aacdb9054a308d03bfd666df817f1020a6c8df00cd88d3368ffcda629eb5b3952a4fece4b191f8cf739d8f837b3baf59bc8582c310063b60037a
-DIST hyprutils-0.2.0.gh.tar.gz 19268 BLAKE2B 84afffb7f74f9882c4744963e9979c3035d5dbdc7ba914aee17f0a8968a0e218152830414c37cc760c1d43d580d0a04ca272bbaf04260222c757e3dfb544d299 SHA512 1e78e7c46a028169d65203b00436a62c6822c7a78eb8e1803ae1f681237e73e5b24d68957c64ee8bba47067c05ce3c32f74df951136aa2cfeb2dff9524286052
 DIST hyprutils-0.2.1.gh.tar.gz 19941 BLAKE2B 3d38745450aff38ef28809b22646789003c8f964e6a39083c4353ded62820fe8b447da97b1de37f6a8c9c891de929c0f7c866a1c3962048d0f3267d6e851bb86 SHA512 168b7cf204d9b6b56df3404da52956e38ab56a55a441cf71c531efdad3112724c8df1deda2ea7fadb8ac9b2243dc9933612d4c23cd361d3dc5123485a5a5976a

diff --git a/gui-libs/hyprutils/hyprutils-0.1.5.ebuild b/gui-libs/hyprutils/hyprutils-0.1.5.ebuild
deleted file mode 100644
index 7d91fac34698..000000000000
--- a/gui-libs/hyprutils/hyprutils-0.1.5.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Hyprland utilities library used across the ecosystem"
-HOMEPAGE="https://github.com/hyprwm/hyprutils"
-
-if [[ "${PV}" = *9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/hyprwm/${PN^}.git"
-else
-	SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}/v${PV}.tar.gz -> ${P}.gh.tar.gz"
-	S="${WORKDIR}/${PN}-${PV}"
-
-	KEYWORDS="amd64"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-
-DEPEND="
-	x11-libs/pixman
-"
-RDEPEND="${DEPEND}"

diff --git a/gui-libs/hyprutils/hyprutils-0.2.0.ebuild b/gui-libs/hyprutils/hyprutils-0.2.0.ebuild
deleted file mode 100644
index 7d91fac34698..000000000000
--- a/gui-libs/hyprutils/hyprutils-0.2.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 2023-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Hyprland utilities library used across the ecosystem"
-HOMEPAGE="https://github.com/hyprwm/hyprutils"
-
-if [[ "${PV}" = *9999 ]]; then
-	inherit git-r3
-	EGIT_REPO_URI="https://github.com/hyprwm/${PN^}.git"
-else
-	SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}/v${PV}.tar.gz -> ${P}.gh.tar.gz"
-	S="${WORKDIR}/${PN}-${PV}"
-
-	KEYWORDS="amd64"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-
-DEPEND="
-	x11-libs/pixman
-"
-RDEPEND="${DEPEND}"


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

* [gentoo-commits] repo/gentoo:master commit in: gui-libs/hyprutils/
@ 2024-09-26 12:49 Yixun Lan
  0 siblings, 0 replies; 13+ messages in thread
From: Yixun Lan @ 2024-09-26 12:49 UTC (permalink / raw
  To: gentoo-commits

commit:     afd058682589b820ed1cf7338caf90b5a0b48034
Author:     Yixun Lan <dlan <AT> gentoo <DOT> org>
AuthorDate: Thu Sep 26 12:37:48 2024 +0000
Commit:     Yixun Lan <dlan <AT> gentoo <DOT> org>
CommitDate: Thu Sep 26 12:41:17 2024 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afd05868

gui-libs/hyprutils: add 0.2.3

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

 gui-libs/hyprutils/Manifest               |  1 +
 gui-libs/hyprutils/hyprutils-0.2.3.ebuild | 27 +++++++++++++++++++++++++++
 2 files changed, 28 insertions(+)

diff --git a/gui-libs/hyprutils/Manifest b/gui-libs/hyprutils/Manifest
index a6efa76999c8..02aaa4282f45 100644
--- a/gui-libs/hyprutils/Manifest
+++ b/gui-libs/hyprutils/Manifest
@@ -1 +1,2 @@
 DIST hyprutils-0.2.1.gh.tar.gz 19941 BLAKE2B 3d38745450aff38ef28809b22646789003c8f964e6a39083c4353ded62820fe8b447da97b1de37f6a8c9c891de929c0f7c866a1c3962048d0f3267d6e851bb86 SHA512 168b7cf204d9b6b56df3404da52956e38ab56a55a441cf71c531efdad3112724c8df1deda2ea7fadb8ac9b2243dc9933612d4c23cd361d3dc5123485a5a5976a
+DIST hyprutils-0.2.3.gh.tar.gz 22012 BLAKE2B 13fa6b18d5196dc7984569039382fe0b4e345839cbd82f8359a8ea9852e082fce5e4d17a1f5c82daab729fc608d57833c658f2d3aacc4d5625c2c46a6afe9692 SHA512 00b65d3d253e9b4da307c5fefe7d50cef4a84ba0d7d073f6222ff2eaf7e23cdb8685988d66169d6f93caf5d91dceacc5e718644375401a7686359d89cfd3e5f7

diff --git a/gui-libs/hyprutils/hyprutils-0.2.3.ebuild b/gui-libs/hyprutils/hyprutils-0.2.3.ebuild
new file mode 100644
index 000000000000..55586fbd00b4
--- /dev/null
+++ b/gui-libs/hyprutils/hyprutils-0.2.3.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2023-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Hyprland utilities library used across the ecosystem"
+HOMEPAGE="https://github.com/hyprwm/hyprutils"
+
+if [[ "${PV}" = *9999 ]]; then
+	inherit git-r3
+	EGIT_REPO_URI="https://github.com/hyprwm/${PN^}.git"
+else
+	SRC_URI="https://github.com/hyprwm/${PN^}/archive/refs/tags/v${PV}/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+	S="${WORKDIR}/${PN}-${PV}"
+
+	KEYWORDS="~amd64"
+fi
+
+LICENSE="BSD"
+SLOT="0"
+
+DEPEND="
+	x11-libs/pixman
+"
+RDEPEND="${DEPEND}"


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

end of thread, other threads:[~2024-09-26 12:49 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-25  0:06 [gentoo-commits] repo/gentoo:master commit in: gui-libs/hyprutils/ Yixun Lan
  -- strict thread matches above, loose matches on Subject: below --
2024-09-26 12:49 Yixun Lan
2024-09-11  2:34 Yixun Lan
2024-09-10 15:46 Jakov Smolić
2024-09-02  4:37 Sam James
2024-08-09  3:18 Yixun Lan
2024-08-09  3:18 Yixun Lan
2024-07-27 17:16 Arthur Zamarin
2024-07-01 22:40 Yixun Lan
2024-07-01 22:40 Yixun Lan
2024-07-01 22:40 Yixun Lan
2024-06-28 10:45 Yixun Lan
2024-06-25  8:18 Yixun Lan

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