From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 finch.gentoo.org (Postfix) with ESMTPS id E103C158B20 for ; Sat, 01 Feb 2025 19:18:12 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id C2393340C7F for ; Sat, 01 Feb 2025 19:18:12 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id C03C81103B6; Sat, 01 Feb 2025 19:18:11 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 bobolink.gentoo.org (Postfix) with ESMTPS id B323C1103B6 for ; Sat, 01 Feb 2025 19:18:11 +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 6624E340C7F for ; Sat, 01 Feb 2025 19:18:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9B71218F6 for ; Sat, 01 Feb 2025 19:18:09 +0000 (UTC) From: "Filip Kobierski" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Filip Kobierski" Message-ID: <1738437476.77367d89751ed7e8063a93ec5b1c90d3a301af38.fkobi@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: gui-apps/hyprpaper/ X-VCS-Repository: repo/proj/guru X-VCS-Files: gui-apps/hyprpaper/hyprpaper-0.7.3-r2.ebuild X-VCS-Directories: gui-apps/hyprpaper/ X-VCS-Committer: fkobi X-VCS-Committer-Name: Filip Kobierski X-VCS-Revision: 77367d89751ed7e8063a93ec5b1c90d3a301af38 X-VCS-Branch: dev Date: Sat, 01 Feb 2025 19:18:09 +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: 40b3100f-a3f7-4af8-8323-b507942f144e X-Archives-Hash: 12419f4a423b2ac0c9f25a7f41e3de55 commit: 77367d89751ed7e8063a93ec5b1c90d3a301af38 Author: Filip Kobierski pm me> AuthorDate: Sat Feb 1 19:16:06 2025 +0000 Commit: Filip Kobierski pm me> CommitDate: Sat Feb 1 19:17:56 2025 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=77367d89 gui-apps/hyprpaper: define DOC & don't redefine src_install this way the readme's also installed Signed-off-by: Filip Kobierski pm.me> gui-apps/hyprpaper/hyprpaper-0.7.3-r2.ebuild | 47 ++++++++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/gui-apps/hyprpaper/hyprpaper-0.7.3-r2.ebuild b/gui-apps/hyprpaper/hyprpaper-0.7.3-r2.ebuild new file mode 100644 index 000000000..fbeb61cca --- /dev/null +++ b/gui-apps/hyprpaper/hyprpaper-0.7.3-r2.ebuild @@ -0,0 +1,47 @@ +# Copyright 2023-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +inherit cmake + +DESCRIPTION="A blazing fast wayland wallpaper utility" +HOMEPAGE="https://github.com/hyprwm/hyprpaper" +SRC_URI="https://github.com/hyprwm/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-libs/hyprgraphics + >=dev-libs/hyprlang-0.6.0 + dev-libs/wayland + >=gui-libs/hyprutils-0.2.4:= + media-libs/libglvnd + media-libs/libjpeg-turbo:= + media-libs/libwebp:= + x11-libs/cairo + x11-libs/pango +" +DEPEND=" + ${RDEPEND} + dev-libs/wayland-protocols +" +BDEPEND=" + >=dev-util/hyprwayland-scanner-0.4.2 + dev-util/wayland-scanner + dev-vcs/git + virtual/pkgconfig +" + +DOCS=( README.md ) + +PATCHES=( + "${FILESDIR}/hyprpaper-0.7.3-fix-wayland-scanner.patch" +) + +src_compile() { + emake protocols + cmake_src_compile +}