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 4CE0B158043 for ; Sat, 20 Apr 2024 19:25:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8196FE29C1; Sat, 20 Apr 2024 19:25:17 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 5818BE29C1 for ; Sat, 20 Apr 2024 19:25:17 +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 24D1234315D for ; Sat, 20 Apr 2024 19:25:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 62C5416F9 for ; Sat, 20 Apr 2024 19:25:14 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1713640794.cf23af1c4bef55a830a0c216dc39714cc46efbc9.arthurzam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gui-wm/hyprland/, gui-wm/hyprland/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: gui-wm/hyprland/files/bash-completion-fix-0.39.1.patch gui-wm/hyprland/hyprland-0.39.1-r1.ebuild gui-wm/hyprland/hyprland-0.39.1.ebuild X-VCS-Directories: gui-wm/hyprland/files/ gui-wm/hyprland/ X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: cf23af1c4bef55a830a0c216dc39714cc46efbc9 X-VCS-Branch: master Date: Sat, 20 Apr 2024 19:25:14 +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: c6850fa8-d8ad-4461-82f7-8e9f707d03dd X-Archives-Hash: a402b0a44ed26c9cd3bb9b669beee5ec commit: cf23af1c4bef55a830a0c216dc39714cc46efbc9 Author: Julien Roy jroy ca> AuthorDate: Sat Apr 20 14:26:25 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Apr 20 19:19:54 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf23af1c gui-wm/hyprland: add patch for bash completions Closes: https://bugs.gentoo.org/930132 Signed-off-by: Julien Roy jroy.ca> Closes: https://github.com/gentoo/gentoo/pull/36331 Signed-off-by: Arthur Zamarin gentoo.org> .../files/bash-completion-fix-0.39.1.patch | 22 ++++++++++++++++++++++ ...and-0.39.1.ebuild => hyprland-0.39.1-r1.ebuild} | 6 ++++++ 2 files changed, 28 insertions(+) diff --git a/gui-wm/hyprland/files/bash-completion-fix-0.39.1.patch b/gui-wm/hyprland/files/bash-completion-fix-0.39.1.patch new file mode 100644 index 000000000000..fe48ce45dd3a --- /dev/null +++ b/gui-wm/hyprland/files/bash-completion-fix-0.39.1.patch @@ -0,0 +1,22 @@ +https://github.com/hyprwm/Hyprland/pull/5653 + +--- a/hyprctl/meson.build ++++ b/hyprctl/meson.build +@@ -2,6 +2,6 @@ executable('hyprctl', 'main.cpp', + install: true + ) + +-install_data('hyprctl.bash', install_dir: join_paths(get_option('datadir'), 'bash-completion'), install_tag: 'runtime', rename: 'hyprctl') ++install_data('hyprctl.bash', install_dir: join_paths(get_option('datadir'), 'bash-completion/completions'), install_tag: 'runtime', rename: 'hyprctl') + install_data('hyprctl.fish', install_dir: join_paths(get_option('datadir'), 'fish/vendor_completions.d'), install_tag: 'runtime') + install_data('hyprctl.zsh', install_dir: join_paths(get_option('datadir'), 'zsh/site-functions'), install_tag: 'runtime', rename: '_hyprctl') +--- a/hyprpm/src/meson.build ++++ b/hyprpm/src/meson.build +@@ -9,6 +9,6 @@ executable('hyprpm', src, + install : true + ) + +-install_data('../hyprpm.bash', install_dir: join_paths(get_option('datadir'), 'bash-completion'), install_tag: 'runtime', rename: 'hyprpm') ++install_data('../hyprpm.bash', install_dir: join_paths(get_option('datadir'), 'bash-completion/completions'), install_tag: 'runtime', rename: 'hyprpm') + install_data('../hyprpm.fish', install_dir: join_paths(get_option('datadir'), 'fish/vendor_completions.d'), install_tag: 'runtime') + install_data('../hyprpm.zsh', install_dir: join_paths(get_option('datadir'), 'zsh/site-functions'), install_tag: 'runtime', rename: '_hyprpm') diff --git a/gui-wm/hyprland/hyprland-0.39.1.ebuild b/gui-wm/hyprland/hyprland-0.39.1-r1.ebuild similarity index 96% rename from gui-wm/hyprland/hyprland-0.39.1.ebuild rename to gui-wm/hyprland/hyprland-0.39.1-r1.ebuild index 3368e4aa15c2..6b1a6eff78b2 100644 --- a/gui-wm/hyprland/hyprland-0.39.1.ebuild +++ b/gui-wm/hyprland/hyprland-0.39.1-r1.ebuild @@ -95,6 +95,12 @@ BDEPEND=" virtual/pkgconfig " +PATCHES=( + # https://bugs.gentoo.org/930132 + # https://github.com/hyprwm/Hyprland/pull/5653 + "${FILESDIR}/bash-completion-fix-0.39.1.patch" +) + pkg_setup() { [[ ${MERGE_TYPE} == binary ]] && return