commit:     e56d0e1ef7c064ae0f2fd2b640008e6466a6c81e
Author:     Jonas Frei <freijon <AT> pm <DOT> me>
AuthorDate: Sun Sep  4 04:13:27 2022 +0000
Commit:     Ronny Gutbrod <gentoo <AT> tastytea <DOT> de>
CommitDate: Sun Sep  4 04:13:27 2022 +0000
URL:        https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e56d0e1e

app-editors/helix: Removed helix-0.4.1.patch

Signed-off-by: Jonas Frei <freijon <AT> pm.me>

 app-editors/helix/files/helix-0.4.1.patch | 44 -------------------------------
 1 file changed, 44 deletions(-)

diff --git a/app-editors/helix/files/helix-0.4.1.patch 
b/app-editors/helix/files/helix-0.4.1.patch
deleted file mode 100644
index 259720ba4..000000000
--- a/app-editors/helix/files/helix-0.4.1.patch
+++ /dev/null
@@ -1,44 +0,0 @@
-From 8c6e60e59c1c99341492d79608388f6cf12c9d40 Mon Sep 17 00:00:00 2001
-From: QaidVoid <qaidv...@gmail.com>
-Date: Tue, 19 Oct 2021 00:33:57 +0545
-Subject: [PATCH] check helix runtime in /usr/share
-
----
- helix-core/src/lib.rs | 14 ++++++++++++++
- 1 file changed, 14 insertions(+)
-
-diff --git a/helix-core/src/lib.rs b/helix-core/src/lib.rs
-index 2823959..60c3bb7 100644
---- a/helix-core/src/lib.rs
-+++ b/helix-core/src/lib.rs
-@@ -69,6 +69,11 @@ pub fn runtime_dir() -> std::path::PathBuf {
-         return conf_dir;
-     }
- 
-+    let sys_dir = sys_share_dir().join(RT_DIR);
-+    if sys_dir.exists() {
-+        return sys_dir;
-+    }
-+
-     if let Ok(dir) = std::env::var("CARGO_MANIFEST_DIR") {
-         // this is the directory of the crate being run by cargo, we need the 
workspace path so we take the parent
-         return std::path::PathBuf::from(dir).parent().unwrap().join(RT_DIR);
-@@ -81,6 +86,15 @@ pub fn runtime_dir() -> std::path::PathBuf {
-         .unwrap()
- }
- 
-+pub fn sys_share_dir() -> std::path::PathBuf {
-+    let mut path = std::path::Path::new("/usr/share/").to_path_buf();
-+    if !path.exists() {
-+        panic!("Unable to find system share directory!");
-+    }
-+    path.push("helix");
-+    path
-+}
-+
- pub fn config_dir() -> std::path::PathBuf {
-     // TODO: allow env var override
-     let strategy = choose_base_strategy().expect("Unable to find the config 
directory!");
--- 
-2.33.1
-

Reply via email to