From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 383A0158083 for ; Thu, 26 Sep 2024 12:49:16 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 39EA6E29A4; Thu, 26 Sep 2024 12:49:15 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 24521E29A4 for ; Thu, 26 Sep 2024 12:49:15 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5E9B8343166 for ; Thu, 26 Sep 2024 12:49:14 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 946C716EF for ; Thu, 26 Sep 2024 12:49:12 +0000 (UTC) From: "Yixun Lan" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Yixun Lan" Message-ID: <1727354477.afd058682589b820ed1cf7338caf90b5a0b48034.dlan@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/hyprutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: gui-libs/hyprutils/Manifest gui-libs/hyprutils/hyprutils-0.2.3.ebuild X-VCS-Directories: gui-libs/hyprutils/ X-VCS-Committer: dlan X-VCS-Committer-Name: Yixun Lan X-VCS-Revision: afd058682589b820ed1cf7338caf90b5a0b48034 X-VCS-Branch: master Date: Thu, 26 Sep 2024 12:49:12 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ecf911bd-d252-4576-8574-f7f196827b79 X-Archives-Hash: 5293c13daf866b26a89a24ac4dfbe52b commit: afd058682589b820ed1cf7338caf90b5a0b48034 Author: Yixun Lan gentoo org> AuthorDate: Thu Sep 26 12:37:48 2024 +0000 Commit: Yixun Lan gentoo 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 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}"