From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <gentoo-commits+bounces-1509733-garchives=archives.gentoo.org@lists.gentoo.org>
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 3727315ACFB
	for <garchives@archives.gentoo.org>; Thu, 20 Apr 2023 19:40:56 +0000 (UTC)
Received: from pigeon.gentoo.org (localhost [127.0.0.1])
	by pigeon.gentoo.org (Postfix) with SMTP id C7042E093D;
	Thu, 20 Apr 2023 19:40:54 +0000 (UTC)
Received: from smtp.gentoo.org (woodpecker.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))
	(No client certificate requested)
	by pigeon.gentoo.org (Postfix) with ESMTPS id AED75E093D
	for <gentoo-commits@lists.gentoo.org>; Thu, 20 Apr 2023 19:40:54 +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))
	(No client certificate requested)
	by smtp.gentoo.org (Postfix) with ESMTPS id EDACA3410D6
	for <gentoo-commits@lists.gentoo.org>; Thu, 20 Apr 2023 19:40:53 +0000 (UTC)
Received: from localhost.localdomain (localhost [IPv6:::1])
	by oystercatcher.gentoo.org (Postfix) with ESMTP id E9FDDA55
	for <gentoo-commits@lists.gentoo.org>; Thu, 20 Apr 2023 19:40:50 +0000 (UTC)
From: "Florian Schmaus" <flow@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Content-Transfer-Encoding: 8bit
Content-type: text/plain; charset=UTF-8
Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" <flow@gentoo.org>
Message-ID: <1682012897.feeb26d86476b45fb79f59b165503ca33fd5f69d.flow@gentoo>
Subject: [gentoo-commits] repo/proj/guru:master commit in: gui-apps/hyprpicker/
X-VCS-Repository: repo/proj/guru
X-VCS-Files: gui-apps/hyprpicker/hyprpicker-0.1.0-r1.ebuild
X-VCS-Directories: gui-apps/hyprpicker/
X-VCS-Committer: flow
X-VCS-Committer-Name: Florian Schmaus
X-VCS-Revision: feeb26d86476b45fb79f59b165503ca33fd5f69d
X-VCS-Branch: master
Date: Thu, 20 Apr 2023 19:40:50 +0000 (UTC)
Precedence: bulk
List-Post: <mailto:gentoo-commits@lists.gentoo.org>
List-Help: <mailto:gentoo-commits+help@lists.gentoo.org>
List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org>
List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org>
List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org>
X-BeenThere: gentoo-commits@lists.gentoo.org
X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply
X-Archives-Salt: 797e2ccd-adfb-4691-b0dd-c336968e1e97
X-Archives-Hash: bde2adad61c8e55ff3e0118e39d64da6

commit:     feeb26d86476b45fb79f59b165503ca33fd5f69d
Author:     Julien Roy <julien <AT> jroy <DOT> ca>
AuthorDate: Thu Apr 20 17:48:17 2023 +0000
Commit:     Florian Schmaus <flow <AT> gentoo <DOT> org>
CommitDate: Thu Apr 20 17:48:17 2023 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=feeb26d8

gui-apps/hyprpicker: add 0.1.0-r1

Add missing BDEPENDS

Closes: https://bugs.gentoo.org/904458
Signed-off-by: Julien Roy <julien <AT> jroy.ca>

 gui-apps/hyprpicker/hyprpicker-0.1.0-r1.ebuild | 33 ++++++++++++++++++++++++++
 1 file changed, 33 insertions(+)

diff --git a/gui-apps/hyprpicker/hyprpicker-0.1.0-r1.ebuild b/gui-apps/hyprpicker/hyprpicker-0.1.0-r1.ebuild
new file mode 100644
index 000000000..b72388397
--- /dev/null
+++ b/gui-apps/hyprpicker/hyprpicker-0.1.0-r1.ebuild
@@ -0,0 +1,33 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="A wlroots-compatible Wayland color picker that does not suck"
+HOMEPAGE="https://github.com/hyprwm/hyprpicker"
+SRC_URI="https://github.com/hyprwm/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="
+	dev-libs/wayland
+	dev-libs/wayland-protocols
+	dev-util/cmake
+	dev-util/wayland-scanner
+	media-libs/libjpeg-turbo
+	x11-libs/cairo
+	x11-libs/pango
+"
+
+src_compile() {
+	emake protocols
+	cmake_src_compile
+}
+
+src_install() {
+	dobin "${BUILD_DIR}/${PN}"
+}